Azure Identity Py
PassAudited by VirusTotal on May 12, 2026.
Overview
Type: OpenClaw Skill Name: azure-identity-py Version: 0.1.0 The skill bundle provides documentation and code examples for the `azure-identity` Python SDK. It instructs the agent to install the legitimate `azure-identity` package via `pip install`. The content describes standard practices for Azure authentication, including reading credentials from environment variables, which is appropriate for an identity library. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, prompt injection attempts against the agent, or obfuscation. All actions are clearly aligned with the stated purpose of facilitating Azure authentication.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
If used incorrectly, examples may authenticate as a powerful Azure user, CLI session, managed identity, or service principal.
The skill teaches use of Azure service principal secrets and local cached/logged-in Azure credentials. This is expected for Azure authentication, but it means code may act with the selected Azure identity's permissions.
AZURE_CLIENT_SECRET=<your-client-secret> ... DefaultAzureCredential ... SharedTokenCacheCredential ... AzureCliCredential `az login`
Use least-privilege Azure identities, understand the DefaultAzureCredential order, exclude credential sources you do not want, and avoid exposing secrets in prompts, logs, or code.
Following the setup command installs the current package version from the Python package index, which may affect reproducibility or supply-chain review.
The skill instructs a user-directed package install without a version pin. This is normal for a Python SDK reference, but users should still verify and pin dependencies when appropriate.
pip install azure-identity
Install from trusted package indexes and consider pinning a reviewed azure-identity version in production projects.
