2020-11-06 10:59:13 +00:00
|
|
|
# amass enum
|
|
|
|
|
|
|
|
> Find subdomains of a domain.
|
2024-03-16 18:33:07 +00:00
|
|
|
> More information: <https://github.com/owasp-amass/amass/blob/master/doc/user_guide.md#the-enum-subcommand>.
|
2020-11-06 10:59:13 +00:00
|
|
|
|
2024-03-16 18:33:07 +00:00
|
|
|
- Find (passively) subdomains of a [d]omain:
|
2020-11-06 10:59:13 +00:00
|
|
|
|
2024-03-16 18:33:07 +00:00
|
|
|
`amass enum -d {{domain_name}}`
|
2020-11-06 10:59:13 +00:00
|
|
|
|
2024-02-09 14:34:08 +00:00
|
|
|
- Find subdomains of a [d]omain and actively verify them attempting to resolve the found subdomains:
|
2020-11-06 10:59:13 +00:00
|
|
|
|
|
|
|
`amass enum -active -d {{domain_name}} -p {{80,443,8080}}`
|
|
|
|
|
2024-03-16 18:33:07 +00:00
|
|
|
- Do a brute force search for sub[d]omains:
|
2020-11-06 10:59:13 +00:00
|
|
|
|
|
|
|
`amass enum -brute -d {{domain_name}}`
|
|
|
|
|
|
|
|
- Save the results to a text file:
|
|
|
|
|
|
|
|
`amass enum -o {{output_file}} -d {{domain_name}}`
|
|
|
|
|
2024-03-16 18:33:07 +00:00
|
|
|
- Save terminal output to a file and other detailed output to a directory:
|
2020-11-06 10:59:13 +00:00
|
|
|
|
2024-03-16 18:33:07 +00:00
|
|
|
`amass enum -o {{output_file}} -dir {{path/to/directory}} -d {{domain_name}}`
|
|
|
|
|
|
|
|
- List all available data sources:
|
|
|
|
|
|
|
|
`amass enum -list`
|