Skip to content
KitploitKITPLOIT
工具漏洞利用博客
Log in
提交
工具漏洞利用博客
提交

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2026-14281 — WordPress WAWP(Automation Web Platform)≤ 4.8.6 中存在未认证权限提升漏洞,通过公开的 REST 注册接口和未过滤的 wawp_custom_fields 参数 → 提升至管理员权限。Python 检测/利用 PoC(PoCbit)。 | Kitploit
工具/GitHubGitHub/murrez/cve-2026-14281
权限提升侦察漏洞扫描器漏洞分析漏洞利用Web应用程序漏洞利用Web安全渗透测试
GitHubmurrez/cve-2026-14281

CVE-2026-14281

WordPress WAWP(Automation Web Platform)≤ 4.8.6 中存在未认证权限提升漏洞,通过公开的 REST 注册接口和未过滤的 wawp_custom_fields 参数 → 提升至管理员权限。Python 检测/利用 PoC(PoCbit)。

查看仓库
129小时24分前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2026-14281 — WAWP(Automation Web Platform)未认证权限提升

针对 WordPress 插件 Automation Web Platform(automation-web-platform — WAWP / Notifications & OTP for WooCommerce)中 CVE-2026-14281 的 Python 3 PoC。

PoCbit

收录于 PoCbit — 社区目录:https://pocbit.org/pocs/

运行 PoC 会打印 PoCbit 头部;JSONL 行包含 pocbit、pocbit_catalog 和 pocbit_page。

平台WordPress 插件
组件Automation Web Platform (WAWP)
受影响版本≤ 4.8.6
修复版本> 4.8.6(升级至最新稳定版)
CVSS 3.19.8 严重(AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H)
认证未认证
攻击向量公开 REST POST /wp-json/wawp/v1/signup/signup

概述

注册 REST 处理程序(public_permissions_check)接受 wawp_custom_fields,将其映射为 custom_fields_data,并在 wp_insert_user() 之后使用 update_user_meta() 写入每个键,且没有允许列表。攻击者可设置 wp_capabilities 和 wp_user_level 以获得 管理员 权限。

相关代码(4.8.6):includes/api/class-wawp-rest-settings-api.php(/signup/(?P<op>…))、includes/auth-services/class-wawp-otp-service.php(wawp_custom_fields → custom_fields_data)、includes/auth-services/class-wawp-signup.php(finish_registration_logic)。

当 注册 OTP 启用 时,第一次 signup 调用可能会停在 otp_verify(已发送挑战),注册仅在 OTP 之后完成 — 完整的未认证管理员利用链可能需要禁用 OTP 或单独的 OTP 绕过。在这种情况下,PoC 会报告 otp_required。

环境要求

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

Python 3.8+。

使用方法

root@kitploit:~
# Version + REST surface + optional live signup probe (creates a throwaway user if OTP off)
python poc.py -u https://target.example --mode check

# Register admin-capable user (authorized targets only)
python poc.py -u https://target.example --mode exploit --verify

# Mass scan
python poc.py --list targets.example.txt --mode check --threads 20 --quiet

# JSON to stdout (single target)
python poc.py -u https://target.example --mode check 2>nul

输出

文件含义
cve_2026_14281_results.jsonl每个目标的完整 JSON
hits.txt候选主机(check)或 url|email|password(exploit)
candidates.jsonlcheck 模式摘要

状态值(check)

FOFA 提示

root@kitploit:~
body="/wp-content/plugins/automation-web-platform/"
body="/wp-json/wawp/"

法律声明

仅可在您拥有或获得明确测试许可的系统上使用。

下载工具
状态含义
exploit_confirmed_probe探测注册已完成(OTP 关闭);元数据注入路径可用
vulnerable_otp_blocks_signup插件/版本 + REST 正常;OTP 步骤阻止一次性注册
vulnerable_rest_signup存在漏洞的版本;REST 可达(探测无定论)
patched版本 > 4.8.6
no_plugin未检测到插件