SecBoard
Zurück zur CVE-Übersicht

CVE-2026-62784

HIGH(8.8)

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

Risk Signal Score22/100 — NIEDRIG
  • CVSS 8.8 — Hoch

Erwähnungen (letzte 60 Tage)

Artikel

EPSS-Score

0.9%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.8

Technische Schwere

Beschreibung

Heap-based buffer overflow in Microsoft Local Security Authority Server (lsasrv) allows an authorized attacker to execute code over a network.

Erkennung & Indikatoren

Ausnutzung

In den geprüften Quellen nicht genannt

Threat-Hunting-Queries

Die Schwachstelle ist ein Heap-basierter Pufferüberlauf in lsasrv.exe, der zur Codeausführung über das Netzwerk führen kann. Die Erkennung sollte sich auf ungewöhnliche Prozessaktivitäten oder Netzwerkverbindungen von lsasrv.exe konzentrieren, die auf eine Kompromittierung hindeuten könnten. Da keine spezifischen IOCs oder Exploitationsmuster bekannt sind, sind generische Verhaltensregeln erforder

Sentinel/Defender KQL

DeviceProcessEvents
| where FileName == "lsasrv.exe"
| where InitiatingProcessFileName != "services.exe" // lsasrv.exe wird normalerweise von services.exe gestartet
| where ProcessCommandLine contains "-rpc" or ProcessCommandLine contains "-network" // Beispiel für ungewöhnliche Parameter
| project TimeGenerated, DeviceName, InitiatingProcessFileName, FileName, ProcessCommandLine, RemoteIP, RemotePort

Splunk SPL

index=* (sourcetype=WinEventLog:Security OR sourcetype=WinEventLog:System OR sourcetype=WinEventLog:Microsoft-Windows-Sysmon/Operational) (process_name="lsasrv.exe" OR Image="*\\lsasrv.exe") NOT (parent_process_name="services.exe" OR ParentImage="*\\services.exe")
| table _time, host, Image, CommandLine, ParentImage, ParentCommandLine, dest_ip, dest_port

Sigma

title: LSASRV Unusual Process Activity
status: experimental
description: Detects unusual process activity related to lsasrv.exe that might indicate exploitation of CVE-2026-62784.
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    Image|endswith: '\lsasrv.exe'
  filter:
    ParentImage|endswith: '\services.exe'
  condition: selection and not filter
fields:
  - CommandLine
  - ParentCommandLine
level: high

Elastic ES|QL

FROM logs-windows.*
| WHERE event.category == "process"
| WHERE process.executable == "lsasrv.exe"
| WHERE NOT process.parent.executable == "services.exe"
| SELECT @timestamp, host.name, process.executable, process.command_line, process.parent.executable, process.parent.command_line

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_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:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_21h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_10_22h2:*:*:*:*:*:*:x86:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:arm64:*
  • cpe:2.3:o:microsoft:windows_11_26h1:*:*:*:*:*:*:x64:*
  • cpe:2.3:o:microsoft:windows_server_2012:-:*:*:*:*:*:*:*
  • cpe:2.3:o:microsoft:windows_server_2012:r2:*:*:*:*:*:*:*

Referenzen