SBOM Security Checklist for DevSecOps
Table of contents
- Generate SBOM for your software
- Validate the generated SBOM
- Integrate SBOM generation in CI/CD pipeline
- Regularly update the SBOM tools
- Review and analyze SBOM for vulnerabilities
- Ensure SBOM is comprehensive and includes all components
- Protect SBOM data with proper access controls
- Monitor and update SBOM for each release
List of some best practices to SBOM for DevSecOps
Generate SBOM for your software
cyclonedx-bom -o sbom.xml
Validate the generated SBOM
bom-validator sbom.xml
Integrate SBOM generation in CI/CD pipeline
Add SBOM generation step in CI/CD script
Regularly update the SBOM tools
apt-get update && apt-get upgrade cyclonedx-bom
Review and analyze SBOM for vulnerabilities
sbom-analyzer sbom.xml
Ensure SBOM is comprehensive and includes all components
Review SBOM and add missing components
Protect SBOM data with proper access controls
Configure access controls for SBOM data
Monitor and update SBOM for each release
Automate SBOM update for each release