Skip to content

Commit f300930

Browse files
committed
feat(rules): Add UAC bypass via elevated Internet Explorer add-on installer COM interface rule
Identifies potential User Account Control (UAC) bypass activity involving the elevated Internet Explorer add-on installation mechanism exposed through a COM interface. Adversaries can take advantage of scenarios in which legacy Internet Explorer components are abused to execute code with high integrity outside of standard user consent flows.
1 parent d86c47c commit f300930

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: UAC bypass via elevated Internet Explorer add-on installer COM interface
2+
id: 340b09e5-6149-4655-998c-1c2fe0041576
3+
version: 1.0.0
4+
description: |
5+
Identifies potential User Account Control (UAC) bypass activity involving the
6+
elevated Internet Explorer add-on installation mechanism exposed through a
7+
COM interface. Adversaries can take advantage of scenarios in which legacy
8+
Internet Explorer components are abused to execute code with high integrity
9+
outside of standard user consent flows.
10+
labels:
11+
tactic.id: TA0004
12+
tactic.name: Privilege Escalation
13+
tactic.ref: https://attack.mitre.org/tactics/TA0004/
14+
technique.id: T1548
15+
technique.name: Abuse Elevation Control Mechanism
16+
technique.ref: https://attack.mitre.org/techniques/T1548/
17+
subtechnique.id: T1548.002
18+
subtechnique.name: Bypass User Account Control
19+
subtechnique.ref: https://attack.mitre.org/techniques/T1548/002/
20+
references:
21+
- https://github.com/hfiref0x/UACME
22+
23+
condition: >
24+
spawn_process and
25+
ps.token.integrity_level = 'HIGH' and
26+
ps.exe imatches '?:\\*\\AppData\\*\\Temp\\IDC*.tmp\\*.exe' and
27+
thread.callstack.summary imatches 'ntdll.dll|KernelBase.dll|kernel32.dll|IEAdvpack.dll|ieinstal.exe|rpcrt?.dll|*'
28+
29+
severity: high
30+
31+
min-engine-version: 3.0.0

0 commit comments

Comments
 (0)