5fcece8416
Co-Authored-By: Brent Murphy <56412096+bm11100@users.noreply.github.com> Co-Authored-By: Craig Chamberlain <randomuserid@users.noreply.github.com> Co-Authored-By: David French <56409778+threat-punter@users.noreply.github.com> Co-Authored-By: Derek Ditch <dcode@users.noreply.github.com> Co-Authored-By: Justin Ibarra <brokensound77@users.noreply.github.com>
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[metadata]
|
|
creation_date = "2020/05/21"
|
|
ecs_version = ["1.5.0"]
|
|
maturity = "production"
|
|
updated_date = "2020/05/21"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
An adversary may create an Okta API token to maintain access to an organization's network while they work to achieve
|
|
their objectives. An attacker may abuse an API token to execute techniques such as creating user accounts or disabling
|
|
security rules or policies.
|
|
"""
|
|
false_positives = [
|
|
"""
|
|
If the behavior of creating Okta API tokens is expected, consider adding exceptions to this rule to filter false
|
|
positives.
|
|
""",
|
|
]
|
|
index = ["filebeat-*"]
|
|
language = "kuery"
|
|
license = "Elastic License"
|
|
name = "Attempt to Create Okta API Token"
|
|
references = [
|
|
"https://developer.okta.com/docs/reference/api/system-log/",
|
|
"https://developer.okta.com/docs/reference/api/event-types/",
|
|
]
|
|
risk_score = 21
|
|
rule_id = "96b9f4ea-0e8c-435b-8d53-2096e75fcac5"
|
|
severity = "low"
|
|
tags = ["Elastic", "Okta"]
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.dataset:okta.system and event.action:system.api_token.create
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1136"
|
|
name = "Create Account"
|
|
reference = "https://attack.mitre.org/techniques/T1136/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0003"
|
|
name = "Persistence"
|
|
reference = "https://attack.mitre.org/tactics/TA0003/"
|
|
|