Skip to content

Instantly share code, notes, and snippets.

@MShahine
Created August 7, 2020 12:15
Show Gist options
  • Save MShahine/d5200ef39d149475b53ba100ab52785b to your computer and use it in GitHub Desktop.
Save MShahine/d5200ef39d149475b53ba100ab52785b to your computer and use it in GitHub Desktop.
Recon Tip for : -Subdomain enumeration -Finding endpoints -Finding parameters
# Subdomain Enumeration
subfinder -d domain.com --silent | httprobe | tee -a subdomains.txt
amass enum --passive -d domain.com | httprobe | tee -a subdomains.txt
assetfinder -subs-only domain.com | httprobe | tee -a subdomains.txt
# Find Endpoints
cat subdomians.txt | waybackurls >> wayback.txt
cat subdomains.txt | hakrawler -depth 3 -plain >> spider.txt
# Find All params
python3 paramspider.py --domain domain.com --exclude svg,jpg,css,js --output domainParam.txt
cat subdomains.txt | waybackurls | grep "=" | tee -a domainParam.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment