4312d8c958
* initial commit * addressing flake errors * added apm to _get_packagted_integrations logic * addressed flake errors * adjusted integration schema and updated rules to be a list * updated several rules and removed a unit test * updated rules with logs-* only index patterns * Update tests/test_all_rules.py Co-authored-by: Mika Ayenson <Mikaayenson@users.noreply.github.com> * addressed flake errors * integration is none is windows, endpoint or apm * adding rules with accepted incoming changes from main * fixed tag and tactic alignment errors from unit testing * adjusted unit testing logic for integration tags; added more exclusion rules * adjusted test_integration logic to be rule resistent and skip if -8.3 * adjusted comments for unit test skip * fixed merge conflicts from main * changing test_integration_tag to remove logic for rule version comparisons * added integration tag to new rule * adjusted rules updated_date value * ignore guided onboarding rule in unit tests * added integration tag to new rule Co-authored-by: Mika Ayenson <Mikaayenson@users.noreply.github.com>
57 lines
1.8 KiB
TOML
57 lines
1.8 KiB
TOML
[metadata]
|
|
creation_date = "2020/05/21"
|
|
integration = ["okta"]
|
|
maturity = "production"
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
min_stack_version = "8.3.0"
|
|
updated_date = "2022/12/14"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Detects possible Denial of Service (DoS) attacks against an Okta organization. An adversary may attempt to disrupt an
|
|
organization's business operations by performing a DoS attack against its Okta service.
|
|
"""
|
|
index = ["filebeat-*", "logs-okta*"]
|
|
language = "kuery"
|
|
license = "Elastic License v2"
|
|
name = "Possible Okta DoS Attack"
|
|
note = """## Setup
|
|
|
|
The Okta Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
|
|
references = [
|
|
"https://developer.okta.com/docs/reference/api/system-log/",
|
|
"https://developer.okta.com/docs/reference/api/event-types/",
|
|
"https://www.elastic.co/security-labs/testing-okta-visibility-and-detection-dorothy",
|
|
]
|
|
risk_score = 47
|
|
rule_id = "e6e3ecff-03dd-48ec-acbd-54a04de10c68"
|
|
severity = "medium"
|
|
tags = ["Elastic", "Identity", "Okta", "Continuous Monitoring", "SecOps", "Monitoring"]
|
|
timestamp_override = "event.ingested"
|
|
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/"
|
|
|