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

39 lines
1.1 KiB
YAML
Raw Normal View History

title: WScript or CScript Dropper
2019-11-12 23:12:27 +01:00
id: cea72823-df4d-4567-950c-0b579eaf0846
status: experimental
description: Detects wscript/cscript executions of scripts located in user directories
author: Margaritis Dimitrios (idea), Florian Roth (rule)
tags:
- attack.defense_evasion
- attack.execution
2019-03-06 06:18:38 +01:00
- attack.t1064
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection:
Image:
- '*\wscript.exe'
- '*\cscript.exe'
CommandLine:
- '* C:\Users\\*.jse *'
- '* C:\Users\\*.vbe *'
- '* C:\Users\\*.js *'
- '* C:\Users\\*.vba *'
- '* C:\Users\\*.vbs *'
- '* C:\ProgramData\\*.jse *'
- '* C:\ProgramData\\*.vbe *'
- '* C:\ProgramData\\*.js *'
- '* C:\ProgramData\\*.vba *'
- '* C:\ProgramData\\*.vbs *'
falsepositive:
ParentImage: '*\winzip*'
condition: selection and not falsepositive
fields:
2019-03-02 00:14:20 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2019-03-02 00:14:20 +01:00
- Winzip
- Other self-extractors
level: high