mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
17 lines
528 B
YAML
17 lines
528 B
YAML
title: Webshell Detection by Keyword
|
|
description: Detects webshells that use GET requests by keyword sarches in URL strings
|
|
detection:
|
|
selection:
|
|
log:
|
|
- access.log
|
|
- error.log
|
|
keywords:
|
|
- '=whoami'
|
|
- '=net%20user'
|
|
- '=cmd%20/c%20'
|
|
condition: selection and keywords
|
|
falsepositives:
|
|
- Web sites like wikis with articles on os commands and pages that include the os commands in the URLs
|
|
- User searches in search boxes of the respective website
|
|
level: high
|