SecBoard
Zurück zur CVE-Übersicht

CVE-2015-1701

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 Score66/100 — HOCH
  • CVSS 7.8 — Hoch
  • EPSS 56%
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

56.2%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7.8

Technische Schwere

SecBoard-Einordnung

CVE-2015-1701 ist eine Schwachstelle in Win32k.sys, einem Kernel-Modus-Treiber in Microsoft Windows. Sie ermöglicht es lokalen Benutzern, über eine speziell präparierte Anwendung erhöhte Privilegien zu erlangen. Die Schwachstelle wird als 'Win32k Elevation of Privilege Vulnerability' bezeichnet und betrifft mehrere Windows-Versionen.

Die Kritikalität dieser Schwachstelle ist hoch, mit einem CVSS-Score von 7.8. Die Exploit-Wahrscheinlichkeit () liegt bei 56%, was auf eine moderate bis hohe Wahrscheinlichkeit einer Ausnutzung hindeutet. Besonders kritisch ist, dass diese in der KEV-Datenbank gelistet ist und im April 2015 aktiv ausgenutzt wurde.

Security-Teams sollten umgehend sicherstellen, dass alle betroffenen Windows-Systeme gepatcht sind, um diese Elevation-of-Privilege-Schwachstelle zu schließen. Die aktive Ausnutzung in der Vergangenheit und die Listung in der KEV-Datenbank erfordern eine sofortige Priorisierung der Behebung, um das Risiko einer lokalen Privilegienerhöhung zu minimieren.

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

Beschreibung

Win32k.sys in the kernel-mode drivers in Microsoft Windows Server 2003 SP2, Vista SP2, and Server 2008 SP2 allows local users to gain privileges via a crafted application, as exploited in the wild in April 2015, aka "Win32k Elevation of Privilege Vulnerability."

Erkennung & Indikatoren

Ausnutzung

Die Schwachstelle wurde im April 2015 aktiv ausgenutzt (in the wild) und wird von CISA KEV als aktiv ausgenutzt gelistet. Es gibt öffentliche Exploits, darunter ein Metasploit-Modul und ein Exploit von hfiref0x auf GitHub, die auf Exploit-DB verfügbar sind. Die Ausnutzung erfordert lokale Anmeldeinformationen und lokalen Zugriff.

Behobene Versionen

  • Windows Server 2003 Service Pack 2 (3045171)
  • Windows Server 2003 x64 Edition Service Pack 2 (3045171)
  • Windows Server 2003 with SP2 for Itanium-based Systems (3045171)
  • Windows Vista Service Pack 2 (3045171)
  • Windows Vista x64 Edition Service Pack 2 (3045171)
  • Windows Server 2008 for 32-bit Systems Service Pack 2 (3045171)
  • Windows Server 2008 for x64-based Systems Service Pack 2 (3045171)
  • Windows Server 2008 for Itanium-based Systems Service Pack 2 (3045171)
  • Windows 7 for 32-bit Systems Service Pack 1 (3045171)
  • Windows 7 for x64-based Systems Service Pack 1 (3045171)
  • Windows Server 2008 R2 for x64-based Systems Service Pack 1 (3045171)
  • Windows Server 2008 R2 for Itanium-based Systems Service Pack 1 (3045171)
  • Windows 8 for 32-bit Systems (3045171)
  • Windows 8 for x64-based Systems (3045171)
  • Windows 8.1 for 32-bit Systems (3045171)

Threat-Hunting-Queries

Die Schwachstelle betrifft den Kernel-Modus-Treiber win32k.sys und ermöglicht eine lokale Privilegienerhöhung. Die Erkennung sollte auf ungewöhnliche Prozessaktivitäten abzielen, die auf eine Privilegienerhöhung hindeuten, insbesondere Prozesse, die von einem normalen Benutzerkonto gestartet werden und versuchen, in den Kernel-Modus zu wechseln oder Systemprivilegien zu erlangen. Überwachung von w

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName =~ "notepad.exe" and FileName =~ "Taihou32.exe" or FileName =~ "Taihou64.exe" or FileName =~ "payload.exe"
| where InitiatingProcessIntegrityLevel == "Medium" and ProcessIntegrityLevel == "System"
| project Timestamp, DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, InitiatingProcessIntegrityLevel, ProcessIntegrityLevel, ReportId

Splunk SPL

index=windows (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational) 
| (EventCode=4688 OR EventCode=1) 
| CommandLine IN ("*Taihou32.exe*", "*Taihou64.exe*", "*payload.exe*") 
| ParentProcessName="notepad.exe" 
| ProcessIntegrityLevel="System" 
| User NOT IN ("NT AUTHORITY\\SYSTEM", "NT AUTHORITY\\LOCAL SERVICE", "NT AUTHORITY\\NETWORK SERVICE")

Sigma

title: Win32k LPE via ClientCopyImage
status: experimental
description: Detects potential exploitation of CVE-2015-1701 (MS15-051) via unusual process creation patterns.
references:
    - https://www.exploit-db.com/exploits/37049/
    - https://www.exploit-db.com/exploits/37367/
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentImage|endswith: '\notepad.exe'
        Image|endswith:
            - '\Taihou32.exe'
            - '\Taihou64.exe'
            - '\payload.exe'
    condition: selection
fields:
    - CommandLine
    - ParentCommandLine
    - User
level: high

Elastic ES|QL

from process where event.type == "start" and 
  (process.parent.executable.full_path : "*\\notepad.exe" and 
   process.executable.full_path : ("*\\Taihou32.exe", "*\\Taihou64.exe", "*\\payload.exe")) 
| select @timestamp, host.name, process.parent.executable.full_path, process.executable.full_path, process.command_line, user.name

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

Indikatoren

Sonstige (6)

  • https://github.com/hfiref0x/CVE-2015-1701/raw/master/Compiled/Taihou32.exe
  • https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/37049-32.exe
  • https://github.com/hfiref0x/CVE-2015-1701/raw/master/Compiled/Taihou64.exe
  • https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/37049-64.exe
  • https://github.com/hfiref0x/CVE-2015-1701/archive/master.zip
  • https://gitlab.com/exploit-database/exploitdb-bin-sploits/-/raw/main/bin-sploits/37049-src.zip

Übernommen wurden nur Indikatoren, die wörtlich in einer Hersteller- oder Research-Quelle standen.

Betroffene Produkte

  • cpe:2.3:o:microsoft:windows_2003_server:-:sp2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_2003_server:r2:sp2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_7:-:sp1:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2008:-:sp2:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_vista:-:sp2:*:*:*:*:*:*

Referenzen