Files
blue-team-tools/rules/windows/sysmon/sysmon_malware_script_dropper.yml
T

35 lines
976 B
YAML
Raw Normal View History

2017-05-05 17:30:46 +02:00
title: WScript or CScript Dropper
status: experimental
description: Detects wscript/cscript executions of scripts located in user directories
author: Margaritis Dimitrios (idea), Florian Roth (rule)
logsource:
product: windows
service: sysmon
detection:
selection:
EventID: 1
Image:
- '*\wscript.exe'
- '*\cscript.exe'
CommandLine:
2019-02-03 00:24:57 +01:00
- '* 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 *'
2017-05-05 17:30:46 +02:00
falsepositive:
ParentImage: '*\winzip*'
condition: selection
2017-09-12 23:54:04 +02:00
fields:
- CommandLine
- ParentCommandLine
2017-05-05 17:30:46 +02:00
falsepositives:
- Winzip
- Other self-extractors
level: high