├── .gitignore ├── LICENSE ├── README.md ├── cert.pem ├── config.js ├── key.pem ├── package.json ├── scripts ├── actionclient.js └── socketclient.js ├── views └── main.pug ├── wsprocessor.js └── wsproxy.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | logs/ 3 | *.pem 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/README.md -------------------------------------------------------------------------------- /cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/cert.pem -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/config.js -------------------------------------------------------------------------------- /key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/key.pem -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/package.json -------------------------------------------------------------------------------- /scripts/actionclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/scripts/actionclient.js -------------------------------------------------------------------------------- /scripts/socketclient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/scripts/socketclient.js -------------------------------------------------------------------------------- /views/main.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/views/main.pug -------------------------------------------------------------------------------- /wsprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/wsprocessor.js -------------------------------------------------------------------------------- /wsproxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wsproxy/HEAD/wsproxy.js --------------------------------------------------------------------------------