Files
keyboardcrunch-sentinelone-…/DefenseEvasion.md
T
2020-09-17 20:57:35 -05:00

11 KiB

Defense Evasion

T1055.004 Asynchronous Procedure Call

Atomics: T1055.004

T1197 BITS Jobs

Atomics: T1197

T1548.002 Bypass User Access Control

Atomics: T1548.002

Detection of UAC bypass through tampering with Shell Open for .ms-settings or .msc file types. Noted issues with Sentinel Agent 4.3.2.86 detecting by registry key. All registry key paths wer ControlSet001\Service\bam\State\UserSettings\GUID\...

SrcProcCmdLine ContainsCIS "ms-settings\shell\open\command" OR SrcProcCmdLine ContainsCIS "mscfile\shell\open\command"

T1218.003 CMSTP

Atomics: T1218.003

T1574.012 COR_PROFILER

Atomics: T1574.012

Detection of unmanaged COR profiler hooking of .NET CLR through registry or process command.

(SrcProcCmdScript Contains "COR_" AND SrcProcCmdScript Contains "\Environment") OR RegistryKeyPath Contains "COR_PROFILER_PATH" OR SrcProcCmdScript Contains "$env:COR_"

T1070.001 Clear Windows Event Logs

Atomics: T1070.001

T1027.004 Compile After Delivery

Atomics: T1027.004

(TgtProcName = "csc.exe" AND SrcProcCmdLine Contains "/target:exe") OR (SrcProcName  = "csc.exe" AND TgtFileIsExecutable = "true" AND SrcProcParentName Not In ("svchost.exe","AbtSvcHost_.exe"))

T1218.001 Compiled HTML File

Atomics: T1218.001

T1218.002 Control Panel

Atomics: T1218.002

T1574.001 DLL Search Order Hijacking

Atomics: T1574.001

Detection of DLL search order hijack for AMSI bypass. Search order bypasses can target more than AMSI, so this can be expanded upon greatly by switching the ContainsCIS to In Contains Anycase(dll list).

(FileFullName ContainsCIS "amsi.dll" AND FileFullName Does Not ContainCIS "System32") AND EventType = "File Creation"

T1574.002 DLL Side-Loading of Notepad++ GUP.exe

Atomics: T1574.002

Detection for GUP.exe side-loading a dll, where executable has a display name of "WinGup for Notepad++" and has non-standard source process. Keep an eye on Cross Process events or add AND EventType = "Open Remote Process Handle" to the query to narrow down target (child) process.

TgtProcDisplayName ContainsCIS "WinGup" and SrcProcName Not In ("notepad++.exe","explorer.exe","lsass.exe","csrss.exe","svchost.exe","WerFault.exe")

T1078.001 Enable Guest account with RDP and Admin

Atomics: T1078.001

Detects enabling of Guest account, adding Guest account to groups, as well as changing of Deny/Allow of Terminal Server connections through Registry changes.

(SrcProcCmdLine ContainsCIS "net localgroup" AND SrcProcCmdLine ContainsCIS "guest /add") OR (SrcProcCmdLine ContainsCIS "net user" AND SrcProcCmdLine ContainsCIS "/active:yes") OR (RegistryKeyPath In Contains ("Terminal Server\AllowTSConnections","Terminal Server\DenyTSConnections") AND EventType In ("Registry Value Create","Registry Value Modified"))

T1140 Deobfuscate/Decode Files or Information

Atomics: T1140

T1562.002 Disable Windows Event Logging

Atomics: T1562.002

T1562.004 Disable or Modify System Firewall

Atomics: T1562.004

T1562.001 Disable or Modify Tools

Atomics: T1562.001

T1564.001 Hidden Files and Directories

Atomics: T1564.001

T1564.003 Hidden Window

Atomics: T1564.003

T1070 Indicator Removal on Host

Atomics: T1070

T1202 Indirect Command Execution

Atomics: T1202

T1553.004 Install Root Certificate

Atomics: T1553.004

T1218.004 InstallUtil

Atomics: T1218.004

T1127.001 MSBuild

Atomics: T1127.001

T1112 Modify Registry

Atomics: T1112

T1218.005 Mshta

Atomics: T1218.005

T1218.007 Msiexec

Atomics: T1218.007

T1564.004 NTFS File Attributes

Atomics: T1564.004

T1070.005 Network Share Connection Removal

Atomics: T1070.005

T1027 Obfuscated Files or Information

Atomics: T1027

T1218.008 Odbcconf

Atomics: T1218.008

T1134.004 Parent PID Spoofing

Atomics: T1134.004

Detects parent PID spoofing through Cross Process indicators (SrcProcParentName limits scope heavily) as well as detecting the use of PPID-Spoof powershell script through Command Scripts indicators. Update the TgtProcName list to filter noise.

(TgtProcRelation = "not_in_storyline" AND EventType = "Open Remote Process Handle" AND SrcProcParentName In Contains Anycase ("userinit.exe","powershell.exe","cmd.exe") AND TgtProcName != "sihost.exe" And TgtProcIntegrityLevel  != "LOW" AND TgtProcName Not In ("SystemSettings.exe")) OR (SrcProcCmdScript ContainsCIS "PPID-Spoof" AND SrcProcCmdScript ContainsCIS "hSpoofParent = [Kernel32]::OpenProcess")

T1550.002 Pass the Hash

Atomics: T1550.002

T1550.003 Pass the Ticket

Atomics: T1550.003

T1556.002 Password Filter DLL

Atomics: T1556.002

T1574.009 Unquoted Service Path for program.exe

Atomics: T1574.009

Detects creation or modification of the file at C:\program.exe for exploiting unquoted services paths of Program Files folder.

(FileFullName = "C:\program.exe" AND EventType In ("File Creation","File Modification")) OR TgtProcImagePath = "C:\program.exe"

T1055.012 Process Hollowing

Atomics: T1055.012

Detect Process Hollowing using the Start-Hollow powershell script, through CommandLine and CommandScript indicators.

The IndicatorCategory = "Injection" has a lot of noise, but in the future a combination of EventType = "Duplicate Process Handle" AND TgtProcRelation = "storyline_child" joined with some ChildProcCount or CrossProcCount > 0 may help filter the noise.

--- Detect Start-Hollow.ps1 by command or content
(SrcProcCmdScript ContainsCIS "Start-Hollow" AND SrcProcCmdScript ContainsCIS "[Hollow]::NtQueryInformationProcess") OR TgtProcCmdLine ContainsCIS "Start-Hollow"

T1055 Process Injection

Atomics: T1055

Detects Process Injection through execution of MavInject, filtering out noisy/expected activity. SrcProcParentName filter narrows Cross Process items to HQ results.

(TgtProcName = "mavinject.exe" AND TgtProcCmdLine ContainsCIS "/injectrunning") AND (SrcProcName Not In ("AppVClient.exe") AND SrcProcParentName Not In ("smss.exe"))

T1218.009 PubPrn

Atomics: T1218.009

T1218.009 Regsvcs/Regasm

Atomics: T1218.009

T1218.010 Regsvr32

Atomics: T1218.010

T1036.003 Rename System Utilities

Atomics: T1036.003

T1207 Rogue Domain Controller

Atomics: T1207

T1014 Rootkit

Atomics: T1014

T1218.011 Rundll32

Atomics: T1218.011

T1574.010 Services File Permissions Weakness

Atomics: T1574.010

T1574.011 Services Registry Permissions Weakness

Atomics: T1574.011

T1218 Signed Binary Proxy Execution

Atomics: T1218

T1216 Signed Script Proxy Execution

Atomics: T1216

T1070.006 Timestomp

Atomics: T1070.006

T1222.001 Windows File and Directory Permissions Modification

Atomics: T1222.001

T1220 XSL Script Processing

Atomics: T1220