πŸ’‘
cheatsheets
  • πŸ‘‹Introduction
  • πŸ‹Docker
  • πŸ’ͺBrute Force
    • Hydra
  • πŸ—οΈCryptography
    • Generate pub/priv key
  • 🐧Linux
    • Curl
    • Debian
    • Fail2Ban
    • Find
    • Grep & Co
    • Netstat
    • ps
    • pdfcrack
    • qpdf
    • Rsync
    • Scp
    • Tmux
    • Ufw
    • Vim
  • 🐍Python
    • Files Handling
    • Web
  • πŸ‘οΈRecon
    • Cewl
    • DNS
    • Host Discovery
    • nmap
    • Web
  • πŸ”Splunk
    • tstats
  • πŸ“‘SSH
  • πŸ•ΈοΈWeb
    • Gobuster
    • OWASP
    • SQLi
      • Resources
  • ⛏️Resources
    • πŸ“‘Cheatsheets
    • πŸ‹οΈTrainings
Powered by GitBook
On this page
  • Directory and Files Enumeration
  • DNS
  • Vhost
  1. Web

Gobuster

Directory and Files Enumeration

gobuster dir -u https://example.com -w ~/wordlists/shortlist.txt -x php,txt -b 404,301 -s 200
# -b exclude code ; -s include only code ; -l to have content length

DNS

gobuster dns -d mydomain.com -w ~/wordlists/subdom.txt -i
# -i give the ip

Vhost

gobuster vhost -u mydomain.com -w ~/wordlists/subdoms.txt
PreviousSSHNextOWASP

Last updated 10 months ago

πŸ•ΈοΈ