mirror of
https://github.com/keyboardcrunch/SentinelOne-ATTACK-Queries
synced 2026-06-08 17:17:21 +00:00
updated queries
This commit is contained in:
+12
-2
@@ -1,16 +1,26 @@
|
||||
## Execution
|
||||
|
||||
### T1053.002 At (Windows)
|
||||
### T1053.002 AT Scheduled Task
|
||||
Atomics: [T1053.002](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1053.002/T1053.002.md)
|
||||
|
||||
Detect interactive process execution scheduled by AT command.
|
||||
|
||||
```
|
||||
TgtProcName = "at.exe" AND TgtProcCmdLine ContainsCIS "/interactive "
|
||||
```
|
||||
|
||||
### T1559.002 Dynamic Data Exchange
|
||||
Atomics: [T1559.002](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1559.002/T1559.002.md)
|
||||
|
||||
|
||||
### T1204.002 Malicious File
|
||||
### T1204.002 Malicious Documents
|
||||
Atomics: [T1204.002](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1204.002/T1204.002.md)
|
||||
|
||||
The tests for this technique overlap heavily with [T1566.001 Spearphishing Attachment](https://github.com/keyboardcrunch/SentinelOne-ATTACK-Queries/blob/a2fd4227666db3f1c5d6713ae3e3b21bf5343b79/InitialAccess.md#t1566001-spearphishing-attachment) due to similar download and macro detections, so here we're focusing on detecting Office applications launching processes. The below query will cover tests 1, 3 and 4 but test [#2](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1204.002/T1204.002.md#atomic-test-2---ostap-payload-download) is standalone cscript execution and will be detected with other queries.
|
||||
|
||||
```
|
||||
(SrcProcParentName In Contains ("WINWORD.EXE","EXCEL.EXE") AND SrcProcName In Contains Anycase ("cmd.exe","cscript.exe","wscript.exe","certutil.exe","powershell.exe","msbuild.exe","csc.exe")) OR IndicatorName = "SuspiciousDocument"
|
||||
```
|
||||
|
||||
### T1106 Native API
|
||||
Atomics: [T1106](https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1106/T1106.md)
|
||||
|
||||
Reference in New Issue
Block a user