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>
50 lines
1.3 KiB
TOML
50 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 attempt to disrupt an organization's business operations by performing a denial of service (DoS) attack
|
|
against its Okta infrastructure.
|
|
"""
|
|
index = ["filebeat-*"]
|
|
language = "kuery"
|
|
license = "Elastic License"
|
|
name = "Possible Okta DoS Attack"
|
|
references = [
|
|
"https://developer.okta.com/docs/reference/api/system-log/",
|
|
"https://developer.okta.com/docs/reference/api/event-types/",
|
|
]
|
|
risk_score = 47
|
|
rule_id = "e6e3ecff-03dd-48ec-acbd-54a04de10c68"
|
|
severity = "medium"
|
|
tags = ["Elastic", "Okta"]
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.dataset:okta.system and event.action:(application.integration.rate_limit_exceeded or system.org.rate_limit.warning or system.org.rate_limit.violation or core.concurrency.org.limit.violation)
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1498"
|
|
name = "Network Denial of Service"
|
|
reference = "https://attack.mitre.org/techniques/T1498/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1499"
|
|
name = "Endpoint Denial of Service"
|
|
reference = "https://attack.mitre.org/techniques/T1499/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0040"
|
|
name = "Impact"
|
|
reference = "https://attack.mitre.org/tactics/TA0040/"
|
|
|