SecBoard
Zurück zur CVE-Übersicht

CVE-2021-34448

MEDIUM(6.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score59/100 — HOCH
  • CVSS 6.8 — Mittel
  • EPSS 40%
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

40.1%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

6.8

Technische Schwere

SecBoard-Einordnung

Security-Teams sollten umgehend alle betroffenen Windows-Systeme patchen, um das Risiko einer Kompromittierung zu minimieren. Da die Schwachstelle aktiv ausgenutzt wird, ist eine schnelle Reaktion entscheidend. Zusätzlich sollten Systeme auf Anzeichen einer bereits erfolgten Ausnutzung überwacht werden.

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

Beschreibung

Scripting Engine Memory Corruption Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV)

Threat-Hunting-Queries

Die Schwachstelle betrifft eine Speicherbeschädigung in der Windows Scripting Engine. Eine generische Verhaltenserkennung könnte ungewöhnliche Prozessstarts oder Speicherzugriffe durch Skript-Hosts (z.B. wscript.exe, cscript.exe) identifizieren, die auf eine Ausnutzung hindeuten.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName in~ ("wscript.exe", "cscript.exe")
| where ProcessCommandLine has_any ("-e", "-f", "-h") or ProcessCommandLine contains ".js" or ProcessCommandLine contains ".vbs"
| where InitiatingProcessFileName != "explorer.exe" // Filter out common user interaction
| summarize count() by DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine
| where count_ > 5 // Adjust threshold as needed for your environment
| project DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, count_

Splunk SPL

index=windows_events (sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational EventCode=1) (Image="*\\wscript.exe" OR Image="*\\cscript.exe")
| where not (ParentImage="*\\explorer.exe")
| stats count by Host, ParentImage, Image, CommandLine
| where count > 5

Sigma

title: Windows Scripting Engine Memory Corruption Behavioral Detection
id: 00000000-0000-0000-0000-000000000001
status: experimental
description: Detects suspicious activity related to the Windows Scripting Engine that might indicate exploitation of memory corruption vulnerabilities.
author: SecBoard
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith:
      - '\wscript.exe'
      - '\cscript.exe'
  filter_legitimate:
    ParentImage|endswith: '\explorer.exe'
  condition: selection and not filter_legitimate
fields:
  - CommandLine
  - ParentImage
  - Image
level: medium

Elastic ES|QL

from process where event.type == "start" and (process.executable : "*\\wscript.exe" or process.executable : "*\\cscript.exe") and not process.parent.executable : "*\\explorer.exe"
| stats count() by host.name, process.parent.executable, process.executable, process.command_line
| where count > 5

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:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_1909:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_2004:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_20h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h1:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_7:-:sp1:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_rt_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:r2:sp1:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2012:r2:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2016:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2019:*:*:*:*:*:*:*:*

Referenzen