Alauda Container Security enables you to generate a Software Bill of Materials (SBOM) from scanned container images. This feature provides a detailed overview of software components, dependencies, and libraries within your application, helping organizations locate vulnerable packages and comply with security requirements.
A Software Bill of Materials (SBOM) is a digital record listing the components of a piece of software and their origins. SBOMs help organizations:
SBOMs can be generated in different ways. The SBOMs generated by Alauda Container Security are "Analyzed" SBOMs, created by analyzing artifacts such as executables, packages, containers, and VM images. According to CISA, analyzed SBOMs:
The SBOM generated by Alauda Container Security is in System Package Data Exchange (SPDX) 2.3 format.
You can generate SBOMs using the Alauda Container Security portal, the roxctl
CLI, or the API.
roxctl
CLIRun the following command:
Replace image-name
with the name and reference of the image (e.g., nginx:latest
or nginx@sha256:...
).
Option | Description |
---|---|
-f, --force | Bypass Central's cache for the image and force a new pull from the scanner. Default: false . |
-d, --retry-delay integer | Time to wait between retries in seconds. Default: 3. |
-i, --image string | Image name and reference (e.g., nginx:latest or nginx@sha256:... ). |
-r, --retries integer | Number of times Scanner V4 should retry before exiting with an error. Default: 3. |