LSASS Crash Via Netlogon Stack Buffer Overflow - CVE-2026-41089

Detects a crash of the LSASS process where netlogon.dll is the faulting module and the exception code is STATUS_STACK_BUFFER_OVERRUN (0xc0000409). This crash, especially on Domain Controllers, might indicate the exploitation of CVE-2026-41089, a denial of service (DoS) vulnerability, which exists in the Netlogon component of Windows and can be triggered by sending specially crafted requests to the Netlogon service, leading to a stack-based buffer overflow and subsequent crash of the LSASS process.

Sigma rule (View on GitHub)

 1title: LSASS Crash Via Netlogon Stack Buffer Overflow - CVE-2026-41089
 2id: f8a66a02-4a16-46e5-b7fd-a42c8a93d137
 3status: experimental
 4description: |
 5    Detects a crash of the LSASS process where netlogon.dll is the faulting module and the exception code is STATUS_STACK_BUFFER_OVERRUN (0xc0000409).
 6    This crash, especially on Domain Controllers, might indicate the exploitation of CVE-2026-41089, a denial of service (DoS) vulnerability,
 7    which exists in the Netlogon component of Windows and can be triggered by sending specially crafted requests to the Netlogon service,
 8    leading to a stack-based buffer overflow and subsequent crash of the LSASS process.    
 9references:
10    - https://aretiq.ai/research/vul260513-cve-2026-41089-microsoft-windows-netlogon-buildsamlogonresponse-stack-based-buffer-overflow-rce/
11    - https://learn.microsoft.com/en-us/shows/inside/c0000409
12    - https://github.com/p3Nt3st3r-sTAr/CVE-2026-41089
13    - https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-41089
14author: Swachchhanda Shrawan Poudel (Nextron Systems)
15date: 2026-06-02
16tags:
17    - attack.impact
18    - attack.t1499
19    - cve.2026-41089
20    - detection.emerging-threats
21logsource:
22    product: windows
23    service: application
24detection:
25    selection:
26        Provider_Name: 'Application Error'
27        EventID: 1000
28        AppName: 'lsass.exe'
29        ModuleName: 'netlogon.dll'
30        ExceptionCode: 'c0000409' # STATUS_STACK_BUFFER_OVERRUN
31    condition: selection
32falsepositives:
33    - Unknown
34level: high

References

Related rules

to-top