ReconFTW automates the entire process of reconnaisance for you. It outperforms the work of subdomain enumeration along with various vulnerability checks and obtaining maximum information about your target.
ReconFTW uses lot of techniques (passive, bruteforce, permutations, certificate transparency, source code scraping, analytics, DNS records…) for subdomain enumeration which helps you getting the maximum and the most interesting subdomains so that you be ahead of the competition.
It also performs various vulnerability checks like XSS, Open Redirects, SSRF, CRLF, LFI, SQLi, SSL tests, SSTI, DNS zone transfers, and much more. Along with these, it performs OSINT techniques, directory fuzzing, dorking, ports scanning, screenshots, nuclei scan on your target.
So, what are you waiting for Go! Go! Go! boom
You can check out our wiki for the installation guide Installation Guide.
Requires Golang > 1.15.0+ installed and paths correctly set ($GOPATH, $GOROOT)
git clone https://github.com/six2dez/reconftw
cd reconftw/
./install.sh
./reconftw.sh -d target.com -r
A detailed explaintion of config file can be found here Configuration file
reconftw.cfg
file the whole execution of the tool can be controlled../reconftw.sh -d <domain> -p
Subcommand | Description | Example |
---|---|---|
-d | Single target domain | ./reconftw.sh -d target.com -r |
-l | Specify a list of target domains (targets.txt), reconFTW runs one time for each target | ./reconftw.sh -l targets.txt -r |
-m | For one target with multiple domains (tesla.com, teslamotors.com…) | ./reconftw.sh -m target -l domains.txt -r |
-i | Force include subdomain list (in.txt) | ./reconftw.sh -d target.com -i in.txt -r |
-x | Out of scope subdomain list (oos.txt) | ./reconftw.sh -d target.com -x oos.txt -r |
Subcommand | Description | Example |
---|---|---|
-r | Recon - Full recon process (only recon without attacks) | ./reconftw.sh -d target.com -r |
-s | Subdomains - Search subdomains, check tko and web probe | ./reconftw.sh -d target.com -s |
-p | Passive - Performs only passive steps | ./reconftw.sh -d target.com -p |
-w | Web - Just web checks from list provided | ./reconftw.sh -l targetlist.txt -w |
-a | All - Perform all checks and exploitations (a.k.a. YOLO) | ./reconftw.sh -d target.com -a |
-n | Osint - Just checks for public intel info | ./reconftw.sh -d target.com -n |
-h | Help - Show this help | ./reconftw.sh -h |
Subcommand | Description | Example |
---|---|---|
–deep | Deep scan (Enable some slow options for deeper scan) | ./reconftw.sh -d target.com [mode] --deep |
-v | VPS - Run reconftw with Axiom distributed VPS fleet | ./reconftw.sh -d target.com [mode] -v |
-f confile_file | Alternate reconftw.cfg file | ./reconftw.sh -d target.com [mode] -f config_file |
Subcommand | Description | Example |
---|---|---|
-o | Define the output folder | ./reconftw.sh -d target.com -r -o /output/directory/ |
To perform a full recon on single target
./reconftw.sh -d target.com -r
To perform a full recon on a list of targets
./reconftw.sh -l sites.txt -r -o /output/directory/
Perform full recon with more time intense tasks (VPS intended only)
./reconftw.sh -d target.com -r --deep -o /output/directory/
Perform recon in a multi domain target
./reconftw.sh -m company -l domains_list.txt -r
Perform recon with axiom integration
./reconftw.sh -d target.com -r -v
Perform all steps (whole recon + all attacks) a.k.a. YOLO mode
./reconftw.sh -d target.com -a
Show help section
./reconftw.sh -h