OSCP+ Notes
  • 📙oscp+ notes
  • Reconnaissance
    • Discovery
      • DNS Hostname
      • Subdomain Discovery
      • Directory Discovery
    • Host Scan
      • Nmap
  • Enumeration
    • Services
      • FTP
      • SSH
  • Misc
    • SSH
    • RDP
    • File Transfer
    • Full Interactive Shell
    • Pivoting and Tunneling
Powered by GitBook
On this page
  • FFUF
  • Gobuster
  1. Reconnaissance
  2. Discovery

Directory Discovery

FFUF

ffuf -u http://website.com/FUZZ -w /usr/share/wordlists/dirb/big.txt

Using specific extension

ffuf -w wordlist.txt -u http://website.com/FUZZ -e .aspx,.html,.php,.txt

Gobuster

gobuster dir -u http://shop.trickster.htb/ -w raft-medium-words.txt

We can also use -b tag to blacklist status codes

PreviousSubdomain DiscoveryNextHost Scan

Last updated 6 months ago