YYour GPT for coding. Contextualize your codebase with a powerfully chained AIThe Search For A Refined Coding ChatGPT for Software Engineers
mcp-so:CodeMasterPro_StefanKumarasinghe
View sourceFirst Seen
Feb 19, 2026
Last Scanned
Feb 20, 2026
Findings
2
Score
92/100
Findings (2)
Detects pulling and running Docker images from external registries
docker
pull stefankumarasinghe/codemasterpro 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 Docker or docker-compose commands passing credentials via environment variables
docker
run
-e
GOOGLE_API_KEY
= Remove credential values from Docker environment flags (-e) and docker-compose environment sections. Use Docker secrets, .env files (in .dockerignore), or a secrets manager.
Likely FP if the Docker environment variable has an empty or placeholder value (e.g., -e API_KEY= or -e PASSWORD=changeme) in setup documentation.