LakeXpress SBOM Downloads
Latest Version: 0.2.6
Last updated: 2026-01-29
Download Files
JSON Format (CycloneDX 1.5)
- Download: lakexpress-0.2.6-sbom.json
- SHA256:
c317bf33d6fd2a3a840844404c3250ed0a656e712d9c20eb2b2c0e6e7db5f70b - Checksum file: lakexpress-0.2.6-sbom.json.sha256
XML Format (CycloneDX 1.5)
- Download: lakexpress-0.2.6-sbom.xml
- SHA256:
1f9d3439ef4df8ca55f86a44b61034ec5138e217e01d2f229947fa1172195e64 - Checksum file: lakexpress-0.2.6-sbom.xml.sha256
All Checksums
- Combined checksums: checksums.txt
Verification Instructions
To verify the integrity of downloaded SBOM files:
# Download SBOM and checksum
wget https://aetperf.github.io/LakeXpress-Documentation/static/sboms/latest/lakexpress-0.2.6-sbom.json
wget https://aetperf.github.io/LakeXpress-Documentation/static/sboms/latest/lakexpress-0.2.6-sbom.json.sha256
# Verify
sha256sum -c lakexpress-0.2.6-sbom.json.sha256
Quick Download Script
Save this as download-sbom.sh:
#!/bin/bash
# Download and verify LakeXpress SBOM
BASE_URL="https://aetperf.github.io/LakeXpress-Documentation/static/sboms/latest"
VERSION="0.2.6"
# Download JSON SBOM and verify
echo "Downloading JSON SBOM..."
wget "${BASE_URL}/lakexpress-${VERSION}-sbom.json"
wget "${BASE_URL}/lakexpress-${VERSION}-sbom.json.sha256"
sha256sum -c "lakexpress-${VERSION}-sbom.json.sha256" || exit 1
# Download XML SBOM and verify
echo "Downloading XML SBOM..."
wget "${BASE_URL}/lakexpress-${VERSION}-sbom.xml"
wget "${BASE_URL}/lakexpress-${VERSION}-sbom.xml.sha256"
sha256sum -c "lakexpress-${VERSION}-sbom.xml.sha256" || exit 1
echo "✅ SBOMs downloaded and verified!"
Version History
All versions are available in the static/sboms directory.
About These SBOMs
The Software Bill of Materials (SBOM) provides a complete inventory of all components in LakeXpress:
- All direct dependencies with exact versions
- Package URLs (PURLs) for each component
- License information where available
- CycloneDX 1.5 format compatible with security scanning tools
Integration with Security Tools
Use these SBOMs with:
- Grype:
grype sbom:lakexpress-0.2.6-sbom.json - Trivy:
trivy sbom lakexpress-0.2.6-sbom.json - OWASP Dependency-Track: Import via UI or API
This page is automatically updated when new releases are created.