SecBoard
Zurück zur CVE-Übersicht

CVE-2024-43461

HIGH(8.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score68/100 — HOCH
  • CVSS 8.8 — Hoch
  • EPSS 54%
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

54.5%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.8

Technische Schwere

SecBoard-Einordnung

CVE-2024-43461 ist eine Spoofing-Schwachstelle in der Windows MSHTML-Plattform. Ein erfolgreicher dieser Schwachstelle könnte es einem Angreifer ermöglichen, sich als legitime Quelle auszugeben und Benutzer zu täuschen, was zu weiteren Angriffen führen kann. Die Schwachstelle betrifft verschiedene Versionen von Windows 10.

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

Beschreibung

Windows MSHTML Platform Spoofing Vulnerability

Erkennung & Indikatoren

Ausnutzung

Actively exploited in the wild, as confirmed by CISA KEV. Exploited in conjunction with CVE-2024-38112.

Threat-Hunting-Queries

This is a UI spoofing vulnerability. Detection should focus on anomalous process creation, network connections, or file modifications that might occur after a user interacts with a spoofed web page. Since it's exploited in conjunction with CVE-2024-38112, look for activities related to both.

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName =~ "mshta.exe" or InitiatingProcessFileName =~ "iexplore.exe" or InitiatingProcessFileName =~ "edge.exe" // Or other browsers that might use MSHTML
| where ProcessCommandLine contains "http" or ProcessCommandLine contains "https"
| where FileName =~ "powershell.exe" or FileName =~ "cmd.exe" or FileName =~ "wscript.exe" or FileName =~ "cscript.exe" // Look for suspicious child processes
| project Timestamp, DeviceName, InitiatingProcessFileName, ProcessCommandLine, FileName, FolderPath, SHA256

Splunk SPL

index=windows (ParentProcessName="mshta.exe" OR ParentProcessName="iexplore.exe" OR ParentProcessName="edge.exe") (ProcessName="powershell.exe" OR ProcessName="cmd.exe" OR ProcessName="wscript.exe" OR ProcessName="cscript.exe")
| table _time, host, ParentProcessName, CommandLine, ProcessName, Image, sha256

Sigma

title: MSHTML Spoofing Related Activity
logsource:
  category: process_creation
  product: windows
detection:
  selection_parent:
    ParentImage|endswith:
      - '\mshta.exe'
      - '\iexplore.exe'
      - '\edge.exe'
  selection_child:
    Image|endswith:
      - '\powershell.exe'
      - '\cmd.exe'
      - '\wscript.exe'
      - '\cscript.exe'
  condition: selection_parent and selection_child
falsepositives:
  - Legitimate browser/MSHTA usage followed by script execution (requires tuning)
level: high

Elastic ES|QL

from process where event.category == "process" and event.type == "start" and (process.parent.executable.keyword : ("mshta.exe", "iexplore.exe", "edge.exe")) and (process.executable.keyword : ("powershell.exe", "cmd.exe", "wscript.exe", "cscript.exe"))
| project @timestamp, host.name, process.parent.executable, process.command_line, process.executable, process.hash.sha256

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:microsoft:windows_10_1507:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1507:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_11_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_22h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_server_2008:r2:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:r2:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2016:*:*:*:*:*:*:*:*

Referenzen