iot-attacker

iot-attacker is an agent for Claude Code from mukul975/Threatswarm. It costs 93 tokens per session (3,310 once invoked), scanned B, original, MIT.

An IoT and embedded-device security specialist for examining hardware, firmware, network protocols, and device interfaces.

In plain words
What is it for?
It is for firmware extraction and analysis, hardcoded-credential checks, UART or JTAG testing, MQTT or CoAP testing, and OT/ICS security assessment.
Why use it?
It helps uncover weaknesses in connected devices while accounting for risks such as disrupting or damaging equipment.

Agent for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/mukul975/threatswarm/iot-attacker
Clone the repo
git clone --depth 1 https://github.com/mukul975/Threatswarm

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for iot-attacker

README.md
[![agentmods](https://agentmods.dev/badge/agents/mukul975/threatswarm/iot-attacker.svg)](https://agentmods.dev/agents/mukul975/threatswarm/iot-attacker)
Your own site
<a href="https://agentmods.dev/agents/mukul975/threatswarm/iot-attacker"><img src="https://agentmods.dev/badge/agents/mukul975/threatswarm/iot-attacker.svg" alt="Measured on agentmods" height="20"></a>
Per session 93 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,310 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00093 $0.03310
Opus 5 $0.00046 $0.01655
Sonnet 5 $0.00019 $0.00662
Haiku 4.5 $0.00009 $0.00331

Measured 5d ago against content hash b0c54acb66c1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

iot-attacker scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Enumerates the file system for secretsmediumData exfiltration

Searching home directories for .env, .ssh, .aws or credential files is reconnaissance for credential theft.

find $FS_ROOT \( -name "*.key" -o -name "*.pem" -o -name "server.key" \) 2>/dev/null | \

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://download.$VENDOR.com/firmware/$MODEL-latest.bin" \
.claude/agents/iot-attacker.md · 291 lines

How it starts

The opening of the file, as written. The whole thing — 291 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cybersecurity Skills (Invoke First)

Before starting IoT or firmware testing, invoke these skills via the Skill tool:

  • cybersecurity-skills:performing-iot-security-assessment
  • cybersecurity-skills:performing-firmware-extraction-with-binwalk
  • cybersecurity-skills:performing-firmware-malware-analysis
  • cybersecurity-skills:performing-plc-firmware-security-analysis
  • cybersecurity-skills:performing-ot-network-security-assessment
  • cybersecurity-skills:performing-ot-vulnerability-scanning-safely
  • cybersecurity-skills:monitoring-scada-modbus-traffic-anomalies
  • cybersecurity-skills:detecting-modbus-command-injection-attacks

Scope Enforcement

Verify IoT device model/serial or IP address is in scope.txt. Physical access attacks (UART/JTAG) require device to be explicitly in scope. OT/ICS attacks MUST use passive monitoring only — NEVER send commands without explicit authorization. Some attacks can brick devices or disrupt operations.

Firmware Acquisition

mkdir -p evidence/$(date +%Y%m%d)/$TARGET/iot/{firmware,fs,strings,network,hardware}

# Method 1: Download from vendor website
# Search: site:vendor.com firmware download filetype:bin OR filetype:img
curl -s "https://download.$VENDOR.com/firmware/$MODEL-latest.bin" \
  -o evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1

# Method 2: Extract from running device via TFTP
# On device (if shell available): tftp -g -r /tmp/firmware.bin $LHOST

# Method 3: Intercept OTA update via mitmproxy
# mitmproxy on device network path, trigger firmware check in app

# Verify firmware download
sha256sum evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin | \
  tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/sha256.txt
file evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1 | \
  tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/file_type.txt

Firmware Analysis

FIRMWARE=evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin

# Entropy analysis (high entropy = compressed/encrypted)
binwalk -E $FIRMWARE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/entropy.txt

# Extract embedded filesystems, archives, and bootloaders
binwalk \
  -e $FIRMWARE \
  -C evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
  --run-as=root \
  2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/binwalk_extract.log

FS_ROOT=$(find evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
  -name "squashfs-root" -o -name "rootfs" -o -name "_firmware.bin.extracted" \
  2>/dev/null | head -1)
echo "[*] Filesystem root: $FS_ROOT"

# Search for credential files
find $FS_ROOT -name "passwd" -o -name "shadow" -o -name "etc/passwd" 2>/dev/null | \
  xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/passwd.txt

find $FS_ROOT \( -name "*.conf" -o -name "*.config" -o -name "*.cfg" -o -name "*.ini" \) \
  2>/dev/null | head -50 | \
  xargs grep -l "password\|passwd\|secret\|credential" 2>/dev/null | \
  xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/config_creds.txt

# Hardcoded strings analysis
find $FS_ROOT -type f -executable 2>/dev/null | head -20 | \
  xargs strings 2>/dev/null | \
  grep -iE "password|passwd|secret|admin|root|default|1234|key=" | \
  sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/hardcoded_creds.txt

# Find SSL/TLS private keys in firmware
find $FS_ROOT \( -name "*.key" -o -name "*.pem" -o -name "server.key" \) 2>/dev/null | \
  xargs ls -la 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/ssl_keys.txt

# Find hardcoded API keys and tokens
strings $FIRMWARE 2>/dev/null | \
  grep -iE "(api_key|apikey|token|secret)[[:space:]]*[=:][[:space:]]*['\"]?[A-Za-z0-9_-]{20,}" | \
  sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/api_keys.txt

# Check for debug interfaces
strings $FIRMWARE 2>/dev/null | \
  grep -iE "telnet|ssh|debug|backdoor|uart|console|shell|/bin/sh|/bin/bash" | \
  sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/debug_strings.txt

# Identify web server and scripts
find $FS_ROOT -name "*.cgi" -o -name "*.php" -o -name "*.lua" -o -name "*.asp" 2>/dev/null | \
  tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/web_scripts.txt

Read the full file on GitHub · 291 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 291 lines · 0 tokens per session scan B b0c54acb66c1

Subscribe to this mod's changes

iot-attacker is an agent published in the GitHub repository mukul975/Threatswarm (77 stars, last pushed 4mo ago), licensed MIT. It adds 93 tokens to every session and 3,310 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 2 findings (enumerates the file system for secrets, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

iot-pentester

Delegates to this agent when the user wants authorized security testing of IoT/embedded devices — firmware extraction and analysis, hardware interfaces (UART/JTAG/SPI), radio protocols (BLE/Zigbee/sub-GHz), companion-app and cloud-API surface, and default-credential review. Distinct from wireless-pentester (Wi-Fi/RF…

0xSteph/pentest-ai-agents · 94 tokens

scada-attacker

Delegates to this agent when the user wants authorized ICS/OT/SCADA security testing — Modbus/DNP3/S7comm/EtherNet-IP/OPC-UA protocol analysis, PLC/HMI/RTU enumeration, and Purdue-model attack-path mapping. Passive-first and safety-gated; never targets live safety-of-life processes without a safety review.

0xSteph/pentest-ai-agents · 77 tokens

token-auditor

Fast meme coin and token security auditor. Checks 8 token-specific bug classes (hidden mint, honeypot, fee manipulation, LP lock bypass, bonding curve exploits, authority retention, fake renounce, sandwich/MEV amplification). Runs tokenscanner.py for automated red flag detection. Covers EVM (Solidity) and Solana…

Awarexone/Agentic-Bug-Hunter · 97 tokens

validator

Finding validator. Runs the 7-Question Gate and 4-gate checklist on a described finding. Kills weak/theoretical findings fast before report writing. Prevents N/A submissions. Use before writing any report — describe the finding and this agent decides PASS, KILL, or DOWNGRADE with explanation.

Awarexone/Agentic-Bug-Hunter · 64 tokens

web3-auditor

Smart contract security auditor. Checks 10 bug classes in order of frequency (accounting desync 28%, access control 19%, incomplete path 17%, off-by-one 22% of Highs, oracle errors, ERC4626 attacks, reentrancy, flash loan oracle manipulation, signature replay, proxy/upgrade issues). Applies pre-dive kill signals…

Awarexone/Agentic-Bug-Hunter · 101 tokens

recon-ranker

Attack surface ranking agent. Takes recon output and hunt memory, produces a prioritized attack plan. Ranks by IDOR likelihood, API surface, tech stack match with past successes, feature age, and nuclei findings. Use after recon to decide what to test first.

Awarexone/Agentic-Bug-Hunter · 57 tokens