Google Workspace Bitlocker Setting Disabled
Google Workspace administrators whom manage Windows devices and have Windows device management enabled may also enable BitLocker drive encryption to mitigate unauthorized data access on lost or stolen computers. Adversaries with valid account access may disable BitLocker to access sensitive data on an endpoint added to Google Workspace device management.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2022/09/06"
3integration = ["google_workspace"]
4maturity = "production"
5updated_date = "2026/05/27"
6
7[rule]
8author = ["Elastic"]
9description = """
10Google Workspace administrators whom manage Windows devices and have Windows device management enabled may also enable
11BitLocker drive encryption to mitigate unauthorized data access on lost or stolen computers. Adversaries with valid
12account access may disable BitLocker to access sensitive data on an endpoint added to Google Workspace device
13management.
14"""
15false_positives = [
16 """
17 Administrators may temporarily disabled Bitlocker on managed devices for maintenance, testing or to resolve
18 potential endpoint conflicts.
19 """,
20]
21from = "now-130m"
22index = ["filebeat-*", "logs-google_workspace.admin-*"]
23interval = "10m"
24language = "kuery"
25license = "Elastic License v2"
26name = "Google Workspace Bitlocker Setting Disabled"
27note = """## Triage and analysis
28
29### Investigating Google Workspace Bitlocker Setting Disabled
30
31BitLocker Drive Encryption is a data protection feature that integrates with the Windows operating system to address the data theft or exposure threats from lost, stolen, or inappropriately decommissioned computers. BitLocker helps mitigate unauthorized data access by enhancing file and system protections, such as data encryption and rendering data inaccessible. Google Workspace can sync with Windows endpoints that are registered in inventory, where BitLocker can be enabled and disabled.
32
33Disabling Bitlocker on an endpoint decrypts data at rest and makes it accessible, which raises the risk of exposing sensitive endpoint data.
34
35This rule identifies a user with administrative privileges and access to the admin console, disabling BitLocker for Windows endpoints.
36
37### Possible investigation steps
38
39- Identify the associated user accounts by reviewing `user.name` or `user.email` fields in the alert.
40- Review `google_workspace.admin.org_unit.name`, `google_workspace.admin.setting.name`, and `google_workspace.admin.old_value` / `new_value` to confirm BitLocker was disabled and for which OU.
41- After identifying the user, verify if the user should have administrative privileges to disable BitLocker on Windows endpoints.
42- Review Admin and Device logs, filtering on the user email identified from the alert.
43- Confirm the policy change under `Devices` (Windows device management) or the relevant Chrome/Windows endpoint settings area for the affected OU.
44
45### False positive analysis
46
47- An administrator may have intentionally disabled BitLocker for routine maintenance or endpoint updates.
48 - Verify with the user that they intended to disable BitLocker on Windows endpoints.
49
50### Response and remediation
51
52- Initiate the incident response process based on the outcome of the triage.
53- Disable or limit the account during the investigation and response.
54- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
55 - Identify the account role in the cloud environment.
56 - Assess the criticality of affected services and servers.
57 - Work with your IT team to identify and minimize the impact on users.
58 - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
59 - Identify any regulatory or legal ramifications related to this activity.
60- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
61- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
62- Implement security best practices [outlined](https://support.google.com/a/answer/7587183) by Google.
63- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
64- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
65
66## Setup
67
68The Google Workspace Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.
69
70### Important Information Regarding Google Workspace Event Lag Times
71- As per Google's documentation, Google Workspace administrators may observe lag times ranging from minutes up to 3 days between the time of an event's occurrence and the event being visible in the Google Workspace admin/audit logs.
72- This rule is configured to run every 10 minutes with a lookback time of 130 minutes.
73- To reduce the risk of false negatives, consider reducing the interval that the Google Workspace (formerly G Suite) Filebeat module polls Google's reporting API for new events.
74- By default, `var.interval` is set to 2 hours (2h). Consider changing this interval to a lower value, such as 10 minutes (10m).
75- See the following references for further information:
76 - https://support.google.com/a/answer/7061566
77 - https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-google_workspace.html"""
78references = [
79 "https://support.google.com/a/answer/9176657?hl=en",
80 "https://www.elastic.co/security-labs/google-workspace-attack-surface-part-one",
81 "https://www.elastic.co/security-labs/google-workspace-attack-surface-part-two"
82]
83risk_score = 47
84rule_id = "7caa8e60-2df0-11ed-b814-f661ea17fbce"
85severity = "medium"
86tags = [
87 "Domain: Cloud",
88 "Data Source: Google Workspace",
89 "Use Case: Configuration Audit",
90 "Tactic: Defense Evasion",
91 "Resources: Investigation Guide",
92]
93timestamp_override = "event.ingested"
94type = "query"
95
96query = '''
97data_stream.dataset:"google_workspace.admin" and event.action:"CHANGE_APPLICATION_SETTING"
98 and google_workspace.admin.new_value:"Disabled" and google_workspace.admin.setting.name:BitLocker*
99'''
100
101[rule.investigation_fields]
102field_names = [
103 "source.ip",
104 "user.name",
105 "user.email",
106 "event.action",
107 "google_workspace.admin.org_unit.name",
108 "google_workspace.admin.setting.name",
109 "google_workspace.admin.old_value",
110 "google_workspace.admin.new_value",
111]
112
113[[rule.threat]]
114framework = "MITRE ATT&CK"
115
116[[rule.threat.technique]]
117id = "T1484"
118name = "Domain or Tenant Policy Modification"
119reference = "https://attack.mitre.org/techniques/T1484/"
120
121[[rule.threat.technique]]
122id = "T1562"
123name = "Impair Defenses"
124reference = "https://attack.mitre.org/techniques/T1562/"
125
126[[rule.threat.technique.subtechnique]]
127id = "T1562.001"
128name = "Disable or Modify Tools"
129reference = "https://attack.mitre.org/techniques/T1562/001/"
130
131[rule.threat.tactic]
132id = "TA0005"
133name = "Defense Evasion"
134reference = "https://attack.mitre.org/tactics/TA0005/"
Triage and analysis
Investigating Google Workspace Bitlocker Setting Disabled
BitLocker Drive Encryption is a data protection feature that integrates with the Windows operating system to address the data theft or exposure threats from lost, stolen, or inappropriately decommissioned computers. BitLocker helps mitigate unauthorized data access by enhancing file and system protections, such as data encryption and rendering data inaccessible. Google Workspace can sync with Windows endpoints that are registered in inventory, where BitLocker can be enabled and disabled.
Disabling Bitlocker on an endpoint decrypts data at rest and makes it accessible, which raises the risk of exposing sensitive endpoint data.
This rule identifies a user with administrative privileges and access to the admin console, disabling BitLocker for Windows endpoints.
Possible investigation steps
- Identify the associated user accounts by reviewing
user.nameoruser.emailfields in the alert. - Review
google_workspace.admin.org_unit.name,google_workspace.admin.setting.name, andgoogle_workspace.admin.old_value/new_valueto confirm BitLocker was disabled and for which OU. - After identifying the user, verify if the user should have administrative privileges to disable BitLocker on Windows endpoints.
- Review Admin and Device logs, filtering on the user email identified from the alert.
- Confirm the policy change under
Devices(Windows device management) or the relevant Chrome/Windows endpoint settings area for the affected OU.
False positive analysis
- An administrator may have intentionally disabled BitLocker for routine maintenance or endpoint updates.
- Verify with the user that they intended to disable BitLocker on Windows endpoints.
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- Disable or limit the account during the investigation and response.
- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
- Identify the account role in the cloud environment.
- Assess the criticality of affected services and servers.
- Work with your IT team to identify and minimize the impact on users.
- Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
- Identify any regulatory or legal ramifications related to this activity.
- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords or delete API keys as needed to revoke the attacker's access to the environment. Work with your IT teams to minimize the impact on business operations during these actions.
- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
- Implement security best practices outlined by Google.
- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
Setup
The Google Workspace Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.
Important Information Regarding Google Workspace Event Lag Times
- As per Google's documentation, Google Workspace administrators may observe lag times ranging from minutes up to 3 days between the time of an event's occurrence and the event being visible in the Google Workspace admin/audit logs.
- This rule is configured to run every 10 minutes with a lookback time of 130 minutes.
- To reduce the risk of false negatives, consider reducing the interval that the Google Workspace (formerly G Suite) Filebeat module polls Google's reporting API for new events.
- By default,
var.intervalis set to 2 hours (2h). Consider changing this interval to a lower value, such as 10 minutes (10m). - See the following references for further information:
References
Related rules
- Application Removed from Blocklist in Google Workspace
- Google Workspace Restrictions for Marketplace Modified to Allow Any App
- Google Workspace User Organizational Unit Changed
- Azure Automation Runbook Deleted
- Azure Diagnostic Settings Alert Suppression Rule Created or Modified