Docs/Reference/Security

Security Scanning Reference

Commands for SBOM, CBOM, and malware scanning.


export sbom

reel export sbom <pod> [container] -n <namespace> [flags]
FlagDescriptionDefault
-d, --destDestination path or S3 URIrequired
--scannersTrivy scanners (vuln, secret, license)vuln

Output: CycloneDX 1.5 JSON

S3 upload flags available. See S3 Exports.

export cbom

reel export cbom <pod> [container] -n <namespace> [flags]
FlagDescriptionDefault
-d, --destDestination path or S3 URIrequired
--diff-onlyScan only diff layerfalse
--include-system-casInclude system CA certificatesfalse

Output: CycloneDX 1.6 JSON

Detects: Algorithms, certificates, protocols, keys.

export malware

reel export malware <pod> [container] [path] -n <namespace> [flags]
FlagDescriptionDefault
-d, --destDestination path or S3 URIrequired
-r, --recursiveRecursive scantrue

Requires ClamAV sidecar.

Scheduling

Automate security scans with pod annotations:

annotations:
# reel.io/s3-bucket, reel.io/s3-region, reel.io/s3-secret...
reel.io/schedule: "0 2 * * * | export sbom"

See Scheduler Reference for syntax and S3 Exports for bucket configuration.

See Security Scanning Tutorial for examples.