From 247aa11b1f2a1b4460367746232faf6d5ec9de53 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Thu, 11 Apr 2024 01:36:50 +1000 Subject: [PATCH] autorecon: add page (#12631) * autorecon: add page --------- Co-authored-by: Juri Dispan --- pages/linux/autorecon.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/linux/autorecon.md diff --git a/pages/linux/autorecon.md b/pages/linux/autorecon.md new file mode 100644 index 0000000000..9ea6d56e75 --- /dev/null +++ b/pages/linux/autorecon.md @@ -0,0 +1,20 @@ +# autorecon + +> A multi-threaded network reconnaissance tool which performs automated enumeration of services. +> More information: . + +- 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,...}}`