GoRecon
A simple Go wrapper around various tools used for gathering subdomains on bug bounty targets. Run the tools concurrently
and get the subdomains for given target,outputted to a single file and sorted for unique subdomains only.
Special thanks to the creators of the tools used in this program:
- OWASP
- Projectdiscovery
- Tomnomnom
Usage
gorecon -h
This will display help for the tool.
| Flag |
Description |
Example |
| -d |
Target domain (required) |
gorecon -d example.com |
| -n |
Only use sources that don't require API key |
gorecon -d example.com -n |
| -o |
Specify output file for subdomains |
gorecon -d example.com -o subs.txt (Default: subdomains.txt |
Installation
GoRecon requires go1.14+ to install successfully. Run the following command to get the repo -
▶ GO111MODULE=on go get -v github.com/d82r/GoRecon
Running GoRecon
To run the tool on a target, just use the following command.
▶ gorecon -d example.com
The -n command can be used to run the tool without burning api keys
▶ gorecon -d example.com -n
The -o command can be used to specify an output file.
▶ gorecon -d example.com -o output.txt