MUKI asset fingerprinting tool for red team reconnaissance. Use when performing authorized penetration testing, asset discovery, service fingerprinting, vuln...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install muki-fingerprint或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install muki-fingerprint⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/muki-fingerprint/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: muki-fingerprint description: MUKI asset fingerprinting tool for red team reconnaissance. Use when performing authorized penetration testing, asset discovery, service fingerprinting, vulnerability scanning, and attack surface mapping. Supports active/passive fingerprinting with 30,000+ signatures, sensitive path detection, and sensitive information extraction. Requires explicit authorization for target systems. metadata: openclaw: emoji: fingerprint category: security-assessment version: 1.0.0 author: OpenClaw requirements: - Linux amd64 environment - Network access to target - Explicit authorization for targets allowed-tools: ["Bash"] ---
MUKI is an active asset fingerprinting tool built for red team operations. It enables security researchers to rapidly pinpoint vulnerable systems from chaotic C-class segments and massive asset lists.
# Scan single URL
muki -u https://target.com
# Scan multiple URLs from file
muki -l targets.txt
# Scan with proxy
muki -u https://target.com -p socks5://127.0.0.1:1080
# Disable specific modules
muki -u https://target.com -A -N # No active, no directory scan
-h, --help Show help
-u, --url string Single URL to scan
-l, --list string File containing URLs (one per line)
-o, --output string Output file path
-p, --proxy string Proxy server (http:// or socks5://)
-t, --thread int Number of threads (default: 20, max: 100)
-A, --no-active Disable active fingerprint scanning
-N, --no-dir Disable directory scanning
-x, --no-passive Disable passive fingerprint scanning
Sends protocol-specific probes to identify services with high confidence.
Analyzes response artifacts without additional traffic.
Checks for high-risk paths using curated dictionaries.
Automatically extracts high-risk information from responses.
Categories:
{
"target": "https://example.com",
"fingerprints": [
{
"service": "Apache",
"version": "2.4.41",
"confidence": "high"
}
],
"sensitive_paths": [
{
"path": "/admin",
"status": 200,
"risk": "high"
}
],
"sensitive_data": [
{
"type": "email",
"value": "[email protected]",
"source": "response body"
}
]
}
Structured .xlsx report with multiple sheets:
# 1. Prepare target list
cat > targets.txt << 'EOF'
https://target1.com
https://target2.com
192.168.1.0/24
EOF
# 2. Run full scan
muki -l targets.txt -o results.json
# 3. Review results
cat results.json | jq '.fingerprints[]'
# 4. Generate Excel report
muki -l targets.txt -o report.xlsx
# Use Tor proxy for anonymity
muki -u https://target.com -p socks5://127.0.0.1:9050
# Or use HTTP proxy
muki -u https://target.com -p http://127.0.0.1:8080
# Fast scan - only passive fingerprinting
muki -u https://target.com -A -N
# Deep scan - all modules
muki -u https://target.com -t 50
Passive fingerprint database covering:
Active probing rules for:
Sensitive information extraction rules organized by groups:
WARNING: This tool is for authorized security testing only.
# Chain with nuclei for vulnerability scanning
cat muki_output.txt | nuclei -t cves/
# Import to Burp Suite
cat results.json | jq -r '.sensitive_paths[].path' > burp_scope.txt
# Feed to SQLMap for SQL injection testing
cat results.json | jq -r '.vulnerable_params[]' | sqlmap -m -
-t 10-xMIT License - See original repository for details.
安装 MUKI Asset Fingerprinting 后,可以对 AI 说这些话来触发它
Help me get started with MUKI Asset Fingerprinting
Explains what MUKI Asset Fingerprinting does, walks through the setup, and runs a quick demo based on your current project
Use MUKI Asset Fingerprinting to mUKI asset fingerprinting tool for red team reconnaissance
Invokes MUKI Asset Fingerprinting with the right parameters and returns the result directly in the conversation
What can I do with MUKI Asset Fingerprinting in my developer & devops workflow?
Lists the top use cases for MUKI Asset Fingerprinting, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/muki-fingerprint/ 目录(个人级,所有项目可用),或 .claude/skills/muki-fingerprint/(项目级)。重启 AI 客户端后,用 /muki-fingerprint 主动调用,或让 AI 根据上下文自动发现并使用。
MUKI Asset Fingerprinting 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
MUKI Asset Fingerprinting 可免费安装使用。请查阅仓库了解许可证信息。
MUKI asset fingerprinting tool for red team reconnaissance. Use when performing authorized penetration testing, asset discovery, service fingerprinting, vuln...
MUKI Asset Fingerprinting 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using MUKI Asset Fingerprinting
Identifies repetitive steps in your workflow and sets up MUKI Asset Fingerprinting to handle them automatically