Web Enum
Scan site for for general vulnerabilities and applications
1 2 |
nikto -h 10.11.1.12 |
Check supported HTTP Methods
1 2 |
curl -X OPTIONS http://10.11.1.12 -v |
Check HTTP Vulns with NMAP
1 2 3 |
nmap --script http-vuln* -p 80 10.11.1.12 nmap --script=(http* or ssl*) and not (broadcast or dos or external or http-slowloris* or fuzzer) -p 80,443 10.11.1.12 |