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

31 lines
1014 B
YAML
Raw Normal View History

2021-11-24 19:17:00 +01:00
title: Suspicious Subsystem for Linux Bash Execution
id: 5edc2273-c26f-406c-83f3-f4d948e740dd
status: experimental
2022-07-05 10:52:50 +02:00
description: Performs execution of specified file, can be used for defensive evasion.
2021-11-24 19:17:00 +01:00
references:
- https://lolbas-project.github.io/lolbas/Binaries/Bash/
author: frack113
date: 2021/11/24
2022-10-27 09:45:01 +02:00
modified: 2022/10/26
2022-10-28 15:06:36 +02:00
tags:
- attack.defense_evasion
- attack.t1202
2021-11-24 19:17:00 +01:00
logsource:
category: process_creation
product: windows
detection:
selection:
CommandLine|contains|all:
- bash.exe
- '-c '
2022-07-05 10:52:50 +02:00
filter_git:
2022-10-27 09:45:01 +02:00
- ParentCommandLine|contains:
2022-07-05 10:52:50 +02:00
- 'C:\Program Files\Git\post-install.bat'
- 'C:\Program Files (x86)\Git\post-install.bat'
- 'echo /etc/post-install/*.post' # needed for occurrences where the *.bat is the grandparent
2022-10-27 09:45:01 +02:00
- CommandLine|contains: 'echo /etc/post-install/*.post' # needed for WinEvtLog 4688 events
2022-07-05 10:52:50 +02:00
condition: selection and not 1 of filter*
2021-11-24 19:17:00 +01:00
falsepositives:
2022-03-16 13:43:54 +01:00
- Unknown
2021-11-24 19:17:00 +01:00
level: medium