spotify-cli

clawhub:spotify-cli

View source
B
84/100

First Seen

Feb 18, 2026

Last Scanned

Feb 22, 2026

Findings

4

Score

84/100

MEDIUM 2
LOW 2

Findings (4)

MEDIUM
Non-standard port communication
L24

Detects outbound connections to non-standard ports

http://127.0.0.1:8888
FIX

Restrict network connections to standard ports (80, 443) and explicitly allowlisted service ports. Block connections to unusual ports that could indicate covert channels.

FP?

Likely FP if the non-standard port is localhost (127.0.0.1) used for local development servers (e.g., port 3000, 8080, 5432 for a local database).

MEDIUM
Privilege escalation
L44

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

sudo chmod
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
pip install arbitrary package
L17

Detects pip install of arbitrary packages that modify the host environment

pip3 install sp
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-standard port communication
L34

Detects outbound connections to non-standard ports

http://127.0.0.1:8888
FIX

Restrict network connections to standard ports (80, 443) and explicitly allowlisted service ports. Block connections to unusual ports that could indicate covert channels.

FP?

Likely FP if the non-standard port is localhost (127.0.0.1) used for local development servers (e.g., port 3000, 8080, 5432 for a local database).