mirror of
https://github.com/keyboardcrunch/sentinelone-queries
synced 2026-06-09 09:27:16 +00:00
22 lines
903 B
YAML
22 lines
903 B
YAML
title: BITS Jobs
|
|
description: Detect remote content downloads from DesktopImgDownldr
|
|
or BitsAdmin processes, Start-BitsTransfer cmdlet downloads, and excludes system
|
|
processes and noise with SrcProcParentName Not In ().
|
|
author: keyboardcrunch
|
|
date: 10/10/2020
|
|
modified: 05/12/2020
|
|
mitre:
|
|
tactic: Defense Evasion, Persistence
|
|
technique: T1197
|
|
subtechnique: null
|
|
operating_system: windows
|
|
query: (( TgtProcName In Contains Anycase ("bitsadmin.exe","desktopimgdownldr.exe")
|
|
AND ( TgtProcCmdLine RegExp "https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)"
|
|
OR TgtProcCmdLine ContainsCIS "/setnotifycmdline " ) ) OR ( TgtProcName = "powershell.exe"
|
|
AND TgtProcCmdLine ContainsCIS "Start-BitsTransfer" ) ) AND SrcProcParentName Not
|
|
In ("services.exe","smss.exe","wininit.exe")
|
|
false_positives:
|
|
- Powershell file downloads
|
|
tags: null
|
|
|