SecBoard
Zurück zur CVE-Übersicht

CVE-2022-41073

HIGH(7.8)KEV — Aktiv ausgenutzt

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

Risk Signal Score50/100 — HOCH
  • CVSS 7.8 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

2.5%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2022-41073 ist eine Elevation-of-Privilege-Schwachstelle im Windows Print Spooler. Ein erfolgreicher könnte einem Angreifer ermöglichen, erhöhte Berechtigungen auf dem betroffenen System zu erlangen. Dies stellt ein erhebliches Risiko für die Integrität und Vertraulichkeit von Systemen dar.

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

Beschreibung

Windows Print Spooler Elevation of Privilege Vulnerability

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV).

Threat-Hunting-Queries

Die Schwachstelle ermöglicht eine Privilegienerhöhung im Windows Print Spooler. Die Detektion sollte auf ungewöhnliche Prozessaktivitäten des Print Spooler-Dienstes (spoolsv.exe) abzielen, insbesondere auf die Erstellung von Child-Prozessen mit erhöhten Rechten oder die Ausführung von Befehlen, die nicht typisch für den normalen Betrieb sind.

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName =~ "spoolsv.exe"
| where InitiatingProcessFileName =~ "spoolsv.exe" or InitiatingProcessParentFileName =~ "spoolsv.exe"
| where ProcessCommandLine has_any ("powershell", "cmd.exe", "wmic", "net.exe", "sc.exe") or ProcessCommandLine has_any ("/c", "/k", "-exec", "-command")
| where not (ProcessCommandLine has_any ("print", "printer", "driver", "install")) // Filter out legitimate print-related commands
| project TimeGenerated, DeviceName, InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, ProcessCommandLine, AccountName, InitiatingProcessIntegrityLevel, ProcessIntegrityLevel

Splunk SPL

index=windows_events (source="WinEventLog:Microsoft-Windows-Sysmon/Operational" OR source="WinEventLog:Security")
| where (EventCode=1 OR EventCode=4688) AND (ParentProcessName="spoolsv.exe" OR ProcessName="spoolsv.exe")
| where CommandLine LIKE "%powershell%" OR CommandLine LIKE "%cmd.exe%" OR CommandLine LIKE "%wmic%" OR CommandLine LIKE "%net.exe%" OR CommandLine LIKE "%sc.exe%"
| where NOT (CommandLine LIKE "%print%" OR CommandLine LIKE "%printer%" OR CommandLine LIKE "%driver%" OR CommandLine LIKE "%install%")
| table _time, Hostname, ParentProcessName, ProcessName, CommandLine, User

Sigma

title: Windows Print Spooler EoP Anomaly
author: SecBoard Operations
date: 2024/07/30
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    ParentImage|endswith: '\spoolsv.exe'
    Image|endswith:
      - '\cmd.exe'
      - '\powershell.exe'
      - '\wmic.exe'
      - '\net.exe'
      - '\sc.exe'
  filter:
    CommandLine|contains:
      - 'print'
      - 'printer'
      - 'driver'
      - 'install'
  condition: selection and not filter
fields:
  - CommandLine
  - ParentCommandLine
  - User
  - Image
  - ParentImage
level: high

Elastic ES|QL

from process where event.type == "start" and 
  (process.parent.executable : "spoolsv.exe" or process.executable : "spoolsv.exe") and 
  (process.args : "powershell" or process.args : "cmd.exe" or process.args : "wmic" or process.args : "net.exe" or process.args : "sc.exe") and 
  not (process.args : "print" or process.args : "printer" or process.args : "driver" or process.args : "install")
| select @timestamp, host.name, process.parent.executable, process.parent.command_line, process.executable, process.command_line, user.name, process.integrity.level

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_20h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h1:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_22h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_7:-:sp1:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:rt:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:*:*
  • 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:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2022:*:*:*:*:*:*:*:*

Referenzen