SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-7232

HIGH · CVSS 7.2 EPSS 0.21% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-07-23 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The FormCraft plugin for WordPress is vulnerable to Stored Cross-Site Scripting (XSS) due to inadequate input sanitization and output escaping in the '[parameter name]' parameter, affecting all versions up to 3.9.14. This vulnerability allows unauthenticated attackers to inject malicious scripts into web pages, which execute when users access the affected pages, potentially leading to data theft or session hijacking. WordPress site administrators using the FormCraft plugin should prioritize applying patches or updates to mitigate this high-severity risk.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
exploit

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-7232
Severity
HIGH
CVSS
7.2
EPSS
0.21%
WordPress

Original NVD Description

The FormCraft plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the '[parameter name]' parameter in all versions up to, and including, 3.9.14 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. The exploit chain combines a server-side gap — where composite matrix sub-field keys such as field2_0 and field2_1 are never passed through the sanitization loop and are stored raw via $wpdb->insert() — with a client-side gap where DOMPurify is only invoked when typeof field.value === 'string', but matrix values arrive from the server as arrays, bypassing the check before being mapped to strings and injected into the DOM. Additionally, the same sink is reachable via a second attack vector: array-typed field values are passed through htmlentities() on submission but later reversed by html_entity_decode() at formcraft-main.php:2608 and :2122, restoring the malicious payload before storage and rendering.