Imported from hanmujun/hanmujun-agent-public (
skill-library/local-resources/SKILL.md). Install upstream withnpx skills add hanmujun/hanmujun-agent-public --skill local-resources. Copyright stays with the author.
本地资源库导航
⚠️ 核心路径 — AboutSecurity 资源库位于 C:\Users\langzi\AboutSecurity\
📁 字典库 (Dic/) — 目录爆破 / 密码爆破 / 参数 Fuzz
路径与用法
# 基础路径
AS="C:/Users/langzi/Desktop/AboutSecurity"
# 查看字典分类
ls "$AS/Dic/"
# 使用字典(示例)
ffuf -u http://target/FUZZ -w "$AS/Dic/web/directory/Fuzz_common.txt"
hydra -l admin -P "$AS/Dic/auth/password/complex/complex-top100.txt" ssh://target
字典分类速查
| 场景 | 路径 (相对于 Dic/) | 说明 |
|---|---|---|
| Web 目录爆破 | web/directory/ |
通用目录、PHP/JSP/ASP/JS 专用 |
| PHP 文件发现 | web/directory/php/ |
PHP 专用字典 |
| CTF 专用 | web/ctf/ |
URI/参数/SQL 精简字典 |
| 后台路径 | web/directory/ |
管理后台路径 |
| API 路径 | web/api-param/ |
API 端点和参数 |
| 备份文件 | web/file-backup/ |
备份文件名 |
| 中间件 | web/middleware/ |
Tomcat/WebLogic/Shiro/Spring 等 |
| CMS | web/cms/ |
WordPress/Joomla/Drupal 等 |
| 上传绕过 | web/upload/ |
上传扩展名绕过 |
| Webshell | web/webshell/ |
Webshell 文件名 |
| HTTP 头 | web/http/ |
HTTP 请求头 |
| 密码字典 | auth/password/ |
弱口令/复杂规则/WPA |
| 用户名 | auth/username/pinyin/ |
拼音姓名用户名 |
| 端口服务 | port/ |
MySQL/SSH/RDP/Redis 等 19 种服务 |
| DNS | web/dns/ |
子域名字典 |
| 通用 | regular/ |
数字/字母/地址/关键词 |
决策树:该用哪个字典?
目标是什么?
├── Web 应用
│ ├── CTF/靶场 → web/ctf/(小而精)
│ ├── 通用站 → web/directory/Fuzz_common.txt
│ ├── PHP 站 → web/directory/php/
│ ├── 找后台 → web/directory/ (admin 相关)
│ ├── 找 API → web/api-param/
│ ├── 找备份 → web/file-backup/
│ └── 中间件 → web/middleware/{tomcat,weblogic,...}/
├── 认证爆破
│ ├── 密码 → auth/password/complex/complex-top100.txt
│ ├── WPA → auth/password/wpa/
│ ├── 用户名 → auth/username/pinyin/
│ └── 特定服务 → port/{mysql,ssh,rdp,...}/
└── 子域名 → web/dns/
📁 Payload 库 — 漏洞验证 payload
路径与用法
# 基础路径
PAYLOAD="$AS/Payload"
# 查看分类
ls "$PAYLOAD/"
# 读取具体 payload
cat "$PAYLOAD/sqli/sqli-bypass-waf.txt"
cat "$PAYLOAD/xss/html/xss-tag-event-full.txt"
Payload 分类
| 分类 | 路径 | 内容 |
|---|---|---|
| SQLi | sqli/ |
SQL 注入 payload(含 WAF 绕过) |
| XSS | xss/ |
HTML/PDF/SVG/XML 格式 XSS |
| SSRF | ssrf/ |
SSRF payload |
| XXE | xxe/ |
XXE payload |
| LFI | lfi/ |
本地文件包含 payload |
| RCE | rce/ |
远程命令执行 payload |
| Upload | upload/ |
文件上传绕过 |
| CORS | cors/ |
CORS PoC 页面 |
| HPP | hpp/ |
HTTP 参数污染 |
| SSI | ssi/ |
SSI 注入 |
email/ |
邮箱格式 Fuzz | |
| Format | format/ |
十六进制/整数溢出/JSON 畸形/空字节/特殊字符串 |
| 403 Bypass | access-bypass/ |
XFF 绕过 403 |
| Reverse Shell | reverse-shell/ |
反弹 Shell payload |
| Prompt Injection | prompt-injection/ |
AI Prompt 注入 |
📁 漏洞库 (Vuln/) — 已知漏洞 PoC
路径与用法
# 基础路径
VULN="$AS/Vuln"
# 按产品搜索漏洞
ls "$VULN/middleware/" # 中间件(394 个产品)
ls "$VULN/web/" # Web 应用
ls "$VULN/ai/" # AI 相关
ls "$VULN/cloud/" # 云平台
ls "$VULN/network/" # 网络设备
# 读取具体漏洞
cat "$VULN/middleware/nacos/CVE-2021-29441.md"
cat "$VULN/web/thinkphp/THINKPHP-RCE.md"
漏洞库分类
| 分类 | 产品数 | 典型目标 |
|---|---|---|
| middleware/ | 190+ | Nacos/Jenkins/WebLogic/Tomcat/Spring/Redis/RabbitMQ... |
| web/ | 80+ | ThinkPHP/WordPress/致远OA/通达OA/用友/泛微... |
| ai/ | 15+ | Ollama/Dify/LangFlow/ComfyUI/vLLM... |
| cloud/ | 4 | AWS API Gateway/Lambda/S3/SNS |
| network/ | 14 | 华为/H3C/深信服/迪普/飞塔... |
漏洞条目格式
每个 .md 文件包含:
- 漏洞编号 (CVE/自定义)
- 影响版本
- 漏洞描述
- PoC 代码/利用步骤
- 修复建议
⚠️ 使用外部工具的正确流程
❌ 错误:ffuf -u http://target/FUZZ -w /usr/share/wordlists/common.txt
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
猜测路径,大概率不存在
✅ 正确:
1. 确认字典存在:ls "C:/Users/langzi/Desktop/AboutSecurity/Dic/web/directory/"
2. 使用:ffuf -u http://target/FUZZ -w "C:/Users/langzi/Desktop/AboutSecurity/Dic/web/directory/Fuzz_common.txt"
💡 使用提示
- CTF 优先小字典 —
web/ctf/下的字典精简且针对性强 - 密码爆破用复杂规则 —
auth/password/complex/含按复杂度规则生成的字典 - 查漏洞先搜产品名 —
ls "$VULN/middleware/" | grep -i 产品名 - Payload 可直接 Read — Agent 可通过 Read 工具直接读取 payload 文件内容
🔧 本地 CTF/渗透测试工具库
两个工具目录:D:\CtfTools(CTF 专用)和 C:\TOOLS(通用渗透测试)。
密码学工具
| 工具 | 路径 | 用途 |
|---|---|---|
| RSA Tool 2 | D:\CtfTools\1. Crypto\2. RSA工具\RSA Tool 2 by tE!\RSATool2v17.exe |
RSA 计算 |
| yafu x64 | D:\CtfTools\1. Crypto\2. RSA工具\yafu-1.34\yafu-x64.exe |
大整数分解 |
| 轩禹 RSA | D:\CtfTools\1. Crypto\2. RSA工具\轩禹CTF_RSA工具3.6.1\轩禹CTF_RSA工具3.6.1.exe |
RSA 综合(含 20+ 脚本) |
| hashcat | D:\CtfTools\1. Crypto\4. 密码爆破\hashcat\hashcat.exe |
GPU 密码破解 |
| CaptfEncoder | D:\CtfTools\1. Crypto\5. 综合工具包\CaptfEncoder-win-x64-2.1.0\CaptfEncoder.exe |
CTF 编码器 |
轩禹 RSA 攻击脚本(D:\CtfTools\1. Crypto\2. RSA工具\轩禹CTF_RSA工具3.6.1\rsascript\):
- 基础脚本:共模攻击、维纳攻击、低加密指数、Hastad 广播、dp 泄露、dpdq 泄露、Rabin、模不互素、e 和 phi 不互素
- SageMath:Boneh-Durfee、Franklin-Reiter、维纳变形 pqr、高位/低位泄露、有限域开方
隐写工具
| 工具 | 路径 | 用途 |
|---|---|---|
| Stegsolve | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\Stegsolve.jar |
通道分析/XOR |
| steghide | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\steghide\steghide.exe |
JPEG/BMP 隐写 |
| stegdetect | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\stegdetect-0.4-windows\stegdetect.exe |
隐写类型检测 |
| outguess | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\outguess\outguess.exe |
outguess 提取 |
| jsteg | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\jsteg-windows-amd64\jsteg-windows-amd64.exe |
jsteg 隐写 |
| F5 | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\f5.jar |
F5 隐写 |
| SilentEye | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\silenteye\silenteye.exe |
多格式隐写 |
| 盲水印 | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\盲水印\BlindWatermark-v0.0.3-windows-x86_64.jar |
盲水印提取 |
| BrutePNG | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\png高度爆破\FIX-PNG\BrutePNG.exe |
PNG CRC 爆破 |
| tweakpng | D:\CtfTools\2. MISC\1. 图形图像隐写\2. 图像隐写\tweakpng-1.4.6\tweakpng64.exe |
PNG 结构编辑 |
| MP3Stego | D:\CtfTools\2. MISC\2. 文档及音视频隐写\音频隐写\mp3stego-gui\MP3Steno.exe |
MP3 隐写 |
| ffmpeg | D:\CtfTools\2. MISC\2. 文档及音视频隐写\视频隐写\ffmpeg-latest-win32-static\bin\ffmpeg.exe |
音视频处理 |
| wbStego | D:\CtfTools\2. MISC\2. 文档及音视频隐写\wbs43open-win32\wbStego4.3open.exe |
文档隐写 |
| ARCHPR | D:\CtfTools\2. MISC\3. 压缩包隐写\Elcomsoft Password Recovery\archpr.exe |
压缩包密码破解 |
取证工具
| 工具 | 路径 | 用途 |
|---|---|---|
| FTK Imager | C:\TOOLS\forensics\AccessData-FTK\FTK Imager\FTK Imager.exe |
磁盘镜像取证 |
| Volatility 2.6 | C:\TOOLS\forensics\volatility_2.6\volatility_2.6.exe |
内存取证 |
| Volatility 3 | C:\TOOLS\forensics\volatility3\vol.py |
内存取证 |
| X-Ways | C:\TOOLS\forensics\X-Ways Forensics\xwforensics64.exe |
取证分析 |
| binwalk | C:\TOOLS\forensics\binwalk\binwalk.exe |
固件分析 |
| foremost | C:\TOOLS\forensics\foremost\foremost.exe |
文件恢复 |
| exiftool | C:\TOOLS\forensics\exiftool\exiftool.exe |
元数据提取 |
| NtfsStreamsEditor | D:\CtfTools\2. MISC\9. 磁盘取证\NtfsStreamsEditor2.exe |
NTFS ADS 流 |
| EFDD | D:\CtfTools\2. MISC\6. 内存取证\Elcomsoft Forensic Disk Decryptor\EFDD.exe |
取证磁盘解密 |
| LogParser | D:\CtfTools\2. MISC\5. 日志分析\Log Parser 2.2\LogParser.exe |
日志分析 |
| 河马 WebShell | C:\TOOLS\forensics\hema\qhm.exe |
WebShell 检测 |
| 昆吾 WebShell | C:\TOOLS\forensics\win-kunwu\昆吾WebShell检测.exe |
WebShell 检测 |
逆向工具
| 工具 | 路径 | 用途 |
|---|---|---|
| IDA Pro 9 | D:\CtfTools\3.Reverse\5.IDA\IDAProfessional9\ida.exe |
反汇编器 |
| Binary Ninja | D:\CtfTools\3.Reverse\10. 逆向分析工具\Binary_Ninja_Personal_For_Windows_v3.1.3469\BinaryNinja-personal.exe |
反汇编器 |
| dnSpy | D:\CtfTools\3.Reverse\7. dnSpy\dnSpy.exe |
.NET 反编译 |
| x64dbg | D:\CtfTools\3.Reverse\10. 逆向分析工具\x64dbg\release\x64\x64dbg.exe |
调试器 |
| OllyDbg | D:\CtfTools\3.Reverse\6. OD\OllyDBG_1.10汉化第二版\Ollydbg.exe |
调试器 |
| JD-GUI | D:\CtfTools\3.Reverse\3. Java反编译\jd-gui-windows-1.6.6\jd-gui.exe |
Java 反编译 |
| JADX | D:\CtfTools\3.Reverse\10. 逆向分析工具\jadx-gui-1.4.7-with-jre-win\ |
Android 反编译 |
| 010 Editor | C:\TOOLS\reverse\010Editor\010Editor.exe |
十六进制编辑器 |
| DIE | C:\TOOLS\reverse\Detect-It-Easy\die.exe |
查壳 |
| PEiD | D:\CtfTools\3.Reverse\1. 软件信息识别\HA.PEiD.0.95\PEiD.exe |
查壳 |
| UPX | D:\CtfTools\3.Reverse\4. 脱壳工具包\UPX Tool+ 1.1.1\bin\upx.exe |
脱壳 |
| pyinstxtractor | D:\CtfTools\3.Reverse\2. Python反编译\pyinstxtractor-2024.04\pyinstxtractor.py |
PyInstaller 提取 |
Web 安全工具
| 工具 | 路径 | 用途 |
|---|---|---|
| xray | D:\CtfTools\4. WEB\16. 综合扫描器\xray高版本\xray_windows_amd64.exe |
Web 漏扫 |
| fscan | C:\TOOLS\scan\fscan\fscan.exe |
内网综合扫描 |
| kscan | C:\TOOLS\scan\kscan\kscan.exe |
资产发现 |
| Burp Suite Pro | D:\CtfTools\4. WEB\7. 抓包\BurpSuitePro\ |
Web 代理 |
| 冰蝎 | C:\TOOLS\connect\Behinder\Behinder.jar |
Webshell 管理 |
| 哥斯拉 | C:\TOOLS\connect\Godzilla\godzilla.jar |
Webshell 管理 |
| Hydra | D:\CtfTools\4. WEB\17. 弱口令爆破\hydra-7.3\hydra.exe |
密码爆破 |
| JNDIExploit | D:\CtfTools\4. WEB\18. EXP\JavaWeb\log4j\JNDIExploit-1.2-SNAPSHOT.jar |
JNDI/Log4j |
| Cobalt Strike | D:\CtfTools\4. WEB\20. 域渗透\Cobalt_Strike_4.5\ |
C2 框架 |
| Seay 代码审计 | D:\CtfTools\4. WEB\19. 代码审计系统\Seay源代码审计系统\Seay源代码审计系统.exe |
PHP 审计 |
| dirsearch | C:\TOOLS\scan\dirSearch\dirsearch.py |
目录扫描 |
连接/管理工具
| 工具 | 路径 | 用途 |
|---|---|---|
| Navicat | C:\TOOLS\connect\Navicat\navicat.exe |
数据库管理 |
| Xshell 7 | C:\TOOLS\connect\Xshell7 xftp7\Xshell7+xftp7\Xshell.exe |
SSH |
| MobaXterm | C:\TOOLS\connect\MobaXterm\MobaXterm_Personal_25.0.exe |
远程终端 |
| phpStudy | C:\TOOLS\internet traffic\phpStudy\phpStudy.exe |
PHP/MySQL 环境 |
| Netcat | C:\TOOLS\connect\netcat\nc64.exe |
网络工具 |
| CyberChef | C:\TOOLS\crack\CyberChef\CyberChef.html |
编码瑞士军刀 |
| 随波逐流 | C:\TOOLS\crack\sbzlctfbm\随波逐流CTF编码工具.exe |
CTF 编码 |
AWD 线下赛工具(D:\CtfTools\8. AWD线下赛\)
| 工具 | 路径 | 用途 |
|---|---|---|
| AWD 框架 | AWD框架\console.py |
攻防框架 |
| 批量 GetFlag | Attack\GetFlag.py |
批量获取 Flag |
| 批量不死马 | Attack\命令生成不死马_批量版.py |
生成不死马 |
| 文件监控 | Defense\文件监控.py |
变更监控 |
| Webshell 查杀 | 附件\scan_kill_php_shell\scan_kill.py |
PHP 查杀 |
| WAF 加载 | 附件\加载waf脚本\批量加载waf.py |
批量 WAF |