Naabu

5 months ago 32
BOOK THIS SPACE FOR AD
ARTICLE AD

Naabu

Naabu is a fast port scanning tools and is built in Go language by project discovery Team. Naabu can do some passive scanning with the help of shodan. Firstly go to GitHub and install Naabu.

Github Link: https://github.com/projectdiscovery/naabu

Installation process in kali Linux :

Step 1: Install golang (Its mandatory).

Step 2: Run [ sudo apt install -y libpcap-dev ] in your kali Linux terminal.

Step 3: Run

[ go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest ]

Step 4 : Run [ mv go/bin/nabbu usr/bin ]

Now we can run naabu from anywhere.

Naabu Commands:

naabu — help

2. naabu -host example.com

3. naabu -p 80,443,21–23,u:53 -host example.com

4. naabu -host 127.0.0.0 -json [ get output in json format ]

5. echo example.com | naabu -silent | httpx -silent [ you can pipe the ports discovered by naabu to httpx ]

6. naabu -host example.com — passive [ For passive scan ]

7. echo 127.0.0.0 | naabu [ ip scan can show more option ]

8. echo 127.0.0.0 | nabbu -nmap-cli ‘nmap -sV’

Naabu cheat sheet : https://highon.coffee/blog/naabu-cheat-sheet/

Read Entire Article