Detection rules › Panther
GSuite Workspace Calendar External Sharing Setting Change
A Workspace Admin Changed The Sharing Settings for Primary Calendars
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Discovery | T1087 Account Discovery |
Rule body yaml
AnalysisType: rule
Filename: gsuite_workspace_calendar_external_sharing.py
RuleID: "GSuite.Workspace.CalendarExternalSharingSetting"
DisplayName: "GSuite Workspace Calendar External Sharing Setting Change"
Enabled: true
LogTypes:
- GSuite.ActivityEvent
Tags:
- GSuite
Reports:
MITRE ATT&CK:
- TA0007:T1087
Severity: Medium
Description: >
A Workspace Admin Changed The Sharing Settings for Primary Calendars
Reference: https://support.google.com/a/answer/60765?hl=en
Runbook: >
Restore the calendar sharing setting to the previous value.
If unplanned, use indicator search to identify other activity from this administrator.
SummaryAttributes:
- actor:email
Tests:
- Name: Admin Set Default Calendar SHARING_OUTSIDE_DOMAIN Setting to READ_ONLY_ACCESS
ExpectedResult: true
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": "READ_ONLY_ACCESS",
"OLD_VALUE": "DEFAULT",
"ORG_UNIT_NAME": "Example IO",
"SETTING_NAME": "SHARING_OUTSIDE_DOMAIN",
},
"type": "CALENDAR_SETTINGS",
}
- Name: Admin Set Default Calendar SHARING_OUTSIDE_DOMAIN Setting to READ_WRITE_ACCESS
ExpectedResult: true
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": "READ_WRITE_ACCESS",
"OLD_VALUE": "READ_ONLY_ACCESS",
"ORG_UNIT_NAME": "Example IO",
"SETTING_NAME": "SHARING_OUTSIDE_DOMAIN",
},
"type": "CALENDAR_SETTINGS",
}
- Name: Admin Set Default Calendar SHARING_OUTSIDE_DOMAIN Setting to MANAGE_ACCESS
ExpectedResult: true
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: Non-Default Calendar SHARING_OUTSIDE_DOMAIN event
ExpectedResult: false
Log:
{
"actor":
{
"callerType": "USER",
"email": "user@example.io",
"profileId": "111111111111111111111",
},
"id":
{
"applicationName": "admin",
"customerId": "D12345",
"time": "2022-12-12 22:21:40.106000000",
"uniqueQualifier": "1000000000000000000",
},
"kind": "admin#reports#activity",
"name": "CUSTOMER_TAKEOUT_SUCCEEDED",
"parameters":
{ "OBFUSCATED_CUSTOMER_TAKEOUT_REQUEST_ID": "00mmmmmmmmmmmmm" },
"type": "CUSTOMER_TAKEOUT",
}
- 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",
}
Detection logic
Condition
name eq "CHANGE_CALENDAR_SETTING"
parameters.SETTING_NAME eq "SHARING_OUTSIDE_DOMAIN"
parameters.NEW_VALUE in ["READ_WRITE_ACCESS", "READ_ONLY_ACCESS", "MANAGE_ACCESS"]
Indicators
Each row is a field, operator, and value that the rule matches. The corpus column counts how many other rules in the catalog look for the same combination: high numbers point to widely-used, community-vetted indicators. Blank or 1 shows that the indicator is specific to this rule.
| Field | Kind | Values |
|---|---|---|
name | eq |
|
parameters.NEW_VALUE | in |
|
parameters.SETTING_NAME | eq |
|
Output fields
Fields the rule emits when it matches. Chronicle authors list these in the outcome block; they appear on the detection and $risk_score drives alerting. Sentinel / Defender XDR rules build them up through project / summarize / extend stages. Sentinel maps these into alert fields via entityMappings and customDetails; Defender XDR custom detections surface them as alert fields directly.
| Field | Source |
|---|---|
actor | actor.email |
applicationName | id.applicationName |
name | |
type | |
parameters | |
OLD_VALUE | parameters.OLD_VALUE |
NEW_VALUE | parameters.NEW_VALUE |