├── README.md ├── client ├── Makefile ├── functions.c ├── functions.h ├── pwnginx └── pwnginx.c └── module ├── config ├── config.h ├── ngx_http_pwnginx.c ├── pwnginx.c ├── pwnginx.h └── socks5.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/README.md -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/client/functions.c -------------------------------------------------------------------------------- /client/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/client/functions.h -------------------------------------------------------------------------------- /client/pwnginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/client/pwnginx -------------------------------------------------------------------------------- /client/pwnginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/client/pwnginx.c -------------------------------------------------------------------------------- /module/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/config -------------------------------------------------------------------------------- /module/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/config.h -------------------------------------------------------------------------------- /module/ngx_http_pwnginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/ngx_http_pwnginx.c -------------------------------------------------------------------------------- /module/pwnginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/pwnginx.c -------------------------------------------------------------------------------- /module/pwnginx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/pwnginx.h -------------------------------------------------------------------------------- /module/socks5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t57root/pwnginx/HEAD/module/socks5.h --------------------------------------------------------------------------------