SecBoard
Zurück zur CVE-Übersicht

CVE-2024-20353

HIGH(8.6)KEV — Aktiv ausgenutzt

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H

Risk Signal Score73/100 — HOCH
  • CVSS 8.6 — Hoch
  • EPSS 71% — sehr wahrscheinlich ausgenutzt
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

70.7%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.6

Technische Schwere

SecBoard-Einordnung

CVE-2024-20353 ist eine Denial-of-Service (DoS)-Schwachstelle in der Cisco Adaptive Security Appliance (ASA) Software und Cisco Firepower Threat Defense (FTD) Software. Sie betrifft die Management- und VPN-Webserver und ermöglicht es einem nicht authentifizierten, entfernten Angreifer, durch das Senden einer speziell präparierten HTTP-Anfrage einen unerwarteten Neustart des Geräts zu verursachen. Die Ursache liegt in einer unvollständigen Fehlerprüfung beim Parsen eines HTTP-Headers, was zu einer DoS-Bedingung führt.

KI-gestützte Einordnung auf Basis der NVD-Daten.

Beschreibung

A vulnerability in the management and VPN web servers for Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software could allow an unauthenticated, remote attacker to cause the device to reload unexpectedly, resulting in a denial of service (DoS) condition. This vulnerability is due to incomplete error checking when parsing an HTTP header. An attacker could exploit this vulnerability by sending a crafted HTTP request to a targeted web server on a device. A successful exploit could allow the attacker to cause a DoS condition when the device reloads.

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV). Die Schwachstelle wird von einem staatlich gesponserten Akteur (UAT4356/STORM-1849) im Rahmen der "ArcaneDoor"-Kampagne ausgenutzt, die auf Perimeter-Netzwerkgeräte abzielt, um Spionage zu betreiben. Die Ausnutzung kann zu einem Denial of Service (DoS) führen, indem das Gerät unerwartet neu geladen wird.

Threat-Hunting-Queries

Die Schwachstelle betrifft Cisco ASA und FTD Software, wenn SSL-Listen-Sockets auf TCP-Ports aktiv sind. Die Erkennung konzentriert sich auf das Monitoring von HTTP-Anfragen an die Management- und VPN-Webserver, die zu einem unerwarteten Neustart des Geräts führen könnten. Da keine spezifischen IOCs für die DoS-Ausnutzung genannt werden, ist eine verhaltensbasierte Erkennung auf ungewöhnliche HTTP

Sentinel/Defender KQL

CiscoASAEvent
| where EventID == "113004" or EventID == "113005" // Device reload events
| where Message contains "unexpected reload" or Message contains "crash"
| join kind=inner (CiscoASAEvent
    | where EventID == "302013" or EventID == "302014" // HTTP connection events
    | where DstPort == 443 or DstPort == 8443 // Common SSL VPN/Management ports
    | summarize RequestCount=count() by SrcIPAddress, DstIPAddress, DstPort, bin(TimeGenerated, 1m)
    | where RequestCount > 10 // Adjust threshold based on normal traffic
) on DstIPAddress, DstPort
| project TimeGenerated, SrcIPAddress, DstIPAddress, DstPort, Message

Splunk SPL

index=cisco_asa (event_id=113004 OR event_id=113005) (message="unexpected reload" OR message="crash")
| join type=inner _time (index=cisco_asa (event_id=302013 OR event_id=302014) (dest_port=443 OR dest_port=8443)
    | stats count as RequestCount by src_ip, dest_ip, dest_port, _time
    | where RequestCount > 10)
| table _time, src_ip, dest_ip, dest_port, message

Sigma

title: Cisco ASA/FTD Web Services DoS Attempt
status: experimental
description: Detects potential DoS attempts against Cisco ASA/FTD web services by looking for unusual HTTP request patterns followed by device reloads.
logsource:
  product: cisco
  service: asa
detection:
  http_requests:
    EventID: ["302013", "302014"]
    DstPort: [443, 8443]
    # Add more specific patterns for crafted HTTP requests if available
  device_reload:
    EventID: ["113004", "113005"]
    Message|contains: ["unexpected reload", "crash"]
  condition: http_requests and device_reload
  timeframe: 5m # Reload should happen shortly after suspicious requests
falsepositives:
  - Legitimate reloads (e.g., maintenance, configuration changes) if not correlated with suspicious HTTP traffic.
level: high

Elastic ES|QL

FROM cisco_asa_logs
| WHERE event.id IN ('113004', '113005') AND (message LIKE '%unexpected reload%' OR message LIKE '%crash%')
| JOIN (FROM cisco_asa_logs
    | WHERE event.id IN ('302013', '302014') AND destination.port IN (443, 8443)
    | GROUP BY source.ip, destination.ip, destination.port, date_trunc('minute', @timestamp)
    | HAVING count() > 10
) ON destination.ip = destination.ip AND destination.port = destination.port
| SELECT @timestamp, source.ip, destination.ip, destination.port, message

SecBoard-generated · behavioral · requires customizationVon SecBoard erzeugt und nicht in einer Zielumgebung validiert. Vor dem Einsatz an die eigene Protokollierung anpassen.

Betroffene Produkte

  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.1:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.1.5:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.1.7:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.8:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.14:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.15:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.17:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.20:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.24:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.26:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.28:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.33:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.35:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.2.38:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.3:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.3.8:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.3.11:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.3.14:*:*:*:*:*:*:*
  • cpe:2.3:o:cisco:adaptive_security_appliance_software:9.8.3.16:*:*:*:*:*:*:*

Referenzen