skills-experimental/crack-7z-hash/SKILL.md
This skill provides guidance for cracking 7z archive password hashes. It should be used when tasks involve extracting hashes from password-protected 7z archives, selecting appropriate cracking tools, and recovering passwords through dictionary or brute-force attacks. Applicable to password recovery, security testing, and CTF challenges involving encrypted 7z files.
npx skillsauth add bianhaifeng789-hue/openclaw-config crack-7z-hashInstall 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.
This skill guides agents through the process of extracting and cracking password hashes from 7z archives. It covers hash extraction, tool selection, attack methodology, and verification procedures essential for successful password recovery.
Before cracking, extract the hash from the 7z archive using appropriate tools.
Primary tool: 7z2john
# Locate 7z2john (usually part of john the ripper)
locate 7z2john.pl
# or
find /usr -name "7z2john*" 2>/dev/null
# Extract hash from archive
7z2john.pl archive.7z > hash.txt
# or if using Python version
7z2john.py archive.7z > hash.txt
Verify hash extraction:
$7z$ or similar formatCommon issues:
Identify the hash type to select the correct cracking mode.
7z hash formats:
$7z$0$ - 7z with AES-256 + SHA-256 (most common)$7z$1$ - 7z with older encryption$7z$2$ - 7z variant formatsVerify format compatibility:
# For hashcat, check supported modes
hashcat --help | grep -i 7z
# Mode 11600 = 7-Zip
# For john, check format support
john --list=formats | grep -i 7z
Choose the appropriate cracking tool based on available resources.
Hashcat (GPU-accelerated, faster for large wordlists):
# Basic dictionary attack
hashcat -m 11600 hash.txt wordlist.txt
# With rules for password variations
hashcat -m 11600 hash.txt wordlist.txt -r rules/best64.rule
# Brute-force with mask (e.g., 6-8 lowercase letters)
hashcat -m 11600 hash.txt -a 3 ?l?l?l?l?l?l?l?l --increment --increment-min 6
John the Ripper (CPU-based, good for varied attacks):
# Basic dictionary attack
john --wordlist=wordlist.txt hash.txt
# With rules
john --wordlist=wordlist.txt --rules hash.txt
# Incremental mode
john --incremental hash.txt
Choose appropriate wordlists based on the context.
Common wordlists:
/usr/share/wordlists/rockyou.txt - General passwords/usr/share/seclists/Passwords/ - Various password listsWordlist strategies:
Run the selected tool and monitor progress.
Monitor and document:
Example session with hashcat:
# Start attack with status updates
hashcat -m 11600 hash.txt wordlist.txt --status --status-timer=60
# Check status during run
hashcat -m 11600 hash.txt --status
# Show cracked passwords
hashcat -m 11600 hash.txt --show
CRITICAL: Always verify the cracked password works.
# Test with 7z command
7z t -p"recovered_password" archive.7z
# Or extract to verify
7z x -p"recovered_password" archive.7z -o./extracted/
Verification checklist:
Always document each step:
Never assume a cracked hash means success. The password must be verified against the actual archive.
Ensure the hash mode matches the 7z encryption type. Mode 11600 is standard but verify format.
Long-running attacks can consume significant resources:
--session flag to save progressVerify tools are installed before starting:
which hashcat john 7z 7z2john.pl
A successful completion should document:
business
IAA 日报飞书输出能力。 支持把固定 CSV 模板一键转换成: - 中文运营结论 - 飞书卡片 JSON - 飞书发送载荷 Use when: - 需要把 IAA 日报直接发到飞书 - 需要从 CSV 一键生成运营日报
data-ai
IAA日报分析模型 功能: - 渠道日报自动分析 - 小时级+日级ROI联动判断 - 按地区输出加量/降量/停投建议 - 按产品类型输出阈值 - 自动识别利润区/观察区/止损区 Use when: - 分析每天投放数据 - 生成运营日报结论 - 判断是否加量/降量/停投 - 对比美加澳/日韩表现 Keywords: - 日报模型, 投放日报, 加量, 降量, 停投, ROI日报, 分地区分析
data-ai
IAA固定日报分析模板 功能: - 固定字段模板(可直接贴每天数据) - 自动输出总盘结论 - 自动输出美加澳/日韩结论 - 自动给出加量/降量/停投建议 - 适配文件修复/清理两类产品 Use when: - 需要固定日报格式 - 每天复盘渠道表现 - 给运营团队出统一结论 Keywords: - 固定模板, 日报模板, ROI模板, IAA日报, 运营模板
development
# HyperlinkPool Pattern Skill HyperlinkPool Pattern - HyperlinkPool class + strings array + stringMap + Index 0 no hyperlink + intern(hyperlink) + get(id) + undefined handling + 5-minute reset + OSC8 hyperlink interning。 ## 功能概述 从Claude Code的ink/screen.ts提取的HyperlinkPool模式,用于OpenClaw的OSC8超链接池管理。 ## 核心机制 ### HyperlinkPool Class ```typescript export class HyperlinkPool { private strings: string[] = [''] // Index 0 = no hyperlink private stringMap = new Map<string, number>() // strings