├── .gitignore ├── LICENSE.txt ├── config.py ├── jetbrains.svg ├── readme.md ├── readme_cn.md ├── requirement.txt ├── stinger_client.py ├── stinger_client_linux.spec ├── stinger_client_win.spec ├── stinger_server.pyw ├── stinger_server_linux.spec ├── stinger_server_win.spec └── webshell ├── proxy.aspx ├── proxy.jsp ├── proxy.jspx └── proxy.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/config.py -------------------------------------------------------------------------------- /jetbrains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/jetbrains.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/readme.md -------------------------------------------------------------------------------- /readme_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/readme_cn.md -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | PyInstaller==3.6 2 | requests 3 | bottle 4 | twisted 5 | ipaddr 6 | -------------------------------------------------------------------------------- /stinger_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_client.py -------------------------------------------------------------------------------- /stinger_client_linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_client_linux.spec -------------------------------------------------------------------------------- /stinger_client_win.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_client_win.spec -------------------------------------------------------------------------------- /stinger_server.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_server.pyw -------------------------------------------------------------------------------- /stinger_server_linux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_server_linux.spec -------------------------------------------------------------------------------- /stinger_server_win.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/stinger_server_win.spec -------------------------------------------------------------------------------- /webshell/proxy.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/webshell/proxy.aspx -------------------------------------------------------------------------------- /webshell/proxy.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/webshell/proxy.jsp -------------------------------------------------------------------------------- /webshell/proxy.jspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/webshell/proxy.jspx -------------------------------------------------------------------------------- /webshell/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnyWolf/pystinger/HEAD/webshell/proxy.php --------------------------------------------------------------------------------