First Seen
Feb 18, 2026
Last Scanned
Feb 20, 2026
Findings
5
Score
84/100
Findings (5)
Detects Docker containers in MCP configs with privileged mode or dangerous host mounts
-v ./:/s Remove the auto-approve or auto-confirm flag from the MCP configuration. Require explicit user confirmation for tool executions, especially those with side effects.
Likely FP if the auto-confirm flag is in a CI/CD configuration where automated approval is intentional and the environment is controlled.
Detects skills fetching external URLs to use as runtime instructions
curl -O https://raw.githubusercontent.com + Configuration Pin the downloaded resource to a specific version or commit hash, and verify its integrity with a checksum (SHA-256). Avoid fetching scripts or binaries from arbitrary URLs at runtime.
Likely FP if the download URL points to a well-known CDN or package registry (e.g., npmjs.com, pypi.org) and is pinned to a specific version.
Detects system-level package installation via brew, apt, yum, or dnf
apt install a 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.
Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.
Detects pulling and running Docker images from external registries
docker pull aflplusplus/aflplusplus Pin Docker images to a specific digest (e.g., image@sha256:abc...) instead of using mutable tags like :latest. Use trusted base images from verified publishers.
Likely FP if the Docker command pulls a well-known official image (e.g., docker pull python:3.11) in setup documentation.
Detects system-level package installation via brew, apt, yum, or dnf
apt install g 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.
Likely FP if the match is standard setup documentation listing well-known system packages (e.g., apt install git curl) that are prerequisites.