SigmaHQ/rules/windows/sysmon/sysmon_susp_regsvr32_anomalies.yml

29 lines
698 B
YAML
Raw Normal View History

2017-04-16 10:02:29 +00:00
title: Regsvr32 Anomaly
status: experimental
description: Detects various anomalies in relation to regsvr32.exe
author: Florian Roth
logsource:
product: windows
service: sysmon
detection:
# Loads from Temp folder
2017-04-16 10:02:29 +00:00
selection1:
EventID: 1
Image: '*\regsvr32.exe'
CommandLine: '*\Temp\*'
# Loaded by powershell
2017-04-16 10:02:29 +00:00
selection2:
EventID: 1
Image: '*\regsvr32.exe'
ParentImage: '*\powershell.exe'
# Regsvr32.exe used with http(s) address
selection3:
EventID: 1
Image: '*\regsvr32.exe'
Commandline: '/i:http'
condition: selection1 or selection2 or selection3
2017-04-16 10:02:29 +00:00
falsepositives:
- Unknown
level: high