offensive-tools/cracking/john/SKILL.md
CPU-based password cracker supporting hundreds of hash formats with wordlist, rules, and incremental modes. Use when cracking hashes offline with CPU resources, applying mangling rules, or when GPUs are unavailable.
npx skillsauth add aeondave/malskill johnInstall 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.
CPU password cracker — hundreds of hash formats, wordlist + rules + incremental.
# Auto-detect format and crack
john hashes.txt --wordlist=/usr/share/wordlists/rockyou.txt
# Show cracked passwords
john hashes.txt --show
# Single crack mode (fast, username-based)
john hashes.txt --single
# Incremental (brute-force)
john hashes.txt --incremental
| Flag | Purpose |
|------|---------|
| --wordlist=FILE | Dictionary attack |
| --rules[=RULE] | Apply mangling rules |
| --format=TYPE | Force hash format |
| --single | Single crack (username hints) |
| --incremental | Brute-force |
| --show | Display cracked passwords |
| --pot=FILE | Custom pot file |
| --fork=N | Parallel processes |
| --list=formats | List all formats |
NTLM with rules:
john ntlm.txt --format=NT --wordlist=rockyou.txt --rules=best64
SSH private key:
ssh2john id_rsa > id_rsa.hash
john id_rsa.hash --wordlist=rockyou.txt
Zip archive:
zip2john archive.zip > zip.hash
john zip.hash --wordlist=rockyou.txt
PDF:
pdf2john document.pdf > pdf.hash
john pdf.hash --wordlist=rockyou.txt
KeePass database:
keepass2john database.kdbx > kp.hash
john kp.hash --wordlist=rockyou.txt
Office documents (docx/xlsx):
office2john document.docx > office.hash
john office.hash --wordlist=rockyou.txt
7-Zip:
7z2john archive.7z > 7z.hash
john 7z.hash --wordlist=rockyou.txt
# Named session
john hashes.txt --wordlist=rockyou.txt --session=mysession
# Resume
john --restore=mysession
# Check status of running session (send USR1 signal or press 'q')
john --status=mysession
# Fork N processes (uses all CPU cores)
john hashes.txt --wordlist=rockyou.txt --fork=4
[List.Rules:MyRules]
# Append year variants
Az"[0-9][0-9][0-9][0-9]"
# Capitalize first + append !
c Az"!"
# l33t substitutions
sa@ se3 si1 so0
john hashes.txt --wordlist=rockyou.txt --rules=MyRules
| File | When to load |
|------|--------------|
| references/formats-and-rules.md | Supported format names, *2john tool list, rule syntax reference |
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.