Google Workspace Admin Role Deletion

Detects when a custom admin role is deleted. An adversary may delete a custom admin role in order to impact the permissions or capabilities of system administrators.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2020/11/17"
  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 = """
 12Detects when a custom admin role is deleted. An adversary may delete a custom admin role in order to impact the
 13permissions or capabilities of system administrators.
 14"""
 15false_positives = [
 16    """
 17    Google Workspace admin roles may be deleted by system administrators. Verify that the configuration change was
 18    expected. Exceptions can be added to this rule to filter expected behavior.
 19    """,
 20]
 21from = "now-130m"
 22index = ["filebeat-*", "logs-google_workspace*"]
 23interval = "10m"
 24language = "kuery"
 25license = "Elastic License v2"
 26name = "Google Workspace Admin Role Deletion"
 27note = """## Triage and analysis
 28
 29### Investigating Google Workspace Admin Role Deletion
 30
 31Google Workspace roles allow administrators to assign specific permissions to users or groups where the principle of least privilege (PoLP) is recommended. Admin roles in Google Workspace grant users access to the Google Admin console, where further domain-wide settings are accessible. Google Workspace contains prebuilt administrator roles for performing business functions related to users, groups, and services. Custom administrator roles can be created where prebuilt roles are not preferred.
 32
 33Deleted administrator roles may render some user accounts inaccessible or cause operational failure where these roles are relied upon to perform daily administrative tasks. The deletion of roles may also hinder the response and remediation actions of administrators responding to security-related alerts and events. Without specific roles assigned, users will inherit the permissions and privileges of the root organizational unit.
 34
 35This rule identifies when a Google Workspace administrative role is deleted within the Google Admin console.
 36
 37#### Possible investigation steps
 38
 39- Identify the associated user accounts by reviewing `user.name` or `user.email` fields in the alert.
 40- Identify the role deleted by reviewing `google_workspace.admin.role.name` in the alert.
 41- With the user identified, verify if he has administrative privileges to disable or delete administrative roles.
 42- To identify other users affected by this role removed, search for `event.action: ASSIGN_ROLE`.
 43    - Add `google_workspace.admin.role.name` with the role deleted as an additional filter.
 44    - Adjust the relative time accordingly to identify all users that were assigned this admin role.
 45
 46### False positive analysis
 47
 48- After identifying the user account that disabled the admin role, verify the action was intentional.
 49
 50### Response and remediation
 51
 52- Initiate the incident response process based on the outcome of the triage.
 53- Discuss with the user the affected users as a result of this action to mitigate operational discrepencies.
 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/2406043?hl=en"]
 80risk_score = 47
 81rule_id = "93e63c3e-4154-4fc6-9f86-b411e0987bbf"
 82severity = "medium"
 83tags = [
 84    "Domain: Cloud",
 85    "Data Source: Google Workspace",
 86    "Use Case: Identity and Access Audit",
 87    "Tactic: Impact",
 88    "Resources: Investigation Guide"
 89]
 90timestamp_override = "event.ingested"
 91type = "query"
 92
 93query = '''
 94event.dataset:google_workspace.admin and event.provider:admin and event.category:iam and event.action:DELETE_ROLE
 95'''
 96
 97
 98[[rule.threat]]
 99framework = "MITRE ATT&CK"
100[[rule.threat.technique]]
101id = "T1531"
102name = "Account Access Removal"
103reference = "https://attack.mitre.org/techniques/T1531/"
104
105
106[rule.threat.tactic]
107id = "TA0040"
108name = "Impact"
109reference = "https://attack.mitre.org/tactics/TA0040/"

Triage and analysis

Investigating Google Workspace Admin Role Deletion

Google Workspace roles allow administrators to assign specific permissions to users or groups where the principle of least privilege (PoLP) is recommended. Admin roles in Google Workspace grant users access to the Google Admin console, where further domain-wide settings are accessible. Google Workspace contains prebuilt administrator roles for performing business functions related to users, groups, and services. Custom administrator roles can be created where prebuilt roles are not preferred.

Deleted administrator roles may render some user accounts inaccessible or cause operational failure where these roles are relied upon to perform daily administrative tasks. The deletion of roles may also hinder the response and remediation actions of administrators responding to security-related alerts and events. Without specific roles assigned, users will inherit the permissions and privileges of the root organizational unit.

This rule identifies when a Google Workspace administrative role is deleted within the Google Admin console.

Possible investigation steps

  • Identify the associated user accounts by reviewing user.name or user.email fields in the alert.
  • Identify the role deleted by reviewing google_workspace.admin.role.name in the alert.
  • With the user identified, verify if he has administrative privileges to disable or delete administrative roles.
  • To identify other users affected by this role removed, search for event.action: ASSIGN_ROLE.
    • Add google_workspace.admin.role.name with the role deleted as an additional filter.
    • Adjust the relative time accordingly to identify all users that were assigned this admin role.

False positive analysis

  • After identifying the user account that disabled the admin role, verify the action was intentional.

Response and remediation

  • Initiate the incident response process based on the outcome of the triage.
  • Discuss with the user the affected users as a result of this action to mitigate operational discrepencies.
  • 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