Created
August 7, 2020 12:15
-
-
Save MShahine/d5200ef39d149475b53ba100ab52785b to your computer and use it in GitHub Desktop.
Recon Tip for : -Subdomain enumeration -Finding endpoints -Finding parameters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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