Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

Β·Β·FeedsΒ·ContactΒ·PrivacyΒ·Β© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/javokhir-sec/cve-poc-hub
Vulnerability AnalysisExploitationWeb Application ExploitationCTFPenetration TestingLearning & EducationLabs & Practice
GitHubjavokhir-sec/cve-poc-hub

CVE-PoC-Hub

πŸ›‘οΈ CVE Proof-of-Concept Hub β€” 4 PUBLISHED CVEs Β· 5 under review (VulnCheck) Β· SuiteCRM batch withdrawn

View Repository
1117 days agoNot yet reviewed

Most Popular

View all β†’

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools β†’
Share

πŸ”¬ CVE-PoC-Hub β€” Curated Proof-of-Concept Exploits

Working, verified PoC scripts for recent CVEs. Tested in lab environments. For security researchers, penetration testers, and CTF players.


⚠️ Disclaimer

All PoCs are for educational and authorized testing only. Each exploit has been tested in isolated lab environments. Do not use against systems without explicit permission.


πŸ“‚ Repository Structure

root@kitploit:~
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

πŸ”₯ CVEs (2026)

βœ… Published

⏳ Vendi

4 CVEs published via VulnCheck CNA (Khushali Dalal). 5 submissions in review. 4 SuiteCRM advisories in GitHub triage.

πŸš€ Quick Start

root@kitploit:~
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 Template

Use this template for your own PoCs: templates/poc-template.py

root@kitploit:~
#!/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)

πŸ› οΈ Bulk PoC Runner

root@kitploit:~
# 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

πŸ“Š Stats


🀝 Contributing

Have a working PoC for a recent CVE?

  1. Fork this repo
  2. Create folder: CVE-YYYY-XXXXX/
  3. Include: README.md + exploit.py + screenshot
  4. Submit PR

πŸ“œ License

MIT Β© Javokhir Tursunboyev

Download Tool
CVEProductTypeCVSS
CVE-2026-66412Leantime ⭐10k+IDOR (getMilestone)7.5
CVE-2026-66414Leantime ⭐10k+Open Redirect6.1
CVE-2026-66415Leantime ⭐10k+SSRF + LFI8.8
CVE-2026-66416Leantime ⭐10k+CSRF Disabled8.8
IDTargetTypeCVSSStatus
ad927f12eGov SmartCityStruts2 RCE10.0VulnCheck Review
55c37649Tesla Vehicle CMDJWT No Verify8.8VulnCheck Review
b5aa1a1aOzonTech file.dMissing Auth8.2VulnCheck Review
9582b653Gojek DarkroomPath Traversal7.5VulnCheck Review
97d14382Kaspersky KLaraNo Rate Limit6.5VulnCheck Review
SCRMBT-480SuiteCRMUnauth SQLi9.8GitHub Triage
SCRMBT-481SuiteCRMFile Upload Bypass8.8GitHub Triage
SCRMBT-482SuiteCRMFile Upload RCE8.8GitHub Triage
SCRMBT-483SuiteCRMUnauth XSS8.2GitHub Triage
CategoryCount
SQL Injection5
XSS (Reflected/Stored)4
Broken Access Control3
CSRF1
IDOR1
Auth Bypass2
SSRF + LFI1
File Upload RCE1
Open Redirect1
Missing Authentication1
Total4 Published + 9 Active (SuiteCRM+VulnCheck)