-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathamass-enum
More file actions
24 lines (13 loc) · 658 Bytes
/
amass-enum
File metadata and controls
24 lines (13 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# amass enum
> Find subdomains of a domain.
> More information: <https://github.com/OWASP/Amass/blob/master/doc/user_guide.md#the-enum-subcommand>.
- Passively find subdomains of a domain:
amass enum -passive -d {{domain_name}}
- Find subdomains of a domain and actively verify them attempting to resolve the found subdomains:
amass enum -active -d {{domain_name}} -p {{80,443,8080}}
- Do a brute force search for subdomains:
amass enum -brute -d {{domain_name}}
- Save the results to a text file:
amass enum -o {{output_file}} -d {{domain_name}}
- Save the results to a database:
amass enum -o {{output_file}} -dir {{path/to/database_directory}}