SecBoard
Zurück zur CVE-Übersicht

CVE-2015-2546

HIGH(8.2)KEV — Aktiv ausgenutzt

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

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

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

10.2%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.2

Technische Schwere

SecBoard-Einordnung

Security-Teams sollten umgehend alle betroffenen Windows-Systeme priorisiert patchen, um die aktive Ausnutzung zu unterbinden. Betroffen sind diverse Windows-Versionen, darunter Windows 7, 8, 8.1, 10 und Server 2008. Eine schnelle Implementierung der verfügbaren Sicherheitsupdates ist essenziell, um das Risiko einer Privilegienerhöhung zu minimieren.

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

Beschreibung

The kernel-mode driver in Microsoft Windows Vista SP2, Windows Server 2008 SP2 and R2 SP1, Windows 7 SP1, Windows 8, Windows 8.1, Windows Server 2012 Gold and R2, Windows RT Gold and 8.1, and Windows 10 allows local users to gain privileges via a crafted application, aka "Win32k Memory Corruption Elevation of Privilege Vulnerability," a different vulnerability than CVE-2015-2511, CVE-2015-2517, and CVE-2015-2518.

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV).

Threat-Hunting-Queries

Die Schwachstelle betrifft den Kernel-Modus-Treiber (Win32k) und ermöglicht lokalen Benutzern eine Privilegienerhöhung durch eine speziell präparierte Anwendung. Die Detektion sollte auf ungewöhnliche Prozessaktivitäten oder das Laden von Treibern durch nicht-privilegierte Benutzer abzielen, die auf eine Ausnutzung hindeuten könnten. Da es sich um eine lokale Privilegienerhöhung handelt, ist die E

Sentinel/Defender KQL

DeviceProcessEvents
| where ProcessCommandLine contains "powershell" or ProcessCommandLine contains "cmd.exe"
| where InitiatingProcessIntegrityLevel == "Low" or InitiatingProcessIntegrityLevel == "Medium"
| where FileName has_any ("win32k.sys", "ntoskrnl.exe") // Indikator für Kernel-Interaktion, muss verfeinert werden
| project Timestamp, DeviceName, InitiatingProcessCommandLine, ProcessCommandLine, InitiatingProcessIntegrityLevel, FileName, FolderPath

Splunk SPL

index=windows_events (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational)
| search (EventCode=4688 OR EventCode=1 OR EventCode=7) (CommandLine=*powershell* OR CommandLine=*cmd.exe*)
| search (ParentProcessIntegrityLevel="Low" OR ParentProcessIntegrityLevel="Medium")
| search (Image="*win32k.sys" OR Image="*ntoskrnl.exe")
| table _time, host, EventCode, ProcessName, CommandLine, ParentProcessName, ParentProcessIntegrityLevel

Sigma

title: Win32k EoP Attempt
status: experimental
description: Detects potential exploitation attempts of Win32k memory corruption vulnerabilities leading to privilege escalation.
references:
    - https://nvd.nist.gov/vuln/detail/CVE-2015-2546
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentProcessIntegrityLevel|endswith: ['Low', 'Medium']
        Image|endswith: ['\cmd.exe', '\powershell.exe']
        CommandLine|contains: ['win32k.sys', 'ntoskrnl.exe'] # Placeholder, needs refinement based on actual exploit behavior
    condition: selection
level: high

Elastic ES|QL

from logs-windows.*
| where event.category == "process"
| where process.parent.integrity_level in ("low", "medium")
| where process.executable in ("cmd.exe", "powershell.exe")
| where process.command_line : ("*win32k.sys*", "*ntoskrnl.exe*") // Placeholder, needs refinement
| select @timestamp, host.name, process.parent.executable, process.parent.command_line, process.executable, process.command_line, process.parent.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_7:-:sp1:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_rt:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_rt_8.1:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:r2:sp1:*:*:*:*:itanium:*
  • 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_vista:-:sp2:*:*:*:*:*:*

Referenzen