[Kimchi-devel] [PATCH] [Kimchi 0/1] Fix VNC 1006: urlencode path

patrick at psbarrett.com patrick at psbarrett.com
Sun Sep 3 14:44:01 UTC 2017


From: Patrick Barrett <patrick at psbarrett.com>

Currently kimchi directs you to
`https://hera.lan:8001/plugins/kimchi/novnc/vnc_auto.html?port=8001&path=/websockify?token=[...]&encrypt=1`
when you click on 'View Console`, however this is improperly encoded
and Firefox guesses that the second `?` was meant to be an `&`. This
means that `token` and `encrypt` are sent to the current page rather
than being used for the websocket path.

It seems that noVNC should "work" with this, but there's another bug
(or kimchi is using path improperly, not sure, could be fixed in
either AFAIK) in noVNC where it assumes path is relative and prepends
a `/` to it, which then when it uses and anchor tag to reformat the
URL (I think) in `WebUtil.injectParamIfMissing`. However when path
already has a leading `/` it interprets "websockify" as the host
(that is it becomes `//websockify/`) and the path becomes just
`/?token=[...]`.

That code path is only executed when token is part of the original
URL, so this commit urlencodes the path to prevent the
interpretation of the token in the original URL and use it only in
path. This could also be fixed by changing the `?` to an `&` and
removing the leading `/`. However, `encodeURIcomponent` should
probably be used regardless since parts of path can come from a
config file.

**Caveats**

This is **UNTESTED** because I don't know how to build it all and
wanted to just get this since it's simple, but I have manually
tested it with the URL I believe this should produce.

I wasn't totally sure about the encrypt param because it was just
another & param in the URL and there's nothing to indicate where if
it's part of path or part of the page url. However, it doesn't seem
to make a visible difference where it's put, or even if it is
removed. (This would also make a difference to the alternate
solution I suggested above.)

Patrick Barrett (1):
  urlencode path

 ui/js/src/kimchi.api.js | 24 ++++++++++++++----------
 1 file changed, 14 insertions(+), 10 deletions(-)

-- 
2.13.5



More information about the Kimchi-devel mailing list