An open-source, community-driven, AI-powered tool to automate Software Bill of Materials (SBOM) validation, license compliance, and vulnerability detection for open-source dependencies.
Early Stage Notice: SBOMbardier is currently in active early development. We welcome contributors and early adopters to help shape its future! We are in need of testers to ensure the tool's functionality!
SBOM Generation & Validation
- Supports both SPDX and CycloneDX formats
- Integrates with multiple scanners (Syft, Trivy) for comprehensive dependency detection
- Resolves transitive dependencies through package manager integration
- Supports multiple package managers:
- Python (pip)
- Node.js (npm)
- Java (Maven)
- Gradle
- Validates against NTIA minimum requirements
- Supports CISA standards
- Checks for:
- Component completeness
- Required fields
- License information
- Package URLs (purls)
AI/ML Risk Analysis
- Hybrid risk prediction model (CNN for code structure + GNN for dependency graphs)
- Vulnerability correlation across NVD/OSV databases
- License conflict detection using SPDX compatibility matrix
- Code-to-image conversion pipeline for ML analysis (64x64 grayscale syntax/AST images)
Compliance Workflow Automation
- CI/CD Pipeline Integration:
- GitHub Actions integration with automated compliance checks
- GitLab CI/CD pipeline support
- Jenkins pipeline integration
- Policy Enforcement:
- Open Policy Agent (OPA) integration for flexible policy management
- Pre-built policies for GDPR, CCPA, and DORA compliance
- Custom policy support using Rego language
- Audit Trail & Evidence Collection:
- Automated audit logging with cryptographic evidence
- SBOM signing using Sigstore
- Chain of custody tracking
- Compliance Reporting:
- Automated report generation for various frameworks
- Customizable report templates
- Evidence-based compliance documentation
Platform Foundations
- FastAPI backend with Redis caching and PostgreSQL storage
- Placeholder Frontend
- Initial CI/CD integration via GitHub Actions plugin
- Docker/Kubernetes deployment scaffolding
- Python 3.10 only (Due to TensorFlow) (Backend)
- Poetry (Python dependency management)
- Node.js 18+ (Frontend)
- Docker 24+ (Container deployment)
- Syft 1.0+ and Trivy 0.50+ (SBOM generation)
- Open Policy Agent (OPA) 0.50+ (Policy enforcement)
- Clone the repository:
git clone https://github.com/EnzoFanAccount/sbombardier.git
cd sbombardier
- Install Poetry (if not already installed):
pip install poetry
- Install Python dependencies:
cd backend
# Install core dependencies only
poetry install
# Install with ML support
poetry install --extras ml
# Install with compliance features
poetry install --extras compliance
# Install all optional dependencies
poetry install --extras "ml compliance"
poetry run pip install tensorflow==2.10.0
This separation is necessary because TensorFlow's Windows wheels require special handling.
- Install external tools:
- Install Node.js dependencies:
cd frontend
npm install
- Start the FastAPI server:
cd backend
python -m sbombardier.main
The backend service will be available at http://localhost:8000
.
- Start the Vite development server:
cd frontend
npm run dev
The frontend will be available at http://localhost:5173
.
POST /generate
Content-Type: application/json
{
"format": "cyclonedx", // or "spdx"
"project_path": "/path/to/project"
}
POST /validate
Content-Type: application/json
{
"standard": "ntia", // or "cisa"
"sbom_content": "..." // SBOM content as string
}
POST /predict-risk
Content-Type: application/json
{
"name": "package-name",
"version": "1.0.0",
"license_id": "MIT",
"repo_url": "https://github.com/org/repo" // optional
}
POST /compliance/report
Content-Type: application/json
{
"project_id": "your-project-id",
"framework": "gdpr", // or "ccpa", "dora"
"start_date": "2024-01-01", // optional
"end_date": "2024-02-01" // optional
}
POST /compliance/validate-pipeline
Content-Type: application/json
{
"project_data": {
"name": "your-project",
"license": "MIT"
},
"sbom_data": {
// SBOM content
},
"ci_platform": "github" // or "gitlab"
}
- Build the containers:
docker compose build
- Start the services:
docker compose up -d
The application will be available at http://localhost:8000
(API) and http://localhost:80
(Frontend).
- Automated SBOM Generation with Syft
- SBOM validation with SPDX Tools and CycloneDX Validator
- Custom validators for NTIA/CISA
- AI base
- License compatibility matrix
- Fix CycloneDX implementation
- Confidence Calibration on Risk Models
- CI/CD Integration
- Audit and Reporting
- Policy Enforcement
- Cloud/GRC Integrations
- IDE Plugins
- Collaboration Platform
- Rule Database
- Vulnerability Curation
- Complete Frontend
- Web Deployment
We urgently need help with:
- Improving ML model accuracy and confidence calibration
- Frontend
- General Testing and Usage
- Policy rule contributions for different compliance frameworks
See our Contributor Guide for:
- Good first issues
- Development environment setup
- Community standards
AGPL-3.0 - See LICENSE for details
Special Note for Early Adopters: Your feedback is crucial! Please open issues for:
- Missing critical features
- Documentation gaps
- Model performance concerns
- Errors
- Policy rule suggestions