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
@@ -0,0 +1,18 @@
title: Compile After Delivery
description: Both Atomic tests for this technique leverage csc.exe for compilation
of code. The below will detect specific compilation of executables as well as dynamic
compilation through detection of csc.exe creating executable files (both dll and
exe). Filter noise from later portion of query using SrcProcParentName Not In ().
author: keyboardcrunch
date: 10/10/2020
modified: null
mitre:
tactic: Defense Evasion
technique: T1027
subtechnique: 004
operating_system: windows
query: (TgtProcName = "csc.exe" AND SrcProcCmdLine Contains "/target:exe") OR (SrcProcName =
"csc.exe" AND TgtFileIsExecutable = "true" AND SrcProcParentName Not In ("svchost.exe"))
false_positives: null
tags: null