forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detects suspicious shell spawn from MSSQL process, this might be sigh…
…t of RCE or SQL Injection
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
rules/windows/process_creation/win_susp_shell_spawn_from_mssql.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
title: Suspicious Shells Spawn by SQL Server | ||
id: 869b9ca7-9ea2-4a5a-8325-e80e62f75445 | ||
description: Detects suspicious shell spawn from MSSQL process, this might be sight of RCE or SQL Injection | ||
status: experimental | ||
author: FPT.EagleEye Team | ||
date: 2020/12/11 | ||
tags: | ||
- attack.t1100 | ||
- attack.t1190 | ||
- attack.initial_access | ||
- attack.persistence | ||
- attack.privilege_escalation | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection: | ||
ParentImage: '*\sqlservr.exe' | ||
Image: | ||
- '*\cmd.exe' | ||
- '*\sh.exe' | ||
- '*\bash.exe' | ||
- '*\powershell.exe' | ||
- '*\bitsadmin.exe' | ||
condition: selection | ||
level: critical |