Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-8809 — Advanced Custom Fields: Extended <= 0.9.2.5 - Unauthenticated Privilege Escalation via Validation Bypass to '_acf_post_id' Parameter | Kitploit
Tools/GitHubGitHub/izxci/cve-2026-8809
Privilege EscalationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingAuthentication
GitHubizxci/cve-2026-8809

CVE-2026-8809

Advanced Custom Fields: Extended <= 0.9.2.5 - Unauthenticated Privilege Escalation via Validation Bypass to '_acf_post_id' Parameter

View Repository
33 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-8809

Advanced Custom Fields: Extended <= 0.9.2.5 - Unauthenticated Privilege Escalation via Validation Bypass to '_acf_post_id' Parameter This critical security vulnerability (CVSS 9.8) affects all versions of the popular WordPress plugin Advanced Custom Fields: Extended (ACF Extended) from version 0.9.2.5 onwards.

Although fixed in version 0.9.2.6, the vulnerability works as follows:

Problematic Function: At the root of the vulnerability lies the unchecked trust that the after_validate_save_post() function applies to the POST parameter named _acf_post_id. The plugin does not subject this parameter to any validation or authentication process.

Validation Bypass: By manipulating the _acf_post_id parameter, the attacker causes the function to silently select a cleanup branch that ignores all validation errors that do not carry the "acfe:" prefix. This disables two critical security checks:

a role permission list validation error added by acfe_field_user_roles::validate_front_value().

**Administrator privilege protection error added by acfe_module_form_action_user::validate_action().

Unauthorized Administrator Creation: After these checks are bypassed, the wp_insert_user() function is executed with the "administrator" role argument provided by the attacker. As a result, a new administrator account is created on the system by an unauthenticated user, contrary to the intended purpose of the plugin.

Logical Flow of Exploit Code The following Python script is a proof of concept demonstrating how this vulnerability can be exploited. The code works by automating all the necessary steps.

Download Tool