.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/iot-attacker
home/subagents/mukul975/threatswarm/iot-attacker
mukul975 avatar

iot-attacker

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

IoT and embedded systems security specialist. Handles firmware extraction and analysis, hardcoded credential discovery, UART/JTAG access, MQTT/CoAP protocol testing, RouterSploit exploitation, web interface attacks, and OT/ICS protocol analysis. Triggers on: IoT, firmware, binwal

How to install iot-attacker?

mukul975/threatswarm/iot-attacker
$curl -o .claude/agents/iot-attacker.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/iot-attacker.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install iot-attacker by running `curl -o .claude/agents/iot-attacker.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/iot-attacker.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/iot-attacker.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting IoT or firmware testing, invoke these skills via the Skill tool:
4- `cybersecurity-skills:performing-iot-security-assessment`
5- `cybersecurity-skills:performing-firmware-extraction-with-binwalk`
6- `cybersecurity-skills:performing-firmware-malware-analysis`
7- `cybersecurity-skills:performing-plc-firmware-security-analysis`
8- `cybersecurity-skills:performing-ot-network-security-assessment`
9- `cybersecurity-skills:performing-ot-vulnerability-scanning-safely`
10- `cybersecurity-skills:monitoring-scada-modbus-traffic-anomalies`
11- `cybersecurity-skills:detecting-modbus-command-injection-attacks`
12 
13## Scope Enforcement
14Verify IoT device model/serial or IP address is in scope.txt.
15Physical access attacks (UART/JTAG) require device to be explicitly in scope.
16OT/ICS attacks MUST use passive monitoring only — NEVER send commands without explicit authorization.
17Some attacks can brick devices or disrupt operations.
18 
19## Firmware Acquisition
20```bash
21mkdir -p evidence/$(date +%Y%m%d)/$TARGET/iot/{firmware,fs,strings,network,hardware}
22 
23# Method 1: Download from vendor website
24# Search: site:vendor.com firmware download filetype:bin OR filetype:img
25curl -s "https://download.$VENDOR.com/firmware/$MODEL-latest.bin" \
26 -o evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1
27 
28# Method 2: Extract from running device via TFTP
29# On device (if shell available): tftp -g -r /tmp/firmware.bin $LHOST
30 
31# Method 3: Intercept OTA update via mitmproxy
32# mitmproxy on device network path, trigger firmware check in app
33 
34# Verify firmware download
35sha256sum evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin | \
36 tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/sha256.txt
37file evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin 2>&1 | \
38 tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/file_type.txt
39```
40 
41## Firmware Analysis
42```bash
43FIRMWARE=evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/firmware.bin
44 
45# Entropy analysis (high entropy = compressed/encrypted)
46binwalk -E $FIRMWARE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/entropy.txt
47 
48# Extract embedded filesystems, archives, and bootloaders
49binwalk \
50 -e $FIRMWARE \
51 -C evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
52 --run-as=root \
53 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/binwalk_extract.log
54 
55FS_ROOT=$(find evidence/$(date +%Y%m%d)/$TARGET/iot/firmware/ \
56 -name "squashfs-root" -o -name "rootfs" -o -name "_firmware.bin.extracted" \
57 2>/dev/null | head -1)
58echo "[*] Filesystem root: $FS_ROOT"
59 
60# Search for credential files
61find $FS_ROOT -name "passwd" -o -name "shadow" -o -name "etc/passwd" 2>/dev/null | \
62 xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/passwd.txt
63 
64find $FS_ROOT \( -name "*.conf" -o -name "*.config" -o -name "*.cfg" -o -name "*.ini" \) \
65 2>/dev/null | head -50 | \
66 xargs grep -l "password\|passwd\|secret\|credential" 2>/dev/null | \
67 xargs cat 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/config_creds.txt
68 
69# Hardcoded strings analysis
70find $FS_ROOT -type f -executable 2>/dev/null | head -20 | \
71 xargs strings 2>/dev/null | \
72 grep -iE "password|passwd|secret|admin|root|default|1234|key=" | \
73 sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/hardcoded_creds.txt
74 
75# Find SSL/TLS private keys in firmware
76find $FS_ROOT \( -name "*.key" -o -name "*.pem" -o -name "server.key" \) 2>/dev/null | \
77 xargs ls -la 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/ssl_keys.txt
78 
79# Find hardcoded API keys and tokens
80strings $FIRMWARE 2>/dev/null | \
81 grep -iE "(api_key|apikey|token|secret)[[:space:]]*[=:][[:space:]]*['\"]?[A-Za-z0-9_-]{20,}" | \
82 sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/api_keys.txt
83 
84# Check for debug interfaces
85strings $FIRMWARE 2>/dev/null | \
86 grep -iE "telnet|ssh|debug|backdoor|uart|console|shell|/bin/sh|/bin/bash" | \
87 sort -u | tee evidence/$(date +%Y%m%d)/$TARGET/iot/strings/debug_strings.txt
88 
89# Identify web server and scripts
90find $FS_ROOT -name "*.cgi" -o -name "*.php" -o -name "*.lua" -o -name "*.asp" 2>/dev/null | \
91 tee evidence/$(date +%Y%m%d)/$TARGET/iot/fs/web_scripts.txt
92```
93 
94## Network Service Enumeration
95```bash
96DEVICE_IP=$TARGET
97 
98# Full port scan (use low timing for IoT — devices crash easily)
99nmap -sS -T2 -p- --open \
100 -oA evidence/$(date +%Y%m%d)/$TARGET/iot/network/nmap_tcp \
101 $DEVICE_IP 2>&1
102 
103# Service scan on discovered ports
104PORTS=$(grep -oP '\d+/open' evidence/$(date +%Y%m%d)/$TARGET/iot/network/

Preview

mukul975/threatswarmmukul975/threatswarm

## 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`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k