subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
logger.info("Started existing Qdrant container") else: # Create new container subprocess.run([ "docker", "run", "-d", "--name", "engram-qdrant", "-p", "6333:6333", "-p", "6334:6334",- Confidence
- 84% confidence
- Finding
- This setup script pulls and runs qdrant/qdrant:latest, which introduces supply-chain risk because the image is not pinned to a specific digest or version. A changed or compromised upstream latest image could execute unexpected code with Docker-level privileges on the host.
