Skip to content

Commit 2dcadfe

Browse files
authored
Merge pull request #3514 from splunk/vignesh_fsutil
Add missing Processes.process="*setzerodata*"
2 parents 741bf0b + 25eb348 commit 2dcadfe

File tree

8 files changed

+11
-15
lines changed

8 files changed

+11
-15
lines changed

.github/workflows/appinspect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
name: content-latest
4747
path: |
4848
artifacts/DA-ESS-ContentUpdate-latest.tar.gz
49-
artifacts/app_inspect_report
49+
artifacts/app_inspect_report

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,8 @@ jobs:
1919

2020
- name: Install Python Dependencies and ContentCTL and Atomic Red Team
2121
run: |
22-
if [ -n "${{ vars.CONTENTCTL_VERSION }}" ]; then
23-
echo "Installing contentctl version ${{ vars.CONTENTCTL_VERSION }}"
24-
pip install contentctl==${{ vars.CONTENTCTL_VERSION }}
25-
else
26-
echo "Installing latest contentctl version"
27-
pip install contentctl
28-
fi
22+
echo "- Contentctl version - $(cat requirements.txt)"
23+
pip install -r requirements.txt
2924
git clone --depth=1 --single-branch --branch=master https://github.com/redcanaryco/atomic-red-team.git external_repos/atomic-red-team
3025
git clone --depth=1 --single-branch --branch=master https://github.com/mitre/cti external_repos/cti
3126

.github/workflows/unit-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ jobs:
6969
run: |
7070
echo "This job will fail if there are failures in unit-testing"
7171
python .github/workflows/format_test_results.py >> $GITHUB_STEP_SUMMARY
72-
echo "The Unit testing is completed. See details in the unit-testing job summary UI "
72+
echo "The Unit testing is completed. See details in the unit-testing job summary UI "

contentctl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ app:
33
uid: 3449
44
title: ES Content Updates
55
appid: DA-ESS-ContentUpdate
6-
version: 5.5.0
6+
version: 5.6.0
77
description: Explore the Analytic Stories included with ES Content Updates.
88
prefix: ESCU
99
label: ESCU

detections/endpoint/fsutil_zeroing_file.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Fsutil Zeroing File
22
id: 4e5e024e-fabb-11eb-8b8f-acde48001122
3-
version: 6
4-
date: '2025-05-02'
3+
version: 7
4+
date: '2025-05-08'
55
author: Teoderick Contreras, Splunk
66
status: production
77
type: TTP
@@ -19,7 +19,7 @@ data_source:
1919
- CrowdStrike ProcessRollup2
2020
search: '| tstats `security_content_summariesonly` count values(Processes.process)
2121
as process values(Processes.parent_process) as parent_process min(_time) as firstTime
22-
max(_time) as lastTime from datamodel=Endpoint.Processes where Processes.process_name=fsutil.exe
22+
max(_time) as lastTime from datamodel=Endpoint.Processes where Processes.process_name=fsutil.exe Processes.process="*setzerodata*"
2323
by Processes.action Processes.dest Processes.original_file_name Processes.parent_process
2424
Processes.parent_process_exec Processes.parent_process_guid Processes.parent_process_id
2525
Processes.parent_process_name Processes.parent_process_path Processes.process Processes.process_exec

detections/deprecated/detect_large_outbound_icmp_packets.yml renamed to removed/detections/detect_large_outbound_icmp_packets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: e9c102de-4d43-42a7-b1c8-8062ea297419
33
version: 12
44
date: '2025-05-02'
55
author: Rico Valdez, Dean Luxton, Bhavin Patel, Splunk
6-
status: deprecated
6+
status: removed
77
type: TTP
88
description: This analytic has been deprecated in favour of a better named detection - Detect Large ICMP Traffic. The following analytic identifies outbound ICMP packets with a size larger
99
than 1,000 bytes. It leverages the Network_Traffic data model to detect unusually

detections/deprecated/windows_service_created_within_public_path.yml renamed to removed/detections/windows_service_created_within_public_path.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: 3abb2eda-4bb8-11ec-9ae4-3e22fbd008af
33
version: 9
44
date: '2025-05-02'
55
author: Mauricio Velazco, Splunk
6-
status: deprecated
6+
status: removed
77
type: TTP
88
description: This analytic is deprecated because it is a duplicate of - "Windows Service Created with Suspicious Service Path".
99
The following analytic detects the creation of a Windows Service with

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
contentctl==5.5.1

0 commit comments

Comments
 (0)