πWeb Application Checklist
Fuzz first with feroxbuster
feroxbuster -u http://whatever.com/ -x php -C 404 -A --wordlist '/usr/share/seclists/Discovery/Web-Content/directory-list-2.3-big.txt' -B --auto-tunerobots.txt,.svn,.DS_STORETry different request type(POST & GET) in burp
Try to analyse website with html2markdown:
curl -s http://192.168.219.140:8000/ | html2markdownUse
cewlfor custom wordlists and--lowercasefor lowercase letters.If apache try shellshock (
cgi-bin) might be in windows too
nmap -sV -p8081 --script http-shellshock --script-args uri=/cgi-bin/user.sh,cmd=echo\;/bin/ls 127.0.0.1Git
To find git repo use linpeas or winpeas and to check use ls -la or ls -fo to look for .git file in the repo.
If git repo found as a directory:
To check the commit log
Then check the commit diff:
Use git-extractor
Common Attacks
Check Abusing APIs
Try Custom Wordlist on the website if login required
Wordpress
First check plugins
To enumerate wordpress plugins
Run normally too otherwise might miss plugins
Normally:
Directory Busting
For overall content search: Ferozbuster with βthorough and smart Dirsearch - brings in different stuff. Check robots.txt and sitemap.xml Also try txt and pdf files
-fcan cause a ton of false positives-nstops recursive directory lookups-bsearches for backups; can produce false positives
Gobuster
Curl
-L - to follow redirects -d - To add json data -i - To
Last updated
Was this helpful?