
Iotnet
- 35 installs
- 805 repo stars
- Updated June 1, 2026
- brownfinesecurity/iothackbot
iotnet is a Claude skill that drives the iotnet tool to analyze PCAP or live traffic, detect IoT protocols, and flag security vulnerabilities in IoT communications.
About
This skill drives the iotnet tool to analyze network traffic and detect IoT protocols and security vulnerabilities. A developer uses it on PCAP files or live captures to identify protocols like MQTT, CoAP, and Zigbee, and to flag unencrypted communications, weak authentication, and plaintext credentials. It reports vulnerabilities with severity levels and remediation guidance.
- Detects IoT protocols (MQTT, CoAP, Zigbee, ONVIF) in PCAP or live traffic
- Flags unencrypted traffic, weak authentication, and plaintext credentials
- Reports vulnerabilities with severity levels and remediation recommendations
Iotnet by the numbers
- 35 all-time installs (skills.sh)
- Ranked #1,458 of 2,203 Security skills by installs in the Skillselion catalog
- Data as of Jul 31, 2026 (Skillselion catalog sync)
iotnet capabilities & compatibility
- Capabilities
- iot protocol detection · traffic analysis · vulnerability detection · pcap analysis
- Use cases
- security audit
- Pricing
- Free
What iotnet says it does
IoT network traffic analyzer for detecting IoT protocols and identifying security vulnerabilities in network communications.
Detect weak authentication mechanisms
PCAP analysis does not require elevated privileges
npx skills add https://github.com/brownfinesecurity/iothackbot --skill iotnetAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 35 |
|---|---|
| repo stars | ★ 805 |
| Last updated | June 1, 2026 |
| Repository | brownfinesecurity/iothackbot ↗ |
What it does
Analyze IoT network traffic to detect protocols and flag unencrypted or weakly authenticated communications.
Who is it for?
Analyzing PCAPs or live captures to detect IoT protocols and flag unencrypted or weakly authenticated traffic.
When should I use this skill?
You need to analyze network traffic, identify IoT protocols, or assess network security of IoT devices.
What you get
A protocol-distribution report plus flagged vulnerabilities with severity and remediation recommendations.
By the numbers
- detects protocols including MQTT, CoAP, Zigbee, Z-Wave, ONVIF, UPnP/SSDP, and Modbus
- default live capture duration 30 seconds
Files
IoTNet - IoT Network Traffic Analyzer
You are helping the user analyze network traffic to detect IoT protocols and identify security vulnerabilities using the iotnet tool.
Tool Overview
IoTNet analyzes network packet captures (PCAPs) or performs live traffic capture to:
- Detect IoT-specific protocols (MQTT, CoAP, Zigbee, etc.)
- Identify security vulnerabilities in network traffic
- Analyze protocol distribution
- Find unencrypted communications
- Detect weak authentication mechanisms
- Identify insecure IoT device behaviors
Instructions
When the user asks to analyze network traffic, capture IoT traffic, or assess network security:
1. Determine input type:
- PCAP file analysis (offline)
- Live network capture (requires interface)
2. Gather requirements:
- For PCAP: Get file path(s)
- For live capture: Get network interface name and duration
- Ask about filtering needs (specific IPs, protocols)
- Check if custom detection rules are needed
3. Execute the analysis:
- Use the iotnet command from the iothackbot bin directory
Usage Modes
PCAP Analysis (Offline)
Analyze one or more existing packet capture files:
iotnet capture1.pcap capture2.pcapLive Capture
Capture and analyze traffic in real-time:
sudo iotnet -i eth0 -d 30Parameters
Input Options:
pcap_files: One or more PCAP files to analyze-i, --interface: Network interface for live capture
Filtering Options:
--ip: Filter traffic by IP address-c, --capture-filter: BPF syntax filter for live capture--display-filter: Wireshark display filter for PCAP analysis
Live Capture Options:
-d, --duration: Capture duration in seconds (default: 30)
Analysis Options:
--config: Custom IoT detection rules configuration file- Default:
config/iot/detection_rules.jsonin the iothackbot directory
Output Options:
--format text|json|quiet: Output format (default: text)-v, --verbose: Detailed output
Examples
Analyze a packet capture file:
iotnet /path/to/capture.pcapLive capture for 60 seconds on wifi interface:
sudo iotnet -i wlan0 -d 60Analyze traffic for specific IP:
iotnet capture.pcap --ip 192.168.1.100Live capture with BPF filter:
sudo iotnet -i eth0 -c "port 1883 or port 5683" -d 45Multiple PCAPs with custom config:
iotnet file1.pcap file2.pcap --config custom-rules.jsonFilter by display filter (Wireshark syntax):
iotnet capture.pcap --display-filter "mqtt or coap"Detected IoT Protocols
The tool can identify:
- MQTT: Message Queue Telemetry Transport
- CoAP: Constrained Application Protocol
- Zigbee: Low-power mesh networking
- Z-Wave: Home automation protocol
- ONVIF: IP camera protocol
- UPnP/SSDP: Universal Plug and Play
- Modbus: Industrial control protocol
- And many more (configurable)
Security Checks
IoTNet identifies vulnerabilities such as:
- Unencrypted MQTT traffic
- Missing TLS/encryption
- Weak or no authentication
- Plaintext credentials
- Insecure protocol versions
- Known vulnerable implementations
Output Information
Results include:
- Total packets analyzed
- Protocol distribution with percentages
- IoT findings with protocol details and packet info
- Vulnerabilities with severity levels (high/medium/low)
- Recommendations for remediation
Important Notes
- Live capture requires root/sudo privileges
- Requires network access to specified interface
- PCAP analysis does not require elevated privileges
- Detection rules can be customized in config file
- Supports standard PCAP format from tcpdump, Wireshark, etc.
Related skills
FAQ
Does it need root?
Live capture requires root/sudo privileges, but PCAP analysis does not require elevated privileges.
Which protocols does it detect?
MQTT, CoAP, Zigbee, Z-Wave, ONVIF, UPnP/SSDP, Modbus, and many more that are configurable.