SynfraCore
Synfracore
Start Learning
Navigation

Academies

Platform

RoadmapsLabsCertificationsInterviewPYQsAI AssistantCareer
Start Learning Free Learning Roadmaps

DevSecOpsCheatsheets

Quick reference — commands, syntax, and patterns

📄
Last updated Jul 2026
Expert Content

OWASP Top 10 memory aid: Injection, Broken Auth, Sensitive Data Exposure, XXE, Broken Access Control, Security Misconfiguration, XSS, Insecure Deserialization, Using Components with Known Vulnerabilities, Insufficient Logging.

DevSecOps Quick Reference

Shift-Left Security Checklist

PRE-COMMIT
  [ ] Secret scanning: git-secrets, detect-secrets, Gitleaks
  [ ] SAST: Semgrep rules in IDE plugin

PULL REQUEST / CI
  [ ] SAST: SonarQube, Semgrep, CodeQL
  [ ] Dependency scanning: Snyk, Dependabot, OWASP Dependency-Check
  [ ] IaC scanning: Checkov, tfsec, Terrascan
  [ ] Container scanning: Trivy, Grype, Snyk Container
  [ ] Secret detection: prevent secrets reaching remote

BUILD / REGISTRY
  [ ] Image signing: Cosign + Sigstore
  [ ] SBOM generation: Syft (CycloneDX/SPDX format)
  [ ] Base image: use minimal, official, pinned digests

DEPLOY / RUNTIME
  [ ] Admission control: Kyverno/OPA Gatekeeper policy
  [ ] Runtime security: Falco for anomaly detection
  [ ] RBAC: principle of least privilege
  [ ] Network policy: default-deny, explicit allow
  [ ] Secrets management: Vault or External Secrets Operator

Key Tools by Category

CategoryToolWhat it Does

|----------|------|-------------|

SASTSemgrepPattern-based code scanning
SASTSonarQubeCode quality + security analysis
DASTOWASP ZAPDynamic testing of running app
DependencySnykSCA - finds CVEs in dependencies
ContainerTrivyImage + filesystem + IaC scanning
IaCCheckovTerraform/CloudFormation policy
IaCtfsecTerraform security rules
Secretsdetect-secretsPrevents secrets in commits
RuntimeFalcoKubernetes runtime threat detection
SigningCosignOCI artifact signing
PolicyKyvernoKubernetes admission policies
Share:
Join our Community
Daily tips, job alerts, interview help — join engineers learning together
Also Worth Exploring
← Back to all DevSecOps modules
CertificationNotes