Agent Skills
› XiaomingX/mimofan
› vuln-hunt
vuln-hunt
GitHub用于在真实项目中定位并复现漏洞的长周期安全分析技能,涵盖攻击面侦察、假设验证、链追踪及PoC执行。
Trigger Scenarios
需要发现并复现具体漏洞
进行深度安全审计
Install
npx skills add XiaomingX/mimofan --skill vuln-hunt -g -y
SKILL.md
Frontmatter
{
"name": "vuln-hunt",
"description": "Long-horizon security workflow to FIND AND REPRODUCE a vulnerability in a real project (e.g. fastjson deserialization gadget, Spring Boot RCE) using hypothesis\/evidence tracking, gadget-chain tracing, and a realized run_poc."
}
Vuln Hunt (long-horizon security analysis)
Use this skill when the task is to find AND reproduce a vulnerability in a real project (e.g. fastjson deserialization gadget, Spring Boot RCE), not to merely classify code.
Workflow (follow in order; do not skip steps)
- Recon: enumerate attack surface — deps, entry points, sinks (call_graph, ast_query, security_audit/semgrep).
- Hypothesize: for each suspected sink, register a hypothesis with
hypothesis action=createstating the claimed exploit class + CVE. - Trace: run
gadget_chain_tracefor the sink; identify which gadgets are PRESENT vs MISSING in the target — the missing ones are what you must prove reachable or rule out. Cross-check with call_graph reachability. - Gather evidence: for every hypothesis, call
hypothesis action=add_evidencewith concrete code references / taint paths BEFORE concluding. - Reproduce: build a candidate PoC and run
run_pocwith anexpectstring that proves the vulnerable behavior. realized=true => exploit confirmed. - Verdict:
hypothesis action=resolve verdict=confirmed|refuted— this is REFUSED unless evidence was attached (consistency gate). Never assert a finding without evidence + a realized PoC.
Consistency rules (what gets scored)
- Every claim must have a registered hypothesis + >=1 evidence entry.
- A hypothesis with zero evidence CANNOT be resolved.
- A "confirmed" verdict without a realized run_poc is invalid.
- Prefer reconstructing the attack PRINCIPLE (why it works) over a bare PoC.
Tooling reference
- hypothesis: create / add_evidence / resolve / list
- gadget_chain_trace: sink + present_gadgets -> chain satisfied/missing
- run_poc: command + expect -> realized bool (executed in sandbox)
- call_graph / ast_query / security_audit: static traceability
Version History
- cab98ff Current 2026-08-16 16:04


