diff --git a/go.mod b/go.mod index 8d25f4c9d1..b068db3f6c 100644 --- a/go.mod +++ b/go.mod @@ -101,6 +101,7 @@ require ( ) require ( + github.com/CycloneDX/cyclonedx-go v0.7.0 github.com/ossf/scorecard/v4 v4.7.0 github.com/sigstore/sigstore v1.4.3 github.com/spdx/tools-golang v0.3.1-0.20221003161519-fb7fe8874d01 diff --git a/go.sum b/go.sum index 02ec6870e1..6fd4579aad 100644 --- a/go.sum +++ b/go.sum @@ -126,6 +126,8 @@ github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBp github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/toml v0.4.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/CycloneDX/cyclonedx-go v0.7.0 h1:jNxp8hL7UpcvPDFXjY+Y1ibFtsW+e5zyF9QoSmhK/zg= +github.com/CycloneDX/cyclonedx-go v0.7.0/go.mod h1:W5Z9w8pTTL+t+yG3PCiFRGlr8PUlE0pGWzKSJbsyXkg= github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= github.com/GoogleCloudPlatform/cloudsql-proxy v1.29.0/go.mod h1:spvB9eLJH9dutlbPSRmHvSXXHOwGRyeXh1jVdquA2G8= github.com/Masterminds/goutils v1.1.0/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU= @@ -220,6 +222,7 @@ github.com/bombsimon/logrusr/v2 v2.0.1/go.mod h1:ByVAX+vHdLGAfdroiMg6q0zgq2FODY2 github.com/bombsimon/wsl/v3 v3.3.0/go.mod h1:st10JtZYLE4D5sC7b8xV4zTKZwAQjCH/Hy2Pm1FNZIc= github.com/bradleyfalzon/ghinstallation/v2 v2.1.0 h1:5+NghM1Zred9Z078QEZtm28G/kfDfZN/92gkDlLwGVA= github.com/bradleyfalzon/ghinstallation/v2 v2.1.0/go.mod h1:Xg3xPRN5Mcq6GDqeUVhFbjEWMb4JHCyWEeeBGEYQoTU= +github.com/bradleyjkemp/cupaloy/v2 v2.8.0 h1:any4BmKE+jGIaMpnU8YgH/I2LPiLBufr6oMMlVBbn9M= github.com/breml/bidichk v0.1.1/go.mod h1:zbfeitpevDUGI7V91Uzzuwrn4Vls8MoBMrwtt78jmso= github.com/butuzov/ireturn v0.1.1/go.mod h1:Wh6Zl3IMtTpaIKbmwzqi6olnM9ptYQxxVacMsOEFPoc= github.com/caarlos0/env/v6 v6.10.0 h1:lA7sxiGArZ2KkiqpOQNf8ERBRWI+v8MWIH+eGjSN22I= diff --git a/internal/testing/ingestor/testdata/testdata.go b/internal/testing/ingestor/testdata/testdata.go index c60fd69bbe..7e6afd7cfa 100644 --- a/internal/testing/ingestor/testdata/testdata.go +++ b/internal/testing/ingestor/testdata/testdata.go @@ -244,6 +244,55 @@ var ( ContainedArtifact: rsaPubFile, }, } + + // CycloneDX Testdata + + cdxTopLevelPack = assembler.PackageNode{ + Name: "gcr.io/distroless/static:nonroot", + Digest: []string{"sha256:6ad5b696af3ca05a048bd29bf0f623040462638cb0b29c8d702cbb2805687388"}, + Purl: "pkg:oci/static:nonroot?repository_url=gcr.io/distroless", + CPEs: nil, + } + + cdxTzdataPack = assembler.PackageNode{ + Name: "tzdata", + Digest: nil, + Purl: "pkg:deb/debian/tzdata@2021a-1+deb11u6?arch=all&distro=debian-11", + CPEs: []string{ + "cpe:2.3:a:tzdata:tzdata:2021a-1\\+deb11u6:*:*:*:*:*:*:*"}, + } + + cdxNetbasePack = assembler.PackageNode{ + Name: "netbase", + Digest: nil, + Purl: "pkg:deb/debian/netbase@6.3?arch=all&distro=debian-11", + CPEs: []string{ + "cpe:2.3:a:netbase:netbase:6.3:*:*:*:*:*:*:*"}, + } + + cdxBasefilesPack = assembler.PackageNode{ + Name: "base-files", + Digest: nil, + Purl: "pkg:deb/debian/base-files@11.1+deb11u5?arch=amd64&distro=debian-11", + CPEs: []string{ + "cpe:2.3:a:base-files:base-files:11.1\\+deb11u5:*:*:*:*:*:*:*"}, + } + + CycloneDXNodes = []assembler.GuacNode{cdxTopLevelPack, cdxBasefilesPack, cdxNetbasePack, cdxTzdataPack} + CyloneDXEdges = []assembler.GuacEdge{ + assembler.DependsOnEdge{ + PackageNode: cdxBasefilesPack, + PackageDependency: cdxTopLevelPack, + }, + assembler.DependsOnEdge{ + PackageNode: cdxNetbasePack, + PackageDependency: cdxTopLevelPack, + }, + assembler.DependsOnEdge{ + PackageNode: cdxTzdataPack, + PackageDependency: cdxTopLevelPack, + }, + } ) type mockSigstoreVerifier struct{} diff --git a/internal/testing/processor/testdata.go b/internal/testing/processor/testdata.go index 17d031c779..7eae3fa3db 100644 --- a/internal/testing/processor/testdata.go +++ b/internal/testing/processor/testdata.go @@ -39,4 +39,19 @@ var ( // Invalid scorecard //go:embed testdata/invalid-scorecard.json ScorecardInvalid []byte + + //go:embed testdata/alpine-cyclonedx.json + CycloneDXExampleAlpine []byte + + //go:embed testdata/invalid-cyclonedx.json + CycloneDXInvalidExample []byte + + //go:embed testdata/distroless-cyclonedx.json + CycloneDXDistrolessExample []byte + + //go:embed testdata/busybox-cyclonedx.json + CycloneDXBusyboxExample []byte + + //go:embed testdata/big-mongo-cyclonedx.json + CycloneDXBigExample []byte ) diff --git a/internal/testing/processor/testdata/alpine-cyclonedx.json b/internal/testing/processor/testdata/alpine-cyclonedx.json new file mode 100644 index 0000000000..1edfe70fff --- /dev/null +++ b/internal/testing/processor/testdata/alpine-cyclonedx.json @@ -0,0 +1,1211 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.4", + "serialNumber": "urn:uuid:90630c1e-1df2-4d35-85fa-a4e8ebd22d70", + "version": 1, + "metadata": { + "timestamp": "2022-10-07T10:41:07-04:00", + "tools": [ + { + "vendor": "anchore", + "name": "syft", + "version": "0.58.0" + } + ], + "component": { + "bom-ref": "685d54d5e8f71d2f", + "type": "container", + "name": "docker.io/library/alpine:latest", + "version": "sha256:cbaa390ec61abd889dfa5146a411c11717c19ef9e5e18458dbdc06439076ffe7" + } + }, + "components": [ + { + "bom-ref": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64\u0026upstream=alpine-baselayout\u0026distro=alpine-3.16.2\u0026package-id=35085779bdf473bb", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "alpine-baselayout", + "version": "3.2.0-r22", + "description": "Alpine base dir structure and init scripts", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:alpine-baselayout:alpine-baselayout:3.2.0-r22:*:*:*:*:*:*:*", + "purl": "pkg:alpine/alpine-baselayout@3.2.0-r22?arch=x86_64\u0026upstream=alpine-baselayout\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine-baselayout:alpine_baselayout:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout:alpine-baselayout:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout:alpine_baselayout:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine-baselayout:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine_baselayout:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "cb70ca5c6d6db0399d2dd09189c5d57827bce5cd" + }, + { + "name": "syft:metadata:installedSize", + "value": "348160" + }, + { + "name": "syft:metadata:originPackage", + "value": "alpine-baselayout" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1l6/nM0K+cyVdqNfgkp1/c6Ylzk0=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "alpine-baselayout-data=3.2.0-r22 /bin/sh so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "11126" + } + ] + }, + { + "bom-ref": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64\u0026upstream=alpine-baselayout\u0026distro=alpine-3.16.2\u0026package-id=33b5ab4a81e975bd", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "alpine-baselayout-data", + "version": "3.2.0-r22", + "description": "Alpine base dir structure and init scripts", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:alpine-baselayout-data:alpine-baselayout-data:3.2.0-r22:*:*:*:*:*:*:*", + "purl": "pkg:alpine/alpine-baselayout-data@3.2.0-r22?arch=x86_64\u0026upstream=alpine-baselayout\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://git.alpinelinux.org/cgit/aports/tree/main/alpine-baselayout", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine-baselayout-data:alpine_baselayout_data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout_data:alpine-baselayout-data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout_data:alpine_baselayout_data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine-baselayout:alpine-baselayout-data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine-baselayout:alpine_baselayout_data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout:alpine-baselayout-data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_baselayout:alpine_baselayout_data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine-baselayout-data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine_baselayout_data:3.2.0-r22:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "cb70ca5c6d6db0399d2dd09189c5d57827bce5cd" + }, + { + "name": "syft:metadata:installedSize", + "value": "73728" + }, + { + "name": "syft:metadata:originPackage", + "value": "alpine-baselayout" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1v4QhLje3kWlC8DJj+ZfJTjlJRSU=" + }, + { + "name": "syft:metadata:size", + "value": "11435" + } + ] + }, + { + "bom-ref": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64\u0026upstream=alpine-keys\u0026distro=alpine-3.16.2\u0026package-id=3f53edc3b14056c3", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "alpine-keys", + "version": "2.4-r1", + "description": "Public keys for Alpine Linux packages", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:alpine-keys:alpine-keys:2.4-r1:*:*:*:*:*:*:*", + "purl": "pkg:alpine/alpine-keys@2.4-r1?arch=x86_64\u0026upstream=alpine-keys\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://alpinelinux.org", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine-keys:alpine_keys:2.4-r1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_keys:alpine-keys:2.4-r1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine_keys:alpine_keys:2.4-r1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine-keys:2.4-r1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:alpine:alpine_keys:2.4-r1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "aab68f8c9ab434a46710de8e12fb3206e2930a59" + }, + { + "name": "syft:metadata:installedSize", + "value": "159744" + }, + { + "name": "syft:metadata:originPackage", + "value": "alpine-keys" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1FBfIjtsEmvuqoNXpShXDcm/mjzE=" + }, + { + "name": "syft:metadata:size", + "value": "13359" + } + ] + }, + { + "bom-ref": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64\u0026upstream=apk-tools\u0026distro=alpine-3.16.2\u0026package-id=9bb9cb82a4ce72b1", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "apk-tools", + "version": "2.12.9-r3", + "description": "Alpine Package Keeper - package manager for alpine", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:apk-tools:apk-tools:2.12.9-r3:*:*:*:*:*:*:*", + "purl": "pkg:alpine/apk-tools@2.12.9-r3?arch=x86_64\u0026upstream=apk-tools\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://gitlab.alpinelinux.org/alpine/apk-tools", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:apk-tools:apk_tools:2.12.9-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:apk_tools:apk-tools:2.12.9-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:apk_tools:apk_tools:2.12.9-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:apk:apk-tools:2.12.9-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:apk:apk_tools:2.12.9-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "34d90ac8388e88126893f5d27ea35d304e65e5ab" + }, + { + "name": "syft:metadata:installedSize", + "value": "307200" + }, + { + "name": "syft:metadata:originPackage", + "value": "apk-tools" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1VFFFWMKjB9aRkehIATc5kwgAhlU=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "musl\u003e=1.2 ca-certificates-bundle so:libc.musl-x86_64.so.1 so:libcrypto.so.1.1 so:libssl.so.1.1 so:libz.so.1" + }, + { + "name": "syft:metadata:size", + "value": "120745" + } + ] + }, + { + "bom-ref": "pkg:alpine/busybox@1.35.0-r17?arch=x86_64\u0026upstream=busybox\u0026distro=alpine-3.16.2\u0026package-id=2bc2db5bac1d0fe4", + "type": "library", + "publisher": "Sören Tempel \u003csoeren+alpine@soeren-tempel.net\u003e", + "name": "busybox", + "version": "1.35.0-r17", + "description": "Size optimized toolbox of many common UNIX utilities", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:busybox:busybox:1.35.0-r17:*:*:*:*:*:*:*", + "purl": "pkg:alpine/busybox@1.35.0-r17?arch=x86_64\u0026upstream=busybox\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://busybox.net/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "2bf6ec48e526113f87216683cd341a78af5f0b3f" + }, + { + "name": "syft:metadata:installedSize", + "value": "962560" + }, + { + "name": "syft:metadata:originPackage", + "value": "busybox" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1iZ+C2JJdBlm2KKtAOkSkM7zZegY=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "507831" + } + ] + }, + { + "bom-ref": "pkg:alpine/ca-certificates-bundle@20220614-r0?arch=x86_64\u0026upstream=ca-certificates\u0026distro=alpine-3.16.2\u0026package-id=3ff09d7a5e0dc2ed", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "ca-certificates-bundle", + "version": "20220614-r0", + "description": "Pre generated bundle of Mozilla certificates", + "licenses": [ + { + "license": { + "id": "MPL-2.0" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:ca-certificates-bundle:ca-certificates-bundle:20220614-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/ca-certificates-bundle@20220614-r0?arch=x86_64\u0026upstream=ca-certificates\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://www.mozilla.org/en-US/about/governance/policies/security-group/certs/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca-certificates-bundle:ca_certificates_bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates_bundle:ca-certificates-bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates_bundle:ca_certificates_bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca-certificates:ca-certificates-bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca-certificates:ca_certificates_bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates:ca-certificates-bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates:ca_certificates_bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca:ca-certificates-bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca:ca_certificates_bundle:20220614-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "bb51fa7743320ac61f76e181cca84daa9977573e" + }, + { + "name": "syft:metadata:installedSize", + "value": "233472" + }, + { + "name": "syft:metadata:originPackage", + "value": "ca-certificates" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1huqjigIP7ZNHBueDUmNnT6PpToI=" + }, + { + "name": "syft:metadata:size", + "value": "125920" + } + ] + }, + { + "bom-ref": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64\u0026upstream=libc-dev\u0026distro=alpine-3.16.2\u0026package-id=ededb9e6ff708347", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "libc-utils", + "version": "0.7.2-r3", + "description": "Meta package to pull in correct libc", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "cpe": "cpe:2.3:a:libc-utils:libc-utils:0.7.2-r3:*:*:*:*:*:*:*", + "purl": "pkg:alpine/libc-utils@0.7.2-r3?arch=x86_64\u0026upstream=libc-dev\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://alpinelinux.org", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc-utils:libc_utils:0.7.2-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_utils:libc-utils:0.7.2-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_utils:libc_utils:0.7.2-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc-utils:0.7.2-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc_utils:0.7.2-r3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "60424133be2e79bbfeff3d58147a22886f817ce2" + }, + { + "name": "syft:metadata:installedSize", + "value": "4096" + }, + { + "name": "syft:metadata:originPackage", + "value": "libc-dev" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1O4GFJRvHz95tPjO84qpEvkNVwDw=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "musl-utils" + }, + { + "name": "syft:metadata:size", + "value": "1480" + } + ] + }, + { + "bom-ref": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64\u0026upstream=openssl\u0026distro=alpine-3.16.2\u0026package-id=cce075f4f19baaee", + "type": "library", + "publisher": "Timo Teras \u003ctimo.teras@iki.fi\u003e", + "name": "libcrypto1.1", + "version": "1.1.1q-r0", + "description": "Crypto library from openssl", + "licenses": [ + { + "license": { + "id": "OpenSSL" + } + } + ], + "cpe": "cpe:2.3:a:libcrypto1.1:libcrypto1.1:1.1.1q-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/libcrypto1.1@1.1.1q-r0?arch=x86_64\u0026upstream=openssl\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://www.openssl.org/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "26153b65138c876d57e81750f6de6baab6d5bd5b" + }, + { + "name": "syft:metadata:installedSize", + "value": "2772992" + }, + { + "name": "syft:metadata:originPackage", + "value": "openssl" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1rd80DWg+fcm+GFn06ahfUUPUshw=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "1212577" + } + ] + }, + { + "bom-ref": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64\u0026upstream=openssl\u0026distro=alpine-3.16.2\u0026package-id=bebc881007d932d", + "type": "library", + "publisher": "Timo Teras \u003ctimo.teras@iki.fi\u003e", + "name": "libssl1.1", + "version": "1.1.1q-r0", + "description": "SSL shared libraries", + "licenses": [ + { + "license": { + "id": "OpenSSL" + } + } + ], + "cpe": "cpe:2.3:a:libssl1.1:libssl1.1:1.1.1q-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/libssl1.1@1.1.1q-r0?arch=x86_64\u0026upstream=openssl\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://www.openssl.org/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "26153b65138c876d57e81750f6de6baab6d5bd5b" + }, + { + "name": "syft:metadata:installedSize", + "value": "540672" + }, + { + "name": "syft:metadata:originPackage", + "value": "openssl" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1ciplPwPAKDa19jkbxYjiiv+G5Es=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1 so:libcrypto.so.1.1" + }, + { + "name": "syft:metadata:size", + "value": "213294" + } + ] + }, + { + "bom-ref": "pkg:alpine/musl@1.2.3-r0?arch=x86_64\u0026upstream=musl\u0026distro=alpine-3.16.2\u0026package-id=ec1d619a28263eb0", + "type": "library", + "publisher": "Timo Teräs \u003ctimo.teras@iki.fi\u003e", + "name": "musl", + "version": "1.2.3-r0", + "description": "the musl c library (libc) implementation", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:musl:musl:1.2.3-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/musl@1.2.3-r0?arch=x86_64\u0026upstream=musl\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://musl.libc.org/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "ee13d43a53938d8a04ba787b9423f3270a3c14a7" + }, + { + "name": "syft:metadata:installedSize", + "value": "622592" + }, + { + "name": "syft:metadata:originPackage", + "value": "musl" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1aCu0LmUDoAFSOX49uHvkYC1WasQ=" + }, + { + "name": "syft:metadata:size", + "value": "383304" + } + ] + }, + { + "bom-ref": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64\u0026upstream=musl\u0026distro=alpine-3.16.2\u0026package-id=b703a8e4e90dd6dc", + "type": "library", + "publisher": "Timo Teräs \u003ctimo.teras@iki.fi\u003e", + "name": "musl-utils", + "version": "1.2.3-r0", + "description": "the musl c library (libc) implementation", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:musl-utils:musl-utils:1.2.3-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/musl-utils@1.2.3-r0?arch=x86_64\u0026upstream=musl\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://musl.libc.org/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:musl-utils:musl_utils:1.2.3-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:musl_utils:musl-utils:1.2.3-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:musl_utils:musl_utils:1.2.3-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:musl:musl-utils:1.2.3-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:musl:musl_utils:1.2.3-r0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "ee13d43a53938d8a04ba787b9423f3270a3c14a7" + }, + { + "name": "syft:metadata:installedSize", + "value": "135168" + }, + { + "name": "syft:metadata:originPackage", + "value": "musl" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1VVfxM3uSO0X38HWpj1LN0E61fxo=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "scanelf so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "36938" + } + ] + }, + { + "bom-ref": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64\u0026upstream=pax-utils\u0026distro=alpine-3.16.2\u0026package-id=7514a98b23f9928c", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "scanelf", + "version": "1.3.4-r0", + "description": "Scan ELF binaries for stuff", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:scanelf:scanelf:1.3.4-r0:*:*:*:*:*:*:*", + "purl": "pkg:alpine/scanelf@1.3.4-r0?arch=x86_64\u0026upstream=pax-utils\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "d7ae612a3cc5f827289d915783b4cbf8c7207947" + }, + { + "name": "syft:metadata:installedSize", + "value": "94208" + }, + { + "name": "syft:metadata:originPackage", + "value": "pax-utils" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1Gcqe+ND8DFOlhM3R0o5KyZjR2oE=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "36745" + } + ] + }, + { + "bom-ref": "pkg:alpine/ssl_client@1.35.0-r17?arch=x86_64\u0026upstream=busybox\u0026distro=alpine-3.16.2\u0026package-id=7aec2be3ffd82c3c", + "type": "library", + "publisher": "Sören Tempel \u003csoeren+alpine@soeren-tempel.net\u003e", + "name": "ssl_client", + "version": "1.35.0-r17", + "description": "EXternal ssl_client for busybox wget", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:ssl-client:ssl-client:1.35.0-r17:*:*:*:*:*:*:*", + "purl": "pkg:alpine/ssl_client@1.35.0-r17?arch=x86_64\u0026upstream=busybox\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://busybox.net/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ssl-client:ssl_client:1.35.0-r17:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ssl_client:ssl-client:1.35.0-r17:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ssl_client:ssl_client:1.35.0-r17:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ssl:ssl-client:1.35.0-r17:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ssl:ssl_client:1.35.0-r17:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "2bf6ec48e526113f87216683cd341a78af5f0b3f" + }, + { + "name": "syft:metadata:installedSize", + "value": "28672" + }, + { + "name": "syft:metadata:originPackage", + "value": "busybox" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1KWJXawaNPiINHfdzCg/FrEmiAaU=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1 so:libcrypto.so.1.1 so:libssl.so.1.1" + }, + { + "name": "syft:metadata:size", + "value": "5004" + } + ] + }, + { + "bom-ref": "pkg:alpine/zlib@1.2.12-r3?arch=x86_64\u0026upstream=zlib\u0026distro=alpine-3.16.2\u0026package-id=94e7e84b87c1f8c3", + "type": "library", + "publisher": "Natanael Copa \u003cncopa@alpinelinux.org\u003e", + "name": "zlib", + "version": "1.2.12-r3", + "description": "A compression/decompression Library", + "licenses": [ + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:zlib:zlib:1.2.12-r3:*:*:*:*:*:*:*", + "purl": "pkg:alpine/zlib@1.2.12-r3?arch=x86_64\u0026upstream=zlib\u0026distro=alpine-3.16.2", + "externalReferences": [ + { + "url": "https://zlib.net/", + "type": "distribution" + } + ], + "properties": [ + { + "name": "syft:package:foundBy", + "value": "apkdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "ApkMetadata" + }, + { + "name": "syft:package:type", + "value": "apk" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:994393dc58e7931862558d06e46aa2bb17487044f670f310dffe1d24e4d1eec7" + }, + { + "name": "syft:location:0:path", + "value": "/lib/apk/db/installed" + }, + { + "name": "syft:metadata:gitCommitOfApkPort", + "value": "57ce38bde7ce42964b664c137935cf2de803ac44" + }, + { + "name": "syft:metadata:installedSize", + "value": "110592" + }, + { + "name": "syft:metadata:originPackage", + "value": "zlib" + }, + { + "name": "syft:metadata:pullChecksum", + "value": "Q1Ekuqm/0CPywDCKEbEwhsPCw+z9E=" + }, + { + "name": "syft:metadata:pullDependencies", + "value": "so:libc.musl-x86_64.so.1" + }, + { + "name": "syft:metadata:size", + "value": "53346" + } + ] + }, + { + "type": "operating-system", + "name": "alpine", + "version": "3.16.2", + "description": "Alpine Linux v3.16", + "swid": { + "tagId": "alpine", + "name": "alpine", + "version": "3.16.2" + }, + "externalReferences": [ + { + "url": "https://gitlab.alpinelinux.org/alpine/aports/-/issues", + "type": "issue-tracker" + }, + { + "url": "https://alpinelinux.org/", + "type": "website" + } + ], + "properties": [ + { + "name": "syft:distro:id", + "value": "alpine" + }, + { + "name": "syft:distro:prettyName", + "value": "Alpine Linux v3.16" + }, + { + "name": "syft:distro:versionID", + "value": "3.16.2" + } + ] + } + ] +} diff --git a/internal/testing/processor/testdata/big-mongo-cyclonedx.json b/internal/testing/processor/testdata/big-mongo-cyclonedx.json new file mode 100644 index 0000000000..b2d1e0fc82 --- /dev/null +++ b/internal/testing/processor/testdata/big-mongo-cyclonedx.json @@ -0,0 +1,19361 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.4", + "serialNumber": "urn:uuid:41de5bc3-6ea2-4da3-bbf1-2e58674be09e", + "version": 1, + "metadata": { + "timestamp": "2022-10-08T10:23:54-04:00", + "tools": [ + { + "vendor": "anchore", + "name": "syft", + "version": "0.58.0" + } + ], + "component": { + "bom-ref": "478885d9322edeb2", + "type": "container", + "name": "docker.io/library/mongo", + "version": "sha256:fd73df9425bd48f25d7e913422af8124a6eadbd5d99f67bbd4a8b121f59b1187" + } + }, + "components": [ + { + "bom-ref": "pkg:deb/ubuntu/adduser@3.118ubuntu2?arch=all\u0026distro=ubuntu-20.04\u0026package-id=6a18fe3c4ec3d7e3", + "type": "library", + "publisher": "Ubuntu Core Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "adduser", + "version": "3.118ubuntu2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:adduser:adduser:3.118ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/adduser@3.118ubuntu2?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/adduser/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/adduser.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/adduser.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "624" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/apt@2.0.9?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=3fbecf71b4247784", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "apt", + "version": "2.0.9", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:apt:apt:2.0.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/apt@2.0.9?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/apt/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/apt.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/apt.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "4207" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/base-files@11ubuntu5.6?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=ca7afff16c84b51b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "base-files", + "version": "11ubuntu5.6", + "cpe": "cpe:2.3:a:base-files:base-files:11ubuntu5.6:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/base-files@11ubuntu5.6?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-files:base_files:11ubuntu5.6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base-files:11ubuntu5.6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base_files:11ubuntu5.6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-files:11ubuntu5.6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_files:11ubuntu5.6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/base-files/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/base-files.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/base-files.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "392" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/base-passwd@3.5.47?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=60634273726fbab8", + "type": "library", + "publisher": "Colin Watson \u003ccjwatson@debian.org\u003e", + "name": "base-passwd", + "version": "3.5.47", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:base-passwd:base-passwd:3.5.47:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/base-passwd@3.5.47?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-passwd:base_passwd:3.5.47:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base-passwd:3.5.47:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_passwd:base_passwd:3.5.47:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-passwd:3.5.47:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_passwd:3.5.47:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/base-passwd/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/base-passwd.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "233" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/bash@5.0-6ubuntu1.2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=8e3af3a247f95afd", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "bash", + "version": "5.0-6ubuntu1.2", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:bash:bash:5.0-6ubuntu1.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/bash@5.0-6ubuntu1.2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/bash/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/bash.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/bash.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1660" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/bsdutils@1:2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux%402.34-0.1ubuntu9.3\u0026distro=ubuntu-20.04\u0026package-id=5d6b820d345074df", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "bsdutils", + "version": "1:2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:bsdutils:bsdutils:1\\:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/bsdutils@1:2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux%402.34-0.1ubuntu9.3\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/bsdutils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/bsdutils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "304" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + }, + { + "name": "syft:metadata:sourceVersion", + "value": "2.34-0.1ubuntu9.3" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/bzip2@1.0.8-2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=a93e23a132547499", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "bzip2", + "version": "1.0.8-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:bzip2:bzip2:1.0.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/bzip2@1.0.8-2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/bzip2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/bzip2.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "195" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/ca-certificates@20211016~20.04.1?arch=all\u0026distro=ubuntu-20.04\u0026package-id=186a2e0cdce38888", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "ca-certificates", + "version": "20211016~20.04.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "MPL-2.0" + } + } + ], + "cpe": "cpe:2.3:a:ca-certificates:ca-certificates:20211016\\~20.04.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/ca-certificates@20211016~20.04.1?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca-certificates:ca_certificates:20211016\\~20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates:ca-certificates:20211016\\~20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca_certificates:ca_certificates:20211016\\~20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca:ca-certificates:20211016\\~20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ca:ca_certificates:20211016\\~20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/ca-certificates/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/ca-certificates.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "375" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/coreutils@8.30-3ubuntu2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=ace9464a830be1b1", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "coreutils", + "version": "8.30-3ubuntu2", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:coreutils:coreutils:8.30-3ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/coreutils@8.30-3ubuntu2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/coreutils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/coreutils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "7196" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/dash@0.5.10.2-6?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=23db1a5c64929b71", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "dash", + "version": "0.5.10.2-6", + "cpe": "cpe:2.3:a:dash:dash:0.5.10.2-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/dash@0.5.10.2-6?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/dash/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/dash.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "212" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/debconf@1.5.73?arch=all\u0026distro=ubuntu-20.04\u0026package-id=774e8866c1fdbc15", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "debconf", + "version": "1.5.73", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "cpe": "cpe:2.3:a:debconf:debconf:1.5.73:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/debconf@1.5.73?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/debconf/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/debconf.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/debconf.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "520" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/debianutils@4.9.1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=e43d62008bf5ae5a", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "debianutils", + "version": "4.9.1", + "cpe": "cpe:2.3:a:debianutils:debianutils:4.9.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/debianutils@4.9.1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/debianutils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/debianutils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "230" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/diffutils@1:3.7-3?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=405a4adf47bbc91c", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "diffutils", + "version": "1:3.7-3", + "cpe": "cpe:2.3:a:diffutils:diffutils:1\\:3.7-3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/diffutils@1:3.7-3?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/diffutils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/diffutils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "532" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/dirmngr@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=e3ab5218613e20a1", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "dirmngr", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:dirmngr:dirmngr:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/dirmngr@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/dirmngr/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/dirmngr.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "918" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/dpkg@1.19.7ubuntu3.2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=20b42143bd916051", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "dpkg", + "version": "1.19.7ubuntu3.2", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:dpkg:dpkg:1.19.7ubuntu3.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/dpkg@1.19.7ubuntu3.2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/dpkg/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/dpkg.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/dpkg.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "6741" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/e2fsprogs@1.45.5-2ubuntu1.1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=4df39aa6e284fae2", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "e2fsprogs", + "version": "1.45.5-2ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:e2fsprogs:e2fsprogs:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/e2fsprogs@1.45.5-2ubuntu1.1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/e2fsprogs/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/e2fsprogs.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/e2fsprogs.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1491" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/fdisk@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=b818fd10d375d5c2", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "fdisk", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:fdisk:fdisk:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/fdisk@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/fdisk/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/fdisk.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "506" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/findutils@4.7.0-1ubuntu1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=8547994fb0d09448", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "findutils", + "version": "4.7.0-1ubuntu1", + "licenses": [ + { + "license": { + "id": "GFDL-1.3" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:findutils:findutils:4.7.0-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/findutils@4.7.0-1ubuntu1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/findutils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/findutils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "668" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gcc-10-base@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04\u0026package-id=bddc17e2d4dff355", + "type": "library", + "publisher": "Ubuntu Core developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gcc-10-base", + "version": "10.3.0-1ubuntu1~20.04", + "licenses": [ + { + "license": { + "id": "GFDL-1.2" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:gcc-10-base:gcc-10-base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gcc-10-base@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-10-base:gcc_10_base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_10_base:gcc-10-base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_10_base:gcc_10_base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-10:gcc-10-base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc-10:gcc_10_base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_10:gcc-10-base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc_10:gcc_10_base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc-10-base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gcc:gcc_10_base:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gcc-10-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gcc-10-base:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "265" + }, + { + "name": "syft:metadata:source", + "value": "gcc-10" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=ff9536d8fd9aae", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=c2e1b478db586cdc", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=22bc9d3ccbc4323f", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=4f454dd01d4e7e58", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=41f8bb28c83408a7", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=e8d80f1ab53af67c", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=bba4e6be2d669678", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/golang/snappy@v0.0.1?package-id=38d830b90091cf6b", + "type": "library", + "name": "github.com/golang/snappy", + "version": "v0.0.1", + "cpe": "cpe:2.3:a:golang:snappy:v0.0.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/golang/snappy@v0.0.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=6a03f01bfd931d52", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=7c166dde390aa1ba", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=77a6519f528cc213", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=c1d46402d5d33877", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=2d0bac524edd35d6", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=3d268405bab06c54", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=a7837cf4c5561f4a", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0?package-id=a90eb4c79a5f0ab1", + "type": "library", + "name": "github.com/jessevdk/go-flags", + "version": "v1.4.0", + "cpe": "cpe:2.3:a:jessevdk:go-flags:v1.4.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/jessevdk/go-flags@v1.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:jessevdk:go_flags:v1.4.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=3a9a86d25d279739", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=8652eb11255a409b", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=4e2f57d3eb8317ad", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=85608d2c8947afcb", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=f0933dfc1a6b81e9", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=4128738ddd7b0c9c", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=47a043553f79362b", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/klauspost/compress@v1.13.6?package-id=f746bb403970daa8", + "type": "library", + "name": "github.com/klauspost/compress", + "version": "v1.13.6", + "cpe": "cpe:2.3:a:klauspost:compress:v1.13.6:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/klauspost/compress@v1.13.6", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mattn/go-runewidth@v0.0.4?package-id=37a98afd2088f04d", + "type": "library", + "name": "github.com/mattn/go-runewidth", + "version": "v0.0.4", + "cpe": "cpe:2.3:a:mattn:go-runewidth:v0.0.4:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mattn/go-runewidth@v0.0.4", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mattn:go_runewidth:v0.0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=6cae37932eef6f23", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=bd2750bccee0357f", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=fd93391f3c219540", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=7c49f1a7b49cf22b", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=60fca8accb542c6c", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=c5c7880f3d878844", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=1badc8c404d27369", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/mongodb/mongo-tools@(devel)?package-id=d2f2401084197dd1", + "type": "library", + "name": "github.com/mongodb/mongo-tools", + "version": "(devel)", + "cpe": "cpe:2.3:a:mongodb:mongo-tools:\\(devel\\):*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/mongodb/mongo-tools@(devel)", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongo_tools:\\(devel\\):*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=4a1eaf4e4b1cdd13", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=6f5c08a43b75d603", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=c9e2d971888c54a1", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=966011131741d068", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=4b58afbf6c852db3", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=6a2212c4eeb46c09", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=49fb0217f9968ea6", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe?package-id=19272b5daf5308d3", + "type": "library", + "name": "github.com/montanaflynn/stats", + "version": "v0.0.0-20171201202039-1bf9dbcd8cbe", + "cpe": "cpe:2.3:a:montanaflynn:stats:v0.0.0-20171201202039-1bf9dbcd8cbe:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/montanaflynn/stats@v0.0.0-20171201202039-1bf9dbcd8cbe", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/nsf/termbox-go@v0.0.0-20160718140619-0723e7c3d0a3?package-id=8e0609646ef8239d", + "type": "library", + "name": "github.com/nsf/termbox-go", + "version": "v0.0.0-20160718140619-0723e7c3d0a3", + "cpe": "cpe:2.3:a:nsf:termbox-go:v0.0.0-20160718140619-0723e7c3d0a3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/nsf/termbox-go@v0.0.0-20160718140619-0723e7c3d0a3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:nsf:termbox_go:v0.0.0-20160718140619-0723e7c3d0a3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=c4a783873ff76fc3", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=4a649ef40a678f5b", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=e9622b445d88294e", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=b8721108dc8e8b48", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=55d4f5d221b4fbb0", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=cb4c3119bb721fe9", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=9d0c54bf1e296da9", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/pkg/errors@v0.9.1?package-id=581efc9885c39b3b", + "type": "library", + "name": "github.com/pkg/errors", + "version": "v0.9.1", + "cpe": "cpe:2.3:a:pkg:errors:v0.9.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/pkg/errors@v0.9.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=6579eb8fcac69126", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=8c74ab7133eb4bde", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=bfec9937bd648e40", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=d6139c7beab35b8e", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=5e1ba8750034b65", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=c74440e0e73ac8a2", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=dbfd4e1216a71f1e", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0?package-id=9e5f3212c944f017", + "type": "library", + "name": "github.com/xdg-go/pbkdf2", + "version": "v1.0.0", + "cpe": "cpe:2.3:a:xdg-go:pbkdf2:v1.0.0:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/pbkdf2@v1.0.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:pbkdf2:v1.0.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=8c6b03b7d3550065", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=9cffc385940e8b0f", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=2af97f51e4c2a525", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=e371c0a9681334c2", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=58e34877e0a95695", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=4929a8356e2f9dc2", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=9432464df9ff87d6", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/scram@v1.1.1?package-id=71c73686241ed4e6", + "type": "library", + "name": "github.com/xdg-go/scram", + "version": "v1.1.1", + "cpe": "cpe:2.3:a:xdg-go:scram:v1.1.1:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/scram@v1.1.1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:scram:v1.1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=b4d0f6d5e624bc61", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=8fccacbbf9185aa9", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=49f9a458dab2abb0", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=f5dc54fb109b4d7b", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=ba79834bf145cc83", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=b866fc0452cd436d", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=b32daaf00a3b6a3e", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3?package-id=acfc3d4db84e7410", + "type": "library", + "name": "github.com/xdg-go/stringprep", + "version": "v1.0.3", + "cpe": "cpe:2.3:a:xdg-go:stringprep:v1.0.3:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/xdg-go/stringprep@v1.0.3", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg_go:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:xdg:stringprep:v1.0.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=c94f311ef82e1655", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=91f81af59e20493f", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=3b0d7ee468e18236", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=376f7cc0c6cdc101", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=2ec92f013e8cbb09", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=398ffa90e66e5f59", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=bb9260d6343cd6b8", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d?package-id=b1e1750f7a0fb021", + "type": "library", + "name": "github.com/youmark/pkcs8", + "version": "v0.0.0-20181117223130-1be2e3e5546d", + "cpe": "cpe:2.3:a:youmark:pkcs8:v0.0.0-20181117223130-1be2e3e5546d:*:*:*:*:*:*:*", + "purl": "pkg:golang/github.com/youmark/pkcs8@v0.0.0-20181117223130-1be2e3e5546d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gnupg@2.2.19-3ubuntu2.2?arch=all\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=e22583934f55178a", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gnupg", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gnupg:gnupg:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gnupg@2.2.19-3ubuntu2.2?arch=all\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gnupg/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gnupg.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "413" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gnupg-l10n@2.2.19-3ubuntu2.2?arch=all\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=7d9c15c2327b4f0b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gnupg-l10n", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gnupg-l10n:gnupg-l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gnupg-l10n@2.2.19-3ubuntu2.2?arch=all\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg-l10n:gnupg_l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg_l10n:gnupg-l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg_l10n:gnupg_l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg:gnupg-l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg:gnupg_l10n:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gnupg-l10n/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gnupg-l10n.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "380" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gnupg-utils@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=6757d2bbfe6d03fa", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gnupg-utils", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gnupg-utils:gnupg-utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gnupg-utils@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg-utils:gnupg_utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg_utils:gnupg-utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg_utils:gnupg_utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg:gnupg-utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gnupg:gnupg_utils:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gnupg-utils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gnupg-utils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1550" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=f6e2354313907838", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=4e27ae9de253f9ca", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=79f9bb9923c602bb", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=de1bf41daf39fe0f", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=29de3a9f64ffa1f2", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=d9408fb9f2390a1a", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=f3e0080c78527172", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0?package-id=53f3c28e6a617273", + "type": "library", + "name": "go.mongodb.org/mongo-driver", + "version": "v1.10.0", + "purl": "pkg:golang/go.mongodb.org/mongo-driver@v1.10.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=548ce92d675421ee", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=ec14a4ec3aa8b35c", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=7ee8b1663c8c1536", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=f26c3f66c660d2d5", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=685a6171626561bd", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=87d718839f4ddc30", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=7f5a54fc7b21b518", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d?package-id=6d0555c421fade0d", + "type": "library", + "name": "golang.org/x/crypto", + "version": "v0.0.0-20220622213112-05595931fe9d", + "cpe": "cpe:2.3:a:golang:x\\/crypto:v0.0.0-20220622213112-05595931fe9d:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/crypto@v0.0.0-20220622213112-05595931fe9d", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=f390e1b942e490f1", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=6afb1cff4e5ae14d", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=5af056ff733256a4", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=998ec2dbe41ed155", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=8a07946760c31f2f", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=b016bcfdffd7b0de", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=7b2c0eb03dae5d68", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c?package-id=e1bc0f90f385a63", + "type": "library", + "name": "golang.org/x/sync", + "version": "v0.0.0-20210220032951-036812b2e83c", + "cpe": "cpe:2.3:a:golang:x\\/sync:v0.0.0-20210220032951-036812b2e83c:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sync@v0.0.0-20210220032951-036812b2e83c", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=91cf596f2f9597ec", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=9d61b6fd347e9659", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=c9de081019d68150", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=5e80792cd83cd8f0", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=1d8098ebcb107d15", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=2018bd188aabe8df", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=9b03e3f410f5ac30", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a?package-id=c47b5ec4d1537454", + "type": "library", + "name": "golang.org/x/sys", + "version": "v0.0.0-20220520151302-bc2c85ada10a", + "cpe": "cpe:2.3:a:golang:x\\/sys:v0.0.0-20220520151302-bc2c85ada10a:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/sys@v0.0.0-20220520151302-bc2c85ada10a", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=a32687bce7ece5a4", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=cc5b0622ef828fa4", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=9cafeefe3f5624d9", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=1c80b42b3df42e19", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=c25eae334d2d8a27", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=a876f91f26eba6b6", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=b9bf489b334691ec", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1?package-id=83a46e9bdcf020da", + "type": "library", + "name": "golang.org/x/term", + "version": "v0.0.0-20201126162022-7de9c90e9dd1", + "cpe": "cpe:2.3:a:golang:x\\/term:v0.0.0-20201126162022-7de9c90e9dd1:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/term@v0.0.0-20201126162022-7de9c90e9dd1", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=f19d90c85fe4096e", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=a0f7b5fc97433af8", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=332e2f0b4a2105e0", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=26287106c18707c1", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=9373c6b9df893b76", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=4b0af893e6db1de2", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=d5b7b361899ce38d", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/golang.org/x/text@v0.3.7?package-id=91216775f02272fa", + "type": "library", + "name": "golang.org/x/text", + "version": "v0.3.7", + "cpe": "cpe:2.3:a:golang:x\\/text:v0.3.7:*:*:*:*:*:*:*", + "purl": "pkg:golang/golang.org/x/text@v0.3.7", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/tomb.v2@v2.0.0-20140626144623-14b3d72120e8?package-id=ad5f41d59172b81f", + "type": "library", + "name": "gopkg.in/tomb.v2", + "version": "v2.0.0-20140626144623-14b3d72120e8", + "purl": "pkg:golang/gopkg.in/tomb.v2@v2.0.0-20140626144623-14b3d72120e8", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=6bc9ea1ed4d54306", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/bsondump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=8fa9079f5cbc2254", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongodump" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=45beb61970f1b85", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoexport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=6f33ab20d02d3962", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongofiles" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=a5dbeaf72df4ecce", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongoimport" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=163db8ea8d89144e", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongorestore" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=d42c0d39939be60b", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongostat" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:golang/gopkg.in/yaml.v2@v2.4.0?package-id=af3ee06514023d37", + "type": "library", + "name": "gopkg.in/yaml.v2", + "version": "v2.4.0", + "purl": "pkg:golang/gopkg.in/yaml.v2@v2.4.0", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "go-module-binary-cataloger" + }, + { + "name": "syft:package:language", + "value": "go" + }, + { + "name": "syft:package:metadataType", + "value": "GolangBinMetadata" + }, + { + "name": "syft:package:type", + "value": "go-module" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/bin/mongotop" + }, + { + "name": "syft:metadata:architecture", + "value": "x86_64" + }, + { + "name": "syft:metadata:goCompiledVersion", + "value": "go1.17.10" + }, + { + "name": "syft:metadata:mainModule", + "value": "github.com/mongodb/mongo-tools" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpg@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=5312900d6d66bc3e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpg", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpg:gpg:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpg@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpg/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpg.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1135" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpg-agent@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=3b1dd48ab37b6b7e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpg-agent", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpg-agent:gpg-agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpg-agent@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-agent:gpg_agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_agent:gpg-agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_agent:gpg_agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg-agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg_agent:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpg-agent/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpg-agent.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/gpg-agent.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "911" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpg-wks-client@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=eb443a9aab8bb2a", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpg-wks-client", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpg-wks-client:gpg-wks-client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpg-wks-client@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks-client:gpg_wks_client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks_client:gpg-wks-client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks_client:gpg_wks_client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks:gpg-wks-client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks:gpg_wks_client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks:gpg-wks-client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks:gpg_wks_client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg-wks-client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg_wks_client:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpg-wks-client/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpg-wks-client.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "275" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpg-wks-server@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=389e5a93846f356f", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpg-wks-server", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpg-wks-server:gpg-wks-server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpg-wks-server@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks-server:gpg_wks_server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks_server:gpg-wks-server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks_server:gpg_wks_server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks:gpg-wks-server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg-wks:gpg_wks_server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks:gpg-wks-server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg_wks:gpg_wks_server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg-wks-server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:gpg:gpg_wks_server:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpg-wks-server/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpg-wks-server.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "255" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpgconf@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=494cfb41f57daf5a", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpgconf", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpgconf:gpgconf:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpgconf@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpgconf/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpgconf.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "409" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpgsm@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=d1bdd769706587b0", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpgsm", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpgsm:gpgsm:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpgsm@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpgsm/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpgsm.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "568" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gpgv@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04\u0026package-id=9e7a19a1e065bac0", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gpgv", + "version": "2.2.19-3ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:gpgv:gpgv:2.2.19-3ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gpgv@2.2.19-3ubuntu2.2?arch=amd64\u0026upstream=gnupg2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gpgv/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gpgv.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "499" + }, + { + "name": "syft:metadata:source", + "value": "gnupg2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/grep@3.4-1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=6df11cc4713d43ee", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "grep", + "version": "3.4-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:grep:grep:3.4-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/grep@3.4-1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/grep/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/grep.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "496" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/gzip@1.10-0ubuntu4.1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=1a31c7f43a754c27", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "gzip", + "version": "1.10-0ubuntu4.1", + "cpe": "cpe:2.3:a:gzip:gzip:1.10-0ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/gzip@1.10-0ubuntu4.1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gzip/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/gzip.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "245" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/hostname@3.23?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=a0197d06dbdaf69d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "hostname", + "version": "3.23", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:hostname:hostname:3.23:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/hostname@3.23?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/hostname/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/hostname.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "54" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/init-system-helpers@1.57?arch=all\u0026distro=ubuntu-20.04\u0026package-id=639e13d4d46fa4f5", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "init-system-helpers", + "version": "1.57", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:init-system-helpers:init-system-helpers:1.57:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/init-system-helpers@1.57?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system-helpers:init_system_helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init-system-helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system_helpers:init_system_helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init-system-helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init-system:init_system_helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init-system-helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init_system:init_system_helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init-system-helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:init:init_system_helpers:1.57:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/init-system-helpers/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/init-system-helpers.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "133" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/jq@1.6-1ubuntu0.20.04.1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=7550c40a72472d37", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "jq", + "version": "1.6-1ubuntu0.20.04.1", + "licenses": [ + { + "license": { + "id": "CC-BY-3.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:jq:jq:1.6-1ubuntu0.20.04.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/jq@1.6-1ubuntu0.20.04.1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/jq/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/jq.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "97" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/krb5-locales@1.17-6ubuntu4.1?arch=all\u0026upstream=krb5\u0026distro=ubuntu-20.04\u0026package-id=ae70c44a84c353af", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "krb5-locales", + "version": "1.17-6ubuntu4.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:krb5-locales:krb5-locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/krb5-locales@1.17-6ubuntu4.1?arch=all\u0026upstream=krb5\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:krb5-locales:krb5_locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:krb5_locales:krb5-locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:krb5_locales:krb5_locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:krb5:krb5-locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:krb5:krb5_locales:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/krb5-locales/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/krb5-locales.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "132" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libacl1@2.2.53-6?arch=amd64\u0026upstream=acl\u0026distro=ubuntu-20.04\u0026package-id=2db2aa162eb9169d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libacl1", + "version": "2.2.53-6", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libacl1:libacl1:2.2.53-6:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libacl1@2.2.53-6?arch=amd64\u0026upstream=acl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libacl1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libacl1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "70" + }, + { + "name": "syft:metadata:source", + "value": "acl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libapt-pkg6.0@2.0.9?arch=amd64\u0026upstream=apt\u0026distro=ubuntu-20.04\u0026package-id=6a0fbcef210d1dc0", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libapt-pkg6.0", + "version": "2.0.9", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libapt-pkg6.0:libapt-pkg6.0:2.0.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libapt-pkg6.0@2.0.9?arch=amd64\u0026upstream=apt\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt-pkg6.0:libapt_pkg6.0:2.0.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg6.0:libapt-pkg6.0:2.0.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt_pkg6.0:libapt_pkg6.0:2.0.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt-pkg6.0:2.0.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libapt:libapt_pkg6.0:2.0.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libapt-pkg6.0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libapt-pkg6.0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "3312" + }, + { + "name": "syft:metadata:source", + "value": "apt" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libasn1-8-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=f7802d3cd2d6c5c1", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libasn1-8-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libasn1-8-heimdal:libasn1-8-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libasn1-8-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1-8-heimdal:libasn1_8_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1_8_heimdal:libasn1-8-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1_8_heimdal:libasn1_8_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1-8:libasn1-8-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1-8:libasn1_8_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1_8:libasn1-8-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1_8:libasn1_8_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1:libasn1-8-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libasn1:libasn1_8_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libasn1-8-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libasn1-8-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "798" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libassuan0@2.5.3-7ubuntu2?arch=amd64\u0026upstream=libassuan\u0026distro=ubuntu-20.04\u0026package-id=1c61ddf4436534d5", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libassuan0", + "version": "2.5.3-7ubuntu2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libassuan0:libassuan0:2.5.3-7ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libassuan0@2.5.3-7ubuntu2?arch=amd64\u0026upstream=libassuan\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libassuan0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libassuan0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "105" + }, + { + "name": "syft:metadata:source", + "value": "libassuan" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libattr1@1:2.4.48-5?arch=amd64\u0026upstream=attr\u0026distro=ubuntu-20.04\u0026package-id=de0afde4b3cb7ff6", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libattr1", + "version": "1:2.4.48-5", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libattr1:libattr1:1\\:2.4.48-5:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libattr1@1:2.4.48-5?arch=amd64\u0026upstream=attr\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libattr1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libattr1:amd64.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "57" + }, + { + "name": "syft:metadata:source", + "value": "attr" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libaudit-common@1:2.8.5-2ubuntu6?arch=all\u0026upstream=audit\u0026distro=ubuntu-20.04\u0026package-id=c4eab3ebdc9eb4bf", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libaudit-common", + "version": "1:2.8.5-2ubuntu6", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit-common:libaudit-common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libaudit-common@1:2.8.5-2ubuntu6?arch=all\u0026upstream=audit\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit-common:libaudit_common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit-common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit_common:libaudit_common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit-common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libaudit:libaudit_common:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libaudit-common/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libaudit-common.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libaudit-common.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "24" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libaudit1@1:2.8.5-2ubuntu6?arch=amd64\u0026upstream=audit\u0026distro=ubuntu-20.04\u0026package-id=ed81b1638a04d87b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libaudit1", + "version": "1:2.8.5-2ubuntu6", + "licenses": [ + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libaudit1:libaudit1:1\\:2.8.5-2ubuntu6:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libaudit1@1:2.8.5-2ubuntu6?arch=amd64\u0026upstream=audit\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libaudit1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libaudit1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "157" + }, + { + "name": "syft:metadata:source", + "value": "audit" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libblkid1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=17065e45fbd381dc", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libblkid1", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libblkid1:libblkid1:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libblkid1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libblkid1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libblkid1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "440" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libbrotli1@1.0.7-6ubuntu0.1?arch=amd64\u0026upstream=brotli\u0026distro=ubuntu-20.04\u0026package-id=7b7dfa33a497088f", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libbrotli1", + "version": "1.0.7-6ubuntu0.1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libbrotli1:libbrotli1:1.0.7-6ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libbrotli1@1.0.7-6ubuntu0.1?arch=amd64\u0026upstream=brotli\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libbrotli1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libbrotli1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "751" + }, + { + "name": "syft:metadata:source", + "value": "brotli" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libbz2-1.0@1.0.8-2?arch=amd64\u0026upstream=bzip2\u0026distro=ubuntu-20.04\u0026package-id=8988d2e88b2ebd06", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libbz2-1.0", + "version": "1.0.8-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libbz2-1.0:libbz2-1.0:1.0.8-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libbz2-1.0@1.0.8-2?arch=amd64\u0026upstream=bzip2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2-1.0:libbz2_1.0:1.0.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2-1.0:1.0.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2_1.0:libbz2_1.0:1.0.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2-1.0:1.0.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libbz2:libbz2_1.0:1.0.8-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libbz2-1.0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libbz2-1.0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "99" + }, + { + "name": "syft:metadata:source", + "value": "bzip2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libc-bin@2.31-0ubuntu9.9?arch=amd64\u0026upstream=glibc\u0026distro=ubuntu-20.04\u0026package-id=54d01e81d25a17db", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libc-bin", + "version": "2.31-0ubuntu9.9", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc-bin:libc-bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libc-bin@2.31-0ubuntu9.9?arch=amd64\u0026upstream=glibc\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc-bin:libc_bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc-bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc_bin:libc_bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc-bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libc:libc_bin:2.31-0ubuntu9.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libc-bin/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libc-bin.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libc-bin.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "3713" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libc6@2.31-0ubuntu9.9?arch=amd64\u0026upstream=glibc\u0026distro=ubuntu-20.04\u0026package-id=16ded01525b07d34", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libc6", + "version": "2.31-0ubuntu9.9", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libc6:libc6:2.31-0ubuntu9.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libc6@2.31-0ubuntu9.9?arch=amd64\u0026upstream=glibc\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libc6/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libc6:amd64.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libc6:amd64.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "13238" + }, + { + "name": "syft:metadata:source", + "value": "glibc" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libcap-ng0@0.7.9-2.1build1?arch=amd64\u0026upstream=libcap-ng\u0026distro=ubuntu-20.04\u0026package-id=227fe8ee7b95e120", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libcap-ng0", + "version": "0.7.9-2.1build1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libcap-ng0:libcap-ng0:0.7.9-2.1build1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libcap-ng0@0.7.9-2.1build1?arch=amd64\u0026upstream=libcap-ng\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap-ng0:libcap_ng0:0.7.9-2.1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap-ng0:0.7.9-2.1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap_ng0:libcap_ng0:0.7.9-2.1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap-ng0:0.7.9-2.1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcap:libcap_ng0:0.7.9-2.1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libcap-ng0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libcap-ng0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "45" + }, + { + "name": "syft:metadata:source", + "value": "libcap-ng" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libcom-err2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04\u0026package-id=b3817f588152f43a", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libcom-err2", + "version": "1.45.5-2ubuntu1.1", + "cpe": "cpe:2.3:a:libcom-err2:libcom-err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libcom-err2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom-err2:libcom_err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom-err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom_err2:libcom_err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom-err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libcom:libcom_err2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libcom-err2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libcom-err2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "100" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libcrypt1@1:4.4.10-10ubuntu4?arch=amd64\u0026upstream=libxcrypt\u0026distro=ubuntu-20.04\u0026package-id=bab6e6ae207c4a28", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libcrypt1", + "version": "1:4.4.10-10ubuntu4", + "cpe": "cpe:2.3:a:libcrypt1:libcrypt1:1\\:4.4.10-10ubuntu4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libcrypt1@1:4.4.10-10ubuntu4?arch=amd64\u0026upstream=libxcrypt\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libcrypt1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libcrypt1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "226" + }, + { + "name": "syft:metadata:source", + "value": "libxcrypt" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libcurl4@7.68.0-1ubuntu2.13?arch=amd64\u0026upstream=curl\u0026distro=ubuntu-20.04\u0026package-id=4b1562550f5ebdd7", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libcurl4", + "version": "7.68.0-1ubuntu2.13", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "ISC" + } + }, + { + "license": { + "id": "curl" + } + } + ], + "cpe": "cpe:2.3:a:libcurl4:libcurl4:7.68.0-1ubuntu2.13:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libcurl4@7.68.0-1ubuntu2.13?arch=amd64\u0026upstream=curl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libcurl4/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libcurl4:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "693" + }, + { + "name": "syft:metadata:source", + "value": "curl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libdb5.3@5.3.28+dfsg1-0.6ubuntu2?arch=amd64\u0026upstream=db5.3\u0026distro=ubuntu-20.04\u0026package-id=688c8007c224c70", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libdb5.3", + "version": "5.3.28+dfsg1-0.6ubuntu2", + "cpe": "cpe:2.3:a:libdb5.3:libdb5.3:5.3.28\\+dfsg1-0.6ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libdb5.3@5.3.28+dfsg1-0.6ubuntu2?arch=amd64\u0026upstream=db5.3\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libdb5.3/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libdb5.3:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1749" + }, + { + "name": "syft:metadata:source", + "value": "db5.3" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libdebconfclient0@0.251ubuntu1?arch=amd64\u0026upstream=cdebconf\u0026distro=ubuntu-20.04\u0026package-id=ce3f1fbb28ac9f0c", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libdebconfclient0", + "version": "0.251ubuntu1", + "cpe": "cpe:2.3:a:libdebconfclient0:libdebconfclient0:0.251ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libdebconfclient0@0.251ubuntu1?arch=amd64\u0026upstream=cdebconf\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libdebconfclient0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libdebconfclient0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "74" + }, + { + "name": "syft:metadata:source", + "value": "cdebconf" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libext2fs2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04\u0026package-id=bd4e3abdb24062e9", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libext2fs2", + "version": "1.45.5-2ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libext2fs2:libext2fs2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libext2fs2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libext2fs2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libext2fs2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "540" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libfdisk1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=c68eb64fe16ef867", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libfdisk1", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libfdisk1:libfdisk1:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libfdisk1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libfdisk1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libfdisk1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "549" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libffi7@3.3-4?arch=amd64\u0026upstream=libffi\u0026distro=ubuntu-20.04\u0026package-id=c6c33d720936a527", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libffi7", + "version": "3.3-4", + "cpe": "cpe:2.3:a:libffi7:libffi7:3.3-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libffi7@3.3-4?arch=amd64\u0026upstream=libffi\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libffi7/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libffi7:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "65" + }, + { + "name": "syft:metadata:source", + "value": "libffi" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgcc-s1@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04\u0026package-id=435737b0692eb6c9", + "type": "library", + "publisher": "Ubuntu Core developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgcc-s1", + "version": "10.3.0-1ubuntu1~20.04", + "licenses": [ + { + "license": { + "id": "GFDL-1.2" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgcc-s1:libgcc-s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgcc-s1@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgcc-s1:libgcc_s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgcc_s1:libgcc-s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgcc_s1:libgcc_s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgcc:libgcc-s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgcc:libgcc_s1:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gcc-10-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgcc-s1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "120" + }, + { + "name": "syft:metadata:source", + "value": "gcc-10" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgcrypt20@1.8.5-5ubuntu1.1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=b520b02bbf7cf49e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgcrypt20", + "version": "1.8.5-5ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgcrypt20:libgcrypt20:1.8.5-5ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgcrypt20@1.8.5-5ubuntu1.1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgcrypt20/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgcrypt20:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1224" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgmp10@2:6.2.0+dfsg-4?arch=amd64\u0026upstream=gmp\u0026distro=ubuntu-20.04\u0026package-id=b703f56189510b7e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgmp10", + "version": "2:6.2.0+dfsg-4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgmp10:libgmp10:2\\:6.2.0\\+dfsg-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgmp10@2:6.2.0+dfsg-4?arch=amd64\u0026upstream=gmp\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgmp10/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgmp10:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "567" + }, + { + "name": "syft:metadata:source", + "value": "gmp" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgnutls30@3.6.13-2ubuntu1.7?arch=amd64\u0026upstream=gnutls28\u0026distro=ubuntu-20.04\u0026package-id=46a0d93c9694f942", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgnutls30", + "version": "3.6.13-2ubuntu1.7", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GFDL-1.3" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgnutls30:libgnutls30:3.6.13-2ubuntu1.7:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgnutls30@3.6.13-2ubuntu1.7?arch=amd64\u0026upstream=gnutls28\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgnutls30/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgnutls30:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "2192" + }, + { + "name": "syft:metadata:source", + "value": "gnutls28" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgpg-error0@1.37-1?arch=amd64\u0026upstream=libgpg-error\u0026distro=ubuntu-20.04\u0026package-id=ffc446edb36d7773", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgpg-error0", + "version": "1.37-1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libgpg-error0:libgpg-error0:1.37-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgpg-error0@1.37-1?arch=amd64\u0026upstream=libgpg-error\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg-error0:libgpg_error0:1.37-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg-error0:1.37-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg_error0:libgpg_error0:1.37-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg-error0:1.37-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgpg:libgpg_error0:1.37-1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgpg-error0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgpg-error0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "176" + }, + { + "name": "syft:metadata:source", + "value": "libgpg-error" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgssapi-krb5-2@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04\u0026package-id=9cc02017a387e593", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgssapi-krb5-2", + "version": "1.17-6ubuntu4.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libgssapi-krb5-2:libgssapi-krb5-2:1.17-6ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgssapi-krb5-2@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5-2:libgssapi_krb5_2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi-krb5-2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5_2:libgssapi_krb5_2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi-krb5-2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi-krb5:libgssapi_krb5_2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi-krb5-2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi_krb5:libgssapi_krb5_2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi-krb5-2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi:libgssapi_krb5_2:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgssapi-krb5-2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgssapi-krb5-2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "426" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libgssapi3-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=d4f6fcb5633df6e8", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libgssapi3-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libgssapi3-heimdal:libgssapi3-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libgssapi3-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi3-heimdal:libgssapi3_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi3_heimdal:libgssapi3-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi3_heimdal:libgssapi3_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi3:libgssapi3-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libgssapi3:libgssapi3_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libgssapi3-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libgssapi3-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "324" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libhcrypto4-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=27c6d00129706086", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libhcrypto4-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libhcrypto4-heimdal:libhcrypto4-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libhcrypto4-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhcrypto4-heimdal:libhcrypto4_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhcrypto4_heimdal:libhcrypto4-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhcrypto4_heimdal:libhcrypto4_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhcrypto4:libhcrypto4-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhcrypto4:libhcrypto4_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libhcrypto4-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libhcrypto4-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "274" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libheimbase1-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=ea4b1ef41e20ed23", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libheimbase1-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libheimbase1-heimdal:libheimbase1-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libheimbase1-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimbase1-heimdal:libheimbase1_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimbase1_heimdal:libheimbase1-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimbase1_heimdal:libheimbase1_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimbase1:libheimbase1-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimbase1:libheimbase1_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libheimbase1-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libheimbase1-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "113" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libheimntlm0-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=ca116661339d995", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libheimntlm0-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libheimntlm0-heimdal:libheimntlm0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libheimntlm0-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimntlm0-heimdal:libheimntlm0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimntlm0_heimdal:libheimntlm0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimntlm0_heimdal:libheimntlm0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimntlm0:libheimntlm0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libheimntlm0:libheimntlm0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libheimntlm0-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libheimntlm0-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "85" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libhogweed5@3.5.1+really3.5.1-2ubuntu0.2?arch=amd64\u0026upstream=nettle\u0026distro=ubuntu-20.04\u0026package-id=70870515eadf67e8", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libhogweed5", + "version": "3.5.1+really3.5.1-2ubuntu0.2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libhogweed5:libhogweed5:3.5.1\\+really3.5.1-2ubuntu0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libhogweed5@3.5.1+really3.5.1-2ubuntu0.2?arch=amd64\u0026upstream=nettle\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libnettle7/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libhogweed5:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "237" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libhx509-5-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=e9a06d39a04f5742", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libhx509-5-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libhx509-5-heimdal:libhx509-5-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libhx509-5-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509-5-heimdal:libhx509_5_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509_5_heimdal:libhx509-5-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509_5_heimdal:libhx509_5_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509-5:libhx509-5-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509-5:libhx509_5_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509_5:libhx509-5-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509_5:libhx509_5_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509:libhx509-5-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libhx509:libhx509_5_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libhx509-5-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libhx509-5-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "360" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libidn2-0@2.2.0-2?arch=amd64\u0026upstream=libidn2\u0026distro=ubuntu-20.04\u0026package-id=39c687852efdd282", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libidn2-0", + "version": "2.2.0-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libidn2-0:libidn2-0:2.2.0-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libidn2-0@2.2.0-2?arch=amd64\u0026upstream=libidn2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2-0:libidn2_0:2.2.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2-0:2.2.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2_0:libidn2_0:2.2.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2-0:2.2.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libidn2:libidn2_0:2.2.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libidn2-0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libidn2-0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "216" + }, + { + "name": "syft:metadata:source", + "value": "libidn2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libjq1@1.6-1ubuntu0.20.04.1?arch=amd64\u0026upstream=jq\u0026distro=ubuntu-20.04\u0026package-id=b45175e2f41a03c6", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libjq1", + "version": "1.6-1ubuntu0.20.04.1", + "licenses": [ + { + "license": { + "id": "CC-BY-3.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libjq1:libjq1:1.6-1ubuntu0.20.04.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libjq1@1.6-1ubuntu0.20.04.1?arch=amd64\u0026upstream=jq\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libjq1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libjq1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "342" + }, + { + "name": "syft:metadata:source", + "value": "jq" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libk5crypto3@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04\u0026package-id=d301a875eff8602b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libk5crypto3", + "version": "1.17-6ubuntu4.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libk5crypto3:libk5crypto3:1.17-6ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libk5crypto3@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libk5crypto3/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libk5crypto3:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "299" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libkeyutils1@1.6-6ubuntu1.1?arch=amd64\u0026upstream=keyutils\u0026distro=ubuntu-20.04\u0026package-id=7382a21e44cd4741", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libkeyutils1", + "version": "1.6-6ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libkeyutils1:libkeyutils1:1.6-6ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libkeyutils1@1.6-6ubuntu1.1?arch=amd64\u0026upstream=keyutils\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libkeyutils1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libkeyutils1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "47" + }, + { + "name": "syft:metadata:source", + "value": "keyutils" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libkrb5-26-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=66eb0d871bd9e9ab", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libkrb5-26-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5-26-heimdal:libkrb5-26-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libkrb5-26-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-26-heimdal:libkrb5_26_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_26_heimdal:libkrb5-26-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_26_heimdal:libkrb5_26_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-26:libkrb5-26-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-26:libkrb5_26_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_26:libkrb5-26-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_26:libkrb5_26_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5-26-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5_26_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libkrb5-26-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libkrb5-26-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "665" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libkrb5-3@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04\u0026package-id=ce47e2e310ed956c", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libkrb5-3", + "version": "1.17-6ubuntu4.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5-3:libkrb5-3:1.17-6ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libkrb5-3@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5-3:libkrb5_3:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5-3:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5_3:libkrb5_3:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5-3:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libkrb5:libkrb5_3:1.17-6ubuntu4.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libkrb5-3/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libkrb5-3:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1121" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libkrb5support0@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04\u0026package-id=14464100af7500df", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libkrb5support0", + "version": "1.17-6ubuntu4.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libkrb5support0:libkrb5support0:1.17-6ubuntu4.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libkrb5support0@1.17-6ubuntu4.1?arch=amd64\u0026upstream=krb5\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libkrb5support0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libkrb5support0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "167" + }, + { + "name": "syft:metadata:source", + "value": "krb5" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libksba8@1.3.5-2?arch=amd64\u0026upstream=libksba\u0026distro=ubuntu-20.04\u0026package-id=46c241a743fe4547", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libksba8", + "version": "1.3.5-2", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libksba8:libksba8:1.3.5-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libksba8@1.3.5-2?arch=amd64\u0026upstream=libksba\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libksba8/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libksba8:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "259" + }, + { + "name": "syft:metadata:source", + "value": "libksba" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libldap-2.4-2@2.4.49+dfsg-2ubuntu1.9?arch=amd64\u0026upstream=openldap\u0026distro=ubuntu-20.04\u0026package-id=9bc56a60dd672503", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libldap-2.4-2", + "version": "2.4.49+dfsg-2ubuntu1.9", + "cpe": "cpe:2.3:a:libldap-2.4-2:libldap-2.4-2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libldap-2.4-2@2.4.49+dfsg-2ubuntu1.9?arch=amd64\u0026upstream=openldap\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4-2:libldap_2.4_2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap-2.4-2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4_2:libldap_2.4_2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap-2.4-2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-2.4:libldap_2.4_2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap-2.4-2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_2.4:libldap_2.4_2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-2.4-2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_2.4_2:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libldap-2.4-2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libldap-2.4-2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "523" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libldap-common@2.4.49+dfsg-2ubuntu1.9?arch=all\u0026upstream=openldap\u0026distro=ubuntu-20.04\u0026package-id=4e76a536c892f8d0", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libldap-common", + "version": "2.4.49+dfsg-2ubuntu1.9", + "cpe": "cpe:2.3:a:libldap-common:libldap-common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libldap-common@2.4.49+dfsg-2ubuntu1.9?arch=all\u0026upstream=openldap\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap-common:libldap_common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap-common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap_common:libldap_common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap-common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libldap:libldap_common:2.4.49\\+dfsg-2ubuntu1.9:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libldap-common/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libldap-common.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libldap-common.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "102" + }, + { + "name": "syft:metadata:source", + "value": "openldap" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/liblz4-1@1.9.2-2ubuntu0.20.04.1?arch=amd64\u0026upstream=lz4\u0026distro=ubuntu-20.04\u0026package-id=44b4b09918942cbc", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "liblz4-1", + "version": "1.9.2-2ubuntu0.20.04.1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:liblz4-1:liblz4-1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/liblz4-1@1.9.2-2ubuntu0.20.04.1?arch=amd64\u0026upstream=lz4\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4-1:liblz4_1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4-1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4_1:liblz4_1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4-1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:liblz4:liblz4_1:1.9.2-2ubuntu0.20.04.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/liblz4-1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/liblz4-1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "149" + }, + { + "name": "syft:metadata:source", + "value": "lz4" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/liblzma5@5.2.4-1ubuntu1.1?arch=amd64\u0026upstream=xz-utils\u0026distro=ubuntu-20.04\u0026package-id=4e78ccd9fd1258be", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "liblzma5", + "version": "5.2.4-1ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:liblzma5:liblzma5:5.2.4-1ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/liblzma5@5.2.4-1ubuntu1.1?arch=amd64\u0026upstream=xz-utils\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/liblzma5/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/liblzma5:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "267" + }, + { + "name": "syft:metadata:source", + "value": "xz-utils" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libmount1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=de05b87dca08df42", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libmount1", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libmount1:libmount1:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libmount1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libmount1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libmount1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "482" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libncurses6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04\u0026package-id=5c1fe6aaed2d0fb7", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libncurses6", + "version": "6.2-0ubuntu2", + "cpe": "cpe:2.3:a:libncurses6:libncurses6:6.2-0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libncurses6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libncurses6:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "337" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libncursesw6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04\u0026package-id=5efa71b22552685b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libncursesw6", + "version": "6.2-0ubuntu2", + "cpe": "cpe:2.3:a:libncursesw6:libncursesw6:6.2-0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libncursesw6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libncursesw6:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "418" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libnettle7@3.5.1+really3.5.1-2ubuntu0.2?arch=amd64\u0026upstream=nettle\u0026distro=ubuntu-20.04\u0026package-id=1e3489814f35dc6d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libnettle7", + "version": "3.5.1+really3.5.1-2ubuntu0.2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libnettle7:libnettle7:3.5.1\\+really3.5.1-2ubuntu0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libnettle7@3.5.1+really3.5.1-2ubuntu0.2?arch=amd64\u0026upstream=nettle\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libnettle7/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libnettle7:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "396" + }, + { + "name": "syft:metadata:source", + "value": "nettle" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libnghttp2-14@1.40.0-1build1?arch=amd64\u0026upstream=nghttp2\u0026distro=ubuntu-20.04\u0026package-id=ffe9dd3e302e60a9", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libnghttp2-14", + "version": "1.40.0-1build1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libnghttp2-14:libnghttp2-14:1.40.0-1build1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libnghttp2-14@1.40.0-1build1?arch=amd64\u0026upstream=nghttp2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2-14:libnghttp2_14:1.40.0-1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2-14:1.40.0-1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2_14:libnghttp2_14:1.40.0-1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2-14:1.40.0-1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libnghttp2:libnghttp2_14:1.40.0-1build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libnghttp2-14/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libnghttp2-14:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "212" + }, + { + "name": "syft:metadata:source", + "value": "nghttp2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libnpth0@1.6-1?arch=amd64\u0026upstream=npth\u0026distro=ubuntu-20.04\u0026package-id=81650490392a2124", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libnpth0", + "version": "1.6-1", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libnpth0:libnpth0:1.6-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libnpth0@1.6-1?arch=amd64\u0026upstream=npth\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libnpth0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libnpth0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "36" + }, + { + "name": "syft:metadata:source", + "value": "npth" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libnuma1@2.0.12-1?arch=amd64\u0026upstream=numactl\u0026distro=ubuntu-20.04\u0026package-id=5848f920ab5a9b54", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libnuma1", + "version": "2.0.12-1", + "cpe": "cpe:2.3:a:libnuma1:libnuma1:2.0.12-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libnuma1@2.0.12-1?arch=amd64\u0026upstream=numactl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libnuma1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libnuma1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "72" + }, + { + "name": "syft:metadata:source", + "value": "numactl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libonig5@6.9.4-1?arch=amd64\u0026upstream=libonig\u0026distro=ubuntu-20.04\u0026package-id=23d145d34f0458d8", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libonig5", + "version": "6.9.4-1", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libonig5:libonig5:6.9.4-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libonig5@6.9.4-1?arch=amd64\u0026upstream=libonig\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libonig5/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libonig5:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "598" + }, + { + "name": "syft:metadata:source", + "value": "libonig" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libp11-kit0@0.23.20-1ubuntu0.1?arch=amd64\u0026upstream=p11-kit\u0026distro=ubuntu-20.04\u0026package-id=e8af14f3dbb60286", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libp11-kit0", + "version": "0.23.20-1ubuntu0.1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "ISC" + } + } + ], + "cpe": "cpe:2.3:a:libp11-kit0:libp11-kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libp11-kit0@0.23.20-1ubuntu0.1?arch=amd64\u0026upstream=p11-kit\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11-kit0:libp11_kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11-kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11_kit0:libp11_kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11-kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libp11:libp11_kit0:0.23.20-1ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libp11-kit0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libp11-kit0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1271" + }, + { + "name": "syft:metadata:source", + "value": "p11-kit" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpam-modules@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04\u0026package-id=cde3877ffca19b8e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpam-modules", + "version": "1.3.1-5ubuntu4.3", + "cpe": "cpe:2.3:a:libpam-modules:libpam-modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpam-modules@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpam-modules/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libpam-modules:amd64.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1166" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpam-modules-bin@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04\u0026package-id=c196c8c1d057fe03", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpam-modules-bin", + "version": "1.3.1-5ubuntu4.3", + "cpe": "cpe:2.3:a:libpam-modules-bin:libpam-modules-bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpam-modules-bin@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules-bin:libpam_modules_bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam-modules-bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules_bin:libpam_modules_bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam-modules-bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-modules:libpam_modules_bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam-modules-bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_modules:libpam_modules_bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-modules-bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_modules_bin:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpam-modules-bin/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpam-modules-bin.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "339" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpam-runtime@1.3.1-5ubuntu4.3?arch=all\u0026upstream=pam\u0026distro=ubuntu-20.04\u0026package-id=5c632e53bb9f59b8", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpam-runtime", + "version": "1.3.1-5ubuntu4.3", + "cpe": "cpe:2.3:a:libpam-runtime:libpam-runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpam-runtime@1.3.1-5ubuntu4.3?arch=all\u0026upstream=pam\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam-runtime:libpam_runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam-runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam_runtime:libpam_runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam-runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpam:libpam_runtime:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpam-runtime/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpam-runtime.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libpam-runtime.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "304" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpam0g@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04\u0026package-id=d75b7d11fd26b051", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpam0g", + "version": "1.3.1-5ubuntu4.3", + "cpe": "cpe:2.3:a:libpam0g:libpam0g:1.3.1-5ubuntu4.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpam0g@1.3.1-5ubuntu4.3?arch=amd64\u0026upstream=pam\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpam0g/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpam0g:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "231" + }, + { + "name": "syft:metadata:source", + "value": "pam" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpcre2-8-0@10.34-7ubuntu0.1?arch=amd64\u0026upstream=pcre2\u0026distro=ubuntu-20.04\u0026package-id=72b985fb0dd2c498", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpcre2-8-0", + "version": "10.34-7ubuntu0.1", + "cpe": "cpe:2.3:a:libpcre2-8-0:libpcre2-8-0:10.34-7ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpcre2-8-0@10.34-7ubuntu0.1?arch=amd64\u0026upstream=pcre2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2-8-0:libpcre2_8_0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2_8_0:libpcre2-8-0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2_8_0:libpcre2_8_0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2-8:libpcre2-8-0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2-8:libpcre2_8_0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2_8:libpcre2-8-0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2_8:libpcre2_8_0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2:libpcre2-8-0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libpcre2:libpcre2_8_0:10.34-7ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpcre2-8-0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpcre2-8-0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "596" + }, + { + "name": "syft:metadata:source", + "value": "pcre2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpcre3@2:8.39-12ubuntu0.1?arch=amd64\u0026upstream=pcre3\u0026distro=ubuntu-20.04\u0026package-id=5907e9d3f5f5a732", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpcre3", + "version": "2:8.39-12ubuntu0.1", + "cpe": "cpe:2.3:a:libpcre3:libpcre3:2\\:8.39-12ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpcre3@2:8.39-12ubuntu0.1?arch=amd64\u0026upstream=pcre3\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpcre3/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpcre3:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "671" + }, + { + "name": "syft:metadata:source", + "value": "pcre3" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libprocps8@2:3.3.16-1ubuntu2.3?arch=amd64\u0026upstream=procps\u0026distro=ubuntu-20.04\u0026package-id=e5b530c49db4c8f9", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libprocps8", + "version": "2:3.3.16-1ubuntu2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libprocps8:libprocps8:2\\:3.3.16-1ubuntu2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libprocps8@2:3.3.16-1ubuntu2.3?arch=amd64\u0026upstream=procps\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libprocps8/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libprocps8:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "128" + }, + { + "name": "syft:metadata:source", + "value": "procps" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libpsl5@0.21.0-1ubuntu1?arch=amd64\u0026upstream=libpsl\u0026distro=ubuntu-20.04\u0026package-id=be7238505ad91b4f", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libpsl5", + "version": "0.21.0-1ubuntu1", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libpsl5:libpsl5:0.21.0-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libpsl5@0.21.0-1ubuntu1?arch=amd64\u0026upstream=libpsl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libpsl5/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libpsl5:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "91" + }, + { + "name": "syft:metadata:source", + "value": "libpsl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libreadline8@8.0-4?arch=amd64\u0026upstream=readline\u0026distro=ubuntu-20.04\u0026package-id=43e243d38307dfbf", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libreadline8", + "version": "8.0-4", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libreadline8:libreadline8:8.0-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libreadline8@8.0-4?arch=amd64\u0026upstream=readline\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libreadline8/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libreadline8:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "441" + }, + { + "name": "syft:metadata:source", + "value": "readline" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libroken18-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=19477f53c40f4a9d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libroken18-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libroken18-heimdal:libroken18-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libroken18-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libroken18-heimdal:libroken18_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libroken18_heimdal:libroken18-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libroken18_heimdal:libroken18_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libroken18:libroken18-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libroken18:libroken18_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libroken18-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libroken18-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "144" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/librtmp1@2.4+20151223.gitfa8646d.1-2build1?arch=amd64\u0026upstream=rtmpdump\u0026distro=ubuntu-20.04\u0026package-id=7273c5a5e73b7b8e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "librtmp1", + "version": "2.4+20151223.gitfa8646d.1-2build1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:librtmp1:librtmp1:2.4\\+20151223.gitfa8646d.1-2build1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/librtmp1@2.4+20151223.gitfa8646d.1-2build1?arch=amd64\u0026upstream=rtmpdump\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/librtmp1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/librtmp1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "144" + }, + { + "name": "syft:metadata:source", + "value": "rtmpdump" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsasl2-2@2.1.27+dfsg-2ubuntu0.1?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=ubuntu-20.04\u0026package-id=3475ad0ad9c36f19", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsasl2-2", + "version": "2.1.27+dfsg-2ubuntu0.1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-2:libsasl2-2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsasl2-2@2.1.27+dfsg-2ubuntu0.1?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-2:libsasl2_2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2-2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_2:libsasl2_2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_2:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsasl2-2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsasl2-2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "152" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsasl2-modules-db@2.1.27+dfsg-2ubuntu0.1?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=ubuntu-20.04\u0026package-id=9a74e6d13348d506", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsasl2-modules-db", + "version": "2.1.27+dfsg-2ubuntu0.1", + "licenses": [ + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsasl2-modules-db:libsasl2-modules-db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsasl2-modules-db@2.1.27+dfsg-2ubuntu0.1?arch=amd64\u0026upstream=cyrus-sasl2\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules-db:libsasl2_modules_db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2-modules-db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules_db:libsasl2_modules_db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2-modules-db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2-modules:libsasl2_modules_db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2-modules-db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2_modules:libsasl2_modules_db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2-modules-db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsasl2:libsasl2_modules_db:2.1.27\\+dfsg-2ubuntu0.1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsasl2-modules-db/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsasl2-modules-db:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "66" + }, + { + "name": "syft:metadata:source", + "value": "cyrus-sasl2" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libseccomp2@2.5.1-1ubuntu1~20.04.2?arch=amd64\u0026upstream=libseccomp\u0026distro=ubuntu-20.04\u0026package-id=80925eea22b8fc7d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libseccomp2", + "version": "2.5.1-1ubuntu1~20.04.2", + "licenses": [ + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libseccomp2:libseccomp2:2.5.1-1ubuntu1\\~20.04.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libseccomp2@2.5.1-1ubuntu1~20.04.2?arch=amd64\u0026upstream=libseccomp\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libseccomp2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libseccomp2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "152" + }, + { + "name": "syft:metadata:source", + "value": "libseccomp" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libselinux1@3.0-1build2?arch=amd64\u0026upstream=libselinux\u0026distro=ubuntu-20.04\u0026package-id=9b84e804dc8c9bb5", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libselinux1", + "version": "3.0-1build2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libselinux1:libselinux1:3.0-1build2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libselinux1@3.0-1build2?arch=amd64\u0026upstream=libselinux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libselinux1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libselinux1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "202" + }, + { + "name": "syft:metadata:source", + "value": "libselinux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsemanage-common@3.0-1build2?arch=all\u0026upstream=libsemanage\u0026distro=ubuntu-20.04\u0026package-id=d403689daa000f21", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsemanage-common", + "version": "3.0-1build2", + "cpe": "cpe:2.3:a:libsemanage-common:libsemanage-common:3.0-1build2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsemanage-common@3.0-1build2?arch=all\u0026upstream=libsemanage\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage-common:libsemanage_common:3.0-1build2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage-common:3.0-1build2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage_common:libsemanage_common:3.0-1build2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage-common:3.0-1build2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsemanage:libsemanage_common:3.0-1build2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsemanage-common/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsemanage-common.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/libsemanage-common.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "36" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsemanage1@3.0-1build2?arch=amd64\u0026upstream=libsemanage\u0026distro=ubuntu-20.04\u0026package-id=56e91474fa753d89", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsemanage1", + "version": "3.0-1build2", + "cpe": "cpe:2.3:a:libsemanage1:libsemanage1:3.0-1build2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsemanage1@3.0-1build2?arch=amd64\u0026upstream=libsemanage\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsemanage1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsemanage1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "305" + }, + { + "name": "syft:metadata:source", + "value": "libsemanage" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsepol1@3.0-1ubuntu0.1?arch=amd64\u0026upstream=libsepol\u0026distro=ubuntu-20.04\u0026package-id=a4c3d9ad4fbb8a9b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsepol1", + "version": "3.0-1ubuntu0.1", + "cpe": "cpe:2.3:a:libsepol1:libsepol1:3.0-1ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsepol1@3.0-1ubuntu0.1?arch=amd64\u0026upstream=libsepol\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsepol1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsepol1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "734" + }, + { + "name": "syft:metadata:source", + "value": "libsepol" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsmartcols1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=caafe6d8c3a45fdd", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsmartcols1", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libsmartcols1:libsmartcols1:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsmartcols1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsmartcols1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsmartcols1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "338" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsqlite3-0@3.31.1-4ubuntu0.4?arch=amd64\u0026upstream=sqlite3\u0026distro=ubuntu-20.04\u0026package-id=a35ccd3fecaa4643", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsqlite3-0", + "version": "3.31.1-4ubuntu0.4", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libsqlite3-0:libsqlite3-0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsqlite3-0@3.31.1-4ubuntu0.4?arch=amd64\u0026upstream=sqlite3\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsqlite3-0:libsqlite3_0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsqlite3_0:libsqlite3-0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsqlite3_0:libsqlite3_0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsqlite3:libsqlite3-0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libsqlite3:libsqlite3_0:3.31.1-4ubuntu0.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsqlite3-0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsqlite3-0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1323" + }, + { + "name": "syft:metadata:source", + "value": "sqlite3" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libss2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04\u0026package-id=e2c4951f2d5325b1", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libss2", + "version": "1.45.5-2ubuntu1.1", + "cpe": "cpe:2.3:a:libss2:libss2:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libss2@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libss2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libss2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "108" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libssh-4@0.9.3-2ubuntu2.2?arch=amd64\u0026upstream=libssh\u0026distro=ubuntu-20.04\u0026package-id=a8147a806460ae8f", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libssh-4", + "version": "0.9.3-2ubuntu2.2", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libssh-4:libssh-4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libssh-4@0.9.3-2ubuntu2.2?arch=amd64\u0026upstream=libssh\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh-4:libssh_4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh_4:libssh-4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh_4:libssh_4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh:libssh-4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libssh:libssh_4:0.9.3-2ubuntu2.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libssh-4/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libssh-4:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "491" + }, + { + "name": "syft:metadata:source", + "value": "libssh" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libssl1.1@1.1.1f-1ubuntu2.16?arch=amd64\u0026upstream=openssl\u0026distro=ubuntu-20.04\u0026package-id=5442119039087d3e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libssl1.1", + "version": "1.1.1f-1ubuntu2.16", + "cpe": "cpe:2.3:a:libssl1.1:libssl1.1:1.1.1f-1ubuntu2.16:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libssl1.1@1.1.1f-1ubuntu2.16?arch=amd64\u0026upstream=openssl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libssl1.1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libssl1.1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "4028" + }, + { + "name": "syft:metadata:source", + "value": "openssl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libstdc++6@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04\u0026package-id=42bba131436ff930", + "type": "library", + "publisher": "Ubuntu Core developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libstdc++6", + "version": "10.3.0-1ubuntu1~20.04", + "licenses": [ + { + "license": { + "id": "GFDL-1.2" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:libstdc\\+\\+6:libstdc\\+\\+6:10.3.0-1ubuntu1\\~20.04:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libstdc++6@10.3.0-1ubuntu1~20.04?arch=amd64\u0026upstream=gcc-10\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/gcc-10-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libstdc++6:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "2437" + }, + { + "name": "syft:metadata:source", + "value": "gcc-10" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libsystemd0@245.4-4ubuntu3.18?arch=amd64\u0026upstream=systemd\u0026distro=ubuntu-20.04\u0026package-id=6483aa271eb2927", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libsystemd0", + "version": "245.4-4ubuntu3.18", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libsystemd0:libsystemd0:245.4-4ubuntu3.18:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libsystemd0@245.4-4ubuntu3.18?arch=amd64\u0026upstream=systemd\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libsystemd0/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libsystemd0:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "877" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libtasn1-6@4.16.0-2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=2a80e06c0ca135f8", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libtasn1-6", + "version": "4.16.0-2", + "licenses": [ + { + "license": { + "id": "GFDL-1.3" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + } + ], + "cpe": "cpe:2.3:a:libtasn1-6:libtasn1-6:4.16.0-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libtasn1-6@4.16.0-2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1-6:libtasn1_6:4.16.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1-6:4.16.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1_6:libtasn1_6:4.16.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1-6:4.16.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libtasn1:libtasn1_6:4.16.0-2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libtasn1-6/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libtasn1-6:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "125" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libtinfo6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04\u0026package-id=e40aa57c92d60b8d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libtinfo6", + "version": "6.2-0ubuntu2", + "cpe": "cpe:2.3:a:libtinfo6:libtinfo6:6.2-0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libtinfo6@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libtinfo6/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libtinfo6:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "537" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libudev1@245.4-4ubuntu3.18?arch=amd64\u0026upstream=systemd\u0026distro=ubuntu-20.04\u0026package-id=f6f984b271d1d23", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libudev1", + "version": "245.4-4ubuntu3.18", + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:libudev1:libudev1:245.4-4ubuntu3.18:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libudev1@245.4-4ubuntu3.18?arch=amd64\u0026upstream=systemd\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libudev1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libudev1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "339" + }, + { + "name": "syft:metadata:source", + "value": "systemd" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libunistring2@0.9.10-2?arch=amd64\u0026upstream=libunistring\u0026distro=ubuntu-20.04\u0026package-id=da8e8ba4686d4028", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libunistring2", + "version": "0.9.10-2", + "licenses": [ + { + "license": { + "id": "GFDL-1.2" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libunistring2:libunistring2:0.9.10-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libunistring2@0.9.10-2?arch=amd64\u0026upstream=libunistring\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libunistring2/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libunistring2:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1582" + }, + { + "name": "syft:metadata:source", + "value": "libunistring" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libuuid1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=eb9f2840af0f51ed", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libuuid1", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:libuuid1:libuuid1:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libuuid1@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libuuid1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libuuid1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "123" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libwind0-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04\u0026package-id=d5e9d444fe56ff0d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libwind0-heimdal", + "version": "7.7.0+dfsg-1ubuntu1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:libwind0-heimdal:libwind0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libwind0-heimdal@7.7.0+dfsg-1ubuntu1?arch=amd64\u0026upstream=heimdal\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libwind0-heimdal:libwind0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libwind0_heimdal:libwind0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libwind0_heimdal:libwind0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libwind0:libwind0-heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:libwind0:libwind0_heimdal:7.7.0\\+dfsg-1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libwind0-heimdal/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libwind0-heimdal:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "205" + }, + { + "name": "syft:metadata:source", + "value": "heimdal" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/libzstd1@1.4.4+dfsg-3ubuntu0.1?arch=amd64\u0026upstream=libzstd\u0026distro=ubuntu-20.04\u0026package-id=6385aa45a1caaf01", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "libzstd1", + "version": "1.4.4+dfsg-3ubuntu0.1", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:libzstd1:libzstd1:1.4.4\\+dfsg-3ubuntu0.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/libzstd1@1.4.4+dfsg-3ubuntu0.1?arch=amd64\u0026upstream=libzstd\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libzstd1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/libzstd1:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "700" + }, + { + "name": "syft:metadata:source", + "value": "libzstd" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/login@1:4.8.1-1ubuntu5.20.04.2?arch=amd64\u0026upstream=shadow\u0026distro=ubuntu-20.04\u0026package-id=5116bfc62534e475", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "login", + "version": "1:4.8.1-1ubuntu5.20.04.2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:login:login:1\\:4.8.1-1ubuntu5.20.04.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/login@1:4.8.1-1ubuntu5.20.04.2?arch=amd64\u0026upstream=shadow\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/login/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/login.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/login.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "932" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/logsave@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04\u0026package-id=fdeb34e955c7dbac", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "logsave", + "version": "1.45.5-2ubuntu1.1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:logsave:logsave:1.45.5-2ubuntu1.1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/logsave@1.45.5-2ubuntu1.1?arch=amd64\u0026upstream=e2fsprogs\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/logsave/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/logsave.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "92" + }, + { + "name": "syft:metadata:source", + "value": "e2fsprogs" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/lsb-base@11.1.0ubuntu2?arch=all\u0026upstream=lsb\u0026distro=ubuntu-20.04\u0026package-id=84d2b566e090bc3c", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "lsb-base", + "version": "11.1.0ubuntu2", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:lsb-base:lsb-base:11.1.0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/lsb-base@11.1.0ubuntu2?arch=all\u0026upstream=lsb\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb-base:lsb_base:11.1.0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb-base:11.1.0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb_base:lsb_base:11.1.0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb-base:11.1.0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:lsb:lsb_base:11.1.0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/lsb-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/lsb-base.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "58" + }, + { + "name": "syft:metadata:source", + "value": "lsb" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mawk@1.3.4.20200120-2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=e8c25b88867f09d1", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "mawk", + "version": "1.3.4.20200120-2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:mawk:mawk:1.3.4.20200120-2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mawk@1.3.4.20200120-2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mawk/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mawk.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "233" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-database-tools@100.6.0?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=8188928334fa6a11", + "type": "library", + "publisher": "MongoDB Connectors Team \u003cdatabase-tools-packaging@mongodb.com\u003e", + "name": "mongodb-database-tools", + "version": "100.6.0", + "cpe": "cpe:2.3:a:mongodb-database-tools:mongodb-database-tools:100.6.0:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-database-tools@100.6.0?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-database-tools:mongodb_database_tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_database_tools:mongodb-database-tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_database_tools:mongodb_database_tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-database:mongodb-database-tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-database:mongodb_database_tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_database:mongodb-database-tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_database:mongodb_database_tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-database-tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_database_tools:100.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/var/lib/dpkg/info/mongodb-database-tools.md5sums" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "0" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-mongosh@1.6.0?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=ed606c674bddbb40", + "type": "library", + "publisher": "Compass Team \u003ccompass@mongodb.com\u003e", + "name": "mongodb-mongosh", + "version": "1.6.0", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "cpe": "cpe:2.3:a:mongodb-mongosh:mongodb-mongosh:1.6.0:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-mongosh@1.6.0?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-mongosh:mongodb_mongosh:1.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_mongosh:mongodb-mongosh:1.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_mongosh:mongodb_mongosh:1.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-mongosh:1.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_mongosh:1.6.0:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-mongosh/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-mongosh.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "212421" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org@6.0.2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=2a489d0a348870c", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org:mongodb-org:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org@6.0.2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "8" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-database@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=3db48a86a036dfa8", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-database", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-database:mongodb-org-database:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-database@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database:mongodb_org_database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database:mongodb-org-database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database:mongodb_org_database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_database:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-database/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-database.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "13" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-database-tools-extra@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=963def9cac1ecebb", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-database-tools-extra", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-database-tools-extra:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-database-tools-extra@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database-tools-extra:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database_tools_extra:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database_tools_extra:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database-tools:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database-tools:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database_tools:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database_tools:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-database:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_database:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-database-tools-extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_database_tools_extra:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-database-tools-extra/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-database-tools-extra.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "27" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-mongos@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=f2f0806656ab416e", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-mongos", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-mongos:mongodb-org-mongos:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-mongos@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-mongos:mongodb_org_mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_mongos:mongodb-org-mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_mongos:mongodb_org_mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_mongos:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-mongos/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-mongos.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "99473" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-server@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=db0d631a64ee28fe", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-server", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-server:mongodb-org-server:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-server@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-server:mongodb_org_server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_server:mongodb-org-server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_server:mongodb_org_server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_server:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-server/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-server.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/mongodb-org-server.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "136978" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-shell@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=f91287960f6a166f", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-shell", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-shell:mongodb-org-shell:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-shell@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-shell:mongodb_org_shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_shell:mongodb-org-shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_shell:mongodb_org_shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_shell:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-shell/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-shell.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "12" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mongodb-org-tools@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04\u0026package-id=42fc105b8d7488a", + "type": "library", + "publisher": "MongoDB Packaging \u003cpackaging@mongodb.com\u003e", + "name": "mongodb-org-tools", + "version": "6.0.2", + "cpe": "cpe:2.3:a:mongodb-org-tools:mongodb-org-tools:6.0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mongodb-org-tools@6.0.2?arch=amd64\u0026upstream=mongodb-org\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org-tools:mongodb_org_tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_tools:mongodb-org-tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org_tools:mongodb_org_tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb-org-tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb-org:mongodb_org_tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb-org-tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb_org:mongodb_org_tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb-org-tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:mongodb:mongodb_org_tools:6.0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mongodb-org-tools/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mongodb-org-tools.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "8" + }, + { + "name": "syft:metadata:source", + "value": "mongodb-org" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/mount@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04\u0026package-id=803c0f15b915f3b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "mount", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:mount:mount:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/mount@2.34-0.1ubuntu9.3?arch=amd64\u0026upstream=util-linux\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/mount/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/mount.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "434" + }, + { + "name": "syft:metadata:source", + "value": "util-linux" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/ncurses-base@6.2-0ubuntu2?arch=all\u0026upstream=ncurses\u0026distro=ubuntu-20.04\u0026package-id=2821eef1882a52ec", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "ncurses-base", + "version": "6.2-0ubuntu2", + "cpe": "cpe:2.3:a:ncurses-base:ncurses-base:6.2-0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/ncurses-base@6.2-0ubuntu2?arch=all\u0026upstream=ncurses\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-base:ncurses_base:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses-base:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_base:ncurses_base:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-base:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_base:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/ncurses-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/ncurses-base.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/ncurses-base.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "381" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/ncurses-bin@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04\u0026package-id=f1941aa8dccfa8ef", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "ncurses-bin", + "version": "6.2-0ubuntu2", + "cpe": "cpe:2.3:a:ncurses-bin:ncurses-bin:6.2-0ubuntu2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/ncurses-bin@6.2-0ubuntu2?arch=amd64\u0026upstream=ncurses\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses-bin:ncurses_bin:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses-bin:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses_bin:ncurses_bin:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses-bin:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ncurses:ncurses_bin:6.2-0ubuntu2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/ncurses-bin/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/ncurses-bin.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "642" + }, + { + "name": "syft:metadata:source", + "value": "ncurses" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/numactl@2.0.12-1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=1d9514836a1c4fb0", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "numactl", + "version": "2.0.12-1", + "cpe": "cpe:2.3:a:numactl:numactl:2.0.12-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/numactl@2.0.12-1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/numactl/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/numactl.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "146" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/openssl@1.1.1f-1ubuntu2.16?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=a7d02f0ea37920fd", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "openssl", + "version": "1.1.1f-1ubuntu2.16", + "cpe": "cpe:2.3:a:openssl:openssl:1.1.1f-1ubuntu2.16:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/openssl@1.1.1f-1ubuntu2.16?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/libssl1.1/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/openssl.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:ea72fdbe17781345e944b83797ca1c6cb1c91f1c193e613b313a57edef5be2ad" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/openssl.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "1257" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/passwd@1:4.8.1-1ubuntu5.20.04.2?arch=amd64\u0026upstream=shadow\u0026distro=ubuntu-20.04\u0026package-id=dec95c366806c6d6", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "passwd", + "version": "1:4.8.1-1ubuntu5.20.04.2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:passwd:passwd:1\\:4.8.1-1ubuntu5.20.04.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/passwd@1:4.8.1-1ubuntu5.20.04.2?arch=amd64\u0026upstream=shadow\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/passwd/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/passwd.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/passwd.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "2668" + }, + { + "name": "syft:metadata:source", + "value": "shadow" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/perl-base@5.30.0-9ubuntu0.2?arch=amd64\u0026upstream=perl\u0026distro=ubuntu-20.04\u0026package-id=21f9c1a911fce1ce", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "perl-base", + "version": "5.30.0-9ubuntu0.2", + "licenses": [ + { + "license": { + "id": "Artistic-2.0" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "GPL-1.0-only" + } + }, + { + "license": { + "id": "GPL-1.0-or-later" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:perl-base:perl-base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/perl-base@5.30.0-9ubuntu0.2?arch=amd64\u0026upstream=perl\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl-base:perl_base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl-base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl_base:perl_base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl-base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:perl:perl_base:5.30.0-9ubuntu0.2:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/perl-base/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/perl-base.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "10786" + }, + { + "name": "syft:metadata:source", + "value": "perl" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/pinentry-curses@1.1.0-3build1?arch=amd64\u0026upstream=pinentry\u0026distro=ubuntu-20.04\u0026package-id=137fe37fbcc0705c", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "pinentry-curses", + "version": "1.1.0-3build1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "X11" + } + } + ], + "cpe": "cpe:2.3:a:pinentry-curses:pinentry-curses:1.1.0-3build1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/pinentry-curses@1.1.0-3build1?arch=amd64\u0026upstream=pinentry\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:pinentry-curses:pinentry_curses:1.1.0-3build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:pinentry_curses:pinentry-curses:1.1.0-3build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:pinentry_curses:pinentry_curses:1.1.0-3build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:pinentry:pinentry-curses:1.1.0-3build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:pinentry:pinentry_curses:1.1.0-3build1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/pinentry-curses/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/pinentry-curses.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "100" + }, + { + "name": "syft:metadata:source", + "value": "pinentry" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/procps@2:3.3.16-1ubuntu2.3?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=a518f158795ba2b", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "procps", + "version": "2:3.3.16-1ubuntu2.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + } + ], + "cpe": "cpe:2.3:a:procps:procps:2\\:3.3.16-1ubuntu2.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/procps@2:3.3.16-1ubuntu2.3?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/procps/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/procps.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/procps.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "816" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/publicsuffix@20200303.0012-1?arch=all\u0026distro=ubuntu-20.04\u0026package-id=abc7e0aa645d08ed", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "publicsuffix", + "version": "20200303.0012-1", + "licenses": [ + { + "license": { + "id": "MPL-2.0" + } + } + ], + "cpe": "cpe:2.3:a:publicsuffix:publicsuffix:20200303.0012-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/publicsuffix@20200303.0012-1?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/publicsuffix/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/publicsuffix.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "309" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/readline-common@8.0-4?arch=all\u0026upstream=readline\u0026distro=ubuntu-20.04\u0026package-id=ff7e4c7f14622fb", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "readline-common", + "version": "8.0-4", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:readline-common:readline-common:8.0-4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/readline-common@8.0-4?arch=all\u0026upstream=readline\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:readline-common:readline_common:8.0-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:readline_common:readline-common:8.0-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:readline_common:readline_common:8.0-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:readline:readline-common:8.0-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:readline:readline_common:8.0-4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/readline-common/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:218d90cfd5cf68451843657d1b1d208047ccc65a8b6a3fcf5c5d10f4f35bad3a" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/readline-common.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "79" + }, + { + "name": "syft:metadata:source", + "value": "readline" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/sed@4.7-1?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=d5d7c936a6e9e670", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "sed", + "version": "4.7-1", + "licenses": [ + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:sed:sed:4.7-1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/sed@4.7-1?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/sed/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/sed.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "336" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/sensible-utils@0.0.12+nmu1?arch=all\u0026distro=ubuntu-20.04\u0026package-id=5fb78440c34115fa", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "sensible-utils", + "version": "0.0.12+nmu1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:sensible-utils:sensible-utils:0.0.12\\+nmu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/sensible-utils@0.0.12+nmu1?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sensible-utils:sensible_utils:0.0.12\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sensible_utils:sensible-utils:0.0.12\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sensible_utils:sensible_utils:0.0.12\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sensible:sensible-utils:0.0.12\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sensible:sensible_utils:0.0.12\\+nmu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/sensible-utils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/sensible-utils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "62" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/sysvinit-utils@2.96-2.1ubuntu1?arch=amd64\u0026upstream=sysvinit\u0026distro=ubuntu-20.04\u0026package-id=4f9b10b33c79705", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "sysvinit-utils", + "version": "2.96-2.1ubuntu1", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "cpe": "cpe:2.3:a:sysvinit-utils:sysvinit-utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/sysvinit-utils@2.96-2.1ubuntu1?arch=amd64\u0026upstream=sysvinit\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit-utils:sysvinit_utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit-utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit_utils:sysvinit_utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit-utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:sysvinit:sysvinit_utils:2.96-2.1ubuntu1:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/sysvinit-utils/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/sysvinit-utils.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "74" + }, + { + "name": "syft:metadata:source", + "value": "sysvinit" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/tar@1.30+dfsg-7ubuntu0.20.04.2?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=3e59aab4fbd94154", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "tar", + "version": "1.30+dfsg-7ubuntu0.20.04.2", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + } + ], + "cpe": "cpe:2.3:a:tar:tar:1.30\\+dfsg-7ubuntu0.20.04.2:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/tar@1.30+dfsg-7ubuntu0.20.04.2?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/tar/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/tar.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "880" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/tzdata@2022c-0ubuntu0.20.04.0?arch=all\u0026distro=ubuntu-20.04\u0026package-id=d3405d5e4e91497e", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "tzdata", + "version": "2022c-0ubuntu0.20.04.0", + "licenses": [ + { + "license": { + "id": "ICU" + } + } + ], + "cpe": "cpe:2.3:a:tzdata:tzdata:2022c-0ubuntu0.20.04.0:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/tzdata@2022c-0ubuntu0.20.04.0?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/tzdata/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/tzdata.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "3882" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/ubuntu-keyring@2020.02.11.4?arch=all\u0026distro=ubuntu-20.04\u0026package-id=c133722827ccd933", + "type": "library", + "publisher": "Dimitri John Ledkov \u003cdimitri.ledkov@canonical.com\u003e", + "name": "ubuntu-keyring", + "version": "2020.02.11.4", + "cpe": "cpe:2.3:a:ubuntu-keyring:ubuntu-keyring:2020.02.11.4:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/ubuntu-keyring@2020.02.11.4?arch=all\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ubuntu-keyring:ubuntu_keyring:2020.02.11.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ubuntu_keyring:ubuntu-keyring:2020.02.11.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ubuntu_keyring:ubuntu_keyring:2020.02.11.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ubuntu:ubuntu-keyring:2020.02.11.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:ubuntu:ubuntu_keyring:2020.02.11.4:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/ubuntu-keyring/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/ubuntu-keyring.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "46" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/util-linux@2.34-0.1ubuntu9.3?arch=amd64\u0026distro=ubuntu-20.04\u0026package-id=8a34f55401226a30", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "util-linux", + "version": "2.34-0.1ubuntu9.3", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + }, + { + "license": { + "id": "BSD-3-Clause" + } + }, + { + "license": { + "id": "BSD-4-Clause" + } + }, + { + "license": { + "id": "GPL-2.0-only" + } + }, + { + "license": { + "id": "GPL-2.0-or-later" + } + }, + { + "license": { + "id": "GPL-3.0-only" + } + }, + { + "license": { + "id": "GPL-3.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.0-only" + } + }, + { + "license": { + "id": "LGPL-2.0-or-later" + } + }, + { + "license": { + "id": "LGPL-2.1-only" + } + }, + { + "license": { + "id": "LGPL-2.1+" + } + }, + { + "license": { + "id": "LGPL-3.0-only" + } + }, + { + "license": { + "id": "LGPL-3.0-or-later" + } + }, + { + "license": { + "id": "MIT" + } + } + ], + "cpe": "cpe:2.3:a:util-linux:util-linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/util-linux@2.34-0.1ubuntu9.3?arch=amd64\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util-linux:util_linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util-linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util_linux:util_linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util-linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:util:util_linux:2.34-0.1ubuntu9.3:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/util-linux/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/util-linux.conffiles" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/info/util-linux.md5sums" + }, + { + "name": "syft:location:3:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:3:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "4539" + } + ] + }, + { + "bom-ref": "pkg:deb/ubuntu/zlib1g@1:1.2.11.dfsg-2ubuntu1.3?arch=amd64\u0026upstream=zlib\u0026distro=ubuntu-20.04\u0026package-id=4a5fd5b3ce9d1c7d", + "type": "library", + "publisher": "Ubuntu Developers \u003cubuntu-devel-discuss@lists.ubuntu.com\u003e", + "name": "zlib1g", + "version": "1:1.2.11.dfsg-2ubuntu1.3", + "licenses": [ + { + "license": { + "id": "Zlib" + } + } + ], + "cpe": "cpe:2.3:a:zlib1g:zlib1g:1\\:1.2.11.dfsg-2ubuntu1.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/ubuntu/zlib1g@1:1.2.11.dfsg-2ubuntu1.3?arch=amd64\u0026upstream=zlib\u0026distro=ubuntu-20.04", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/zlib1g/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:cdca8156a203b9719f985c3114336529115cdc392f89d45cfcd37c968ddd3645" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/info/zlib1g:amd64.md5sums" + }, + { + "name": "syft:location:2:layerID", + "value": "sha256:d8e1cf0b334a8f598d6fe3a7f6d659c6075a965d03d84899a25ea10591f6f348" + }, + { + "name": "syft:location:2:path", + "value": "/var/lib/dpkg/status" + }, + { + "name": "syft:metadata:installedSize", + "value": "163" + }, + { + "name": "syft:metadata:source", + "value": "zlib" + } + ] + }, + { + "type": "operating-system", + "name": "ubuntu", + "version": "20.04", + "description": "Ubuntu 20.04.5 LTS", + "swid": { + "tagId": "ubuntu", + "name": "ubuntu", + "version": "20.04" + }, + "externalReferences": [ + { + "url": "https://bugs.launchpad.net/ubuntu/", + "type": "issue-tracker" + }, + { + "url": "https://www.ubuntu.com/", + "type": "website" + }, + { + "url": "https://help.ubuntu.com/", + "comment": "support", + "type": "other" + }, + { + "url": "https://www.ubuntu.com/legal/terms-and-policies/privacy-policy", + "comment": "privacyPolicy", + "type": "other" + } + ], + "properties": [ + { + "name": "syft:distro:id", + "value": "ubuntu" + }, + { + "name": "syft:distro:idLike:0", + "value": "debian" + }, + { + "name": "syft:distro:prettyName", + "value": "Ubuntu 20.04.5 LTS" + }, + { + "name": "syft:distro:versionCodename", + "value": "focal" + }, + { + "name": "syft:distro:versionID", + "value": "20.04" + } + ] + } + ] +} diff --git a/internal/testing/processor/testdata/busybox-cyclonedx.json b/internal/testing/processor/testdata/busybox-cyclonedx.json new file mode 100644 index 0000000000..c7769d6af3 --- /dev/null +++ b/internal/testing/processor/testdata/busybox-cyclonedx.json @@ -0,0 +1,53 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.4", + "serialNumber": "urn:uuid:2c0f3466-55b9-4667-9780-ec8ce9af741e", + "version": 1, + "metadata": { + "timestamp": "2022-10-08T09:59:15-04:00", + "tools": [ + { + "vendor": "anchore", + "name": "syft", + "version": "0.58.0" + } + ], + "component": { + "bom-ref": "186732ee4e1d4e50", + "type": "container", + "name": "docker.io/library/busybox", + "version": "sha256:bf5e28853a83134e949201fb5979927a9e5cc74cb747b7a080d96eaba1303411" + } + }, + "components": [ + { + "type": "operating-system", + "name": "busybox", + "version": "1.34.1", + "description": "BusyBox v1.34.1", + "swid": { + "tagId": "busybox", + "name": "busybox", + "version": "1.34.1" + }, + "properties": [ + { + "name": "syft:distro:id", + "value": "busybox" + }, + { + "name": "syft:distro:idLike:0", + "value": "busybox" + }, + { + "name": "syft:distro:prettyName", + "value": "BusyBox v1.34.1" + }, + { + "name": "syft:distro:versionID", + "value": "1.34.1" + } + ] + } + ] +} diff --git a/internal/testing/processor/testdata/distroless-cyclonedx.json b/internal/testing/processor/testdata/distroless-cyclonedx.json new file mode 100644 index 0000000000..b85abf3aed --- /dev/null +++ b/internal/testing/processor/testdata/distroless-cyclonedx.json @@ -0,0 +1,180 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.4", + "serialNumber": "urn:uuid:6a44e622-2983-4566-bf90-f87b6103ebaf", + "version": 1, + "metadata": { + "timestamp": "2022-10-08T10:01:23-04:00", + "tools": [ + { + "vendor": "anchore", + "name": "syft", + "version": "0.58.0" + } + ], + "component": { + "bom-ref": "5885a240f2842b78", + "type": "container", + "name": "gcr.io/distroless/static:nonroot", + "version": "sha256:6ad5b696af3ca05a048bd29bf0f623040462638cb0b29c8d702cbb2805687388" + } + }, + "components": [ + { + "bom-ref": "pkg:deb/debian/base-files@11.1+deb11u5?arch=amd64\u0026distro=debian-11\u0026package-id=f998ebd648b2753b", + "type": "library", + "publisher": "Santiago Vila \u003csanvila@debian.org\u003e", + "name": "base-files", + "version": "11.1+deb11u5", + "cpe": "cpe:2.3:a:base-files:base-files:11.1\\+deb11u5:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/base-files@11.1+deb11u5?arch=amd64\u0026distro=debian-11", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base-files:base_files:11.1\\+deb11u5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base-files:11.1\\+deb11u5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base_files:base_files:11.1\\+deb11u5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base-files:11.1\\+deb11u5:*:*:*:*:*:*:*" + }, + { + "name": "syft:cpe23", + "value": "cpe:2.3:a:base:base_files:11.1\\+deb11u5:*:*:*:*:*:*:*" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/base-files/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status.d/base" + }, + { + "name": "syft:metadata:installedSize", + "value": "340" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/netbase@6.3?arch=all\u0026distro=debian-11\u0026package-id=913906225fd3778b", + "type": "library", + "publisher": "Marco d'Itri \u003cmd@linux.it\u003e", + "name": "netbase", + "version": "6.3", + "licenses": [ + { + "license": { + "id": "GPL-2.0-only" + } + } + ], + "cpe": "cpe:2.3:a:netbase:netbase:6.3:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/netbase@6.3?arch=all\u0026distro=debian-11", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/netbase/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status.d/netbase" + }, + { + "name": "syft:metadata:installedSize", + "value": "41" + } + ] + }, + { + "bom-ref": "pkg:deb/debian/tzdata@2021a-1+deb11u6?arch=all\u0026distro=debian-11\u0026package-id=c1a811f89bc7edaf", + "type": "library", + "publisher": "GNU Libc Maintainers \u003cdebian-glibc@lists.debian.org\u003e", + "name": "tzdata", + "version": "2021a-1+deb11u6", + "cpe": "cpe:2.3:a:tzdata:tzdata:2021a-1\\+deb11u6:*:*:*:*:*:*:*", + "purl": "pkg:deb/debian/tzdata@2021a-1+deb11u6?arch=all\u0026distro=debian-11", + "properties": [ + { + "name": "syft:package:foundBy", + "value": "dpkgdb-cataloger" + }, + { + "name": "syft:package:metadataType", + "value": "DpkgMetadata" + }, + { + "name": "syft:package:type", + "value": "deb" + }, + { + "name": "syft:location:0:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:0:path", + "value": "/usr/share/doc/tzdata/copyright" + }, + { + "name": "syft:location:1:layerID", + "value": "sha256:528453af6f60f474766a9e288640095ccbf52e0f09ff068b1d11331c34f8bae1" + }, + { + "name": "syft:location:1:path", + "value": "/var/lib/dpkg/status.d/tzdata" + }, + { + "name": "syft:metadata:installedSize", + "value": "3404" + } + ] + } + ] +} diff --git a/internal/testing/processor/testdata/invalid-cyclonedx.json b/internal/testing/processor/testdata/invalid-cyclonedx.json new file mode 100644 index 0000000000..0c34e4b4e7 --- /dev/null +++ b/internal/testing/processor/testdata/invalid-cyclonedx.json @@ -0,0 +1,16 @@ +{ + "bomFormat": "CDX", + "specVersion": "1", + "serialNumber": "urn:uuid:2c0f3466-55b9-4667-9780-ec8ce9af741e", + "version": 1, + "metadata": { + "timestamp": "2022-10-08T09:59:15-04:00", + "tools": [ + { + "vendor": "anchore", + "name": "syft", + "version": "0.58.0" + } + ] + } +} \ No newline at end of file diff --git a/pkg/handler/processor/cyclonedx/cyclonedx.go b/pkg/handler/processor/cyclonedx/cyclonedx.go new file mode 100644 index 0000000000..d4d8ea19a4 --- /dev/null +++ b/pkg/handler/processor/cyclonedx/cyclonedx.go @@ -0,0 +1,53 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package cyclonedx + +import ( + "bytes" + "fmt" + + cdx "github.com/CycloneDX/cyclonedx-go" + "github.com/guacsec/guac/pkg/handler/processor" +) + +// CycloneDXProcessor processes CycloneDXProcessor documents. +// Currently only supports CycloneDX-JSON documents +type CycloneDXProcessor struct { +} + +func (p *CycloneDXProcessor) ValidateSchema(d *processor.Document) error { + if d.Type != processor.DocumentCycloneDX { + return fmt.Errorf("expected document type: %v, actual document type: %v", processor.DocumentCycloneDX, d.Type) + } + + switch d.Format { + case processor.FormatJSON: + reader := bytes.NewReader(d.Blob) + bom := new(cdx.BOM) + decoder := cdx.NewBOMDecoder(reader, cdx.BOMFileFormatJSON) + err := decoder.Decode(bom) + return err + } + + return fmt.Errorf("unable to support parsing of CycloneDX document format: %v", d.Format) +} + +func (p *CycloneDXProcessor) Unpack(d *processor.Document) ([]*processor.Document, error) { + if d.Type != processor.DocumentCycloneDX { + return nil, fmt.Errorf("expected document type: %v, actual document type: %v", processor.DocumentCycloneDX, d.Type) + } + return []*processor.Document{}, nil +} diff --git a/pkg/handler/processor/cyclonedx/cyclonedx_test.go b/pkg/handler/processor/cyclonedx/cyclonedx_test.go new file mode 100644 index 0000000000..19448d0935 --- /dev/null +++ b/pkg/handler/processor/cyclonedx/cyclonedx_test.go @@ -0,0 +1,120 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package cyclonedx + +import ( + "fmt" + "reflect" + "testing" + + testdata "github.com/guacsec/guac/internal/testing/processor" + "github.com/guacsec/guac/pkg/handler/processor" +) + +func TestCycloneDXProcessor_Unpack(t *testing.T) { + testCases := []struct { + name string + doc processor.Document + expected []*processor.Document + expectErr bool + }{{ + name: "CylconeDX document", + doc: processor.Document{ + Blob: testdata.CycloneDXBusyboxExample, + Format: processor.FormatUnknown, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + expected: []*processor.Document{}, + expectErr: false, + }, { + name: "Incorrect type", + doc: processor.Document{ + Blob: testdata.CycloneDXBusyboxExample, + Format: processor.FormatUnknown, + Type: processor.DocumentUnknown, + SourceInformation: processor.SourceInformation{}, + }, + expected: nil, + expectErr: true, + }} + for _, tt := range testCases { + t.Run(tt.name, func(t *testing.T) { + fmt.Println(testdata.SpdxExampleSmall) + d := CycloneDXProcessor{} + actual, err := d.Unpack(&tt.doc) + if (err != nil) != tt.expectErr { + t.Errorf("CycloneDXProcessor.Unpack() error = %v, expectErr %v", err, tt.expectErr) + } + if !reflect.DeepEqual(actual, tt.expected) { + t.Errorf("CycloneDXProcessor.Unpack() = %v, expected %v", actual, tt.expected) + } + }) + } +} + +func TestCycloneDXProcessor_ValidateSchema(t *testing.T) { + testCases := []struct { + name string + doc processor.Document + expectErr bool + }{{ + name: "valid small CycloneDX document", + doc: processor.Document{ + Blob: testdata.CycloneDXBusyboxExample, + Format: processor.FormatJSON, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + expectErr: false, + }, { + name: "valid big CycloneDX document", + doc: processor.Document{ + Blob: testdata.CycloneDXBigExample, + Format: processor.FormatJSON, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + expectErr: false, + }, { + name: "invalid CycloneDX document", + doc: processor.Document{ + Blob: testdata.CycloneDXInvalidExample, + Format: processor.FormatJSON, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + expectErr: true, + }, { + name: "invalid format supported", + doc: processor.Document{ + Blob: testdata.CycloneDXDistrolessExample, + Format: processor.FormatUnknown, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + expectErr: true, + }} + for _, tt := range testCases { + t.Run(tt.name, func(t *testing.T) { + d := CycloneDXProcessor{} + err := d.ValidateSchema(&tt.doc) + if (err != nil) != tt.expectErr { + t.Errorf("CycloneDXProcessor.ValidateSchema() error = %v, expectErr %v", err, tt.expectErr) + } + }) + } +} diff --git a/pkg/handler/processor/guesser/guesser_test.go b/pkg/handler/processor/guesser/guesser_test.go index d81ff4ee8a..8897fe9e50 100644 --- a/pkg/handler/processor/guesser/guesser_test.go +++ b/pkg/handler/processor/guesser/guesser_test.go @@ -139,6 +139,26 @@ func Test_GuessDocument(t *testing.T) { }, expectedType: processor.DocumentScorecard, expectedFormat: processor.FormatJSON, + }, { + name: "valid big cyclonedx Document", + document: &processor.Document{ + Blob: testdata.CycloneDXBigExample, + Type: processor.DocumentUnknown, + Format: processor.FormatUnknown, + SourceInformation: processor.SourceInformation{}, + }, + expectedType: processor.DocumentCycloneDX, + expectedFormat: processor.FormatJSON, + }, { + name: "valid small cyclonedx Document", + document: &processor.Document{ + Blob: testdata.CycloneDXBusyboxExample, + Type: processor.DocumentUnknown, + Format: processor.FormatUnknown, + SourceInformation: processor.SourceInformation{}, + }, + expectedType: processor.DocumentCycloneDX, + expectedFormat: processor.FormatJSON, }} for _, tt := range testCases { t.Run(tt.name, func(t *testing.T) { diff --git a/pkg/handler/processor/guesser/test_cyclonedx_test.go b/pkg/handler/processor/guesser/test_cyclonedx_test.go new file mode 100644 index 0000000000..1afa20a292 --- /dev/null +++ b/pkg/handler/processor/guesser/test_cyclonedx_test.go @@ -0,0 +1,62 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package guesser + +import ( + "testing" + + testdata "github.com/guacsec/guac/internal/testing/processor" + "github.com/guacsec/guac/pkg/handler/processor" +) + +func Test_cyclonedxTypeGuesser_GuessDocumentType(t *testing.T) { + testCases := []struct { + name string + blob []byte + expected processor.DocumentType + }{{ + name: "invalid cyclonedx Document", + blob: []byte(`{ + "abc": "def" + }`), + expected: processor.DocumentUnknown, + }, { + name: "invalid cyclonedx Document", + blob: testdata.CycloneDXInvalidExample, + expected: processor.DocumentUnknown, + }, { + name: "valid small cyclonedx Document", + blob: testdata.CycloneDXBusyboxExample, + expected: processor.DocumentCycloneDX, + }, { + name: "valid distroless cyclonedx Document", + blob: testdata.CycloneDXDistrolessExample, + expected: processor.DocumentCycloneDX, + }, { + name: "valid alpine cyclonedx Document", + blob: testdata.CycloneDXExampleAlpine, + expected: processor.DocumentCycloneDX, + }} + for _, tt := range testCases { + t.Run(tt.name, func(t *testing.T) { + guesser := &cycloneDXTypeGuesser{} + f := guesser.GuessDocumentType(tt.blob, processor.FormatJSON) + if f != tt.expected { + t.Errorf("got the wrong format, got %v, expected %v", f, tt.expected) + } + }) + } +} diff --git a/pkg/handler/processor/guesser/type_cyclonedx.go b/pkg/handler/processor/guesser/type_cyclonedx.go new file mode 100644 index 0000000000..f72186e841 --- /dev/null +++ b/pkg/handler/processor/guesser/type_cyclonedx.go @@ -0,0 +1,46 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package guesser + +import ( + "bytes" + + cdx "github.com/CycloneDX/cyclonedx-go" + "github.com/guacsec/guac/pkg/handler/processor" +) + +type cycloneDXTypeGuesser struct{} + +const ( + cycloneDXFormat = "CycloneDX" +) + +func (_ *cycloneDXTypeGuesser) GuessDocumentType(blob []byte, format processor.FormatType) processor.DocumentType { + reader := bytes.NewReader(blob) + switch format { + case processor.FormatJSON: + // Decode the BOM + bom := new(cdx.BOM) + decoder := cdx.NewBOMDecoder(reader, cdx.BOMFileFormatJSON) + err := decoder.Decode(bom) + if err == nil { + if bom.BOMFormat == cycloneDXFormat { + return processor.DocumentCycloneDX + } + } + } + return processor.DocumentUnknown +} diff --git a/pkg/handler/processor/guesser/type_guesser.go b/pkg/handler/processor/guesser/type_guesser.go index e639ab8f59..a039ee4f28 100644 --- a/pkg/handler/processor/guesser/type_guesser.go +++ b/pkg/handler/processor/guesser/type_guesser.go @@ -26,6 +26,7 @@ func init() { _ = RegisterDocumentTypeGuesser(&dsseTypeGuesser{}, "dsse") _ = RegisterDocumentTypeGuesser(&spdxTypeGuesser{}, "spdx") _ = RegisterDocumentTypeGuesser(&scorecardTypeGuesser{}, "scorecard") + _ = RegisterDocumentTypeGuesser(&cycloneDXTypeGuesser{}, "cyclonedx") } // DocumentTypeGuesser guesses the document type based on the blob and format given diff --git a/pkg/handler/processor/process/process.go b/pkg/handler/processor/process/process.go index fd2e504fac..5754684796 100644 --- a/pkg/handler/processor/process/process.go +++ b/pkg/handler/processor/process/process.go @@ -21,6 +21,7 @@ import ( "fmt" "github.com/guacsec/guac/pkg/handler/processor" + "github.com/guacsec/guac/pkg/handler/processor/cyclonedx" "github.com/guacsec/guac/pkg/handler/processor/dsse" "github.com/guacsec/guac/pkg/handler/processor/guesser" "github.com/guacsec/guac/pkg/handler/processor/ite6" @@ -38,6 +39,7 @@ func init() { _ = RegisterDocumentProcessor(&dsse.DSSEProcessor{}, processor.DocumentDSSE) _ = RegisterDocumentProcessor(&spdx.SPDXProcessor{}, processor.DocumentSPDX) _ = RegisterDocumentProcessor(&scorecard.ScorecardProcessor{}, processor.DocumentScorecard) + _ = RegisterDocumentProcessor(&cyclonedx.CycloneDXProcessor{}, processor.DocumentCycloneDX) } func RegisterDocumentProcessor(p processor.DocumentProcessor, d processor.DocumentType) error { diff --git a/pkg/handler/processor/processor.go b/pkg/handler/processor/processor.go index 3687dc12c2..d16a0a2788 100644 --- a/pkg/handler/processor/processor.go +++ b/pkg/handler/processor/processor.go @@ -58,6 +58,7 @@ const ( DocumentSPDX DocumentType = "SPDX" DocumentJsonLines DocumentType = "JSON_LINES" DocumentScorecard DocumentType = "SCORECARD" + DocumentCycloneDX DocumentType = "CycloneDX" DocumentUnknown DocumentType = "UNKNOWN" ) diff --git a/pkg/ingestor/parser/cyclonedx/parser_cyclonedx.go b/pkg/ingestor/parser/cyclonedx/parser_cyclonedx.go new file mode 100644 index 0000000000..9f2494697a --- /dev/null +++ b/pkg/ingestor/parser/cyclonedx/parser_cyclonedx.go @@ -0,0 +1,128 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package cyclonedx + +import ( + "context" + "encoding/json" + "fmt" + "strings" + + cdx "github.com/CycloneDX/cyclonedx-go" + "github.com/guacsec/guac/pkg/assembler" + "github.com/guacsec/guac/pkg/handler/processor" +) + +type cyclonedxParser struct { + rootPackage parentPackages +} + +type parentPackages struct { + curPackage assembler.PackageNode + depPackages []parentPackages +} + +func NewCycloneDXParser() *cyclonedxParser { + return &cyclonedxParser{ + rootPackage: parentPackages{}, + } +} + +func (c *cyclonedxParser) CreateNodes(ctx context.Context) []assembler.GuacNode { + nodes := []assembler.GuacNode{} + addNodes(c.rootPackage, &nodes) + return nodes +} + +func addNodes(curPkg parentPackages, nodes *[]assembler.GuacNode) { + *nodes = append(*nodes, curPkg.curPackage) + for _, d := range curPkg.depPackages { + addNodes(d, nodes) + } +} + +func addEdges(curPkg parentPackages, edges *[]assembler.GuacEdge) { + // this could happen if we image purl creation fails for rootPackage + // we need better solution to support different image name formats in SBOM + if curPkg.curPackage.Name == "" { + return + } + for _, d := range curPkg.depPackages { + *edges = append(*edges, assembler.DependsOnEdge{PackageNode: d.curPackage, PackageDependency: curPkg.curPackage}) + addEdges(d, edges) + } +} + +// Parse breaks out the document into the graph components +func (c *cyclonedxParser) Parse(ctx context.Context, doc *processor.Document) error { + cdxBom, err := parseCycloneDXBOM(doc.Blob) + if err != nil { + return fmt.Errorf("failed to parse cyclonedx BOM: %w", err) + } + c.addRootPackage(cdxBom) + c.addPackages(cdxBom) + + return nil +} + +// GetIdentities gets the identity node from the document if they exist +func (c *cyclonedxParser) GetIdentities(ctx context.Context) []assembler.IdentityNode { + return nil +} + +func (c *cyclonedxParser) CreateEdges(ctx context.Context, foundIdentities []assembler.IdentityNode) []assembler.GuacEdge { + edges := []assembler.GuacEdge{} + addEdges(c.rootPackage, &edges) + return edges +} + +func (c *cyclonedxParser) addRootPackage(cdxBom *cdx.BOM) { + // oci purl: pkg:oci/debian@sha256%3A244fd47e07d10?repository_url=ghcr.io/debian&tag=bullseye + splitImage := strings.Split(cdxBom.Metadata.Component.Name, "/") + if len(splitImage) == 3 { + rootPackage := assembler.PackageNode{} + rootPackage.Purl = "pkg:oci/" + splitImage[2] + "?repository_url=" + splitImage[0] + "/" + splitImage[1] + rootPackage.Name = cdxBom.Metadata.Component.Name + rootPackage.Digest = append(rootPackage.Digest, cdxBom.Metadata.Component.Version) + c.rootPackage = parentPackages{ + curPackage: rootPackage, + depPackages: []parentPackages{}, + } + } +} + +func (c *cyclonedxParser) addPackages(cdxBom *cdx.BOM) { + for _, comp := range *cdxBom.Components { + curPkg := assembler.PackageNode{ + Name: comp.Name, + // Digest: []string{comp.Version}, + Purl: comp.PackageURL, + CPEs: []string{comp.CPE}, + } + c.rootPackage.depPackages = append(c.rootPackage.depPackages, parentPackages{ + curPackage: curPkg, + depPackages: []parentPackages{}, + }) + } +} + +func parseCycloneDXBOM(d []byte) (*cdx.BOM, error) { + bom := cdx.BOM{} + if err := json.Unmarshal(d, &bom); err != nil { + return nil, err + } + return &bom, nil +} diff --git a/pkg/ingestor/parser/cyclonedx/parser_cyclonedx_test.go b/pkg/ingestor/parser/cyclonedx/parser_cyclonedx_test.go new file mode 100644 index 0000000000..5a314cfd9f --- /dev/null +++ b/pkg/ingestor/parser/cyclonedx/parser_cyclonedx_test.go @@ -0,0 +1,68 @@ +// +// Copyright 2022 The GUAC Authors. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package cyclonedx + +import ( + "context" + "testing" + + "github.com/guacsec/guac/internal/testing/ingestor/testdata" + processor_data "github.com/guacsec/guac/internal/testing/processor" + "github.com/guacsec/guac/pkg/assembler" + "github.com/guacsec/guac/pkg/handler/processor" + "github.com/guacsec/guac/pkg/logging" +) + +func Test_cyclonedxParser(t *testing.T) { + ctx := logging.WithLogger(context.Background()) + tests := []struct { + name string + doc *processor.Document + wantNodes []assembler.GuacNode + wantEdges []assembler.GuacEdge + wantErr bool + }{{ + name: "valid small CycloneDX document", + doc: &processor.Document{ + Blob: processor_data.CycloneDXDistrolessExample, + Format: processor.FormatJSON, + Type: processor.DocumentCycloneDX, + SourceInformation: processor.SourceInformation{}, + }, + wantNodes: testdata.CycloneDXNodes, + wantEdges: testdata.CyloneDXEdges, + wantErr: false, + }} + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + s := NewCycloneDXParser() + err := s.Parse(ctx, tt.doc) + if (err != nil) != tt.wantErr { + t.Errorf("cyclonedxParser.Parse() error = %v, wantErr %v", err, tt.wantErr) + return + } + if err != nil { + return + } + if nodes := s.CreateNodes(ctx); !testdata.GuacNodeSliceEqual(nodes, tt.wantNodes) { + t.Errorf("cyclonedxParser.CreateNodes() = %v, want %v", nodes, tt.wantNodes) + } + if edges := s.CreateEdges(ctx, nil); !testdata.GuacEdgeSliceEqual(edges, tt.wantEdges) { + t.Errorf("cyclonedxParser.CreateEdges() = %v, want %v", edges, tt.wantEdges) + } + }) + } +} diff --git a/pkg/ingestor/parser/parser.go b/pkg/ingestor/parser/parser.go index aab3a5752f..a10a482744 100644 --- a/pkg/ingestor/parser/parser.go +++ b/pkg/ingestor/parser/parser.go @@ -22,6 +22,7 @@ import ( "github.com/guacsec/guac/pkg/assembler" "github.com/guacsec/guac/pkg/handler/processor" "github.com/guacsec/guac/pkg/ingestor/parser/common" + "github.com/guacsec/guac/pkg/ingestor/parser/cyclonedx" "github.com/guacsec/guac/pkg/ingestor/parser/dsse" "github.com/guacsec/guac/pkg/ingestor/parser/slsa" "github.com/guacsec/guac/pkg/ingestor/parser/spdx" @@ -31,6 +32,7 @@ func init() { _ = RegisterDocumentParser(dsse.NewDSSEParser(), processor.DocumentDSSE) _ = RegisterDocumentParser(slsa.NewSLSAParser(), processor.DocumentITE6SLSA) _ = RegisterDocumentParser(spdx.NewSpdxParser(), processor.DocumentSPDX) + _ = RegisterDocumentParser(cyclonedx.NewCycloneDXParser(), processor.DocumentCycloneDX) } var (