mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
7602309138
* Converted (to generic sigma) rules * Converter outputs by default with indentation 4
32 lines
772 B
YAML
32 lines
772 B
YAML
title: Webshell Detection With Command Line Keywords
|
|
description: Detects certain command line parameters often used during reconnaissance activity via web shells
|
|
author: Florian Roth
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
ParentImage:
|
|
- '*\apache*'
|
|
- '*\tomcat*'
|
|
- '*\w3wp.exe'
|
|
- '*\php-cgi.exe'
|
|
- '*\nginx.exe'
|
|
- '*\httpd.exe'
|
|
CommandLine:
|
|
- whoami
|
|
- net user
|
|
- ping -n
|
|
- systeminfo
|
|
condition: selection
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
tags:
|
|
- attack.privilege_escalation
|
|
- attack.persistence
|
|
- attack.t1100
|
|
falsepositives:
|
|
- unknown
|
|
level: high
|