Azure Delete Load Balancer Alert Not Configured
ID: azure-delete-lb-alert-unconfigured
Severity: high
Author: princechaddha
Tags: cloud,devops,azure,microsoft,load-balancer,azure-cloud-config
Description
Section titled “Description”Ensure that a Microsoft Azure activity log alert is fired whenever a “Delete Load Balancer” event is triggered within your cloud account. An Azure activity log alert fires each time the action event that matches the condition specified in the alert configuration is triggered. The alert condition that this conformity rule searches for is “Whenever the Activity Log has an event with Category=‘Administrative’, Signal name=‘Delete Load Balancer (loadBalancers)’”.
YAML Source
Section titled “YAML Source”id: azure-delete-lb-alert-unconfiguredinfo: name: Azure Delete Load Balancer Alert Not Configured author: princechaddha severity: high description: | Ensure that a Microsoft Azure activity log alert is fired whenever a "Delete Load Balancer" event is triggered within your cloud account. An Azure activity log alert fires each time the action event that matches the condition specified in the alert configuration is triggered. The alert condition that this conformity rule searches for is "Whenever the Activity Log has an event with Category='Administrative', Signal name='Delete Load Balancer (loadBalancers)'". impact: | Failing to configure alerts for "Delete Load Balancer" events can allow unauthorized or accidental deletions to go unnoticed, posing serious risks to network availability and security. remediation: | Ensure alert rules are properly configured to monitor and notify on "Delete Load Balancer" events by setting the alert condition to "Microsoft.Network/loadBalancers/delete" and attaching an action group for notifications. reference: - https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-activity-log tags: cloud,devops,azure,microsoft,load-balancer,azure-cloud-config
flow: | code(1); for (let AlertData of iterate(template.alertList)) { set("id", AlertData); code(2); }
self-contained: truecode: - engine: - sh - bash source: | az monitor activity-log alert list --output json --query '[?(enabled==`true`)].id'
extractors: - type: json name: alertList internal: true json: - '.[]'
- engine: - sh - bash source: | az monitor activity-log alert show --ids "$id" --query 'condition'
matchers-condition: and matchers: - type: word words: - '"field": "operationName"'
- type: word words: - "Microsoft.Network/loadBalancers/delete" negative: true
extractors: - type: dsl dsl: - 'id + " does not have the correct alert configuration for Delete Load Balancer events"'# digest: 4a0a004730450221008dc7934eb307d2c6e5f77c0a6b2311262fa77eb35ade3435979d43bc5be914f8022079c5c77369dc308fd88932e623ac66f22cbca2983ac3f47a90c40f02f44c656f:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "cloud/azure/activitylog/azure-delete-lb-alert-unconfigured.yaml"