Tools & Utility

Netdiscover

Lightweight and efficient ARP scanning tool for network discovery on local networks.

#network#arp#scanning#discovery

Netdiscover: Network Discovery Tool

Netdiscover is a passive and active network scanner that detects live hosts using ARP (Address Resolution Protocol) requests.

Why Use Netdiscover?

āœ” Lightweight and fast āœ” Passive mode for stealth āœ” No root required in passive mode āœ” Essential for pentesting āœ” Perfect for Wi-Fi and LAN scanning

Installation

bash
sudo apt update && sudo apt install netdiscover -y

Usage

bash
# Discover active hosts
sudo netdiscover -r 192.168.1.0/24

Passive mode (stealth)

sudo netdiscover -p

Specific IP range

sudo netdiscover -r 192.168.1.100-192.168.1.150

Specific interface

sudo netdiscover -i eth0 -r 192.168.1.0/24

Verbose

sudo netdiscover -v -r 192.168.1.0/24

Save results

sudo netdiscover -r 192.168.1.0/24 > scan_results.txt