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

32 lines
1003 B
YAML
Raw Normal View History

2019-10-28 11:59:49 +01:00
title: Indirect Command Execution
2019-12-19 23:56:36 +01:00
id: fa47597e-90e9-41cd-ab72-c3b74cfb0d02
2021-11-27 11:33:14 +01:00
status: test
description: Detect indirect command execution via Program Compatibility Assistant (pcalua.exe or forfiles.exe).
author: E.M. Anhaus (originally from Atomic Blue Detections, Endgame), oscd.community
2019-11-11 03:20:09 +03:00
references:
2021-11-27 11:33:14 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1202/T1202.md
- https://eqllib.readthedocs.io/en/latest/analytics/884a7ccd-7305-4130-82d0-d4f90bc118b6.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:
ParentImage|endswith:
- '\pcalua.exe'
- '\forfiles.exe'
condition: selection
2020-01-11 00:11:27 +01:00
fields:
2021-11-27 11:33:14 +01:00
- ComputerName
- User
- ParentCommandLine
- CommandLine
2019-10-28 11:59:49 +01:00
falsepositives:
2021-11-27 11:33:14 +01:00
- Need to use extra processing with 'unique_count' / 'filter' to focus on outliers as opposed to commonly seen artifacts.
- Legitimate usage of scripts.
2020-01-17 15:46:28 +01:00
level: low
2021-11-27 11:33:14 +01:00
tags:
- attack.defense_evasion
- attack.t1202