Update cheatsheets

This commit is contained in:
ivuorinen
2024-03-17 00:14:35 +00:00
parent 1c7d3e3ebc
commit fb68c8db78
8 changed files with 45 additions and 25 deletions

View File

@@ -6,17 +6,17 @@ source: https://github.com/tldr-pages/tldr.git
# amass enum
> Find subdomains of a domain.
> More information: <https://github.com/OWASP/Amass/blob/master/doc/user_guide.md#the-enum-subcommand>.
> More information: <https://github.com/owasp-amass/amass/blob/master/doc/user_guide.md#the-enum-subcommand>.
- Passively find subdomains of a [d]omain:
- Find (passively) subdomains of a [d]omain:
`amass enum -passive -d {{domain_name}}`
`amass enum -d {{domain_name}}`
- Find subdomains of a [d]omain 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:
- Do a brute force search for sub[d]omains:
`amass enum -brute -d {{domain_name}}`
@@ -24,6 +24,10 @@ source: https://github.com/tldr-pages/tldr.git
`amass enum -o {{output_file}} -d {{domain_name}}`
- Save the results to a database:
- Save terminal output to a file and other detailed output to a directory:
`amass enum -o {{output_file}} -dir {{path/to/database_directory}}`
`amass enum -o {{output_file}} -dir {{path/to/directory}} -d {{domain_name}}`
- List all available data sources:
`amass enum -list`