UAC Bypass via ICMLuaUtil

Detects the pattern of UAC Bypass using ICMLuaUtil Elevated COM interface

Sigma rule (View on GitHub)

 1title: UAC Bypass via ICMLuaUtil
 2id: 49f2f17b-b4c8-4172-a68b-d5bf95d05130
 3status: test
 4description: Detects the pattern of UAC Bypass using ICMLuaUtil Elevated COM interface
 5references:
 6    - https://www.elastic.co/guide/en/security/current/uac-bypass-via-icmluautil-elevated-com-interface.html
 7author: Florian Roth (Nextron Systems), Elastic (idea)
 8date: 2022-09-13
 9modified: 2022-09-27
10tags:
11    - attack.privilege-escalation
12    - attack.t1548.002
13logsource:
14    category: process_creation
15    product: windows
16detection:
17    selection:
18        ParentImage|endswith: '\dllhost.exe'
19        ParentCommandLine|contains:
20            - '/Processid:{3E5FC7F9-9A51-4367-9063-A120244FBEC7}'
21            - '/Processid:{D2E7041B-2927-42FB-8E9F-7CE93B6DC937}'
22    filter:
23        - Image|endswith: '\WerFault.exe'
24        - OriginalFileName: 'WerFault.exe'
25    condition: selection and not filter
26falsepositives:
27    - Unknown
28level: high

References

Related rules

to-top