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

35 lines
912 B
YAML
Raw Normal View History

title: Execution in Webserver Root Folder
2019-11-12 23:12:27 +01:00
id: 35efb964-e6a5-47ad-bbcd-19661854018d
status: experimental
description: Detects a suspicious program execution in a web service root folder (filter out false positives)
author: Florian Roth
date: 2019/01/16
tags:
- attack.persistence
2020-06-16 14:46:08 -06:00
- attack.t1505.003
- attack.t1100 # an old one
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|contains:
2020-11-28 12:34:06 -03:00
- '\wwwroot\'
- '\wmpub\'
- '\htdocs\'
2019-03-02 00:14:20 +01:00
filter:
Image|contains:
2020-11-28 12:34:06 -03:00
- 'bin\'
- '\Tools\'
- '\SMSComponent\'
ParentImage|endswith:
- '\services.exe'
2019-03-02 00:14:20 +01:00
condition: selection and not filter
fields:
2019-03-02 00:14:20 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2019-03-02 00:14:20 +01:00
- Various applications
- Tools that include ping or nslookup command invocations
level: medium