Web Enumeration
Web
Fingerprinting
# Look at page with just text
curl 10.11.1.111 -s -L | html2text -width '99' | uniq
# Get everything
curl -i -L 10.11.1.111
curl -i -H "User-Agent:Mozilla/4.0" http://10.11.1.111:8080
# Port 443
openssl s_client -connect <hostname>:443
# Port 80
telnet <IP> 80Nikto - WebApp Scanning
nikto -h http://<url>
nikto -h $ip -p 80,8080,1234Gobuster - Directory Enumeration
ffuf - Fuzzing Parameters
wpscan - wordpress scan
Uniscan
CMS Explorer
πResources
Last updated