-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2200 from psiinon/sbom-list
Add SBOM list page
- Loading branch information
Showing
4 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "Software Bill of Materials" | ||
type: sbom | ||
--- | ||
ZAP includes a runtime Software Bill of Materials (SBOM) generated by [CycloneDX](https://cyclonedx.org/) for both the ZAP core and all of the add-ons maintained by the ZAP team. Each SBOM will appear as a file called “bom.json” included at the root of the ZAP JARs. | ||
|
||
Runtime SBOMs for the ZAP core and the add-ons you have installed can be accessed in ZAP as per the [Software Bill of Materials](/docs/desktop/start/features/sbom/) | ||
help page. | ||
|
||
Note that SBOMs may not be available if you run ZAP from the source code, and some 3rd party add-ons may also not define them. | ||
|
||
The full set of available build time add-on SBOMs are: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{{ define "main" }} | ||
<section class="bolt-header"> | ||
<div class="wrapper py-20"> | ||
<h1 class="text--white">{{ .Title }}</h1> | ||
</div> | ||
</section> | ||
<div class="wrapper py-70"> | ||
{{- .Content -}} | ||
|
||
<table class="table"> | ||
<thead align="left"> | ||
<tr> | ||
<th style="width: 80%">Name</th> | ||
<th style="width: 20%">Components</th> | ||
</tr> | ||
</thead> | ||
|
||
{{ range .Pages }} | ||
<tr> | ||
<td> | ||
<a href="{{ .Permalink }}">{{ .Title }}</a> | ||
</td> | ||
<td> | ||
{{ len .Params.sbom.components }} | ||
</td> | ||
</tr> | ||
{{ end }} | ||
|
||
</table> | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters