From be96b13f3c0713b49c97ad880c4da93a39727309 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Wed, 7 Feb 2024 17:07:19 +1100 Subject: [PATCH] naabu: add page (#12206) * naabu: add page --------- Co-authored-by: K.B.Dharun Krishna --- pages/common/naabu.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages/common/naabu.md diff --git a/pages/common/naabu.md b/pages/common/naabu.md new file mode 100644 index 000000000..e4fe1a827 --- /dev/null +++ b/pages/common/naabu.md @@ -0,0 +1,29 @@ +# naabu + +> A fast port scanner written in Go with a focus on reliability and simplicity. +> Note: Some features are only activated when `naabu` is run with root privileges such as SYN scan. +> More information: . + +- Run a SYN scan against default (top 100) ports of remote host: + +`sudo naabu -host {{host}}` + +- Display available network interfaces and public IP address of the local host: + +`naabu -interface-list` + +- Scan all ports of the remote host (CONNECT scan without `sudo`): + +`naabu -p - -host {{host}}` + +- Scan the top 1000 ports of the remote host: + +`naabu -top-ports 1000 -host {{host}}` + +- Scan TCP ports 80,443 and UDP port 53 of the remote host: + +`naabu -p 80,443,u:53 -host {{host}}` + +- Show CDN type the remote host is using, if any: + +`naabu -p 80,443 -cdn -host {{host}}`