Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 713 Bytes

WEBSITE-SCANNING.md

File metadata and controls

29 lines (21 loc) · 713 Bytes

Website Scanning

Nikto

# Download Niko Webserver Scanner
git clone https://github.com/sullo/nikto
cd nikto/program

# Run scanner
./nikto.pl -h TARGET-HOST

Gobuster

# Install Gobuster tool
wget https://github.com/OJ/gobuster/releases/download/v3.6.0/gobuster_Linux_x86_64.tar.gz
tar -xzf gobuster_Linux_x86_64.tar.gz -C /tmp
sudo mv /tmp/gobuster /usr/local/bin/gobuster

# Enumerate directories and pages via brute-foce
gobuster dir -u TARGET-HOST -w SOME-DIR-WORDLIST.txt

# Enumerate directories and pages via brute-foce with extensions
gobuster dir -u TARGET-HOST -w SOME-DIR-WORDLIST.txt -x php,sh,txt,cgi,html,js,css,py

Gobuster Github