The skill enables arbitrary file operations and Azure
Claims to do
Azure Storage Services: | Service | Use When | MCP Tools | CLI | |---------|----------|-----------|-----| | Blob Storage | Objects, files, backups, static content | `azure__storage` | `az storage blob` | | File Shares | SMB file shares, lift-and-shift | - | `az storage file` | | Queue Storage | Async messaging, task queues | - | `az storage queue` | | Table Storage | NoSQL key-value (consider Cosmos DB) | - | `az storage table` | | Data Lake | Big data analytics, hierarchical namespace | - | `az storage fs` |
Actually does
This skill uses the `azure__storage` MCP tool or the `az` Azure CLI to interact with Azure Storage. It can list storage accounts, containers, and blobs, and allows for uploading and downloading blob content. It also provides informational content about Azure Storage services, account/blob tiers, and redundancy options, along with links to documentation and SDK references.
npx skills add https://github.com/microsoft/github-copilot-for-azureThe skill provides Azure CLI commands for downloading and uploading blobs, which involve specifying a `LOCAL_PATH`. If the AI agent is allowed to execute these commands with arbitrary or attacker-controlled paths, it could lead to data exfiltration from the agent's environment or arbitrary file writes, potentially for malware delivery or resource abuse.
az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
The skill exposes Azure CLI commands to list storage accounts, containers, and blobs. If an AI agent executes these commands, it could be used for reconnaissance to map out cloud resources, which is a common precursor to more targeted attacks.
az storage account list --output table az storage container list --account-name ACCOUNT --output table az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
[](https://mondoo.com/ai-agent-security/skills/github/microsoft/github-copilot-for-azure/azure-storage)<a href="https://mondoo.com/ai-agent-security/skills/github/microsoft/github-copilot-for-azure/azure-storage"><img src="https://mondoo.com/ai-agent-security/api/badge/github/microsoft/github-copilot-for-azure/azure-storage.svg" alt="Mondoo Skill Check" /></a>https://mondoo.com/ai-agent-security/api/badge/github/microsoft/github-copilot-for-azure/azure-storage.svgSkills can read files, run commands, and access credentials. Mondoo helps organizations manage the security risks of AI agent skills across their entire fleet.