├── .gitattributes ├── .gitignore ├── README.md ├── Roxy.py ├── index.php ├── install.md ├── pac.js ├── requirements.txt ├── run.bat ├── screenshot ├── cert1.png ├── cert2.png ├── cert3.png └── setproxy.png ├── selfsigned.crt └── settings.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/README.md -------------------------------------------------------------------------------- /Roxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/Roxy.py -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/index.php -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/install.md -------------------------------------------------------------------------------- /pac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/pac.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.22.0 2 | pyOpenSSL==19.1.0 3 | -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python Roxy.py -------------------------------------------------------------------------------- /screenshot/cert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/screenshot/cert1.png -------------------------------------------------------------------------------- /screenshot/cert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/screenshot/cert2.png -------------------------------------------------------------------------------- /screenshot/cert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/screenshot/cert3.png -------------------------------------------------------------------------------- /screenshot/setproxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/screenshot/setproxy.png -------------------------------------------------------------------------------- /selfsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/selfsigned.crt -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rorical/Roxy/HEAD/settings.ini --------------------------------------------------------------------------------