From ebfe0495342b103a2c5a845895bea2b4b710db2e Mon Sep 17 00:00:00 2001 From: mhaag-spl <5632822+MHaggis@users.noreply.github.com> Date: Wed, 20 Oct 2021 15:25:48 -0600 Subject: [PATCH] Update windows_curl_download_to_suspicious_path.yml --- .../endpoint/windows_curl_download_to_suspicious_path.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detections/endpoint/windows_curl_download_to_suspicious_path.yml b/detections/endpoint/windows_curl_download_to_suspicious_path.yml index 3702e8bdcd..24379b6342 100644 --- a/detections/endpoint/windows_curl_download_to_suspicious_path.yml +++ b/detections/endpoint/windows_curl_download_to_suspicious_path.yml @@ -16,7 +16,7 @@ description: 'The following analytic identifies the use of Windows Curl.exe down if the download was successful. If a file was downloaded, capture and analyze.' search: '| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where `process_curl` Processes.process - IN ("*-O *","*--output* ") Processes.process IN ("*\\appdata\\*","*\\programdata\\*","*\\public\\*") + IN ("*-O *","*--output*") Processes.process IN ("*\\appdata\\*","*\\programdata\\*","*\\public\\*") by Processes.dest Processes.user Processes.parent_process_name Processes.process_name Processes.original_file_name Processes.process Processes.process_id Processes.parent_process_id | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`