naabu: add page (#12206)

* naabu: add page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
Fazle Arefin 2024-02-07 17:07:19 +11:00 committed by GitHub
parent 8fbe33007e
commit be96b13f3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 29 additions and 0 deletions

29
pages/common/naabu.md Normal file
View File

@ -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: <https://github.com/projectdiscovery/naabu>.
- 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}}`