abraxaslabs.tech · github.com/abraxas · @abraxas_null · CVE-2026-12793
JetFormBuilder — Dynamic Blocks Form Builder 3.6.2 — jetmonsters
WordPress 的 JetFormBuilder — Dynamic Blocks Form Builder 插件在所有版本(包括 3.6.2)中均存在权限提升漏洞。原因在于插件在将所引用文章的内容解析为表单 schema 并执行 Advanced Validation 服务端回调之前,未验证提交的表单 ID 是否属于某个 JetFormBuilder 表单。这使得未认证攻击者可以创建新的管理员级别用户账户。
| CVE | CVE-2026-12793 · CVE.org |
| CWE | CWE-269 |
| CVSS | 严重:9.8 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H |
| 产品 | JetFormBuilder — Dynamic Blocks Form Builder |
| 受影响 | 所有版本 至 3.6.2(含) |
| 已修复 | 3.6.2.1 及更高版本 |
| 认证 | 无(见 source map) |
| 实验环境 | 仅限 127.0.0.1 · 厂商/客户披露包,非扫描器 |
公告中提到了 _jet_engine_booking_form_id 和 Advanced Validation。该 POST 字段是 Form_Handler::$form_key。路由钩子并非源码默认的 jet_form_builder_submit=submit;而是随机化的 gfb_request_args_key/value。PHP 方法名不是 HTTP action=。REST validate-field 在 3.6.2 上是错误的路径(validate_form_post_type 已经运行)。
POST/GET /?rest_route=/wp/v2/posts&slug=jfb-lab-carrier -> id 以及 JFB_HOOK_KEY / JFB_HOOK_VAL(options-tab gfb_request_args_*)POST / REQUEST[hook_key]=hook_val method=ajax(不是 jet_form_builder_submit=submit)Form_Request_Router::listen (includes/request/request-router.php) 使用 Form_Handler::$hook_key/$hook_valForm_Handler::process_form -> setup_form -> set_form_id 仅 absint(includes/form-handler.php:150-154, 183-200, 240)send_form: Action_Handler::set_form_id -> 从该文章的 _jf_actions 设置 set_form_actions(includes/actions/action-handler.php:71-117)Request_Handler::set_form_data -> Block_Helper::get_blocks_by_post 对任意文章执行 parse_blocks(includes/blocks/block-helper.php:186-201; includes/request/request-handler.php:30-33)block-parsers Module::init_request 应用这些块(modules/block-parsers/module.php:101-119)Default_Process_Event 运行 Register_User_Action::do_action wp_insert_user 并使用 settings.user_role(modules/actions-v2/register-user/register-user-action.php:66-215)POST JSON 包含 status success 和一个数字 user_id。后续 GET /?rest_route=/wp/v2/users/<user_id> 或稍后的列表包含 login poc_12793 且 role 为 administrator。唯一登录名 poc_12793 是标记 —— 而不是 hello-world HTML。
首先执行: 将 JetFormBuilder — Dynamic Blocks Form Builder 更新到 3.6.2.1 或更新版本。
升级后验证
CVE-2026-12793-Abraxas-Labs.py:映射的见证必须不出现。如果无法立即更新
目标仅限 http://127.0.0.1:8088(或你绑定的回环地址)。不要将此脚本指向互联网。
python3 CVE-2026-12793-Abraxas-Labs.py
成功即响应体中出现上述见证。通用的 200 HTML 不是。
www.wordfence.com/threat-intel/vulnerabilities/id/a61b2ecc-d4e1-4e71-9187-ddc3d3616a29?source=cve
插件目录:jetformbuilder
Abraxas Labs:abraxaslabs.tech · github.com/abraxas · @abraxas_null
# CVE-2026-12793 (structured records)
- input: `https://nvd.nist.gov/vuln/detail/CVE-2026-12793`
- CWE: CWE-269
- published: 2026-09-16T04:17:56.110
## NVD description
The JetFormBuilder — Dynamic Blocks Form Builder plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 3.6.2. This is due to the plugin not validating that a submitted form ID belongs to a JetFormBuilder form before parsing the referenced post's content as form schema and executing an Advanced Validation server-side callback. This makes it possible for unauthenticated attackers to create a new administrator-level user account.
## MITRE description
The JetFormBuilder — Dynamic Blocks Form Builder plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 3.6.2. This is due to the plugin not validating that a submitted form ID belongs to a JetFormBuilder form before parsing the referenced post's content as form schema and executing an Advanced Validation server-side callback. This makes it possible for unauthenticated attackers to create a new administrator-level user account.
## Affected
- jetmonsters JetFormBuilder — Dynamic Blocks Form Builder 0 affected
## References (JSON sources only)
- https://plugins.trac.wordpress.org/changeset/3575346/jetformbuilder
- https://www.wordfence.com/threat-intel/vulnerabilities/id/a61b2ecc-d4e1-4e71-9187-ddc3d3616a29?source=cve
- https://github.com/advisories/GHSA-579w-q4cr-j8hc
- https://nvd.nist.gov/vuln/detail/CVE-2026-12793
## GitHub advisory
The JetFormBuilder — Dynamic Blocks Form Builder plugin for WordPress is vulnerable to Privilege...
The JetFormBuilder — Dynamic Blocks Form Builder plugin for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 3.6.2. This is due to the plugin not validating that a submitted form ID belongs to a JetFormBuilder form before parsing the referenced post's content as form schema and executing an Advanced Validation server-side callback. This makes it possible for unauthenticated attackers to create a new administrator-level user account.
此包面向厂商、站点所有者以及获得授权的实验环境。该脚本仅与 127.0.0.1 通信。将其用于你并不拥有的系统未获 Abraxas Labs 授权。不提供任何担保。
SSR 路径(相同 schema):Server_Side_Rule::validate_custom 调用 call_user_func,前提是字段规则值是不在 NOT_ALLOWED 中的 PHP 函数(modules/validation/advanced-rules/server-side-rule.php:187-194)