Web Content Discovery

ffuf

ffuf -w /usr/share/wordlists/SecLists/Discovery/Web-Content/common.txt -u http://10.10.102.23/FUZZ

Dirb

dirb http://10.10.102.23/ /usr/share/wordlists/SecLists/Discovery/Web-Content/common.txt

Gobuster

gobuster dir --url http://10.10.102.23/ -w /usr/share/wordlists/dirb/big.tx

##to look for the version add this on the end
-p patterns

##patterns contain the following:
{GOBUSTER}/v1
{GOBUSTER}/v2

Dirsearch

dirsearch -u <URL>

##look for 200 codes

Last updated