NetProbe is a tool you can use to scan for devices on your network. The program sends ARP requests to any IP address on your network and lists the IP addresses, MAC addresses, manufacturers, and device models of the responding devices.
Features
- Scan for devices on a specified IP address or subnet
- Display the IP address, MAC address, manufacturer, and device model of discovered devices
- Live tracking of devices (optional)
- Save scan results to a file (optional)
- Filter by manufacturer (e.g., ‘Apple’) (optional)
- Filter by IP range (e.g., ‘192.168.1.0/24’) (optional)
- Scan rate in seconds (default: 5) (optional)
Download
You can download the program from the GitHub page.
$ git clone https://github.com/HalilDeniz/NetProbe.gitInstallation
To install the required libraries, run the following command:
$ pip install -r requirements.txtUsage
To run the program, use the following command:
$ python3 netprobe.py [-h] -t [...] -i [...] [-l] [-o] [-m] [-r] [-s]-h,--help: show this help message and exit-t,--target: Target IP address or subnet (default: 192.168.1.0/24)-i,--interface: Interface to use (default: None)-l,--live: Enable live tracking of devices-o,--output: Output file to save the results-m,--manufacturer: Filter by manufacturer (e.g., ‘Apple’)-r,--ip-range: Filter by IP range (e.g., ‘192.168.1.0/24’)-s,--scan-rate: Scan rate in seconds (default: 5)
Example:
$ python3 netprobe.py -t 192.168.1.0/24 -i eth0 -o results.txt -lHelp Menu
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3 netprobe.py –help usage: netprobe.py [-h] -t […] -i […] [-l] [-o] [-m] [-r] [-s] NetProbe: Network Scanner Tool options: -h, –help show this help message and exit -t [ …], –target [ …] Target IP address or subnet (default: 192.168.1.0/24) -i [ …], –interface [ …] Interface to use (default: None) -l, –live Enable live tracking of devices -o , –output Output file to save the results -m , –manufacturer Filter by manufacturer (e.g., ‘Apple’) -r , –ip-range Filter by IP range (e.g., ‘192.168.1.0/24’) -s , –scan-rate Scan rate in seconds (default: 5) ” dir=”auto”>
$ python3 netprobe.py --help
usage: netprobe.py [-h] -t [...] -i [...] [-l] [-o] [-m] [-r] [-s]NetProbe: Network Scanner Tool
options:
-h, --help show this help message and exit
-t [ ...], --target [ ...]
Target IP address or subnet (default: 192.168.1.0/24)
-i [ ...], --interface [ ...]
Interface to use (default: None)
-l, --live Enable live tracking of devices
-o , --output Output file to save the results
-m , --manufacturer Filter by manufacturer (e.g., 'Apple')
-r , --ip-range Filter by IP range (e.g., '192.168.1.0/24')
-s , --scan-rate Scan rate in seconds (default: 5)

