CVE-2026-6222
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedThe Forminator Forms plugin for WordPress is vulnerable to Missing Authorization in versions up to and including 1.51.1. This is due to the `processRequest()` method in `Forminator_Admin_Module_Edit_Page` (admin/abstracts/class-admin-module-edit-page.php) dispatching sensitive module-management actions — including export, delete, clone, delete-entries, publish/draft, and bulk variants — after only a nonce check, without ever verifying that the current user holds the `manage_forminator_modules` capability. The nonce used (`forminator_form_request`) is unconditionally embedded in the global `forminatorData` JavaScript object and localized on every Forminator admin page, including Templates and Reports pages accessible to users who explicitly lack module-management permissions. Because `processRequest()` is invoked during the `admin_menu` action hook — which fires before WordPress enforces page-level capability checks — a user whose Forminator role is restricted to Templates or Reports can craft a valid POST request targeting any published module and successfully trigger the vulnerable actions. This makes it possible for authenticated attackers with subscriber-level access (or any custom low-privilege Forminator role) to export the complete internal configuration of arbitrary forms/polls/quizzes (including notification routing, integration credentials, and conditional logic), delete modules, delete all submissions/votes, clone modules, or bulk-change publish/draft status.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe Forminator plugin's `processRequest()` method in the admin module edit page performs only a nonce check before executing sensitive module-management actions (export, delete, clone, delete-entries, publish/draft, bulk operations) without verifying the user has the `manage_forminator_modules` capability. Since the nonce is globally embedded in the JavaScript on all Forminator admin pages—including those accessible to restricted users—and `processRequest()` runs during the `admin_menu` hook before WordPress enforces page-level capabilities, any authenticated user with subscriber-level or restricted Forminator role can manipulate forms, polls, and quizzes.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- High
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- None
- Availability
- None
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify Forminator versionIn WordPress admin, go to Plugins > Forminator and note the installed version, or inspect the main plugin file (wp-content/plugins/forminator/forminator.php) for the 'Version' headerAffected if Version matches the affected range (all versions prior to the patch containing capability verification)
-
Locate the vulnerable processRequest methodInspect the file wp-content/plugins/forminator/library/modules/admin/module-edit.php (or similar path under admin) and search for the function processRequest()Affected if The method exists and performs nonce check without calling current_user_can('manage_forminator_modules') before executing actions
-
Verify capability check is missingWithin the processRequest() function, search for 'manage_forminator_modules' - if absent before action execution (export, delete, clone, delete-entries, publish/draft, bulk operations), the vulnerability existsAffected if No current_user_can('manage_forminator_modules') check found before sensitive operations
-
Check user role configurationIn WordPress admin, go to Users > Roles (or use a role editor plugin) and examine if subscriber-level users or custom 'Forminator' roles with limited capabilities existAffected if Any authenticated user with subscriber role or restricted custom Forminator role can access Forminator admin pages
-
Confirm nonce exposure to low-privilege usersView the page source of any Forminator admin page while logged in as a restricted user; search for the nonce variable (wpApiSettings or similar)Affected if Nonce is present and accessible on admin pages viewable by subscriber-level or restricted users
Your environment is affected if Forminator is installed, the processRequest() method lacks a manage_forminator_modules capability check, and subscriber-level or restricted users can access Forminator admin pages where the nonce is exposed.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedAdd a capability check for `manage_forminator_modules` before processing any action in `processRequest()`, and restrict nonce generation to users who possess the required capability.
Forminator Forms plugin version 1.52.0 or later
- 1. Update the Forminator Forms plugin to the latest version available in the WordPress plugin repository (version 1.52.0 or later).
- 2. Navigate to WordPress Admin > Plugins > Forminator Forms.
- 3. If an update is available, click 'Update Now' to apply the security patch.
- 4. After updating, verify that the `manage_forminator_modules` capability check is now properly enforced for all sensitive module-management actions.
- 5. Confirm that users with restricted Forminator roles (Templates-only or Reports-only) can no longer access export, delete, clone, or publish/draft actions for forms, polls, or quizzes.
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation1.0 h
- Implementation2.0 h
- Testing2.0 h
- Review / QA1.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,664.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-6222 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-6222 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data