CVE-2026-8382
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 Advanced Custom Fields (ACF®) plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 6.8.1. This is due to the plugin not properly verifying that a user is authorized to perform an action. This makes it possible for unauthenticated attackers to overwrite the post_title and post_content of any post bound to a publicly accessible acf_form() instance by injecting values into the _post_title and _post_content parameters of a form submission request.
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 · moderate confidenceThe ACF plugin fails to verify user authorization when processing form submissions via acf_form(). Unauthenticated attackers can submit values for _post_title and _post_content parameters to modify any post associated with a publicly accessible acf_form() instance, bypassing proper authorization checks.
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
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- Low
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/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 installed ACF plugin versionIn WordPress admin, go to Plugins > Installed Plugins and find 'Advanced Custom Fields' version number, or check the plugin file /wp-content/plugins/advanced-custom-fields/acf.php for the 'Version' defineAffected if version is 6.8.1 or lower (any version up to and including 6.8.1)
-
Locate acf_form() function calls in theme or plugin filesSearch codebase for 'acf_form(' occurrences in theme files (typically functions.php, page templates) or custom plugin files. Identify which template files or pages render the ACF front-end formAffected if acf_form() is present in any publicly accessible template or page
-
Verify form accessibility settingsFor each found acf_form() call, inspect the function parameters. Look specifically for the 'logged_in' attribute - check if it is set to 'true' or if it is missing entirely. Also check if the form is wrapped in conditional logic that requires authenticationAffected if the acf_form() call does NOT have 'logged_in' => true set, or the form page is accessible to unauthenticated users without any authorization check
-
Confirm post binding configurationReview the acf_form() settings to identify if a specific post ID is bound via 'post_id' parameter, or if 'new_post' is configured allowing creation of new posts. Check if _post_title or _post_content fields are defined in the ACF field groupAffected if the form is bound to existing posts (post_id parameter) or creates new posts (new_post parameter) and includes _post_title or _post_content fields
The environment is affected if ACF plugin version is 6.8.1 or lower AND an acf_form() is rendered on a public page without the 'logged_in' attribute set to true, allowing unauthenticated submissions to modify post content.
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 · scopedUpdate to a patched version of ACF when available, or restrict acf_form() instances to authenticated users only by adding conditional logic (e.g., is_user_logged_in()) around form placements.
ACF 6.8.2 or later
- 1. Back up your WordPress database and files before making any changes.
- 2. Navigate to Plugins > Installed Plugins in the WordPress admin dashboard.
- 3. Locate the Advanced Custom Fields (ACF) plugin in the list.
- 4. If an update is available, click 'Update Now' to upgrade to version 6.8.2 or later.
- 5. Alternatively, download the latest version from wordpress.org/plugins/advanced-custom-fields/ and upload via Plugins > Add New > Upload Plugin.
- 6. After updating, verify the acf_form() instances on your site still function correctly by testing form submissions.
- 7. Confirm that unauthenticated users can no longer manipulate _post_title or _post_content parameters to modify posts.
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation3.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 $2,304.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-8382 — 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-8382 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