SkillAgentSearch skills...

Spotter

Spotter is a comprehensive Kubernetes security scanner that uses CEL-based rules to identify security vulnerabilities, misconfigurations, and compliance violations across your Kubernetes clusters, manifests, and CI/CD pipelines.

Install / Use

/learn @madhuakula/Spotter
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<div align="center"> <p align="center"><a href="https://spotter.run" rel="spotter.run"><img src="img/spotter-horizontal.svg" alt="Spotter Logo" width="350"></a></p> <p align="center">⚡️Universal Kubernetes Security Engine</p> </div> <div align="center">

Go Report Card License Release Ask DeepWiki

</div>

Spotter is a comprehensive Kubernetes security scanner that helps identify security misconfigurations, vulnerabilities, and compliance issues in your Kubernetes clusters and manifests. Built with extensibility and performance in mind, Spotter uses the Common Expression Language (CEL) for flexible rule definitions and supports multiple output formats including SARIF for seamless CI/CD integration.

📋 Table of Contents

🚀 Quick Start

Installation

Using Go Install

go install github.com/madhuakula/spotter@latest

Using Docker

docker pull ghcr.io/madhuakula/spotter:latest

Download Binary

Download the latest release from GitHub Releases.

Basic Usage

Scan Kubernetes Manifests

# Scan a single manifest file
spotter scan manifests --path deployment.yaml

# Scan a directory of manifests
spotter scan manifests --path ./k8s-manifests/

# Scan with custom rules
spotter scan manifests --path ./manifests/ --rules-path ./custom-rules/

# Scan using custom rules
spotter scan manifests ./manifests --rules-path ./rules

# Output in JSON format
spotter scan manifests --path ./manifests/ --output json

Scan Live Kubernetes Cluster

# Scan current cluster context
spotter scan cluster

# Scan specific namespace
spotter scan cluster --namespace production

# Scan with specific kubeconfig
spotter scan cluster --kubeconfig ~/.kube/config

# Scan cluster using only custom rules
spotter scan cluster --rules-path ./rules

Rule Management

# List available rules
spotter rules list

# Validate custom rules
spotter rules validate --path ./custom-rules/

# Show rule details
spotter rules show --id SPOTTER-WORKLOAD-SECURITY-101

📖 Documentation

User Guides

🏗️ Architecture

Spotter follows a modular architecture designed for extensibility and performance:

  ┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
  │   CLI Layer     │    │   Config Layer  │    │  Output Layer   │
  │                 │    │                 │    │                 │
  │ • Commands      │    │ • YAML Config   │    │ • Table         │
  │ • Flags         │    │ • Validation    │    │ • JSON          │
  │ • Help          │    │ • Defaults      │    │ • SARIF         │
  └─────────────────┘    └─────────────────┘    └─────────────────┘
          │                       │                       │
          └───────────────────────┼───────────────────────┘
                                  │
┌─────────────────────────────────┼─────────────────────────────────┐
│                        Core Engine                                │
│                                                                   │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐  ┌───────────┐ │
│  │  Scanner    │  │    Rules    │  │   Reporter  │  │  Metrics  │ │
│  │             │  │             │  │             │  │           │ │
│  │ • Manifest  │  │ • Local     │  │ • Formatter │  │ • Timing  │ │
│  │ • Cluster   │  │ • Custom    │  │ • Writer    │  │ • Counts  │ │
│  │ • Workers   │  │ • CEL       │  │ • Streaming │  │ • Errors  │ │
│  └─────────────┘  └─────────────┘  └─────────────┘  └───────────┘ │
└───────────────────────────────────────────────────────────────────┘
         │                       │                       │
┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│  Data Sources   │    │   Rule Engine   │    │   Integrations  │
│                 │    │                 │    │                 │
│ • YAML Files    │    │ • CEL Evaluator │    │ • Kubernetes    │
│ • Kubernetes    │    │ • Rule Matcher  │    │ • CI/CD         │
│ • Directories   │    │ • Validation    │    │ • Monitoring    │
└─────────────────┘    └─────────────────┘    └─────────────────┘

🚀 Features

🔒 Security Scanning

  • Comprehensive Rule Set: Access to security rules covering OWASP Kubernetes Top 10, CIS Kubernetes Benchmark, and NSA/CISA guidelines via the hub
  • Custom Rules: Define your own security rules using CEL expressions
  • Multi-Resource Support: Scan Pods, Deployments, Services, ConfigMaps, Secrets, and more
  • Real-time Cluster Scanning: Connect to live Kubernetes clusters for runtime security assessment

🚀 Performance & Scalability

  • Concurrent Processing: Multi-threaded scanning for large clusters and manifest collections
  • Memory Efficient: Optimized for scanning large numbers of resources
  • Configurable Workers: Tune performance based on your environment

📊 Flexible Output

  • Multiple Formats: Table, JSON, YAML, and SARIF output formats
  • CI/CD Integration: SARIF support for GitHub Security tab and other security platforms
  • Detailed Reports: Comprehensive violation details with remediation guidance
  • Severity Levels: CRITICAL, HIGH, MEDIUM, and LOW classifications

🔧 Developer Experience

  • CLI Interface: Intuitive command-line interface with comprehensive help
  • Configuration Files: YAML-based configuration for consistent scanning
  • Extensible Architecture: Plugin-based design for custom scanners and reporters
  • Rich Documentation: Comprehensive guides for users and contributors

Key Components

  • Scanner: Handles resource discovery and processing
  • Rule Engine: Evaluates CEL expressions against Kubernetes resources
  • Reporter: Formats and outputs scan results
  • Config Manager: Manages configuration and rule loading
  • Metrics: Collects performance and usage statistics

🔧 Configuration

Spotter can be configured using YAML files, environment variables, or command-line (higher priority) flags:

# spotter.yaml
# Global Configuration
log-level: info
verbose: true
no-color: false
timeout: 5m
output: table
output-file: ""
kubeconfig: ""

# Common scan options (applies to all scan types)
include-rules: []
exclude-rules: []
categories: []
parallelism: 4
min-severity: ""
max-violations: 0
quiet: false
summary-only: false

# Scan-specific configurations
scan:
  # Cluster scanning configuration
  cluster:
    namespace: []
    exclude-namespaces: []
    exclude-system-namespaces: false
    resource-types: []
    include-cluster-resources: true
    context: ""

  # Manifest scanning configuration  
  manifests:
    recursive: true
    file-extensions: [".yaml", ".yml", ".json"]
    include-paths: []
    follow-symlinks: false
    exclude-system-namespaces: false
    include-cluster-resources: true

  # Helm chart scanning configuration
  helm:
    values: []
    set: []
    set-string: []
    release-name: "test-release"
    namespace: "default"
    include-dependencies: true
    validate-schema: true
    kube-version: ""
    chart-repo: ""
    chart-version: ""
    update-dependencies: false
    exclude-system-namespaces: false
    include-cluster-resources: true
    skip-tests: false
    skip-crds: false

# External rules configuration
rules-path: []

Using Configuration Files

# Use a specific config file
spotter scan manifests ./manifests --config spotter.yaml

# Override config values with flags
spotter scan cluster --config production.yaml --min-severity high --parallelism 8

🛡️ Security Rules

Spotter provides access to comprehensive security rules via the hub and supports custom rule creation:

Available Rule Categories

  • Workload Security
  • Access Control
  • Network & Traffic Security
  • Secrets & Data Protection
  • Configuration & Resource Hygiene
  • Supply Chain & Image Security
  • CI/CD & GitOps Security
  • Runtime Threat Detection
  • Audit, Logging & Compliance
  • Platform & Infrastructure Security

Custom Rule Example

apiVersion: rules.spotter.dev/v1alpha1
kind: SpotterRule
metadata:
  name: unique-name
  labels:
    category: "Workload Security"
    severity: high

spec:
  id: SPOTTER-<CATEGORY>-<NNN>
  name: "Readable Rule Name"
  version: "1.0.0"
  description: "Human readable explanation of what this rule checks"

  severity:
    level: "HIGH"                  # LOW | MEDIUM | HIGH | CRITICAL
    score: 8.7                     # 0.0 - 10.0, like CVSS

  category: "Workload Security"   # See SecurityCategory constants for all available categories
  subcategory: "Privilege Escalation"
  cwe: "CWE-269"                   # Optional CWE or MITRE ref

  regulatoryStandards:
    - name: "CIS Kubernetes 5.2.5"
      reference: "https://cisecurity.org/..."
    - name: "NIST SP 800-53 AC-6"
      reference: "https://csrc.nist.gov/..."

  match:
    resources:
      kubernetes:
        apiGroups:
          - ""
          - ap
View on GitHub
GitHub Stars74
CategoryDevelopment
Updated4d ago
Forks1

Languages

Go

Security Score

100/100

Audited on Mar 19, 2026

No findings