Information Gatheringnetwork-scanningwifi-scanningpacket-dumppingtui

Netscanner

Netscanner is a network scanner and diagnostic tool featuring a modern TUI. It supports listing hardware interfaces, WiFi scanning, pinging CIDR ranges, and packet dumping for IPv4 and IPv6 protocols.

Description

Netscanner provides a comprehensive set of network diagnostic features through an intuitive text-based user interface (TUI). Users can list hardware interfaces, switch active interfaces for scanning and packet dumping, scan WiFi networks with signal strength charts, ping IPv4 CIDR ranges displaying hostnames, OUI, and MAC addresses, and perform packet dumps for TCP, UDP, ICMP, ARP (IPv4) and ICMP6 (IPv6), with start/pause functionality.

This tool is ideal for network administrators, penetration testers, and security researchers needing quick insights into local network topology, wireless environments, and traffic analysis without complex command-line scripting. Its TUI simplifies switching between tasks like interface management and real-time monitoring.

Netscanner runs on Kali Linux with minimal dependencies and a compact installed size of 11.86 MB, making it lightweight for live environments or quick deployments.

How It Works

Netscanner operates via a modern TUI, enabling interactive selection of hardware interfaces for scanning and packet capture. It scans WiFi networks and visualizes signal strengths with charts, pings IPv4 CIDR ranges to resolve hostnames, OUIs, and MAC addresses, and captures packets using protocols like TCP, UDP, ICMP, ARP for IPv4, and ICMP6 for IPv6. Features include tick-rate and frame-rate controls for UI responsiveness, with pause/resume for dumps.

Installation

bash
sudo apt install netscanner

Flags

-t, --tick-rate <FLOAT>Tick rate, i.e. number of ticks per second [default: 1]
-f, --frame-rate <FLOAT>Frame rate, i.e. number of frames per second [default: 10]
-h, --helpPrint help
-V, --versionPrint version

Examples

Display help information for the tool
netscanner -h
Launch the netscanner TUI for interactive network scanning and diagnostics
netscanner
Run netscanner with tick rate set to 2 ticks per second
netscanner -t 2
Run netscanner with frame rate set to 20 frames per second
netscanner -f 20
Run netscanner with default tick rate (1) and frame rate (10)
netscanner -t 1 -f 10
Display the version of netscanner
netscanner -V
Updated 2026-04-16kali.org ↗