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>
47 lines
1.7 KiB
TOML
47 lines
1.7 KiB
TOML
[metadata]
|
|
creation_date = "2020/08/18"
|
|
integration = ["azure"]
|
|
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 = """
|
|
Identifies when an Azure Automation webhook is created. Azure Automation runbooks can be configured to execute via a
|
|
webhook. A webhook uses a custom URL passed to Azure Automation along with a data payload specific to the runbook. An
|
|
adversary may create a webhook in order to trigger a runbook that contains malicious code.
|
|
"""
|
|
from = "now-25m"
|
|
index = ["filebeat-*", "logs-azure*"]
|
|
language = "kuery"
|
|
license = "Elastic License v2"
|
|
name = "Azure Automation Webhook Created"
|
|
note = """## Setup
|
|
|
|
The Azure Fleet integration, Filebeat module, or similarly structured data is required to be compatible with this rule."""
|
|
references = [
|
|
"https://powerzure.readthedocs.io/en/latest/Functions/operational.html#create-backdoor",
|
|
"https://github.com/hausec/PowerZure",
|
|
"https://posts.specterops.io/attacking-azure-azure-ad-and-introducing-powerzure-ca70b330511a",
|
|
"https://www.ciraltos.com/webhooks-and-azure-automation-runbooks/",
|
|
]
|
|
risk_score = 21
|
|
rule_id = "e9ff9c1c-fe36-4d0d-b3fd-9e0bf4853a62"
|
|
severity = "low"
|
|
tags = ["Elastic", "Cloud", "Azure", "Continuous Monitoring", "SecOps", "Configuration Audit"]
|
|
timestamp_override = "event.ingested"
|
|
type = "query"
|
|
|
|
query = '''
|
|
event.dataset:azure.activitylogs and
|
|
azure.activitylogs.operation_name:
|
|
(
|
|
"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/WEBHOOKS/ACTION" or
|
|
"MICROSOFT.AUTOMATION/AUTOMATIONACCOUNTS/WEBHOOKS/WRITE"
|
|
) and
|
|
event.outcome:(Success or success)
|
|
'''
|
|
|