offensive-tools/recon/amass/SKILL.md
OWASP attack surface mapping tool for subdomain enumeration, DNS brute-force, and asset discovery using passive and active techniques. Use when asked for deep subdomain reconnaissance, attack surface mapping, DNS enumeration, or when subfinder alone is insufficient.
npx skillsauth add aeondave/malskill amassInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
OWASP Attack Surface Mapper — combines passive OSINT with active DNS enumeration.
# Passive enumeration
amass enum -passive -d example.com
# Active enumeration (DNS brute-force + passive)
amass enum -active -d example.com
# Save results to output directory
amass enum -d example.com -o subs.txt -dir amass_out/
| Command | Description |
|---------|-------------|
| enum | Subdomain enumeration (main workflow) |
| intel | Gather org/ASN/CIDR intelligence |
| viz | Generate graph visualizations |
| track | Track changes over time |
| db | Manage the Amass graph database |
| Flag | Description |
|------|-------------|
| -d <domain> | Target domain |
| -dL <file> | Domain list file |
| -passive | Passive only (no DNS probing) |
| -active | Active mode (DNS + cert grabbing) |
| -brute | DNS brute-force with wordlist |
| -w <wordlist> | Custom wordlist for brute-force |
| -r <resolvers> | Custom DNS resolvers file |
| -o <file> | Output file |
| -dir <path> | Output directory for all files |
| -config <file> | Config file (API keys, settings) |
| -timeout <mins> | Enum timeout in minutes |
Create ~/.config/amass/config.yaml:
scope:
domains:
- example.com
data_sources:
Shodan:
- apikey: YOUR_KEY
VirusTotal:
- apikey: YOUR_KEY
Censys:
- apikey: YOUR_ID
secret: YOUR_SECRET
# Passive recon only
amass enum -passive -d example.com -o passive_subs.txt
# Full active enum with brute-force
amass enum -active -brute -w /usr/share/wordlists/subdomains.txt -d example.com
# Org intelligence (find related ASNs/CIDRs)
amass intel -org "Target Corp" -max-dns-queries 2500
# Multiple domains
amass enum -passive -dL domains.txt -o all_subs.txt
# Visualization after enum
amass viz -d3 -dir amass_out/ -d example.com
| File | When to load |
|------|--------------|
| references/enum-modes.md | Deep-dive on intel/enum/viz modes, config file syntax, resolver setup |
data-ai
Scoped routing: Linux operator; hosts, sessions, users, services, packages, logs, containers, SSH, network paths, privilege evidence.
development
Offensive methodology for ICS/OT/SCADA environments in authorized industrial penetration testing and red team operations. Use when assessing PLCs, RTUs, HMIs, engineering workstations, historians, or field devices running Modbus, DNP3, EtherNet/IP, S7comm/S7+, Profinet, IEC 60870-5-104, BACnet, or OPC-UA. Covers passive OT network enumeration, protocol-level device interrogation, PLC coil/register read-write attacks, HMI session exploitation, historian and engineering workstation compromise, and safe escalation rules for critical infrastructure scope. Does not cover: general IT network exploitation (network-technique), physical hardware interfaces UART/JTAG/SPI (hardware-technique), wireless sensor network attacks (wireless-technique), RF/SDR signal analysis (hardware-ctf or wireless-technique), or CTF-framed ICS lab tasks (ics-ctf).
tools
Offensive methodology for authorized game security assessments, game client security research, and game-adjacent penetration testing in real-world engagements. Use when assessing game clients for cheating vulnerabilities, testing anti-cheat effectiveness, auditing game server protocols for score manipulation or economic fraud, reverse engineering game DRM or license validation, analyzing game save file protection, or assessing game mod/plugin security. Covers: process memory scanning and manipulation (Cheat Engine methodology), game binary reversing for license and DRM bypass, game network protocol analysis and packet replay, anti-cheat mechanism analysis, save file format reversing and tampering, speed hack and value injection techniques. Does NOT cover: CTF game challenges (game-ctf), game engine source code auditing (web-exploit-technique or vuln-search-technique for the backend), or general binary exploitation (pwn-ctf or reversing-technique).
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.