Skip to main content

Nikto

Nikto, a powerful web server scanner, to scan for vulnerabilities by testing against thousands of known issues. It is particularly effective at detecting outdated software, insecure configurations, and common CVEs.

nikto -h https://<HOST_IP> -p 8080 -output nikto_scan.txt -useproxy http://127.0.0.1:8080
# -h https... - Detects SSL-specific vulnerabilities
# -p 8080 - Often CTFs don't run on standard ports
# -useproxy - Intercept and analyze requests manually
# -output - Save output to file for reporting
info

Use Nikto findings to feed into further attacks with tools like gobuster, wpscan or custom scripts.

warning

Nikto generates a lot of noise and is easily detected. Do not use it in stealth or red team operations unless explicitly permitted.

  • Nikto - web server scanner