Skip to content

Instantly share code, notes, and snippets.

@drsh0
Last active December 24, 2020 08:22
Show Gist options
  • Save drsh0/52127390651b7ff22e0a2f95fe80bbfe to your computer and use it in GitHub Desktop.
Save drsh0/52127390651b7ff22e0a2f95fe80bbfe to your computer and use it in GitHub Desktop.
Web Recon Checklist

HTTP/HTTPS

  • robots.txt
  • security.txt
  • check directory list
  • fuzz common directories
  • curl -H "Host: {{random}}"
  • vhost enumeration via Host headers
  • default HTTP and TLS vhost e.g. visit website's IP address
  • view TLS certs for alt DNS names
  • inspect headers
  • continously hit load balancers to see other hosts e.g while true; do curl {{loadbalanderURI}}; done

DNS

  • check TXT records via dig -t txt {{address}}
  • zone transfer via `dig axfr @{{nameserver}} {{domain}}
  • check for internal zones as well via zone transfer e.g. int
  • check BIND version using dig @{{nameserver}} version.bind txt chaos

GIT

  • search for public repos, orgs AND their users
  • Show emails used within repo: git shortlog --summary --numbered --email

source: https://pentesterlab.com/badges/recon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment