mirror of
https://github.com/keyboardcrunch/sentinelone-queries
synced 2026-06-11 02:11:21 +00:00
Cleaned up signature descriptions and metadata.
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
title: Msiexec Remote MSI
|
||||
description: The below query will accurately detect execution of remote msi files
|
||||
by msiexec.exe. The second half of the query aims to detect processes spawned by
|
||||
msi files instead of dll files in the CommandLine (as that is very noisy) and may
|
||||
return a bit of noise within for the CrossProcess Object as some auto-update processes
|
||||
may be collected by this query.
|
||||
description: Detect execution of remote msi files by msiexec.exe. The second
|
||||
half of the query aims to detect processes spawned by msi files instead of dll files
|
||||
in the CommandLine (as that is very noisy) and may return a bit of noise within
|
||||
for the CrossProcess Object as some auto-update processes may be collected by this query.
|
||||
author: keyboardcrunch
|
||||
date: 10/10/2020
|
||||
modified: null
|
||||
modified: 05/12/2020
|
||||
mitre:
|
||||
tactic: Defense Evasion
|
||||
technique: T1218
|
||||
@@ -15,6 +14,7 @@ operating_system: windows
|
||||
query: ( SrcProcName = "msiexec.exe" AND SrcProcCmdLine RegExp "https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)"
|
||||
) OR (SrcProcName RegExp "^.*\.(tmp)" AND EventType = "Open Remote Process Handle"
|
||||
AND SrcProcParentName = "msiexec.exe")
|
||||
false_positives: null
|
||||
tags: null
|
||||
false_positives:
|
||||
- Auto-update processes
|
||||
tags:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user