Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
amass-intel Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# amass intel
> Collect open source intel on an organisation like root domains and ASNs.
> More information: <https://github.com/OWASP/Amass/blob/master/doc/user_guide.md#the-intel-subcommand>.
- Find root domains in an IP address range:
`amass intel -addr {{192.168.0.1-254}}`
- Use active recon methods:
`amass intel -active -addr {{192.168.0.1-254}}`
- Find root domains related to a [d]omain:
`amass intel -whois -d {{domain_name}}`
- Find ASNs belonging to an organisation:
`amass intel -org {{organisation_name}}`
- Find root domains belonging to a given Autonomous System Number:
`amass intel -asn {{asn}}`
- Save results to a text file:
`amass intel -o {{output_file}} -whois -d {{domain_name}}`