SecBoard
Zurück zur CVE-Übersicht

CVE-2026-68820

HIGH(7.0)KEV — Aktiv ausgenutzt

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

Risk Signal Score48/100 — MITTEL
  • CVSS 7 — Hoch
  • Im CISA KEV-Katalog (aktiv ausgenutzt)

Erwähnungen (letzte 60 Tage)

Artikel

CISA KEV

Bestätigt ausgenutzt

EPSS-Score

0.3%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

7

Technische Schwere

SecBoard-Einordnung

CVE-2026-68820 beschreibt eine Use-after-free-Schwachstelle im Windows Ancillary Function Driver für WinSock. Ein autorisierter Angreifer kann diese Schwachstelle lokal ausnutzen, um seine Privilegien zu erweitern. Die erfolgreiche Ausnutzung führt zu einer lokalen Privilegieneskalation auf betroffenen Windows-Systemen.

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

Beschreibung

Use after free in Windows Ancillary Function Driver for WinSock allows an authorized attacker to elevate privileges locally.

Erkennung & Indikatoren

Ausnutzung

Aktiv ausgenutzt (CISA KEV). Actively exploited in the wild. Exploitation depends on triggering a race condition in the driver. Check Point Research attributes exploitation to Lazarus Group in their Operation Dream Job campaign.

Threat-Hunting-Queries

This is a local privilege escalation (LPE) vulnerability in a kernel driver (afd.sys) that requires an attacker to have code already running on the machine. Detection should focus on anomalous process behavior, especially processes attempting to interact with kernel drivers or performing actions indicative of privilege escalation after initial compromise. Look for unusual process creations, modifi

Sentinel/Defender KQL

DeviceProcessEvents
| where InitiatingProcessFileName !in ("explorer.exe", "svchost.exe", "winlogon.exe", "services.exe")
| where ProcessCommandLine contains "afd.sys" or ProcessCommandLine contains "winsock"
| where ProcessIntegrityLevel == "Low" or ProcessIntegrityLevel == "Medium"
| where FileName in ("cmd.exe", "powershell.exe", "wmic.exe", "sc.exe") or FolderPath contains "\\Windows\\System32\\"
| summarize count() by DeviceName, InitiatingProcessFileName, ProcessCommandLine, FileName, FolderPath

Splunk SPL

index=windows_events (source="WinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=1 or EventCode=7)
| where (Image_Path LIKE "%afd.sys%" OR Image_Path LIKE "%winsock%") AND (Parent_Image_Path NOT IN ("*\\explorer.exe", "*\\svchost.exe", "*\\winlogon.exe", "*\\services.exe"))
| where (Integrity_Level="Low" OR Integrity_Level="Medium")
| where (Image_Name IN ("cmd.exe", "powershell.exe", "wmic.exe", "sc.exe") OR Image_Path LIKE "%\\Windows\\System32\\%")
| stats count by ComputerName, Parent_Image_Name, CommandLine, Image_Name, Image_Path

Sigma

title: Windows AFD.sys LPE Attempt
status: experimental
description: Detects suspicious process activity potentially related to CVE-2026-68820 exploitation, focusing on non-privileged processes interacting with kernel components or escalating privileges.
references:
    - https://thehackernews.com/2026/08/microsoft-patches-398-flaws-including.html
logsource:
    category: process_creation
    product: windows
detection:
    selection:
        ParentImage|endswith:
            - '\explorer.exe'
            - '\svchost.exe'
            - '\winlogon.exe'
            - '\services.exe'
        ParentImage|contains:
            - 'afd.sys'
            - 'winsock'
        IntegrityLevel:
            - 'Low'
            - 'Medium'
        Image|endswith:
            - '\cmd.exe'
            - '\powershell.exe'
            - '\wmic.exe'
            - '\sc.exe'
            - '\System32\*'
    condition: not selection
fields:
    - ComputerName
    - ParentImage
    - CommandLine
    - Image
level: high

Elastic ES|QL

from process where event.type == "start" and
  (process.parent.executable != "explorer.exe" and process.parent.executable != "svchost.exe" and process.parent.executable != "winlogon.exe" and process.parent.executable != "services.exe") and
  (process.command_line : "*afd.sys*" or process.command_line : "*winsock*") and
  (process.integrity_level == "low" or process.integrity_level == "medium") and
  (process.executable : ("*\\cmd.exe", "*\\powershell.exe", "*\\wmic.exe", "*\\sc.exe") or process.executable : "*\\Windows\\System32\\*")
| summarize count() by host.name, process.parent.executable, process.command_line, process.executable

SecBoard-generated · behavioral · requires customization — Von 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_1607:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1607:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_1809:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:*:*
  • 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:*:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2025:*:*:*:*:*:*:*:*

In diesen Analysen erwähnt

Referenzen