Azure PostgreSQL Database Delete Alert Not Configured
ID: azure-postgresql-db-delete-unalerted
Severity: high
Author: princechaddha
Tags: cloud,devops,azure,microsoft,postgresql,azure-cloud-config
Description
Section titled “Description”Ensure that a Microsoft Azure activity log alert is fired whenever a “Delete PostgreSQL Database” 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 checks for is “Whenever the Activity Log has an event with Category=‘Administrative’, Signal name=‘Delete PostgreSQL Database (Microsoft.DBforPostgreSQL/servers/databases)’”.
YAML Source
Section titled “YAML Source”id: azure-postgresql-db-delete-unalertedinfo: name: Azure PostgreSQL Database Delete Alert Not Configured author: princechaddha severity: high description: | Ensure that a Microsoft Azure activity log alert is fired whenever a “Delete PostgreSQL Database” 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 checks for is "Whenever the Activity Log has an event with Category='Administrative', Signal name='Delete PostgreSQL Database (Microsoft.DBforPostgreSQL/servers/databases)'". impact: | Lack of alerting for "Delete PostgreSQL Database" events can allow unauthorized or accidental deletions to occur without detection, posing a significant risk to data integrity and availability. remediation: | Configure alert rules to fire when events with the operation name "Microsoft.DBforPostgreSQL/servers/databases/delete" occur, ensuring these critical events are monitored effectively. reference: - https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-activity-log tags: cloud,devops,azure,microsoft,postgresql,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.DBforPostgreSQL/servers/databases/delete" negative: true
extractors: - type: dsl dsl: - 'id + " does not have the correct alert configuration for Delete PostgreSQL Database events"'# digest: 490a004630440220791db0b169ceb46728d4e63b79fc654d21c8a9d2493779da69ff6fbacfe4c98f02202e1b82a0313b8c74ce96c4ed48ae170f6f3899b96688fd3b5c00e7c1555f0fd3: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-postgresql-db-delete-unalerted.yaml"