security-scanning-tools

skills-sh:sickn33_antigravity-awesome-skills__security-scanning-tools

View source
B
84/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

5

Score

84/100

MEDIUM 2
LOW 3

Findings (5)

MEDIUM
Docker pull and run untrusted image
L357

Detects pulling and running Docker images from external registries

docker
run
-t
owasp/z
FIX

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.

FP?

Likely FP if the Docker command pulls a well-known official image (e.g., docker pull python:3.11) in setup documentation.

MEDIUM
Docker pull and run untrusted image
L367

Detects pulling and running Docker images from external registries

docker
run
-t
owasp/z
FIX

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.

FP?

Likely FP if the Docker command pulls a well-known official image (e.g., docker pull python:3.11) in setup documentation.

LOW
System package manager install
L282

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

apt
install
o
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
pip install arbitrary package
L558

Detects pip install of arbitrary packages that modify the host environment

pip
install
pr
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
pip install arbitrary package
L586

Detects pip install of arbitrary packages that modify the host environment

pip
install
sc
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.