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