Merge pull request #442 from taythebot/master
Add http-proxy flag and C99 to README.mddnsrepo-source
commit
89d9d308cc
50
README.md
50
README.md
|
@ -53,30 +53,31 @@ subfinder -h
|
||||||
```
|
```
|
||||||
This will display help for the tool. Here are all the switches it supports.
|
This will display help for the tool. Here are all the switches it supports.
|
||||||
|
|
||||||
| Flag | Description | Example |
|
| Flag | Description | Example |
|
||||||
| ---------------- | ---------------------------------------------------------- | -------------------------------------- |
|
| ---------------- | ---------------------------------------------------------- | --------------------------------------------|
|
||||||
| -all | Use all sources (slow) for enumeration | subfinder -d uber.com -all |
|
| -all | Use all sources (slow) for enumeration | subfinder -d uber.com -all |
|
||||||
| -config | Configuration file for API Keys, etc | subfinder -config config.yaml |
|
| -config | Configuration file for API Keys, etc | subfinder -config config.yaml |
|
||||||
| -d | Domain to find subdomains for | subfinder -d uber.com |
|
| -d | Domain to find subdomains for | subfinder -d uber.com |
|
||||||
| -dL | File containing list of domains to enumerate | subfinder -dL hackerone-hosts.txt |
|
| -dL | File containing list of domains to enumerate | subfinder -dL hackerone-hosts.txt |
|
||||||
| -exclude-sources | List of sources to exclude from enumeration | subfinder -exclude-sources archiveis |
|
| -exclude-sources | List of sources to exclude from enumeration | subfinder -exclude-sources archiveis |
|
||||||
| -max-time | Minutes to wait for enumeration results (default 10) | subfinder -max-time 1 |
|
| -max-time | Minutes to wait for enumeration results (default 10) | subfinder -max-time 1 |
|
||||||
| -nC | Don't Use colors in output | subfinder -nC |
|
| -nC | Don't Use colors in output | subfinder -nC |
|
||||||
| -nW | Remove Wildcard & Dead Subdomains from output | subfinder -nW |
|
| -nW | Remove Wildcard & Dead Subdomains from output | subfinder -nW |
|
||||||
| -ls | List all available sources | subfinder -ls |
|
| -ls | List all available sources | subfinder -ls |
|
||||||
| -o | File to write output to (optional) | subfinder -o output.txt |
|
| -o | File to write output to (optional) | subfinder -o output.txt |
|
||||||
| -oD | Directory to write enumeration results to (optional) | subfinder -oD ~/outputs |
|
| -oD | Directory to write enumeration results to (optional) | subfinder -oD ~/outputs |
|
||||||
| -oI | Write output in Host,IP format | subfinder -oI |
|
| -oI | Write output in Host,IP format | subfinder -oI |
|
||||||
| -oJ | Write output in JSON lines Format | subfinder -oJ |
|
| -oJ | Write output in JSON lines Format | subfinder -oJ |
|
||||||
| -r | Comma-separated list of resolvers to use | subfinder -r 1.1.1.1,1.0.0.1 |
|
| -r | Comma-separated list of resolvers to use | subfinder -r 1.1.1.1,1.0.0.1 |
|
||||||
| -rL | Text file containing list of resolvers to use | subfinder -rL resolvers.txt |
|
| -rL | Text file containing list of resolvers to use | subfinder -rL resolvers.txt |
|
||||||
| -recursive | Enumeration recursive subdomains | subfinder -d news.yahoo.com -recursive |
|
| -recursive | Enumeration recursive subdomains | subfinder -d news.yahoo.com -recursive |
|
||||||
| -silent | Show only subdomains in output | subfinder -silent |
|
| -silent | Show only subdomains in output | subfinder -silent |
|
||||||
| -sources | Comma separated list of sources to use | subfinder -sources shodan,censys |
|
| -sources | Comma separated list of sources to use | subfinder -sources shodan,censys |
|
||||||
| -t | Number of concurrent goroutines for resolving (default 10) | subfinder -t 100 |
|
| -t | Number of concurrent goroutines for resolving (default 10) | subfinder -t 100 |
|
||||||
| -timeout | Seconds to wait before timing out (default 30) | subfinder -timeout 30 |
|
| -timeout | Seconds to wait before timing out (default 30) | subfinder -timeout 30 |
|
||||||
| -v | Show Verbose output | subfinder -v |
|
| -http-proxy | Http Proxy | subfinder -http-proxy http://localhost:3128 |
|
||||||
| -version | Show current program version | subfinder -version |
|
| -v | Show Verbose output | subfinder -v |
|
||||||
|
| -version | Show current program version | subfinder -version |
|
||||||
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
@ -93,6 +94,7 @@ Subfinder requires **go1.14+** to install successfully. Run the following comman
|
||||||
Subfinder will work after using the installation instructions however to configure Subfinder to work with certain services, you will need to have setup API keys. The following services do not work without an API key:
|
Subfinder will work after using the installation instructions however to configure Subfinder to work with certain services, you will need to have setup API keys. The following services do not work without an API key:
|
||||||
|
|
||||||
- [Binaryedge](https://binaryedge.io)
|
- [Binaryedge](https://binaryedge.io)
|
||||||
|
- [C99](https://api.c99.nl/)
|
||||||
- [Certspotter](https://sslmate.com/certspotter/api/)
|
- [Certspotter](https://sslmate.com/certspotter/api/)
|
||||||
- [Censys](https://censys.io)
|
- [Censys](https://censys.io)
|
||||||
- [Chaos](https://chaos.projectdiscovery.io)
|
- [Chaos](https://chaos.projectdiscovery.io)
|
||||||
|
|
Loading…
Reference in New Issue