You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: This analytic is developed to detect the usage of BitLocker commands used to disable or impact boot settings. The malware ShrinkLocker uses various commands change how BitLocker handles encryption, potentially bypassing TPM requirements, enabling BitLocker without TPM, and enforcing specific startup key and PIN configurations. Such modifications can weaken system security, making it easier for unauthorized access and data breaches. Detecting these changes is crucial for maintaining robust encryption and data protection.
9
+
data_source:
10
+
- Sysmon EventID 1
11
+
- Windows Event Log Security 4688
12
+
- CrowdStrike ProcessRollup2
13
+
search: |-
14
+
| tstats `security_content_summariesonly` values(Processes.process) as process, values(Processes.parent_process) as parent_process min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where Processes.process_name = manage-bde.exe AND Processes.process IN ("* -protectors -disable *","* -protectors -delete *","* –forcerecovery *","* -lock *") by Processes.dest Processes.user Processes.process_name Processes.parent_process_name
how_to_implement: To successfully implement this search you need to be ingesting information on process that include the name of the process responsible for the changes from your endpoints into the `Endpoint` datamodel in the `Processes` node. In addition, confirm the latest CIM App 4.20 or higher is installed and the latest TA for the endpoint product.
20
+
known_false_positives: Administrators may enable or disable this feature that may cause some false positive.
- name: View the detection results for - "$dest$" and "$user$"
28
+
search: '%original_detection_search% | search dest = "$dest$" user = "$user$"'
29
+
earliest_offset: $info_min_time$
30
+
latest_offset: $info_max_time$
31
+
- name: View risk events for the last 7 days for - "$dest$" and "$user$"
32
+
search: '| from datamodel Risk.All_Risk | search normalized_risk_object IN ("$dest$","$user$") starthoursago=168 | stats count min(_time) as firstTime max(_time) as lastTime values(search_name) as "Search Name" values(risk_message) as "Risk Message" values(analyticstories) as "Analytic Stories" values(annotations._all) as "Annotations" values(annotations.mitre_attack.mitre_tactic) as "ATT&CK Tactics" by normalized_risk_object | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`'
33
+
earliest_offset: $info_min_time$
34
+
latest_offset: $info_max_time$
35
+
- name: Investigate processes on $dest$
36
+
search: '| from datamodel Endpoint.Processes
37
+
| search process_name = $process_name$ AND dest = "$dest$"'
38
+
earliest_offset: $info_min_time$
39
+
latest_offset: $info_max_time$
40
+
rba:
41
+
message: A suspicious Windows BitLocker command was run by $user$ detected on $dest$
0 commit comments