Stars: 362
Forks: 68
Pull Requests: 0
Issues: 0
Watchers: 8
Last Updated: 2022-08-22 12:23:35
Multi-language web CGI interfaces exploits.
License: Apache License 2.0
Languages: Python, PHP, Go
Here's several exploits related to different web CGIs. I wrote those exploits in last few years.
Web app are basicly those layers:
4
and 5
could be the same thing.3
and 4
could the same thing too.There are communications between each layer. each layer software are developed by different teams. they do have standards to communicate each other, but they always have misunderstandings or design faults. So we can take advantage of those faults to achieve our goals, like RCE, spwan a shell, port forward etc.
Fastcgi
fcgi_exp.go
use fastcgi to read or execute file if the fcgi port exposed to public( or with a SSRF
).fcgi_jailbreak.php
use fastcgi params to change some php ini configs and break php-based sandbox.Apache Mod_php
mod_php_port_reuse.php
reuse the 80 connection to spawn a interactive shell. Bypass the firewall.mod_php_port_proxy.py
work together with mod_php_port_reuse.php
, create a 80 tcp proxy to bypass the firewall.uwsgi_exp.py
exploit uwsgi to execute any command remotely if the uwsgi port exposed to public( or with a SSRF
).