Thanks to visit codestin.com
Credit goes to github.com

Skip to content

DockerScan v2.0.5

Latest

Choose a tag to compare

@github-actions github-actions released this 08 Jan 10:50
· 124 commits to master since this release

πŸ‹πŸ”’ DockerScan v2.0.5

The Most Comprehensive Docker Security Scanner

By Daniel Garcia (cr0hn)


🎯 What's Included

This release includes pre-compiled binaries for:

  • Linux: amd64, arm64, 386
  • macOS: amd64 (Intel), arm64 (Apple Silicon)
  • Windows: amd64, arm64, 386
  • FreeBSD: amd64

πŸš€ Quick Start

Linux / macOS

# Download (replace with your platform)
curl -L https://github.com/cr0hn/dockerscan/releases/download/v2.0.5/dockerscan-linux-amd64 -o dockerscan

# Verify checksum (recommended)
curl -L https://github.com/cr0hn/dockerscan/releases/download/v2.0.5/checksums.txt -o checksums.txt
sha256sum -c checksums.txt --ignore-missing

# Make executable and install
chmod +x dockerscan
sudo mv dockerscan /usr/local/bin/

# Run
dockerscan nginx:latest

Windows (PowerShell)

Invoke-WebRequest -Uri "https://github.com/cr0hn/dockerscan/releases/download/v2.0.5/dockerscan-windows-amd64.exe" -OutFile "dockerscan.exe"
.\dockerscan.exe nginx:latest

🌟 Features

βœ… CIS Docker Benchmark v1.7.0 - 80+ automated compliance checks
βœ… Supply Chain Attack Detection - Based on 2024-2025 research
βœ… Advanced Secrets Detection - 40+ secret patterns (AWS, GCP, Azure, API keys, etc.)
βœ… CVE Scanning - Critical 2024-2025 vulnerabilities
βœ… Runtime Security - Linux capabilities, Seccomp, AppArmor, namespace analysis
βœ… SARIF Output - GitHub Security, Azure DevOps, VS Code integration
βœ… JSON Reports - Machine-readable format
βœ… Beautiful CLI - Color-coded severity levels

πŸ“Š Security Coverage

  • CIS Benchmark: Host config, daemon hardening, image best practices, runtime security
  • Supply Chain: Imageless containers, crypto miners, backdoored libs, signature verification
  • Secrets: Cloud credentials, API keys, private keys, JWT tokens, DB connections
  • CVEs: CVE-2024-21626, CVE-2024-23651/52/53, CVE-2024-8695/96, CVE-2025-9074
  • Runtime: Capabilities audit, Seccomp profiles, container escape detection

πŸ” Example Usage

# Basic scan
dockerscan nginx:latest

# Specific scanners
dockerscan --scanners cis,secrets,vulnerabilities myapp:v1.0

# CI/CD integration
dockerscan myapp:latest
if [ $? -eq 2 ]; then
  echo "Critical vulnerabilities found!"
  exit 1
fi

πŸ“š Documentation

πŸ› Bug Reports & Feature Requests

Please report issues at: https://github.com/cr0hn/dockerscan/issues

πŸ“„ License

BSD-3-Clause License

πŸ‘€ Author

Daniel Garcia (cr0hn)


⭐ If you find DockerScan useful, please star the repository!

Making Docker Security Accessible to Everyone