Agent Skills
› H-mmer/pentest-agents
› correlate
correlate
GitHub通过关联引擎分析所有已知发现,构建能力图谱以识别攻击链。要求节点为具体能力,边需证据支持,按最终影响等维度评分,优先发现能导致账户接管等高影响的链,并记录被终止的链以供后续参考。
Trigger Scenarios
需要发现多个漏洞之间的关联攻击路径时
需要将低严重性漏洞组合成高危攻击链进行分析时
Install
npx skills add H-mmer/pentest-agents --skill correlate -g -y
SKILL.md
Frontmatter
{
"name": "correlate",
"description": "Run the finding correlation engine to discover attack chains from individual findings."
}
Find attack chains by correlating all known findings.
uv run python3 ../../tools/statusline.py --compact— show current state- Launch
correlatoragent: "Analyze ALL findings in brain and findings.json. Find attack chains where one finding enables another. Document each chain with combined CVSS 4.0 and end-to-end reproduction steps." - After agent returns, update brain with discovered chains.
- Show the user any new high-impact chains found.
Top-Tier Correlation Bar
Build a capability graph, not a list of related bugs.
- Nodes are capabilities: read tenant data, write config, trigger webhook, steal token, reach internal host, execute workflow.
- Edges require evidence that one capability enables the next. Shared component or same endpoint family is only a hint.
- Score each chain by final impact, proof reliability, policy safety, duplicate risk, and report clarity.
- Prefer chains that convert low-severity feeders into account takeover, tenant escape, stored XSS with privileged action, SSRF to credential disclosure, or config write to execution.
- Record killed chains too. The next correlation pass should know which attractive edges failed and why.
Version History
- 41d49b6 Current 2026-07-24 11:58


