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"
  5min_stack_comments = "Breaking changes for Google Workspace integration."
  6min_stack_version = "8.4.0"
  7updated_date = "2023/06/22"
  8
  9[rule]
 10author = ["Elastic"]
 11description = """
 12Google Workspace administrators whom manage Windows devices and have Windows device management enabled may also enable
 13BitLocker drive encryption to mitigate unauthorized data access on lost or stolen computers. Adversaries with valid
 14account access may disable BitLocker to access sensitive data on an endpoint added to Google Workspace device
 15management.
 16"""
 17false_positives = [
 18    """
 19    Administrators may temporarily disabled Bitlocker on managed devices for maintenance, testing or to resolve
 20    potential endpoint conflicts.
 21    """,
 22]
 23from = "now-130m"
 24index = ["filebeat-*", "logs-google_workspace*"]
 25interval = "10m"
 26language = "kuery"
 27license = "Elastic License v2"
 28name = "Google Workspace Bitlocker Setting Disabled"
 29note = """## Triage and analysis
 30
 31### Investigating Google Workspace Bitlocker Setting Disabled
 32
 33BitLocker 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.
 34
 35Disabling Bitlocker on an endpoint decrypts data at rest and makes it accessible, which raises the risk of exposing sensitive endpoint data.
 36
 37This rule identifies a user with administrative privileges and access to the admin console, disabling BitLocker for Windows endpoints.
 38
 39#### Possible investigation steps
 40
 41- Identify the associated user accounts by reviewing `user.name` or `user.email` fields in the alert.
 42- After identifying the user, verify if the user should have administrative privileges to disable BitLocker on Windows endpoints.
 43- From the Google Workspace admin console, review `Reporting > Audit` and `Investigation > Device` logs, filtering on the user email identified from the alert.
 44    - If a Google Workspace user logged into their account using a potentially compromised account, this will create an `Device sync event` event.
 45
 46### False positive analysis
 47
 48- An administrator may have intentionally disabled BitLocker for routine maintenance or endpoint updates.
 49   - Verify with the user that they intended to disable BitLocker on Windows endpoints.
 50
 51### Response and remediation
 52
 53- Initiate the incident response process based on the outcome of the triage.
 54- Disable or limit the account during the investigation and response.
 55- Identify the possible impact of the incident and prioritize accordingly; the following actions can help you gain context:
 56    - Identify the account role in the cloud environment.
 57    - Assess the criticality of affected services and servers.
 58    - Work with your IT team to identify and minimize the impact on users.
 59    - Identify if the attacker is moving laterally and compromising other accounts, servers, or services.
 60    - Identify any regulatory or legal ramifications related to this activity.
 61- 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.
 62- Review the permissions assigned to the implicated user to ensure that the least privilege principle is being followed.
 63- Implement security best practices [outlined](https://support.google.com/a/answer/7587183) by Google.
 64- Determine the initial vector abused by the attacker and take action to prevent reinfection via the same vector.
 65- 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).
 66
 67## Setup
 68
 69The Google Workspace Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.
 70
 71### Important Information Regarding Google Workspace Event Lag Times
 72- 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.
 73- This rule is configured to run every 10 minutes with a lookback time of 130 minutes.
 74- 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.
 75- By default, `var.interval` is set to 2 hours (2h). Consider changing this interval to a lower value, such as 10 minutes (10m).
 76- See the following references for further information:
 77  - https://support.google.com/a/answer/7061566
 78  - https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-module-google_workspace.html"""
 79references = ["https://support.google.com/a/answer/9176657?hl=en"]
 80risk_score = 47
 81rule_id = "7caa8e60-2df0-11ed-b814-f661ea17fbce"
 82severity = "medium"
 83tags = [
 84    "Domain: Cloud",
 85    "Data Source: Google Workspace",
 86    "Use Case: Configuration Audit",
 87    "Tactic: Defense Evasion",
 88    "Resources: Investigation Guide"
 89]
 90timestamp_override = "event.ingested"
 91type = "query"
 92
 93query = '''
 94event.dataset:"google_workspace.admin" and event.action:"CHANGE_APPLICATION_SETTING" and event.category:(iam or configuration)
 95    and google_workspace.admin.new_value:"Disabled" and google_workspace.admin.setting.name:BitLocker*
 96'''
 97
 98
 99[[rule.threat]]
100framework = "MITRE ATT&CK"
101[[rule.threat.technique]]
102id = "T1562"
103name = "Impair Defenses"
104reference = "https://attack.mitre.org/techniques/T1562/"
105[[rule.threat.technique.subtechnique]]
106id = "T1562.001"
107name = "Disable or Modify Tools"
108reference = "https://attack.mitre.org/techniques/T1562/001/"
109
110
111
112[rule.threat.tactic]
113id = "TA0005"
114name = "Defense Evasion"
115reference = "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.name or user.email fields in the alert.
  • After identifying the user, verify if the user should have administrative privileges to disable BitLocker on Windows endpoints.
  • From the Google Workspace admin console, review Reporting > Audit and Investigation > Device logs, filtering on the user email identified from the alert.
    • If a Google Workspace user logged into their account using a potentially compromised account, this will create an Device sync event event.

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.interval is 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

to-top