Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_interactive_at.yml
T

29 lines
864 B
YAML
Raw Normal View History

2019-10-28 11:59:49 +01:00
title: Interactive AT Job
2019-12-19 23:56:36 +01:00
id: 60fc936d-2eb0-4543-8a13-911c750a1dfc
2021-11-27 11:33:14 +01:00
status: test
description: Detect an interactive AT job, which may be used as a form of privilege escalation.
author: E.M. Anhaus (originally from Atomic Blue Detections, Endgame), oscd.community
2019-11-11 04:06:37 +03:00
references:
2021-11-27 11:33:14 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1053.002/T1053.002.md
- https://eqllib.readthedocs.io/en/latest/analytics/d8db43cf-ed52-4f5c-9fb3-c9a4b95a0b56.html
2019-10-28 11:59:49 +01:00
date: 2019/10/24
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
2020-01-19 22:34:16 +01:00
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
2019-10-28 11:59:49 +01:00
detection:
2021-11-27 11:33:14 +01:00
selection:
Image|endswith: '\at.exe'
CommandLine|contains: 'interactive'
condition: selection
2020-01-11 00:11:27 +01:00
fields:
2021-11-27 11:33:14 +01:00
- ComputerName
- User
- CommandLine
2019-10-28 11:59:49 +01:00
falsepositives:
2021-11-27 11:33:14 +01:00
- Unlikely (at.exe deprecated as of Windows 8)
2019-10-28 11:59:49 +01:00
level: high
2021-11-27 11:33:14 +01:00
tags:
- attack.privilege_escalation
- attack.t1053.002