infrastructure-scanning
Installation
SKILL.md
Infrastructure Scanning
Comprehensive security scanning for containerized Python services on AWS. Combines Trivy (vulnerabilities), Checkov (IaC misconfigurations), and Semgrep (code patterns).
Quick Commands
# Full infrastructure scan
trivy fs --scanners vuln,secret,misconfig --severity HIGH,CRITICAL .
# Docker image scan
trivy image --severity HIGH,CRITICAL jarvis-fresh:latest
# Terraform scan
trivy config terraform/ --severity HIGH,CRITICAL
checkov -d terraform/ --framework terraform --check HIGH