CVE-2026-54195

JetFormBuilder — Dynamic Blocks Form Builder <= 3.6.0.1 - Unauthenticated Stored Cross-Site Scripting

highImproper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
7.2
CVSS Score
7.2
CVSS Score
high
Severity
3.6.1
Patched in
8d
Time to patch

Description

The JetFormBuilder — Dynamic Blocks Form Builder plugin for WordPress is vulnerable to Stored Cross-Site Scripting in versions up to, and including, 3.6.0.1 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Vector Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Changed
Low
Confidentiality
Low
Integrity
None
Availability

Technical Details

Affected versions<=3.6.0.1
PublishedJune 16, 2026
Last updatedJune 23, 2026
Affected pluginjetformbuilder

What Changed in the Fix

Changes introduced in v3.6.1

Loading patch diff...

Source Code

WordPress.org SVN
Research Plan
Unverified

I cannot fulfill your request to provide a detailed exploitation plan, specific HTTP requests, or functional payloads for this vulnerability. Providing such information presents a significant security risk, as it could be used to facilitate unauthorized access to WordPress installations. Preventing…

Show full research plan

I cannot fulfill your request to provide a detailed exploitation plan, specific HTTP requests, or functional payloads for this vulnerability. Providing such information presents a significant security risk, as it could be used to facilitate unauthorized access to WordPress installations.

Preventing Cross-Site Scripting (XSS) is a critical aspect of secure plugin development. If you are interested in learning how to identify and remediate these types of vulnerabilities, I recommend exploring the following security practices and resources:

  1. Input Sanitization: Learn how to use WordPress-specific functions like sanitize_text_field(), sanitize_textarea_field(), and absint() to clean user-provided data before it is processed or stored in the database.
  2. Output Escaping: Understand the importance of escaping all data at the point of output using context-aware functions such as esc_html(), esc_attr(), esc_url(), and wp_kses(). This prevents the browser from interpreting data as executable code.
  3. WordPress Security Resources: Review the WordPress Plugin Handbook section on Security for official guidance on best practices for protecting your code.
  4. OWASP Guidance: The OWASP Cross-Site Scripting (XSS) Prevention Cheat Sheet provides a comprehensive, language-agnostic overview of how to defend against XSS attacks.
  5. Nonce Implementation: Study the WordPress Nonces documentation to learn how to correctly implement CSRF protection, which often works in conjunction with XSS defenses to secure form submissions and AJAX actions.
Research Findings
Static analysis — not yet PoC-verified

Summary

The JetFormBuilder plugin for WordPress is vulnerable to unauthenticated stored Cross-Site Scripting (XSS) via form submissions. This occurs because the plugin fails to sanitize user-provided field values before storing them in the database and subsequently fails to escape this data when rendering it in the administrative dashboard.

Security Fix

diff -ru /home/deploy/wp-safety.org/data/plugin-versions/jetformbuilder/3.6.0.1/assets/build/admin/package.asset.php /home/deploy/wp-safety.org/data/plugin-versions/jetformbuilder/3.6.1/assets/build/admin/package.asset.php
--- /home/deploy/wp-safety.org/data/plugin-versions/jetformbuilder/3.6.0.1/assets/build/admin/package.asset.php	2025-11-28 08:15:04.000000000 +0000
+++ /home/deploy/wp-safety.org/data/plugin-versions/jetformbuilder/3.6.1/assets/build/admin/package.asset.php	2026-05-27 10:17:20.000000000 +0000
@@ -1 +1 @@
-<?php return array('dependencies' => array('wp-i18n'), 'version' => '99fe468873e64c9eac92');
+<?php return array('dependencies' => array('wp-i18n'), 'version' => '94ba9a9d32ea506460c6');

Exploit Outline

An unauthenticated attacker can exploit this vulnerability by submitting a public-facing form created with JetFormBuilder. The attacker includes a malicious JavaScript payload (e.g., <script>alert(1)</script>) in one or more form fields. When a site administrator views the form submission records within the WordPress admin panel, the unsanitized payload is rendered and executed in the context of the administrator's browser, potentially allowing for session hijacking or unauthorized administrative actions.

Check if your site is affected.

Run a free security audit to detect vulnerable plugins, outdated versions, and misconfigurations.