azure-devops-cli

skills-sh:github_awesome-copilot__azure-devops-cli

View source
B
77/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

6

Score

77/100

HIGH 1
MEDIUM 1
LOW 4

Findings (6)

HIGH
Curl or wget piped to shell
L19

Detects downloading scripts piped directly to a shell interpreter

curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
FIX

Download the script first, inspect it, verify its checksum, then run it. Do not pipe curl/wget output directly to sh/bash. Prefer package manager installs.

FP?

Likely FP if the download is from a well-known installer domain (e.g., brew.sh, rustup.rs), though this pattern is inherently risky even with trusted sources.

MEDIUM
Privilege escalation
L19

Detects privilege escalation patterns like setuid, chown root, or sudo with shell commands

sudo bash
FIX

Avoid depending on packages that could be subject to typosquatting or name confusion. Verify package ownership, check download counts, and audit the package source before adding dependencies.

FP?

Likely FP if the flagged package is a well-known, high-download-count package from a verified publisher.

LOW
System package manager install
L18

Detects system-level package installation via brew, apt, yum, or dnf

brew install a
FIX

Pin system packages to specific versions where the package manager supports it. Document the exact packages required and prefer containerized environments to avoid system-wide changes.

FP?

Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.

LOW
Chained shell command execution
L19

Detects chained commands using shell operators with dangerous operations

curl -sL https://aka.ms/InstallAzureCLIDeb | sudo 
FIX

Break chained commands into discrete, individually validated steps. Avoid piping untrusted output directly into a shell interpreter.

FP?

Likely FP if the matched text is a documentation example showing a common installer one-liner for a well-known tool with a canonical URL.

LOW
pip install arbitrary package
L20

Detects pip install of arbitrary packages that modify the host environment

pip install az
FIX

Pin all pip packages to exact versions (e.g., pip install package==1.2.3). Use a requirements.txt or pyproject.toml with pinned versions and hash verification.

FP?

Likely FP if the match is in documentation showing how to install the skill's own PyPI package.

LOW
Non-localhost remote MCP server URL
L1857

Detects MCP server configurations connecting to non-localhost remote URLs

"url": "https://management.azure.com/"
FIX

Change the MCP server URL to localhost or a trusted internal endpoint. If a remote server is required, verify the domain ownership and use HTTPS with certificate validation.

FP?

Likely FP if the URL points to example.com, a documentation domain, or a well-known SaaS API endpoint (e.g., api.openai.com).