gobuster

sudo apt install gobuster (if not installed)

#Italian specific

gobuster vhost -u https://esempio.it -t 50 -w italian-subdomains.txt

# Seclist medium sudo gobuster dir -e u --url http://10.10.10.10/ -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-medium.txt # Seclist Big with Linux target extensions sudo gobuster dir -e u --url http://10.10.10.10:80/ -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-big.txt -x php,bak,html,txt,zip # HTTPS connections with -k flag sudo gobuster dir -e u --url https://10.10.10.10:443/ -w /usr/share/seclists/Discovery/Web-Content/big.txt -k #Fuzzing /cgi-bin using gobuster gobuster dir -u http://10.11.1.39 -x cgi,sh **-s "301,302,304,307"** **-b ""** -k -w /usr/share/seclists/Discovery/Web-Content/CGIs.txt # -s flag to parse for specific responses sudo gobuster dir e -u http://10.11.1.71/ -w /usr/share/seclists/Discovery/Web-Content/common.txt -s '200,204,301,302,307,403,500' -e #Common.txt sudo gobuster dir -e u --url http://10.11.1.116/ -w /usr/share/seclists/Discovery/Web-Content/common.txt #Windows target sudo gobuster dir -e u -r --url http://10.11.1.128:4167/ -w /usr/share/seclists/Discovery/Web-Content/big.txt -x php,html,htnl,zip,txt,bak,asp,mdf,ndf

Last updated