针对近期 CVE 的可用、已验证 PoC 脚本。已在实验室环境中测试。 适用于安全研究人员、渗透测试人员和 CTF 玩家。
所有 PoC 仅用于教育和授权测试。 每个漏洞利用均在隔离的实验室环境中进行了测试。 未经明确许可,请勿将其用于任何系统。
CVE-PoC-Hub/
├── README.md
├── CVE-2026-XXXXX/ # Each CVE gets its own folder
│ ├── README.md # Description + steps
│ ├── exploit.py # Working PoC
│ └── screenshot.png # Proof of exploitation
├── templates/
│ └── poc-template.py # Standard PoC template
└── poc-runner.py # Bulk PoC runner
4 个 CVE 已通过 VulnCheck CNA(Khushali Dalal)发布。5 个提交正在审核中。4 个 SuiteCRM 公告正在进行 GitHub 分流。
git clone https://github.com/javokhir-sec/CVE-PoC-Hub.git
cd CVE-PoC-Hub
# List all available PoCs
python poc-runner.py --list
# Run a specific PoC (in lab environment)
python poc-runner.py --cve CVE-2026-XXXXX --target http://lab-target.local
使用此模板创建你自己的 PoC:templates/poc-template.py
#!/usr/bin/env python3
"""
CVE-YYYY-XXXXX: [Vulnerability Type] in [Product]
CVSS: X.X | Severity: Critical/High/Medium/Low
Author: @javokhir-sec
"""
import requests
import sys
TARGET = sys.argv[1] if len(sys.argv) > 1 else "http://localhost"
def exploit(target):
"""Execute the exploit and return True if vulnerable."""
print(f"[*] Testing {target} for CVE-YYYY-XXXXX")
# Step 1: Send malicious request
payload = "<script>alert(1)</script>"
r = requests.get(f"{target}/search?q={payload}")
# Step 2: Verify exploitation
if payload in r.text:
print(f"[+] VULNERABLE! Payload reflected in response.")
return True
else:
print(f"[-] Not vulnerable.")
return False
if __name__ == "__main__":
exploit(TARGET)
# Run all XSS PoCs against a target
python poc-runner.py --category xss --target http://lab.local
# Run all SQLi PoCs
python poc-runner.py --category sqli --target http://lab.local
# Run specific severity level
python poc-runner.py --severity critical --target http://lab.local
你是否拥有针对近期 CVE 的可用 PoC?
CVE-YYYY-XXXXX/README.md + exploit.py + 截图MIT © Javokhir Tursunboyev
| CVE | 产品 | 类型 | CVSS |
|---|
| CVE-2026-66412 | Leantime ⭐10k+ | IDOR (getMilestone) | 7.5 |
| CVE-2026-66414 | Leantime ⭐10k+ | 开放重定向 | 6.1 |
| CVE-2026-66415 | Leantime ⭐10k+ | SSRF + LFI | 8.8 |
| CVE-2026-66416 | Leantime ⭐10k+ | CSRF 已禁用 | 8.8 |
| ID | 目标 | 类型 | CVSS | 状态 |
|---|
| ad927f12 | eGov SmartCity | Struts2 RCE | 10.0 | VulnCheck 审核 |
| 55c37649 | Tesla Vehicle CMD | JWT 未验证 | 8.8 | VulnCheck 审核 |
| b5aa1a1a | OzonTech file.d | 缺少身份验证 | 8.2 | VulnCheck 审核 |
| 9582b653 | Gojek Darkroom | 路径遍历 | 7.5 | VulnCheck 审核 |
| 97d14382 | Kaspersky KLara | 无速率限制 | 6.5 | VulnCheck 审核 |
| SCRMBT-480 | SuiteCRM | 未授权 SQLi | 9.8 | GitHub 分流 |
| SCRMBT-481 | SuiteCRM | 文件上传绕过 | 8.8 | GitHub 分流 |
| SCRMBT-482 | SuiteCRM | 文件上传 RCE | 8.8 | GitHub 分流 |
| SCRMBT-483 | SuiteCRM | 未授权 XSS | 8.2 | GitHub 分流 |
| 类别 | 数量 |
|---|
| SQL 注入 | 5 |
| XSS(反射型/存储型) | 4 |
| 失效的访问控制 | 3 |
| CSRF | 1 |
| IDOR | 1 |
| 认证绕过 | 2 |
| SSRF + LFI | 1 |
| 文件上传 RCE | 1 |
| 开放重定向 | 1 |
| 缺少身份验证 | 1 |
| 总计 | 4 已发布 + 9 进行中(SuiteCRM+VulnCheck) |