Security Vulnerability Report
中文
CVE-2025-46115 CVSS 7.5 HIGH

CVE-2025-46115

Published: 2026-04-30 20:16:23
Last Modified: 2026-05-04 18:16:24

Description

An issue in open5gs v.2.7.3 allows a remote attacker to cause a denial of service via a crafted PDU Session Modification Request

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.

Open5GS 2.7.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2025-46115 # This script demonstrates the concept of sending a malformed PDU Session Modification Request. # Note: Actual payload hex values would depend on specific protocol analysis. import socket TARGET_IP = "192.168.1.100" # Replace with target Open5GS IP TARGET_PORT = 38412 # Example port for SCTP/NGAP, adjust based on configuration # Malformed NAS PDU Session Modification Request payload (Placeholder) # In a real scenario, this hex string would contain the specific malformed IE causing the crash. malformed_payload = bytes.fromhex("<HEX_PAYLOAD_HERE>") def send_exploit(): try: # Create a socket connection (SCTP is often used, TCP shown for simplicity) print(f"[*] Sending exploit packet to {TARGET_IP}:{TARGET_PORT}") # Note: Open5GS typically uses SCTP, requiring sctp library instead of standard socket # This is a conceptual representation. # s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # s.connect((TARGET_IP, TARGET_PORT)) # s.send(malformed_payload) # s.close() print("[+] Packet sent successfully. Check service availability.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": send_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46115", "sourceIdentifier": "[email protected]", "published": "2026-04-30T20:16:23.083", "lastModified": "2026-05-04T18:16:24.450", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in open5gs v.2.7.3 allows a remote attacker to cause a denial of service via a crafted PDU Session Modification Request"}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}, {"lang": "en", "value": "CWE-400"}]}], "references": [{"url": "https://github.com/open5gs/open5gs/issues/3858", "source": "[email protected]"}]}}