auto-generated queries from markdown notes

This commit is contained in:
@
2020-11-23 12:08:31 -06:00
parent a3c07c2199
commit 7c09d914d1
85 changed files with 1414 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
title: BITS Jobs
description: The below query will find and 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: null
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: null
tags: null