Persistence Via Sticky Key Backdoor

By replacing the sticky keys executable with the local admins CMD executable, an attacker is able to access a privileged windows console session without authenticating to the system. When the sticky keys are "activated" the privilleged shell is launched.

Sigma rule (View on GitHub)

 1title: Persistence Via Sticky Key Backdoor
 2id: 1070db9a-3e5d-412e-8e7b-7183b616e1b3
 3status: test
 4description: |
 5    By replacing the sticky keys executable with the local admins CMD executable, an attacker is able to access a privileged windows console session without authenticating to the system.
 6    When the sticky keys are "activated" the privilleged shell is launched.    
 7references:
 8    - https://www.fireeye.com/blog/threat-research/2017/03/apt29_domain_frontin.html
 9    - https://www.clearskysec.com/wp-content/uploads/2020/02/ClearSky-Fox-Kitten-Campaign-v1.pdf
10    - https://learn.microsoft.com/en-us/archive/blogs/jonathantrull/detecting-sticky-key-backdoors
11author: Sreeman
12date: 2020/02/18
13modified: 2023/03/07
14tags:
15    - attack.t1546.008
16    - attack.privilege_escalation
17logsource:
18    product: windows
19    category: process_creation
20detection:
21    selection:
22        CommandLine|contains|all:
23            - 'copy '
24            - '/y '
25            - 'C:\windows\system32\cmd.exe C:\windows\system32\sethc.exe'
26    condition: selection
27falsepositives:
28    - Unlikely
29level: critical

References

Related rules

to-top