πŸ”§Tools and their Uses

python3 takeover.py -l all.txt -v

dalfox file gf_xss.txt -w 50 --silence

breach-parse @gmail.com gmail.txt

Gau

xargs -a alive.txt -I@ sh -c 'gau --blacklist css,jpg,jpeg,JPEG,ott,svg,ttf,png,woff2,woff,eot,gif "@"' | tee -a gau.txt

Dirsearch

dirsearch -e php,asp,aspx,jsp,py,txt,conf,config,bak,backup,swp,old,db,sqlasp,aspx,aspx~,asp~,py,py~,rb,rb~,php,php~,bak,bkp,cache,cgi,conf,csv,html,inc,jar,js,json,jsp,jsp~,lock,log,rar,old,sql,sql.gz,sql.zip,sql.tar.gz,sql~,swp,swp~,tar,tar.bz2,tar.gz,txt,wadl,zip -i 200 β€” full-url -u https://target --deep-recursive

Masscan

masscan -p1–65535 -iL $TARGET_LIST β€” max-rate 10000 -oG $TARGET_OUTPUT

Nmap

nmap -S 192.168.0.1 -d β€” max-scan-delay 10 -oA logs/tcp-allports-%T-%D -iL tcp-allports-1M-ips β€” max-retries 1 β€” randomize-hosts -p- -PS21,22,23,25,53,80,443 -T4 β€” min-hostgroup 256

Subdomain Finder tools:

chaos , subfinder , finddomain, assetfinder, amass, crt.sh

Feroxbuster sorting result example:

Feroxbuster is powerful and may, with defaults, overload your server! Be mindful of your option flags: -L, -t, and --rate-limit are your friends. You may want to start slow with -L 1 -t 1 and a smaller wordlist to see how it goes.

  • egrep - regular expression to give only those urls which have 200 in the beginning of the line.

  • tr - trim the spaces

  • cut - give cut the delimeter of single space using -d " " and then it asks for the the filed number by -f 6

Sent the multiple urls to Burp or Zap using Command Line:

it will send all the urls requests to the configured proxy via web browser.

FFUF Usage:

User Agent:

Google Dorking (Information Gathering Tool)

Last updated