Administrator Privileges Assigned to an Okta Group
Detects when an administrator role is assigned to an Okta group. An adversary may attempt to assign administrator privileges to an Okta group in order to assign additional permissions to compromised user accounts and maintain access to their target organization.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2020/05/21"
3integration = ["okta"]
4maturity = "production"
5updated_date = "2024/12/09"
6min_stack_version = "8.15.0"
7min_stack_comments = "Breaking change at 8.15.0 for the Okta Integration."
8
9[rule]
10author = ["Elastic"]
11description = """
12Detects when an administrator role is assigned to an Okta group. An adversary may attempt to assign administrator
13privileges to an Okta group in order to assign additional permissions to compromised user accounts and maintain access
14to their target organization.
15"""
16false_positives = [
17 """
18 Administrator roles may be assigned to Okta users by a Super Admin user. Verify that the behavior was expected.
19 Exceptions can be added to this rule to filter expected behavior.
20 """,
21]
22index = ["filebeat-*", "logs-okta*"]
23language = "kuery"
24license = "Elastic License v2"
25name = "Administrator Privileges Assigned to an Okta Group"
26note = """## Setup
27
28The Okta Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
29references = [
30 "https://help.okta.com/en/prod/Content/Topics/Security/administrators-admin-comparison.htm",
31 "https://developer.okta.com/docs/reference/api/system-log/",
32 "https://developer.okta.com/docs/reference/api/event-types/",
33 "https://www.elastic.co/security-labs/testing-okta-visibility-and-detection-dorothy",
34 "https://www.elastic.co/security-labs/monitoring-okta-threats-with-elastic-security",
35 "https://www.elastic.co/security-labs/starter-guide-to-understanding-okta",
36]
37risk_score = 47
38rule_id = "b8075894-0b62-46e5-977c-31275da34419"
39severity = "medium"
40tags = ["Use Case: Identity and Access Audit", "Data Source: Okta", "Tactic: Persistence"]
41timestamp_override = "event.ingested"
42type = "query"
43
44query = '''
45event.dataset:okta.system and event.action:group.privilege.grant
46'''
47
48
49[[rule.threat]]
50framework = "MITRE ATT&CK"
51[[rule.threat.technique]]
52id = "T1098"
53name = "Account Manipulation"
54reference = "https://attack.mitre.org/techniques/T1098/"
55
56
57[rule.threat.tactic]
58id = "TA0003"
59name = "Persistence"
60reference = "https://attack.mitre.org/tactics/TA0003/"
Setup
The Okta Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule.
References
Related rules
- Administrator Role Assigned to an Okta User
- Attempt to Create Okta API Token
- Attempt to Reset MFA Factors for an Okta User Account
- MFA Deactivation with no Re-Activation for Okta User Account
- Modification or Removal of an Okta Application Sign-On Policy