globe-wifiWeb 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> 80

Nikto - WebApp Scanning

nikto -h http://<url>
nikto -h $ip -p 80,8080,1234

Gobuster - Directory Enumeration

Some extension

ffuf - Fuzzing Parameters

wpscan - wordpress scan

Uniscan

LFI, RFI, and RCE vulnerability scanner

CMS Explorer

πŸ’“Resources

Amazing compilation -> https://pentestbook.six2dez.com/enumeration/webarrow-up-right

Last updated