Detection rules › Sigma

Uncommon GrantedAccess Flags On LSASS

Status
test
Severity
medium
Log source
product windows, category process_access
Author
Florian Roth (Nextron Systems)
Source
github.com/SigmaHQ/sigma

Detects process access to LSASS memory with uncommon access flags 0x410 and 0x01410

MITRE ATT&CK coverage

TacticTechniques
Credential AccessT1003.001 OS Credential Dumping: LSASS Memory

Event coverage

ProviderEventTitle
SysmonEvent ID 10ProcessAccess

Rule body yaml

title: Uncommon GrantedAccess Flags On LSASS
id: 678dfc63-fefb-47a5-a04c-26bcf8cc9f65
related:
    - id: 32d0d3e2-e58d-4d41-926b-18b520b2b32d
      type: obsolete
status: test
description: Detects process access to LSASS memory with uncommon access flags 0x410 and 0x01410
references:
    - https://docs.microsoft.com/en-us/windows/win32/procthread/process-security-and-access-rights
    - https://onedrive.live.com/view.aspx?resid=D026B4699190F1E6!2843&ithint=file%2cpptx&app=PowerPoint&authkey=!AMvCRTKB_V1J5ow
    - https://web.archive.org/web/20230208123920/https://cyberwardog.blogspot.com/2017/03/chronicles-of-threat-hunter-hunting-for_22.html
    - https://www.slideshare.net/heirhabarov/hunting-for-credentials-dumping-in-windows-environment
    - https://web.archive.org/web/20230420013146/http://security-research.dyndns.org/pub/slides/FIRST2017/FIRST-2017_Tom-Ueltschi_Sysmon_FINAL_notes.pdf
author: Florian Roth (Nextron Systems)
date: 2022-03-13
modified: 2023-11-30
tags:
    - attack.credential-access
    - attack.t1003.001
    - attack.s0002
    - detection.threat-hunting
logsource:
    category: process_access
    product: windows
detection:
    selection:
        TargetImage|endswith: '\lsass.exe'
        GrantedAccess|endswith: '10'
    # Absolute paths to programs that cause false positives
    filter1:
        SourceImage:
            - 'C:\Program Files\Common Files\McAfee\MMSSHost\MMSSHOST.exe'
            - 'C:\Program Files\Malwarebytes\Anti-Malware\MBAMService.exe'
            - 'C:\Program Files\Windows Defender\MsMpEng.exe'
            - 'C:\PROGRAMDATA\MALWAREBYTES\MBAMSERVICE\ctlrupdate\mbupdatr.exe'
            - 'C:\Windows\System32\lsass.exe'
            - 'C:\Windows\System32\msiexec.exe'
            - 'C:\WINDOWS\System32\perfmon.exe'
            - 'C:\WINDOWS\system32\taskhostw.exe'
            - 'C:\WINDOWS\system32\taskmgr.exe'
            - 'C:\WINDOWS\system32\wbem\wmiprvse.exe'
            - 'C:\Windows\SysWOW64\msiexec.exe'
            - 'C:\Windows\sysWOW64\wbem\wmiprvse.exe'
    # Windows Defender
    filter2:
        SourceImage|startswith: 'C:\ProgramData\Microsoft\Windows Defender\'
        SourceImage|endswith: '\MsMpEng.exe'
    # Microsoft Gaming Services
    filter3:
        SourceImage|startswith: 'C:\Program Files\WindowsApps\'
        SourceImage|endswith: '\GamingServices.exe'
    # Process Explorer
    filter4:
        SourceImage|endswith:
            - '\PROCEXP64.EXE'
            - '\PROCEXP.EXE'
    # VMware Tools
    filter5:
        SourceImage|startswith: 'C:\ProgramData\VMware\VMware Tools\'
        SourceImage|endswith: '\vmtoolsd.exe'
    # Antivirus and EDR agents
    filter6:
        SourceImage|startswith:
            - 'C:\Program Files\'
            - 'C:\Program Files (x86)\'
        SourceImage|contains: 'Antivirus'
    filter_nextron:
        # SourceImage|startswith: 'C:\Windows\Temp\asgard2-agent\'  # Can be a manual THOR installation
        SourceImage|endswith:
            - '\thor64.exe'
            - '\thor.exe'
            - '\aurora-agent-64.exe'
            - '\aurora-agent.exe'
    filter_ms_products:
        SourceImage|contains|all:
            - '\AppData\Local\Temp\'
            - '\vs_bootstrapper_'
        GrantedAccess: '0x1410'
    # Generic Filter for 0x1410 filter (caused by so many programs like DropBox updates etc.)
    filter_generic:
        SourceImage|startswith:
            - 'C:\Program Files\'
            - 'C:\Program Files (x86)\'
            - 'C:\WINDOWS\system32\'
    filter_wer:
        SourceCommandLine: 'C:\WINDOWS\system32\wermgr.exe -upload'
    filter_localappdata:
        SourceImage|contains|all:
            - 'C:\Users\'
            - '\AppData\Local\'
        SourceImage|endswith:
            - '\Microsoft VS Code\Code.exe'
            - '\software_reporter_tool.exe'
            - '\DropboxUpdate.exe'
            - '\MBAMInstallerService.exe'
            - '\WebEx\WebexHost.exe'
            - '\Programs\Microsoft VS Code\Code.exe'
            - '\JetBrains\Toolbox\bin\jetbrains-toolbox.exe'
    filter_xampp:
        SourceImage|endswith: '\xampp-control.exe'
        GrantedAccess: '0x410'
    filter_games:
        SourceImage|contains: '\SteamLibrary\steamapps\'
        GrantedAccess:
            - '0x410'
            - '0x10'
    condition: selection and not 1 of filter*
falsepositives:
    - Legitimate software accessing LSASS process for legitimate reason
level: medium

Stages and Predicates

Stage 0: condition

selection and not 1 of filter*

Stage 1: selection

selection:
    TargetImage|endswith: '\lsass.exe'
    GrantedAccess|endswith: '10'

Stage 2: not filter*

filter1:
    SourceImage:
        - 'C:\Program Files\Common Files\McAfee\MMSSHost\MMSSHOST.exe'
        - 'C:\Program Files\Malwarebytes\Anti-Malware\MBAMService.exe'
        - 'C:\Program Files\Windows Defender\MsMpEng.exe'
        - 'C:\PROGRAMDATA\MALWAREBYTES\MBAMSERVICE\ctlrupdate\mbupdatr.exe'
        - 'C:\Windows\System32\lsass.exe'
        - 'C:\Windows\System32\msiexec.exe'
        - 'C:\WINDOWS\System32\perfmon.exe'
        - 'C:\WINDOWS\system32\taskhostw.exe'
        - 'C:\WINDOWS\system32\taskmgr.exe'
        - 'C:\WINDOWS\system32\wbem\wmiprvse.exe'
        - 'C:\Windows\SysWOW64\msiexec.exe'
        - 'C:\Windows\sysWOW64\wbem\wmiprvse.exe'
filter2:
    SourceImage|startswith: 'C:\ProgramData\Microsoft\Windows Defender\'
    SourceImage|endswith: '\MsMpEng.exe'
filter3:
    SourceImage|startswith: 'C:\Program Files\WindowsApps\'
    SourceImage|endswith: '\GamingServices.exe'
filter4:
    SourceImage|endswith:
        - '\PROCEXP64.EXE'
        - '\PROCEXP.EXE'
filter5:
    SourceImage|startswith: 'C:\ProgramData\VMware\VMware Tools\'
    SourceImage|endswith: '\vmtoolsd.exe'
filter6:
    SourceImage|startswith:
        - 'C:\Program Files\'
        - 'C:\Program Files (x86)\'
    SourceImage|contains: 'Antivirus'
filter_nextron:
    SourceImage|endswith:
        - '\thor64.exe'
        - '\thor.exe'
        - '\aurora-agent-64.exe'
        - '\aurora-agent.exe'
filter_ms_products:
    SourceImage|contains|all:
        - '\AppData\Local\Temp\'
        - '\vs_bootstrapper_'
    GrantedAccess: '0x1410'
filter_generic:
    SourceImage|startswith:
        - 'C:\Program Files\'
        - 'C:\Program Files (x86)\'
        - 'C:\WINDOWS\system32\'
filter_wer:
    SourceCommandLine: 'C:\WINDOWS\system32\wermgr.exe -upload'
filter_localappdata:
    SourceImage|contains|all:
        - 'C:\Users\'
        - '\AppData\Local\'
    SourceImage|endswith:
        - '\Microsoft VS Code\Code.exe'
        - '\software_reporter_tool.exe'
        - '\DropboxUpdate.exe'
        - '\MBAMInstallerService.exe'
        - '\WebEx\WebexHost.exe'
        - '\Programs\Microsoft VS Code\Code.exe'
        - '\JetBrains\Toolbox\bin\jetbrains-toolbox.exe'
filter_xampp:
    SourceImage|endswith: '\xampp-control.exe'
    GrantedAccess: '0x410'
filter_games:
    SourceImage|contains: '\SteamLibrary\steamapps\'
    GrantedAccess:
        - '0x410'
        - '0x10'

Exclusions

Top-level NOT(...) conjuncts: predicates this rule actively suppresses.

FieldKindExcluded values
GrantedAccesseq0x10
GrantedAccesseq0x410
SourceImagematch\SteamLibrary\steamapps\
SourceImageends_with\DropboxUpdate.exe
SourceImageends_with\JetBrains\Toolbox\bin\jetbrains-toolbox.exe
SourceImageends_with\MBAMInstallerService.exe
SourceImageends_with\Microsoft VS Code\Code.exe
SourceImageends_with\Programs\Microsoft VS Code\Code.exe
SourceImageends_with\WebEx\WebexHost.exe
SourceImageends_with\software_reporter_tool.exe
SourceImagematchC:\Users\
SourceImagematch\AppData\Local\
SourceImagestarts_withC:\Program Files (x86)\
SourceImagestarts_withC:\Program Files\
SourceImagematchAntivirus
GrantedAccesseq0x1410
SourceImagematch\AppData\Local\Temp\
SourceImagematch\vs_bootstrapper_
GrantedAccesseq0x410
SourceImageends_with\xampp-control.exe
SourceImageends_with\GamingServices.exe
SourceImagestarts_withC:\Program Files\WindowsApps\
SourceImageends_with\MsMpEng.exe
SourceImagestarts_withC:\ProgramData\Microsoft\Windows Defender\
SourceImageends_with\vmtoolsd.exe
SourceImagestarts_withC:\ProgramData\VMware\VMware Tools\
SourceCommandLineeqC:\WINDOWS\system32\wermgr.exe -upload
SourceImageends_with\PROCEXP.EXE
SourceImageends_with\PROCEXP64.EXE
SourceImageends_with\aurora-agent-64.exe
SourceImageends_with\aurora-agent.exe
SourceImageends_with\thor.exe
SourceImageends_with\thor64.exe
SourceImageeqC:\PROGRAMDATA\MALWAREBYTES\MBAMSERVICE\ctlrupdate\mbupdatr.exe
SourceImageeqC:\Program Files\Common Files\McAfee\MMSSHost\MMSSHOST.exe
SourceImageeqC:\Program Files\Malwarebytes\Anti-Malware\MBAMService.exe
SourceImageeqC:\Program Files\Windows Defender\MsMpEng.exe
SourceImageeqC:\WINDOWS\System32\perfmon.exe
SourceImageeqC:\WINDOWS\system32\taskhostw.exe
SourceImageeqC:\WINDOWS\system32\taskmgr.exe
SourceImageeqC:\WINDOWS\system32\wbem\wmiprvse.exe
SourceImageeqC:\Windows\SysWOW64\msiexec.exe
SourceImageeqC:\Windows\System32\lsass.exe
SourceImageeqC:\Windows\System32\msiexec.exe
SourceImageeqC:\Windows\sysWOW64\wbem\wmiprvse.exe
SourceImagestarts_withC:\Program Files (x86)\
SourceImagestarts_withC:\Program Files\
SourceImagestarts_withC:\WINDOWS\system32\

Indicators

Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.

FieldKindValues
GrantedAccessends_with
  • 10 corpus 4 (sigma 4)
TargetImageends_with
  • \lsass.exe corpus 16 (sigma 16)