@cyclonedx/cdxgen 11.0.7 → 11.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/bin/cdxgen.js +1 -0
- package/data/templates/asvs-5.0.cdx.json +4790 -0
- package/lib/cli/index.js +180 -65
- package/lib/evinser/evinser.js +6 -6
- package/lib/helpers/utils.js +429 -217
- package/lib/helpers/utils.test.js +630 -28
- package/lib/helpers/validator.js +1 -1
- package/lib/managers/binary.js +3 -0
- package/lib/managers/docker.js +94 -25
- package/lib/stages/postgen/annotator.js +2 -2
- package/lib/stages/postgen/postgen.js +2 -0
- package/package.json +3 -3
- package/types/lib/cli/index.d.ts.map +1 -1
- package/types/lib/helpers/utils.d.ts +19 -5
- package/types/lib/helpers/utils.d.ts.map +1 -1
- package/types/lib/managers/binary.d.ts.map +1 -1
- package/types/lib/managers/docker.d.ts +5 -4
- package/types/lib/managers/docker.d.ts.map +1 -1
- package/types/lib/stages/postgen/postgen.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -156,8 +156,8 @@ Options:
|
|
|
156
156
|
--standard The list of standards which may consist of regulations, industry or organizational-specif
|
|
157
157
|
ic standards, maturity models, best practices, or any other requirements which can be eva
|
|
158
158
|
luated against or attested to.
|
|
159
|
-
[array] [choices: "asvs-4.0.3", "bsimm-v13", "masvs-2.0.0", "nist_ssdf-1.1", "pcissc-secure-slc-1.1", "
|
|
160
|
-
|
|
159
|
+
[array] [choices: "asvs-5.0", "asvs-4.0.3", "bsimm-v13", "masvs-2.0.0", "nist_ssdf-1.1", "pcissc-secure-slc-1.1", "scv
|
|
160
|
+
s-1.0.0", "ssaf-DRAFT-2023-11"]
|
|
161
161
|
--min-confidence Minimum confidence needed for the identity of a component from 0 - 1, where 1 is 100% con
|
|
162
162
|
fidence. [number] [default: 0]
|
|
163
163
|
--technique Analysis technique to use
|
package/bin/cdxgen.js
CHANGED
|
@@ -276,6 +276,7 @@ const args = yargs(hideBin(process.argv))
|
|
|
276
276
|
description:
|
|
277
277
|
"The list of standards which may consist of regulations, industry or organizational-specific standards, maturity models, best practices, or any other requirements which can be evaluated against or attested to.",
|
|
278
278
|
choices: [
|
|
279
|
+
"asvs-5.0",
|
|
279
280
|
"asvs-4.0.3",
|
|
280
281
|
"bsimm-v13",
|
|
281
282
|
"masvs-2.0.0",
|