UAC Bypass Using WOW64 Logger DLL Hijack

Detects the pattern of UAC Bypass using a WoW64 logger DLL hijack (UACMe 30)

Sigma rule (View on GitHub)

 1title: UAC Bypass Using WOW64 Logger DLL Hijack
 2id: 4f6c43e2-f989-4ea5-bcd8-843b49a0317c
 3status: test
 4description: Detects the pattern of UAC Bypass using a WoW64 logger DLL hijack (UACMe 30)
 5references:
 6    - https://github.com/hfiref0x/UACME
 7author: Christian Burkard (Nextron Systems)
 8date: 2021/08/23
 9modified: 2022/10/09
10tags:
11    - attack.defense_evasion
12    - attack.privilege_escalation
13    - attack.t1548.002
14logsource:
15    category: process_access
16    product: windows
17detection:
18    selection:
19        SourceImage|contains: ':\Windows\SysWOW64\'
20        GrantedAccess: '0x1fffff'
21        CallTrace|startswith: 'UNKNOWN(0000000000000000)|UNKNOWN(0000000000000000)|'
22    condition: selection
23falsepositives:
24    - Unknown
25level: high

References

Related rules

to-top