1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 11:46:01 +02:00
tldr/pages/common/subfinder.md

26 lines
625 B
Markdown
Raw Normal View History

2018-07-15 12:23:35 +02:00
# subfinder
> Discover valid subdomains for websites.
2018-07-15 12:23:35 +02:00
> Designed as a passive framework to be useful for bug bounties and safe for penetration testing.
> More information: <https://github.com/projectdiscovery/subfinder>.
2018-07-15 12:23:35 +02:00
- Find subdomains for a specific [d]omain:
2018-07-15 12:23:35 +02:00
`subfinder -d {{example.com}}`
- Show only the subdomains found:
`subfinder -silent -d {{example.com}}`
2018-07-15 12:23:35 +02:00
- Show only active subdomains:
2018-07-15 12:23:35 +02:00
`subfinder -nW -d {{example.com}}`
2018-07-15 12:23:35 +02:00
- Use all sources for enumeration:
2018-07-15 12:23:35 +02:00
`subfinder -all -d {{example.com}}`
2018-07-15 12:23:35 +02:00
- Use a given comma-separated list of [r]esolvers:
2018-07-15 12:23:35 +02:00
`subfinder -r {{8.8.8.8,1.1.1.1,...}} -d {{example.com}}`