Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nwtgck/piping-vnc-web
VNC client over pure HTTPS via Piping Server on Web browser
https://github.com/nwtgck/piping-vnc-web
browser e2ee end-to-end-encryption http piping-server vnc vnc-client web
Last synced: 12 days ago
JSON representation
VNC client over pure HTTPS via Piping Server on Web browser
- Host: GitHub
- URL: https://github.com/nwtgck/piping-vnc-web
- Owner: nwtgck
- License: other
- Created: 2020-11-22T01:08:06.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-11T11:34:19.000Z (8 months ago)
- Last Synced: 2024-10-23T12:22:49.081Z (21 days ago)
- Topics: browser, e2ee, end-to-end-encryption, http, piping-server, vnc, vnc-client, web
- Language: JavaScript
- Homepage: https://piping-vnc.nwtgck.org
- Size: 9.77 MB
- Stars: 77
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Authors: AUTHORS
Awesome Lists containing this project
README
# Piping VNC
VNC client over pure HTTPS via [Piping Server](https://github.com/nwtgck/piping-server)## Application
## Requirements
This project requires the latest Google Chrome with enable-experimental-web-platform-features flag for [fetch() upload streaming](https://www.chromestatus.com/feature/5274139738767360) feature (origin trial now).
chrome://flags/ > Experimental Web Platform features > Enabled
## Acknowledgements
This project is highly based on [noVNC]. Thanks to the original authors!## Features
* Transfer data over pure HTTP/HTTPS
* End-to-end encryption using the same way as OpenSSL AES CTR does### Features powered by [noVNC]
* Supports all modern browsers including mobile (iOS, Android)
* Supported authentication methods: none, classical VNC, RealVNC's
RSA-AES, Tight, VeNCrypt Plain, XVP, Apple's Diffie-Hellman,
UltraVNC's MSLogonII
* Supported VNC encodings: raw, copyrect, rre, hextile, tight, tightPNG,
ZRLE, JPEG
* Supports scaling, clipping and resizing the desktop
* Local cursor rendering
* Clipboard copy/paste with full Unicode support
* Translations
* Touch gestures for emulating common mouse actions
* Licensed mainly under the [MPL 2.0](http://www.mozilla.org/MPL/2.0/), see
[the license document](LICENSE.txt) for details## URL fragment parameters
e.g. .
Use `#?`, which does not send parameters to the hosting server: piping-vnc.nwtgck.org.* `password`: VNC password
* `server`: Piping Server URL
* `cs_path`: Server-to-client path
* `sc_path`: Client-to-server path
* `vnc_server_port`: VNC server port for command hint
* `headers`: HTTP headers to Piping Server
- (e.g. `[["X-MyExtra1", "myvalue1"], ["Content-Type", "application/myapp"]]`)
* `e2ee`: E2E encryption option
- (type: `{ "cipher_type": "openssl-aes-256-ctr", "pass": string, "pbkdf2": { "iter": number, "hash": "sha1" | "sha256" | "sha512" } }`)## Run locally
```bash
cd
git submodule update --init --recursive # (once)
npm ci # (once)
npm run build-openssl-aes-ctr-stream # (once)
python3 -m http.server
```Then, open .
### Server Requirements
VNC server sides need a VNC server, netcat (nc) and curl.
## Authors/Contributors of [noVNC]
See [AUTHORS](AUTHORS) for a (full-ish) list of authors. If you're not on
that list and you think you should be, feel free to send a PR to fix that.* Core team:
* [Samuel Mannehed](https://github.com/samhed) (Cendio)
* [Pierre Ossman](https://github.com/CendioOssman) (Cendio)* Previous core contributors:
* [Joel Martin](https://github.com/kanaka) (Project founder)
* [Solly Ross](https://github.com/DirectXMan12) (Red Hat / OpenStack)* Notable contributions:
* UI and Icons : Pierre Ossman, Chris Gordon
* Original Logo : Michael Sersen
* tight encoding : Michael Tinglof (Mercuri.ca)
* RealVNC RSA AES authentication : USTC Vlab Team* Included libraries:
* base64 : Martijn Pieters (Digital Creations 2), Samuel Sieb (sieb.net)
* DES : Dave Zimmerman (Widget Workshop), Jef Poskanzer (ACME Labs)
* Pako : Vitaly Puzrin (https://github.com/nodeca/pako)[noVNC]: https://github.com/novnc/noVNC