1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-11 00:55:41 +02:00

autorecon: add page (#12631)

* autorecon: add page

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
Fazle Arefin 2024-04-11 01:36:50 +10:00 committed by GitHub
parent 3a70c86900
commit 247aa11b1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

20
pages/linux/autorecon.md Normal file
View file

@ -0,0 +1,20 @@
# 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,...}}`