django-cloud-sql-postgres

skills-sh:jezweb_claude-skills__django-cloud-sql-postgres

View source
B
84/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

4

Score

84/100

MEDIUM 2
LOW 2

Findings (4)

MEDIUM
CLI credential flags
L278

Detects command-line flags passing credentials with real-looking values

--password
=
YOUR_SECURE_PASSWORD
FIX

Remove credential values from CLI flags (e.g., --password, --token). Use environment variables, config files with restricted permissions, or interactive prompts instead.

FP?

Likely FP if the CLI flag is shown in a help text example (e.g., --token YOUR_TOKEN) without an actual credential value.

MEDIUM
CLI credential flags
L628

Detects command-line flags passing credentials with real-looking values

--password=NEW_PASSWORD
FIX

Remove credential values from CLI flags (e.g., --password, --token). Use environment variables, config files with restricted permissions, or interactive prompts instead.

FP?

Likely FP if the CLI flag is shown in a help text example (e.g., --token YOUR_TOKEN) without an actual credential value.

LOW
pip install arbitrary package
L30

Detects pip install of arbitrary packages that modify the host environment

pip
install
Dj
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
System package manager install
L378

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

brew
install
c
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.