GSuite Workspace Trusted Domain Allowlist Modified


Description

A Workspace Admin Has Modified The Trusted Domains List

Query · python

from panther_gsuite_helpers import gsuite_activityevent_alert_context


def rule(event):
    return event.get("type") == "DOMAIN_SETTINGS" and event.get("name", "").endswith(
        "_TRUSTED_DOMAINS"
    )


def title(event):
    return (
        f"GSuite Workspace Trusted Domains Modified "
        f"[{event.get('name', '<NO_EVENT_NAME>')}] "
        f"with [{event.deep_get('parameters', 'DOMAIN_NAME', default='<NO_DOMAIN_NAME>')}] "
        f"performed by [{event.deep_get('actor', 'email', default='<NO_ACTOR_FOUND>')}]"
    )


def alert_context(event):
    return gsuite_activityevent_alert_context(event)

Analyst notes

Verify the intent of this modification. If intent cannot be verified, then an indicator search on the actor is advised.

Raw source GSuite Workspace Trusted Domain Allowlist Modified · Panther Python
Esc
Published by panther-labs/panther-analysis ↗, licensed under Apache 2.0 ↗. Reproduced here unmodified.
AnalysisType: rule
Filename: gsuite_workspace_trusted_domains_allowlist.py
RuleID: "GSuite.Workspace.TrustedDomainsAllowlist"
DisplayName: "GSuite Workspace Trusted Domain Allowlist Modified"
Enabled: true
LogTypes:
  - GSuite.ActivityEvent
Tags:
  - GSuite
Severity: Medium
Description: >
  A Workspace Admin Has Modified The Trusted Domains List
Reference: https://support.google.com/a/answer/6160020?hl=en&sjid=864417124752637253-EU
Runbook: |
  Verify the intent of this modification. If intent cannot be verified, then
  an indicator search on the actor is advised.
SummaryAttributes:
  - actor:email
Reports:
  MITRE ATT&CK:
    - TA0003:T1098
Tests:
  - Name: Workspace Admin Remove Trusted Domain
    ExpectedResult: true
    Log:
      {
        "actor":
          {
            "callerType": "USER",
            "email": "user@example.io",
            "profileId": "110506209185950390992",
          },
        "id":
          {
            "applicationName": "admin",
            "customerId": "D12345",
            "time": "2022-12-11 00:01:34.643000000",
            "uniqueQualifier": "-2972206985263071668",
          },
        "kind": "admin#reports#activity",
        "name": "REMOVE_TRUSTED_DOMAINS",
        "p_source_label": "Staging",
        "parameters": { "DOMAIN_NAME": "evilexample.com" },
        "type": "DOMAIN_SETTINGS",
      }
  - Name: Workspace Admin Add Trusted Domain
    ExpectedResult: true
    Log:
      {
        "actor":
          {
            "callerType": "USER",
            "email": "user@example.io",
            "profileId": "110506209185950390992",
          },
        "id":
          {
            "applicationName": "admin",
            "customerId": "D12345",
            "time": "2022-12-10 23:59:24.470000000",
            "uniqueQualifier": "-334478670839567761",
          },
        "kind": "admin#reports#activity",
        "name": "ADD_TRUSTED_DOMAINS",
        "parameters": { "DOMAIN_NAME": "evilexample.com" },
        "type": "DOMAIN_SETTINGS",
      }
  - Name: Admin Set Default Calendar SHARING_OUTSIDE_DOMAIN Setting to MANAGE_ACCESS
    ExpectedResult: false
    Log:
      {
        "actor":
          {
            "callerType": "USER",
            "email": "example@example.io",
            "profileId": "12345",
          },
        "id":
          {
            "applicationName": "admin",
            "customerId": "D12345",
            "time": "2022-12-11 01:06:26.303000000",
            "uniqueQualifier": "-12345",
          },
        "ipAddress": "12.12.12.12",
        "kind": "admin#reports#activity",
        "name": "CHANGE_CALENDAR_SETTING",
        "parameters":
          {
            "DOMAIN_NAME": "example.io",
            "NEW_VALUE": "MANAGE_ACCESS",
            "OLD_VALUE": "READ_WRITE_ACCESS",
            "ORG_UNIT_NAME": "Example IO",
            "SETTING_NAME": "SHARING_OUTSIDE_DOMAIN",
          },
        "type": "CALENDAR_SETTINGS",
      }
  - Name: ListObject Type
    ExpectedResult: false
    Log:
      {
        "actor":
          { "email": "user@example.io", "profileId": "118111111111111111111" },
        "id":
          {
            "applicationName": "drive",
            "customerId": "D12345",
            "time": "2022-12-20 17:27:47.080000000",
            "uniqueQualifier": "-7312729053723258069",
          },
        "ipAddress": "12.12.12.12",
        "kind": "admin#reports#activity",
        "name": "rename",
        "parameters":
          {
            "actor_is_collaborator_account": null,
            "billable": true,
            "doc_id": "1GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
            "doc_title": "Document Title- Found Here",
            "doc_type": "presentation",
            "is_encrypted": null,
            "new_value": ["Document Title- Found Here"],
            "old_value": ["Document Title- Old"],
            "owner": "user@example.io",
            "owner_is_shared_drive": null,
            "owner_is_team_drive": null,
            "primary_event": true,
            "visibility": "private",
          },
        "type": "access",
      }


# ------ paired body: gsuite_workspace_trusted_domains_allowlist.py ------

from panther_gsuite_helpers import gsuite_activityevent_alert_context


def rule(event):
    return event.get("type") == "DOMAIN_SETTINGS" and event.get("name", "").endswith(
        "_TRUSTED_DOMAINS"
    )


def title(event):
    return (
        f"GSuite Workspace Trusted Domains Modified "
        f"[{event.get('name', '<NO_EVENT_NAME>')}] "
        f"with [{event.deep_get('parameters', 'DOMAIN_NAME', default='<NO_DOMAIN_NAME>')}] "
        f"performed by [{event.deep_get('actor', 'email', default='<NO_ACTOR_FOUND>')}]"
    )


def alert_context(event):
    return gsuite_activityevent_alert_context(event)

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.