1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/amass-enum.md
Vitor Henrique 814e511bae
pages*: add missing mnemonics (part 1) (#12143)
* pages*: add missing mnemonics

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-02-09 20:04:08 +05:30

672 B

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 [d]omain:

amass enum -passive -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:

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}}