Interactive AT Job

Detects an interactive AT job, which may be used as a form of privilege escalation.

Sigma rule (View on GitHub)

 1title: Interactive AT Job
 2id: 60fc936d-2eb0-4543-8a13-911c750a1dfc
 3status: test
 4description: Detects an interactive AT job, which may be used as a form of privilege escalation.
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1053.002/T1053.002.md
 7    - https://eqllib.readthedocs.io/en/latest/analytics/d8db43cf-ed52-4f5c-9fb3-c9a4b95a0b56.html
 8author: E.M. Anhaus (originally from Atomic Blue Detections, Endgame), oscd.community
 9date: 2019/10/24
10modified: 2021/11/27
11tags:
12    - attack.privilege_escalation
13    - attack.t1053.002
14logsource:
15    category: process_creation
16    product: windows
17detection:
18    selection:
19        Image|endswith: '\at.exe'
20        CommandLine|contains: 'interactive'
21    condition: selection
22falsepositives:
23    - Unlikely (at.exe deprecated as of Windows 8)
24level: high

References

Related rules

to-top