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

46 lines
1.2 KiB
YAML
Raw Normal View History

title: Windows Shell Spawning Suspicious Program
2019-11-12 23:12:27 +01:00
id: 3a6586ad-127a-4d3b-a677-1e6eacdf8fde
status: experimental
description: Detects a suspicious child process of a Windows shell
references:
2019-03-02 00:14:20 +01:00
- https://mgreen27.github.io/posts/2018/04/02/DownloadCradle.html
author: Florian Roth
date: 2018/04/06
modified: 2020/09/06
tags:
- attack.execution
- attack.defense_evasion
- attack.t1064 # an old one
2020-06-16 14:46:08 -06:00
- attack.t1059.005
- attack.t1059.001
- attack.t1218
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection:
ParentImage:
- '*\mshta.exe'
- '*\powershell.exe'
# - '*\cmd.exe' # too many false positives
2019-03-02 00:14:20 +01:00
- '*\rundll32.exe'
- '*\cscript.exe'
- '*\wscript.exe'
- '*\wmiprvse.exe'
Image:
- '*\schtasks.exe'
- '*\nslookup.exe'
- '*\certutil.exe'
- '*\bitsadmin.exe'
- '*\mshta.exe'
falsepositives:
2019-09-04 14:05:58 +03:00
CurrentDirectory: '*\ccmcache\\*'
2019-03-02 00:14:20 +01:00
condition: selection and not falsepositives
fields:
2019-03-02 00:14:20 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2019-03-02 00:14:20 +01:00
- Administrative scripts
- Microsoft SCCM
level: high