Update cheatsheets

This commit is contained in:
ivuorinen
2024-04-11 00:13:54 +00:00
parent 4226233c3d
commit ce27afb6af
5 changed files with 131 additions and 4 deletions

25
tldr/linux/autorecon Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# autorecon
> A multi-threaded network reconnaissance tool which performs automated enumeration of services.
> More information: <https://github.com/Tib3rius/AutoRecon>.
- Perform reconnaissance on target host(s) (detailed scan results will be dumped in `./results`):
`sudo autorecon {{host_or_ip1,host_or_ip2,...}}`
- Perform reconnaissance on [t]arget(s) from a file:
`sudo autorecon --target-file {{path/to/file}}`
- [o]utput results to a different directory:
`sudo autorecon --output {{path/to/results}} {{host_or_ip1,host_or_ip2,...}}`
- Limit scanning to specific [p]orts and protocols (`T` for TCP, `U` for UDP, `B` for both):
`sudo autorecon --ports {{T:21-25,80,443,U:53,B:123}} {{host_or_ip1,host_or_ip2,...}}`