https://github.com/arkadiyt/bounty-targets-data
http://www.asnlookup.com/
| #!/bin/bash | |
| usage() { | |
| echo -e " | |
| #Options: | |
| -f, --file\t the domains list file | |
| -t, --thread\t the threads number | |
| -w, --wordlist\t the wordlist | |
| -o, --output\t the output directory | 
| Technology | |
| Subdomain Enumeration: | |
| # Basic usage | |
| subfinder -d example.com > example.com.subs | |
| # Recursive | |
| subfinder -d example.com -recursive -silent -t 200 -v -o example.com.subs | 
cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
 33927885 33m-subdomain-wordlist.txt| #!/bin/bash | |
| mainPATH=$(pwd)/ | |
| bar="---------------------------------------" | |
| echo -e "\n$bar\n\tSubdomains Enumerator\n$bar\n" | |
| read -p "Please enter target (i.e. site.com): " domain | |
| HOST=$domain | 
| #!/bin/bash | |
| OUT="~/nuclei-results/$1" | |
| TPL="~/nuclei-templates" | |
| mkdir -p ${OUT} | |
| SUB=$(subfinder -d $1 -silent | httprobe | tee ${OUT}/$1.txt) | |
| cd ${TPL}; git pull origin master && cd - | |
| for tpl in $(find $TPL -name "*.yaml"); do $GOPATH/bin/nuclei -l ${OUT}/$1.txt -t $tpl -o "${OUT}/$(basename "$tpl" .yaml).txt"; done | |
| find ${OUT} -name "*.txt" -size 0 -delete | 
| ### | |
| # ▶ go get -u github.com/lc/gau | |
| # ▶ go get -u github.com/tomnomnom/qsreplace | |
| # ▶ go get -u github.com/tomnomnom/hacks/kxss | |
| # ▶ go get -u github.com/hahwul/dalfox | |
| # ▶ git clone https://github.com/dwisiswant0/DSSS | |
| ### | |
| gauq() { | 
| #!/usr/bin/env bash | |
| # | |
| # Requirements | |
| # - Golang (for complete bug bounty tools, clone this https://github.com/x1mdev/ReconPi) | |
| # - gau (go get -u github.com/lc/gau) | |
| # - gf (go get -u github.com/tomnomnom/gf) | |
| # - Gf-Patterns (https://github.com/1ndianl33t/Gf-Patterns) - Read the README.md for how to copy json file to ~/.gf/ | |
| cd ~/.gf | |
| ls *.json > ~/patterns | 
| “Hackme.tld” API_key | |
| “Hackme.tld” secret_key | |
| “Hackme.tld” aws_key | |
| “Hackme.tld” Password | |
| “Hackme.tld” FTP | |
| “Hackme.tld” login | |
| “Hackme.tld” github_token | |
| “Hackme.tld” http:// & https:// | |
| “Hackme.tld” amazonaws | |
| “Hackme.tld” digitaloceanspaces | 
| #!/bin/bash | |
| if [ "$1" == "-h" ] || [ "$1" == "--help" ] || [[ $# -eq 0 ]] | |
| then | |
| me=`basename "$0"` | |
| echo "Find subdomains in PTR-archive http://ptrarchive.com/tools/search.htm?date=ALL&label=example.com" | |
| echo -e "Usage:\n\t./${me} [domain]" | |
| echo -e "Example:\n\t./${me} example.com" | |
| echo -e "\t./${me} -v example.com # Verbose output, includes IPs." | |
| exit 1 |