
CVE-PoC-Hub — Updated!
🛡️ Hub Proof-of-Concept per CVE — 4 CVE PUBBLICATE · 5 in revisione (VulnCheck) · lotto SuiteCRM ritirato
🔬 CVE-PoC-Hub — Exploit Proof-of-Concept Curati
Script PoC funzionanti e verificati per CVE recenti. Testati in ambienti di laboratorio. Per ricercatori di sicurezza, penetration tester e giocatori di CTF.
⚠️ Disclaimer
Tutti i PoC sono destinati esclusivamente a test educativi e autorizzati. Ogni exploit è stato testato in ambienti di laboratorio isolati. Non utilizzare contro sistemi senza autorizzazione esplicita.
📂 Struttura del Repository
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
🔥 CVE (2026)
✅ Pubblicate
| CVE | Prodotto | Tipo | CVSS |
|---|---|---|---|
| CVE-2026-66412 | Leantime ⭐10k+ | IDOR (getMilestone) | 7.5 |
| CVE-2026-66414 | Leantime ⭐10k+ | Open Redirect | 6.1 |
| CVE-2026-66415 | Leantime ⭐10k+ | SSRF + LFI | 8.8 |
| CVE-2026-66416 | Leantime ⭐10k+ | CSRF Disabled | 8.8 |
⏳ Vendi
| ID | Target | Tipo | CVSS | Stato |
|---|---|---|---|---|
| ad927f12 | eGov SmartCity | Struts2 RCE | 10.0 | Revisione VulnCheck |
| 55c37649 | Tesla Vehicle CMD | JWT No Verify | 8.8 | Revisione VulnCheck |
| b5aa1a1a | OzonTech file.d | Missing Auth | 8.2 | Revisione VulnCheck |
| 9582b653 | Gojek Darkroom | Path Traversal | 7.5 | Revisione VulnCheck |
| 97d14382 | Kaspersky KLara | No Rate Limit | 6.5 | Revisione VulnCheck |
| SCRMBT-480 | SuiteCRM | Unauth SQLi | 9.8 | Triage GitHub |
| SCRMBT-481 | SuiteCRM | File Upload Bypass | 8.8 | Triage GitHub |
| SCRMBT-482 | SuiteCRM | File Upload RCE | 8.8 | Triage GitHub |
| SCRMBT-483 | SuiteCRM | Unauth XSS | 8.2 | Triage GitHub |
4 CVE pubblicate tramite VulnCheck CNA (Khushali Dalal). 5 segnalazioni in revisione. 4 advisory SuiteCRM in triage GitHub.
🚀 Avvio Rapido
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
📋 Modello PoC
Usa questo modello per i tuoi 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)
🛠️ Esecutore PoC in Lotto
# 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
📊 Statistiche
| Categoria | Conteggio |
|---|---|
| SQL Injection | 5 |
| XSS (Reflected/Stored) | 4 |
| Broken Access Control | 3 |
| CSRF | 1 |
| IDOR | 1 |
| Auth Bypass | 2 |
| SSRF + LFI | 1 |
| File Upload RCE | 1 |
| Open Redirect | 1 |
| Missing Authentication | 1 |
| Totale | 4 Pubblicate + 9 Attive (SuiteCRM+VulnCheck) |
🤝 Contribuisci
Hai un PoC funzionante per una CVE recente?
- Fai il fork di questo repository
- Crea la cartella:
CVE-YYYY-XXXXX/ - Includi:
README.md+exploit.py+ screenshot - Invia una PR
📜 Licenza
MIT © Javokhir Tursunboyev