Skip to content

Azure Storage Queue Logging Not Enabled

ID: azure-storage-queue-logging-disabled

Severity: high

Author: princechaddha

Tags: cloud,devops,azure,microsoft,storage-queue,azure-cloud-config

Ensure that Microsoft Azure Storage Queue service logging is enabled for read, write, and delete requests. The Storage Queue service records details of both successful and failed requests, including end-to-end latency, server latency, and authentication information, which is crucial for security and compliance.

id: azure-storage-queue-logging-disabled
info:
name: Azure Storage Queue Logging Not Enabled
author: princechaddha
severity: high
description: |
Ensure that Microsoft Azure Storage Queue service logging is enabled for read, write, and delete requests. The Storage Queue service records details of both successful and failed requests, including end-to-end latency, server latency, and authentication information, which is crucial for security and compliance.
impact: |
Not enabling logging for Azure Storage Queue can result in insufficient data for auditing and lack of visibility into access patterns, potentially leading to unauthorized access and data breaches.
remediation: |
Enable logging for read, write, and delete requests in Azure Storage Queue service to ensure compliance and improve security monitoring.
reference:
- https://docs.microsoft.com/en-us/azure/storage/queues/storage-queues-introduction
tags: cloud,devops,azure,microsoft,storage-queue,azure-cloud-config
flow: |
code(1);
for (let StorageAccount of iterate(template.storageAccounts)) {
StorageAccount = JSON.parse(StorageAccount);
set("name", StorageAccount.Name);
code(2);
}
self-contained: true
code:
- engine:
- sh
- bash
source: |
az storage account list --query '[*].{"Name":name}'
extractors:
- type: json
name: storageAccounts
internal: true
json:
- '.[]'
- engine:
- sh
- bash
source: |
az storage logging show --services q --account-name "$name" --output json
matchers:
- type: word
words:
- '"delete": false'
- '"read": false'
- '"write": false'
condition: and
extractors:
- type: dsl
dsl:
- 'name + " does not have logging enabled for delete, read, or write actions."'
# digest: 4a0a0047304502202d8d3c62b45b247ed11871f2345f33e073717dfee1c5b3e4d2fdb6d6a4d49c7d022100aa6fb9ae42fd21b1c5a33bc26761632a1b1a036534ab24aabe667d57b91f3875:922c64590222798bb761d5b6d8e72950

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.

Terminal window
$ nuclei -u "URL" -t "cloud/azure/storageaccounts/azure-storage-queue-logging-disabled.yaml"

View on Github