diff --git a/alpine/matcher.go b/alpine/matcher.go
index f0fc3a43e..5d86e1628 100644
--- a/alpine/matcher.go
+++ b/alpine/matcher.go
@@ -4,6 +4,7 @@ import (
"context"
version "github.com/knqyf263/go-apk-version"
+
"github.com/quay/claircore"
"github.com/quay/claircore/libvuln/driver"
)
diff --git a/datastore/postgres/affected_manifests_e2e_test.go b/datastore/postgres/affected_manifests_e2e_test.go
deleted file mode 100644
index 813bbc0f0..000000000
--- a/datastore/postgres/affected_manifests_e2e_test.go
+++ /dev/null
@@ -1,292 +0,0 @@
-package postgres
-
-import (
- "context"
- "encoding/json"
- "os"
- "path/filepath"
- "testing"
-
- "github.com/jackc/pgtype"
- "github.com/jackc/pgx/v4/pgxpool"
- "github.com/quay/zlog"
-
- "github.com/quay/claircore"
- "github.com/quay/claircore/indexer"
- "github.com/quay/claircore/pkg/omnimatcher"
- "github.com/quay/claircore/test/integration"
- pgtest "github.com/quay/claircore/test/postgres"
-)
-
-type affectedE2E struct {
- store indexer.Store
- pool *pgxpool.Pool
- ctx context.Context
- ir claircore.IndexReport
- vr claircore.VulnerabilityReport
-}
-
-func TestAffectedE2E(t *testing.T) {
- integration.NeedDB(t)
- ctx := zlog.Test(context.Background(), t)
- pool := pgtest.TestIndexerDB(ctx, t)
- store := NewIndexerStore(pool)
-
- table := []struct {
- // name of the defined affectedE2E test
- name string
- // file name of index report in ./testdata
- irFName string
- // file name of vuln report in ./testdata
- vrFName string
- }{
- // these fixtures
- // were generated against the same database
- // to ensure all ids are sequentially increasing
- //
- // if fixtures are added you must generate
- // this current set *and* your new fixtures against the same database
- // to ensure there are no ID overlaps
- //
- // generate them via go generate github.com/quay/claircore/datastore/postgres
- {
- name: "amazonlinux 1",
- irFName: "docker.io-library-amazonlinux-1.index.json",
- vrFName: "docker.io-library-amazonlinux-1.report.json",
- },
- {
- name: "debian 8",
- irFName: "docker.io-library-debian-8.index.json",
- vrFName: "docker.io-library-debian-8.report.json",
- },
- {
- name: "debian 9",
- irFName: "docker.io-library-debian-9.index.json",
- vrFName: "docker.io-library-debian-9.report.json",
- },
- {
- name: "debian 10",
- irFName: "docker.io-library-debian-10.index.json",
- vrFName: "docker.io-library-debian-10.report.json",
- },
- {
- name: "ubi 8",
- irFName: "registry.access.redhat.com-ubi8-ubi.index.json",
- vrFName: "registry.access.redhat.com-ubi8-ubi.report.json",
- },
- {
- name: "ubuntu 16.04",
- irFName: "docker.io-library-ubuntu-16.04.index.json",
- vrFName: "docker.io-library-ubuntu-16.04.report.json",
- },
- {
- name: "ubuntu 18.04",
- irFName: "docker.io-library-ubuntu-18.04.index.json",
- vrFName: "docker.io-library-ubuntu-18.04.report.json",
- },
- {
- name: "ubuntu 19.10",
- irFName: "docker.io-library-ubuntu-19.10.index.json",
- vrFName: "docker.io-library-ubuntu-19.10.report.json",
- },
- {
- name: "ubuntu 20.04",
- irFName: "docker.io-library-ubuntu-20.04.index.json",
- vrFName: "docker.io-library-ubuntu-20.04.report.json",
- },
- {
- name: "mitmproxy 4.0.1",
- irFName: "docker.io-mitmproxy-mitmproxy-4.0.1.index.json",
- vrFName: "docker.io-mitmproxy-mitmproxy-4.0.1.report.json",
- },
- }
-
- for _, tt := range table {
- // grab and deserialize test data
- irPath := filepath.Join("testdata", tt.irFName)
- vrPath := filepath.Join("testdata", tt.vrFName)
- irFD, err := os.Open(irPath)
- if err != nil {
- t.Fatalf("fd open for ir failed: %v", err)
- }
- vrFD, err := os.Open(vrPath)
- if err != nil {
- t.Fatalf("fd open for vr failed: %v", err)
- }
-
- var ir claircore.IndexReport
- var vr claircore.VulnerabilityReport
-
- err = json.NewDecoder(irFD).Decode(&ir)
- if err != nil {
- t.Fatalf("could not decode ir: %v", err)
- }
-
- err = json.NewDecoder(vrFD).Decode(&vr)
- if err != nil {
- t.Fatalf("could not decode vr: %v", err)
- }
-
- // create and run e2e test
- e2e := &affectedE2E{
- store: store,
- pool: pool,
- ctx: ctx,
- ir: ir,
- vr: vr,
- }
- t.Run(tt.name, e2e.Run)
- }
-}
-
-func (e *affectedE2E) Run(t *testing.T) {
- type subtest struct {
- name string
- do func(t *testing.T)
- }
- subtests := [...]subtest{
- {"IndexArtifacts", e.IndexArtifacts},
- {"IndexManifest", e.IndexManifest},
- {"AffectedManifests", e.AffectedManifests},
- }
- for _, subtest := range subtests {
- if !t.Run(subtest.name, subtest.do) {
- t.FailNow()
- }
- }
-}
-
-// IndexArtifacts manually writes all the necessary
-// artifacts to the db.
-//
-// this is required so foreign key constraints do not
-// fail in later tests.
-func (e *affectedE2E) IndexArtifacts(t *testing.T) {
- ctx := zlog.Test(e.ctx, t)
- const (
- insertManifest = `
- INSERT INTO manifest
- (hash)
- VALUES ($1)
- ON CONFLICT DO NOTHING;
- `
- insertPkg = `
- INSERT INTO package (name, kind, version, norm_kind, norm_version, module, arch, id)
- VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
- ON CONFLICT DO NOTHING;
- `
- insertDist = `
- INSERT INTO dist
- (name, did, version, version_code_name, version_id, arch, cpe, pretty_name, id)
- VALUES
- ($1, $2, $3, $4, $5, $6, $7, $8, $9)
- ON CONFLICT DO NOTHING;
- `
- insertRepo = `
- INSERT INTO repo
- (name, key, uri, id)
- VALUES ($1, $2, $3, $4)
- ON CONFLICT DO NOTHING;
- `
- )
- _, err := e.pool.Exec(ctx, insertManifest, e.ir.Hash.String())
- if err != nil {
- t.Fatalf("failed to insert manifest: %v", err)
- }
- for _, pkg := range e.ir.Packages {
- var nVer pgtype.Int4Array
- nVer.Status = pgtype.Present
- nVer.Set(pkg.NormalizedVersion.V)
- _, err := e.pool.Exec(ctx, insertPkg,
- pkg.Name,
- pkg.Kind,
- pkg.Version,
- pkg.NormalizedVersion.Kind,
- &nVer,
- pkg.Module,
- pkg.Arch,
- pkg.ID,
- )
- if err != nil {
- t.Fatalf("failed to insert package: %v", err)
- }
- if pkg.Source != nil {
- pkg := pkg.Source
- nVer.Set(pkg.NormalizedVersion.V)
- _, err := e.pool.Exec(ctx, insertPkg,
- pkg.Name,
- pkg.Kind,
- pkg.Version,
- pkg.NormalizedVersion.Kind,
- &nVer,
- pkg.Module,
- pkg.Arch,
- pkg.ID,
- )
- if err != nil {
- t.Fatalf("failed to insert source package: %v", err)
- }
- }
- }
- for _, dist := range e.ir.Distributions {
- _, err := e.pool.Exec(ctx, insertDist,
- dist.Name,
- dist.DID,
- dist.Version,
- dist.VersionCodeName,
- dist.VersionID,
- dist.Arch,
- dist.CPE,
- dist.PrettyName,
- dist.ID,
- )
- if err != nil {
- t.Fatalf("failed to insert dist: %v", err)
- }
- }
- for _, repo := range e.ir.Repositories {
- _, err := e.pool.Exec(ctx, insertRepo,
- repo.Name,
- repo.Key,
- repo.URI,
- repo.ID,
- )
- if err != nil {
- t.Fatalf("failed to insert repo: %v", err)
- }
- }
-}
-
-// IndexManifest confirms the contents of a manifest
-// can be written to the manifest index table.
-func (e *affectedE2E) IndexManifest(t *testing.T) {
- ctx := zlog.Test(e.ctx, t)
- err := e.store.IndexManifest(ctx, &e.ir)
- if err != nil {
- t.Fatalf("failed to index manifest: %v", err)
- }
-}
-
-// AffectedManifests confirms each vulnerability
-// in the vulnereability report reports the associated
-// manifest is affected.
-func (e *affectedE2E) AffectedManifests(t *testing.T) {
- ctx := zlog.Test(e.ctx, t)
- om := omnimatcher.New(nil)
- for _, vuln := range e.vr.Vulnerabilities {
- hashes, err := e.store.AffectedManifests(ctx, *vuln, om.Vulnerable)
- if err != nil {
- t.Fatalf("failed to retrieve affected manifest for vuln %s: %v", vuln.ID, err)
- }
-
- if len(hashes) != 1 {
- t.Fatalf("got: len(hashes)==%d, want: len(hashes)==1", len(hashes))
- }
-
- got := hashes[0].String()
- wanted := e.ir.Hash.String()
- if got != wanted {
- t.Fatalf("got: %v, want: %v", got, wanted)
- }
- }
-}
diff --git a/datastore/postgres/affectedmanifest.go b/datastore/postgres/affectedmanifest.go
index 447432476..bb6bf873b 100644
--- a/datastore/postgres/affectedmanifest.go
+++ b/datastore/postgres/affectedmanifest.go
@@ -4,350 +4,280 @@ import (
"context"
"errors"
"fmt"
- "strconv"
"time"
+ "github.com/doug-martin/goqu/v8"
"github.com/jackc/pgtype"
- "github.com/jackc/pgx/v4"
- "github.com/jackc/pgx/v4/pgxpool"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/quay/zlog"
"github.com/quay/claircore"
+ "github.com/quay/claircore/libvuln/driver"
+ _ "github.com/quay/claircore/matchers/defaults"
+ "github.com/quay/claircore/matchers/registry"
)
var (
- // ErrNotIndexed indicates the vulnerability being queried has a dist or repo not
- // indexed into the database.
- ErrNotIndexed = fmt.Errorf("vulnerability containers data not indexed by any scannners")
- affectedManifestsCounter = promauto.NewCounterVec(
+ // ErrVulnNotApplicable is returned if it is deemed that the vulnerability and the
+ // matcher's Query method wouldn't return any matching IndexRecords.
+ ErrVulnNotApplicable = fmt.Errorf("vulnerability is not applicable")
+ getAffectedManifestsCounter = promauto.NewCounterVec(
prometheus.CounterOpts{
Namespace: "claircore",
- Subsystem: "indexer",
- Name: "affectedmanifests_total",
+ Subsystem: "datastore",
+ Name: "getaffectedmanifests_total",
Help: "Total number of database queries issued in the AffectedManifests method.",
},
[]string{"query"},
)
- affectedManifestsDuration = promauto.NewHistogramVec(
+ getAffectedManifestsDuration = promauto.NewHistogramVec(
prometheus.HistogramOpts{
Namespace: "claircore",
- Subsystem: "indexer",
- Name: "affectedmanifests_duration_seconds",
+ Subsystem: "datastore",
+ Name: "getaffectedmanifests_duration_seconds",
Help: "The duration of all queries issued in the AffectedManifests method",
},
[]string{"query"},
)
- protoRecordCounter = promauto.NewCounterVec(
- prometheus.CounterOpts{
- Namespace: "claircore",
- Subsystem: "indexer",
- Name: "protorecord_total",
- Help: "Total number of database queries issued in the protoRecord method.",
- },
- []string{"query"},
- )
- protoRecordDuration = promauto.NewHistogramVec(
- prometheus.HistogramOpts{
- Namespace: "claircore",
- Subsystem: "indexer",
- Name: "protorecord_duration_seconds",
- Help: "The duration of all queries issued in the protoRecord method",
- },
- []string{"query"},
- )
)
-// AffectedManifests finds the manifests digests which are affected by the provided vulnerability.
-//
-// An exhaustive search for all indexed packages of the same name as the vulnerability is performed.
-//
-// The list of packages is filtered down to only the affected set.
-//
-// The manifest index is then queried to resolve a list of manifest hashes containing the affected
-// artifacts.
-func (s *IndexerStore) AffectedManifests(ctx context.Context, v claircore.Vulnerability, vulnFunc claircore.CheckVulnernableFunc) ([]claircore.Digest, error) {
- const (
- selectPackages = `
-SELECT
- id,
- name,
- version,
- kind,
- norm_kind,
- norm_version,
- module,
- arch
-FROM
- package
-WHERE
- name = $1;
-`
- selectAffected = `
-SELECT
- manifest.hash
-FROM
- manifest_index
- JOIN manifest ON
- manifest_index.manifest_id = manifest.id
-WHERE
- package_id = $1
- AND (
- CASE
- WHEN $2::INT8 IS NULL THEN dist_id IS NULL
- ELSE dist_id = $2
- END
- )
- AND (
- CASE
- WHEN $3::INT8 IS NULL THEN repo_id IS NULL
- ELSE repo_id = $3
- END
- );
-`
- )
- ctx = zlog.ContextWithValues(ctx, "component", "datastore/postgres/affectedManifests")
-
- // confirm the incoming vuln can be
- // resolved into a prototype index record
- pr, err := protoRecord(ctx, s.pool, v)
- switch {
- case err == nil:
- // break out
- case errors.Is(err, ErrNotIndexed):
- // This is a common case: the system knows of a vulnerability but
- // doesn't know of any manifests it could apply to.
- return nil, nil
- default:
- return nil, err
- }
-
- // collect all packages which may be affected
- // by the vulnerability in question.
- pkgsToFilter := []claircore.Package{}
-
- start := time.Now()
- rows, err := s.pool.Query(ctx, selectPackages, v.Package.Name)
- switch {
- case errors.Is(err, nil):
- case errors.Is(err, pgx.ErrNoRows):
- return []claircore.Digest{}, nil
- default:
- return nil, fmt.Errorf("failed to query packages associated with vulnerability %q: %w", v.ID, err)
- }
- defer rows.Close()
- affectedManifestsCounter.WithLabelValues("selectPackages").Add(1)
- affectedManifestsDuration.WithLabelValues("selectPackages").Observe(time.Since(start).Seconds())
-
- for rows.Next() {
- var pkg claircore.Package
- var id int64
- var nKind *string
- var nVer pgtype.Int4Array
- err := rows.Scan(
- &id,
- &pkg.Name,
- &pkg.Version,
- &pkg.Kind,
- &nKind,
- &nVer,
- &pkg.Module,
- &pkg.Arch,
- )
- if err != nil {
- return nil, fmt.Errorf("failed to scan package: %w", err)
+// queryBuilder takes a vulnerability and a matcher and constructs a SQL query
+// to determine which manifest hashes are affected by the vulnerability given
+// the matcher's constraints.
+func queryBuilder(v *claircore.Vulnerability, m driver.Matcher) (string, error) {
+ psql := goqu.Dialect("postgres")
+ exps := []goqu.Expression{}
+ packageQuery := goqu.Ex{"package.name": v.Package.Name}
+ exps = append(exps, packageQuery)
+ seen := make(map[driver.MatchConstraint]struct{})
+ for _, m := range m.Query() {
+ if _, ok := seen[m]; ok {
+ continue
}
- idStr := strconv.FormatInt(id, 10)
- pkg.ID = idStr
- if nKind != nil {
- pkg.NormalizedVersion.Kind = *nKind
- for i, n := range nVer.Elements {
- pkg.NormalizedVersion.V[i] = n.Int
+ var ex goqu.Ex
+ switch m {
+ case driver.PackageModule:
+ // It is possible for a matcher to specify a Package.Module constraint
+ // and the Vulnerability.Package.Module is empty. This is different from
+ // the other constraints.
+ ex = goqu.Ex{"package.module": v.Package.Module}
+ case driver.DistributionDID:
+ if v.Dist.DID == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.did": v.Dist.DID}
+ case driver.DistributionName:
+ if v.Dist.Name == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.name": v.Dist.Name}
+ case driver.DistributionVersionID:
+ if v.Dist.VersionID == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.version_id": v.Dist.VersionID}
+ case driver.DistributionVersion:
+ if v.Dist.Version == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.version": v.Dist.Version}
+ case driver.DistributionVersionCodeName:
+ if v.Dist.VersionCodeName == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.version_code_name": v.Dist.VersionCodeName}
+ case driver.DistributionPrettyName:
+ if v.Dist.PrettyName == "" {
+ return "", ErrVulnNotApplicable
}
+ ex = goqu.Ex{"dist.pretty_name": v.Dist.PrettyName}
+ case driver.DistributionCPE:
+ if v.Dist.CPE.String() == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.cpe": v.Dist.CPE}
+ case driver.DistributionArch:
+ if v.Dist.Arch == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"dist.arch": v.Dist.Arch}
+ case driver.RepositoryName:
+ if v.Repo.Name == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"repo.name": v.Repo.Name}
+ case driver.RepositoryKey:
+ if v.Repo.Key == "" {
+ return "", ErrVulnNotApplicable
+ }
+ ex = goqu.Ex{"repo.key": v.Repo.Key}
+ case driver.HasFixedInVersion:
+ if v.FixedInVersion == "" {
+ // No unpatched vulnerabilities wanted, vulnerability is not applicable.
+ return "", ErrVulnNotApplicable
+ }
+ default:
+ return "", fmt.Errorf("was provided unknown matcher: %v", m)
}
- pkgsToFilter = append(pkgsToFilter, pkg)
- }
- zlog.Debug(ctx).Int("count", len(pkgsToFilter)).Msg("packages to filter")
- if err := rows.Err(); err != nil {
- return nil, fmt.Errorf("error scanning packages: %w", err)
+ exps = append(exps, ex)
+ seen[m] = struct{}{}
}
-
- // for each package discovered create an index record
- // and determine if any in-tree matcher finds the record vulnerable
- var filteredRecords []claircore.IndexRecord
- for _, pkg := range pkgsToFilter {
- pr.Package = &pkg
- match, err := vulnFunc(ctx, &pr, &v)
- if err != nil {
- return nil, err
- }
- if match {
- p := pkg // make a copy, or else you'll get a stale reference later
- filteredRecords = append(filteredRecords, claircore.IndexRecord{
- Package: &p,
- Distribution: pr.Distribution,
- Repository: pr.Repository,
- })
+ f, ok := m.(driver.VersionFilter)
+ if ok && f.VersionAuthoritative() {
+ kind, lower, upper := rangefmt(v.Range)
+ if kind != nil {
+ exps = append(exps, goqu.And(
+ goqu.C("norm_kind").Eq(kind),
+ goqu.L("VersionRange('"+lower+"','"+upper+"') @> package.norm_version"),
+ ))
}
}
- zlog.Debug(ctx).Int("count", len(filteredRecords)).Msg("vulnerable index records")
+ query := psql.Select(
+ "manifest.hash",
+ "package.name",
+ "package.version",
+ "package.kind",
+ "package.norm_kind",
+ "package.norm_version",
+ "package.arch",
+ goqu.COALESCE(goqu.I("dist.name"), ""),
+ goqu.COALESCE(goqu.I("dist.did"), ""),
+ goqu.COALESCE(goqu.I("dist.version"), ""),
+ goqu.COALESCE(goqu.I("dist.version_code_name"), ""),
+ goqu.COALESCE(goqu.I("dist.version_id"), ""),
+ goqu.COALESCE(goqu.I("dist.arch"), ""),
+ goqu.COALESCE(goqu.I("dist.cpe"), ""),
+ goqu.COALESCE(goqu.I("dist.pretty_name"), ""),
+ goqu.COALESCE(goqu.I("repo.name"), ""),
+ goqu.COALESCE(goqu.I("repo.key"), ""),
+ goqu.COALESCE(goqu.I("repo.uri"), ""),
+ goqu.COALESCE(goqu.I("repo.cpe"), ""),
+ ).From("manifest_index").
+ Join(goqu.I("package"), goqu.On(goqu.Ex{"manifest_index.package_id": goqu.I("package.id")})).
+ LeftJoin(goqu.I("repo"), goqu.On(goqu.Ex{"manifest_index.repo_id": goqu.I("repo.id")})).
+ LeftJoin(goqu.I("dist"), goqu.On(goqu.Ex{"manifest_index.dist_id": goqu.I("dist.id")})).
+ Join(goqu.I("manifest"), goqu.On(goqu.Ex{"manifest_index.manifest_id": goqu.I("manifest.id")})).
+ Where(exps...)
+ sql, _, err := query.ToSQL()
+ if err != nil {
+ return "", err
+ }
+ return sql, nil
+}
- // Query the manifest index for manifests containing the vulnerable
- // IndexRecords and create a set containing each unique manifest.
- set := map[string]struct{}{}
+// AffectedManifests returns a list of manifest hashes that are affected by the given vulnerability.
+// It iterates over registered matcher factories, generating matchers and building SQL queries
+// using the provided vulnerability. The function then executes these queries to retrieve affected
+// manifests, filtering results based on vulnerability criteria.
+func (s *IndexerStore) AffectedManifests(ctx context.Context, v claircore.Vulnerability) ([]claircore.Digest, error) {
+ matcherFactories := registry.Registered()
+ ctx = zlog.ContextWithValues(ctx, "component", "datastore/postgres/AffectedManifests")
+ mrs := map[string]struct{}{}
out := []claircore.Digest{}
- for _, record := range filteredRecords {
- v, err := toValues(record)
+ for n, mf := range matcherFactories {
+ ms, err := mf.Matcher(ctx)
if err != nil {
- return nil, fmt.Errorf("failed to resolve record %+v to sql values for query: %w", record, err)
+ return nil, fmt.Errorf("failed to create matchers from factory %s: %w", n, err)
}
-
- err = func() error {
- start := time.Now()
- rows, err := s.pool.Query(ctx,
- selectAffected,
- record.Package.ID,
- v[2],
- v[3],
- )
+ for _, m := range ms {
+ miQuery, err := queryBuilder(&v, m)
switch {
case errors.Is(err, nil):
- case errors.Is(err, pgx.ErrNoRows):
- err = fmt.Errorf("failed to query the manifest index: %w", err)
- fallthrough
+ case errors.Is(err, ErrVulnNotApplicable):
+ continue
default:
- return err
+ return nil, fmt.Errorf("error building query %w", err)
}
- defer rows.Close()
- affectedManifestsCounter.WithLabelValues("selectAffected").Add(1)
- affectedManifestsDuration.WithLabelValues("selectAffected").Observe(time.Since(start).Seconds())
-
- for rows.Next() {
- var hash claircore.Digest
- err := rows.Scan(&hash)
- if err != nil {
- return fmt.Errorf("failed scanning manifest hash into digest: %w", err)
+ err = func() error {
+ start := time.Now()
+ rows, err := s.pool.Query(ctx, miQuery)
+ switch {
+ case errors.Is(err, nil):
+ default:
+ return fmt.Errorf("failed to query packages associated with vulnerability %q: %w", v.ID, err)
}
- if _, ok := set[hash.String()]; !ok {
- set[hash.String()] = struct{}{}
- out = append(out, hash)
+
+ defer rows.Close()
+ for rows.Next() {
+ ir := &claircore.IndexRecord{
+ Package: &claircore.Package{},
+ Repository: &claircore.Repository{},
+ Distribution: &claircore.Distribution{},
+ }
+ var (
+ manifestDigest *claircore.Digest
+ nVer pgtype.Int4Array
+ nKind *string
+ )
+ err := rows.Scan(
+ &manifestDigest,
+ &ir.Package.Name,
+ &ir.Package.Version,
+ &ir.Package.Kind,
+ &nKind,
+ &nVer,
+ &ir.Package.Arch,
+ &ir.Distribution.Name,
+ &ir.Distribution.DID,
+ &ir.Distribution.Version,
+ &ir.Distribution.VersionCodeName,
+ &ir.Distribution.VersionID,
+ &ir.Distribution.Arch,
+ &ir.Distribution.CPE,
+ &ir.Distribution.PrettyName,
+ &ir.Repository.Name,
+ &ir.Repository.Key,
+ &ir.Repository.URI,
+ &ir.Repository.CPE,
+ )
+ if err != nil {
+ return fmt.Errorf("failed to scan index record: %w", err)
+ }
+ if nKind != nil {
+ ir.Package.NormalizedVersion.Kind = *nKind
+ if nVer.Status == pgtype.Present && len(nVer.Elements) > 0 {
+ for i, n := range nVer.Elements {
+ ir.Package.NormalizedVersion.V[i] = n.Int
+ }
+ }
+ }
+ if manifestDigest == nil {
+ return errors.New("manifest digest is nil")
+ }
+ if _, ok := mrs[manifestDigest.String()]; ok {
+ // We've already seen the manifest we don't need to
+ // redo the work.
+ continue
+ }
+ if !m.Filter(ir) {
+ continue
+ }
+ var match bool
+ f, ok := m.(driver.VersionFilter)
+ if ok && f.VersionAuthoritative() {
+ // We've already done the vulnerable checking in the database so
+ // we don't need to call the Vulnerable() function.
+ match = true
+ } else {
+ match, err = m.Vulnerable(ctx, ir, &v)
+ if err != nil {
+ return fmt.Errorf("error checking for if IndexRecord is vulnerable %w", err)
+ }
+ }
+ if match {
+ mrs[manifestDigest.String()] = struct{}{}
+ out = append(out, *manifestDigest)
+ }
}
+ getAffectedManifestsCounter.WithLabelValues("query_batch").Add(1)
+ getAffectedManifestsDuration.WithLabelValues("query_batch").Observe(time.Since(start).Seconds())
+ return nil
+ }()
+ if err != nil {
+ return nil, err
}
- return rows.Err()
- }()
- if err != nil {
- return nil, err
}
}
- zlog.Debug(ctx).Int("count", len(out)).Msg("affected manifests")
return out, nil
}
-
-// protoRecord is a helper method which resolves a Vulnerability to an IndexRecord with no Package defined.
-//
-// it is an error for both a distribution and a repo to be missing from the Vulnerability.
-func protoRecord(ctx context.Context, pool *pgxpool.Pool, v claircore.Vulnerability) (claircore.IndexRecord, error) {
- const (
- selectDist = `
- SELECT id
- FROM dist
- WHERE arch = $1
- AND cpe = $2
- AND did = $3
- AND name = $4
- AND pretty_name = $5
- AND version = $6
- AND version_code_name = $7
- AND version_id = $8;
- `
- selectRepo = `
- SELECT id
- FROM repo
- WHERE name = $1
- AND key = $2
- AND uri = $3;
- `
- timeout = 5 * time.Second
- )
- ctx = zlog.ContextWithValues(ctx, "component", "datastore/postgres/protoRecord")
-
- protoRecord := claircore.IndexRecord{}
- // fill dist into prototype index record if exists
- if (v.Dist != nil) && (v.Dist.Name != "") {
- start := time.Now()
- row := pool.QueryRow(ctx,
- selectDist,
- v.Dist.Arch,
- v.Dist.CPE,
- v.Dist.DID,
- v.Dist.Name,
- v.Dist.PrettyName,
- v.Dist.Version,
- v.Dist.VersionCodeName,
- v.Dist.VersionID,
- )
- var id pgtype.Int8
- err := row.Scan(&id)
- if err != nil {
- if !errors.Is(err, pgx.ErrNoRows) {
- return protoRecord, fmt.Errorf("failed to scan dist: %w", err)
- }
- }
- protoRecordCounter.WithLabelValues("selectDist").Add(1)
- protoRecordDuration.WithLabelValues("selectDist").Observe(time.Since(start).Seconds())
-
- if id.Status == pgtype.Present {
- id := strconv.FormatInt(id.Int, 10)
- protoRecord.Distribution = &claircore.Distribution{
- ID: id,
- Arch: v.Dist.Arch,
- CPE: v.Dist.CPE,
- DID: v.Dist.DID,
- Name: v.Dist.Name,
- PrettyName: v.Dist.PrettyName,
- Version: v.Dist.Version,
- VersionCodeName: v.Dist.VersionCodeName,
- VersionID: v.Dist.VersionID,
- }
- zlog.Debug(ctx).Str("id", id).Msg("discovered distribution id")
- }
- }
-
- // fill repo into prototype index record if exists
- if (v.Repo != nil) && (v.Repo.Name != "") {
- start := time.Now()
- row := pool.QueryRow(ctx, selectRepo,
- v.Repo.Name,
- v.Repo.Key,
- v.Repo.URI,
- )
- var id pgtype.Int8
- err := row.Scan(&id)
- if err != nil {
- if !errors.Is(err, pgx.ErrNoRows) {
- return protoRecord, fmt.Errorf("failed to scan repo: %w", err)
- }
- }
- protoRecordCounter.WithLabelValues("selectDist").Add(1)
- protoRecordDuration.WithLabelValues("selectDist").Observe(time.Since(start).Seconds())
-
- if id.Status == pgtype.Present {
- id := strconv.FormatInt(id.Int, 10)
- protoRecord.Repository = &claircore.Repository{
- ID: id,
- Key: v.Repo.Key,
- Name: v.Repo.Name,
- URI: v.Repo.URI,
- }
- zlog.Debug(ctx).Str("id", id).Msg("discovered repo id")
- }
- }
-
- // we need at least a repo or distribution to continue
- if (protoRecord.Distribution == nil) && (protoRecord.Repository == nil) {
- return protoRecord, ErrNotIndexed
- }
-
- return protoRecord, nil
-}
diff --git a/datastore/postgres/affectedmanifest_test.go b/datastore/postgres/affectedmanifest_test.go
new file mode 100644
index 000000000..3f6feb21a
--- /dev/null
+++ b/datastore/postgres/affectedmanifest_test.go
@@ -0,0 +1,348 @@
+package postgres
+
+import (
+ "context"
+ "encoding/json"
+ "os"
+ "path/filepath"
+ "testing"
+
+ "github.com/Masterminds/semver"
+ "github.com/jackc/pgtype"
+ "github.com/jackc/pgx/v4/pgxpool"
+ "github.com/quay/zlog"
+
+ "github.com/quay/claircore"
+ "github.com/quay/claircore/indexer"
+ "github.com/quay/claircore/test/integration"
+ pgtest "github.com/quay/claircore/test/postgres"
+ "github.com/quay/claircore/toolkit/types/cpe"
+)
+
+type affectedTest struct {
+ store indexer.Store
+ pool *pgxpool.Pool
+ ctx context.Context
+ ir claircore.IndexReport
+ v *claircore.Vulnerability
+ isVulnerable bool
+}
+
+func (e *affectedTest) Run(t *testing.T) {
+ type subtest struct {
+ name string
+ do func(t *testing.T)
+ }
+ subtests := [...]subtest{
+ {"IndexArtifacts", e.IndexArtifacts},
+ {"IndexManifest", e.IndexManifest},
+ {"AffectedManifests", e.AffectedManifests},
+ }
+ for _, subtest := range subtests {
+ if !t.Run(subtest.name, subtest.do) {
+ t.FailNow()
+ }
+ }
+}
+
+// IndexArtifacts manually writes all the necessary
+// artifacts to the db.
+//
+// this is required so foreign key constraints do not
+// fail in later tests.
+func (e *affectedTest) IndexArtifacts(t *testing.T) {
+ ctx := zlog.Test(e.ctx, t)
+ const (
+ insertManifest = `
+ INSERT INTO manifest
+ (hash)
+ VALUES ($1)
+ ON CONFLICT DO NOTHING;
+ `
+ insertPkg = `
+ INSERT INTO package (name, kind, version, norm_kind, norm_version, module, arch, id)
+ VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
+ ON CONFLICT DO NOTHING;
+ `
+ insertDist = `
+ INSERT INTO dist
+ (name, did, version, version_code_name, version_id, arch, cpe, pretty_name, id)
+ VALUES
+ ($1, $2, $3, $4, $5, $6, $7, $8, $9)
+ ON CONFLICT DO NOTHING;
+ `
+ insertRepo = `
+ INSERT INTO repo
+ (name, key, uri, id, cpe)
+ VALUES ($1, $2, $3, $4, $5)
+ ON CONFLICT DO NOTHING;
+ `
+ )
+ _, err := e.pool.Exec(ctx, insertManifest, e.ir.Hash.String())
+ if err != nil {
+ t.Fatalf("failed to insert manifest: %v", err)
+ }
+ for _, pkg := range e.ir.Packages {
+ var nVer pgtype.Int4Array
+ nVer.Status = pgtype.Present
+ nVer.Set(pkg.NormalizedVersion.V)
+ _, err := e.pool.Exec(ctx, insertPkg,
+ pkg.Name,
+ pkg.Kind,
+ pkg.Version,
+ pkg.NormalizedVersion.Kind,
+ &nVer,
+ pkg.Module,
+ pkg.Arch,
+ pkg.ID,
+ )
+ if err != nil {
+ t.Fatalf("failed to insert package: %v", err)
+ }
+ if pkg.Source != nil {
+ pkg := pkg.Source
+ nVer.Set(pkg.NormalizedVersion.V)
+ _, err := e.pool.Exec(ctx, insertPkg,
+ pkg.Name,
+ pkg.Kind,
+ pkg.Version,
+ pkg.NormalizedVersion.Kind,
+ &nVer,
+ pkg.Module,
+ pkg.Arch,
+ pkg.ID,
+ )
+ if err != nil {
+ t.Fatalf("failed to insert source package: %v", err)
+ }
+ }
+ }
+ for _, dist := range e.ir.Distributions {
+ _, err := e.pool.Exec(ctx, insertDist,
+ dist.Name,
+ dist.DID,
+ dist.Version,
+ dist.VersionCodeName,
+ dist.VersionID,
+ dist.Arch,
+ dist.CPE,
+ dist.PrettyName,
+ dist.ID,
+ )
+ if err != nil {
+ t.Fatalf("failed to insert dist: %v", err)
+ }
+ }
+ for _, repo := range e.ir.Repositories {
+ _, err := e.pool.Exec(ctx, insertRepo,
+ repo.Name,
+ repo.Key,
+ repo.URI,
+ repo.ID,
+ repo.CPE,
+ )
+ if err != nil {
+ t.Fatalf("failed to insert repo: %v", err)
+ }
+ }
+}
+
+// IndexManifest confirms the contents of a manifest
+// can be written to the manifest index table.
+func (e *affectedTest) IndexManifest(t *testing.T) {
+ ctx := zlog.Test(e.ctx, t)
+ err := e.store.IndexManifest(ctx, &e.ir)
+ if err != nil {
+ t.Fatalf("failed to index manifest: %v", err)
+ }
+}
+
+// AffectedManifests confirms each vulnerability
+// in the vulnereability report reports the associated
+// manifest is affected.
+func (e *affectedTest) AffectedManifests(t *testing.T) {
+ ctx := zlog.Test(e.ctx, t)
+ hashes, err := e.store.AffectedManifests(ctx, *e.v)
+ if err != nil {
+ t.Fatalf("failed to retrieve affected manifest for vuln %s: %v", e.v.ID, err)
+ }
+
+ if len(hashes) == 0 && e.isVulnerable {
+ t.Fatalf("expected manifest to be vulnerable to %s for package %s", e.v.Name, e.v.Package.Name)
+ }
+
+ if len(hashes) == 1 && !e.isVulnerable {
+ t.Fatalf("expected manifest not to be vulnerable to %s for package %s", e.v.Name, e.v.Package.Name)
+ }
+}
+
+type afTestCase struct {
+ name string
+ vuln *claircore.Vulnerability
+ isVulnerable bool
+ indexReport string
+}
+
+func TestAffectedManifests(t *testing.T) {
+ ctx := zlog.Test(context.Background(), t)
+ integration.NeedDB(t)
+ pool := pgtest.TestIndexerDB(ctx, t)
+ store := NewIndexerStore(pool)
+
+ testCases := []afTestCase{
+ {
+ name: "rhel_simple_affected",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "10.32-4.el8_6",
+ Package: &claircore.Package{
+ Name: "pcre2",
+ },
+ Dist: &claircore.Distribution{},
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ CPE: cpe.MustUnbind("cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*"),
+ },
+ },
+ isVulnerable: true,
+ indexReport: "rhacs-main-rhel8.index.json",
+ },
+ {
+ name: "rhel_simple_not_affected_by_version",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "10.32-2.el8_6",
+ Package: &claircore.Package{
+ Name: "pcre2",
+ },
+ Dist: &claircore.Distribution{},
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ CPE: cpe.MustUnbind("cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*"),
+ },
+ },
+ isVulnerable: false,
+ indexReport: "rhacs-main-rhel8.index.json",
+ },
+ {
+ name: "rhel_simple_not_affected_by_repo",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "10.32-2.el8_6",
+ Package: &claircore.Package{
+ Name: "pcre2",
+ },
+ Dist: &claircore.Distribution{},
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ CPE: cpe.MustUnbind("cpe:2.3:o:redhat:enterprise_linux:8:*:not_real:*:*:*:*:*"),
+ },
+ },
+ isVulnerable: false,
+ indexReport: "rhacs-main-rhel8.index.json",
+ },
+ {
+ name: "go_simple_affected_by_version",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "v1.4.3",
+ Range: &claircore.Range{
+ Lower: claircore.FromSemver(semver.MustParse("v0.0.1")),
+ Upper: claircore.FromSemver(semver.MustParse("v1.4.3")),
+ },
+ Package: &claircore.Package{
+ Name: "github.com/go-errors/errors",
+ },
+ Dist: &claircore.Distribution{},
+ Repo: &claircore.Repository{
+ Name: "go",
+ URI: "https://pkg.go.dev/",
+ },
+ },
+ isVulnerable: true,
+ indexReport: "rhacs-main-rhel8.index.json",
+ },
+ {
+ name: "go_simple_not_affected_by_version",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "v1.4.1",
+ Range: &claircore.Range{
+ Lower: claircore.FromSemver(semver.MustParse("v0.0.1")),
+ Upper: claircore.FromSemver(semver.MustParse("v1.4.1")),
+ },
+ Package: &claircore.Package{
+ Name: "github.com/go-errors/errors",
+ },
+ Dist: &claircore.Distribution{},
+ Repo: &claircore.Repository{
+ Name: "go",
+ URI: "https://pkg.go.dev/",
+ },
+ },
+ isVulnerable: false,
+ indexReport: "rhacs-main-rhel8.index.json",
+ },
+ {
+ name: "debian_simple_affected",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "1.9-3+deb10u2",
+ Package: &claircore.Package{
+ Name: "gzip",
+ },
+ Dist: &claircore.Distribution{
+ DID: "debian",
+ Name: "Debian GNU/Linux",
+ Version: "10 (buster)",
+ },
+ Repo: &claircore.Repository{},
+ },
+ isVulnerable: true,
+ indexReport: "docker.io-library-debian-10.index.json",
+ },
+ {
+ name: "debian_not_affected_bad_dist",
+ vuln: &claircore.Vulnerability{
+ Name: "CVE-123",
+ FixedInVersion: "1.9-3+deb10u2",
+ Package: &claircore.Package{
+ Name: "gzip",
+ },
+ Dist: &claircore.Distribution{
+ DID: "debian",
+ Name: "Debian GNU/Linux",
+ Version: "9 (Stretch)",
+ },
+ Repo: &claircore.Repository{},
+ },
+ isVulnerable: false,
+ indexReport: "docker.io-library-debian-10.index.json",
+ },
+ }
+ for _, tc := range testCases {
+ irPath := filepath.Join("testdata", tc.indexReport)
+ irFD, err := os.Open(irPath)
+ if err != nil {
+ t.Fatalf("fd open for ir failed: %v", err)
+ }
+
+ var ir claircore.IndexReport
+ err = json.NewDecoder(irFD).Decode(&ir)
+ if err != nil {
+ t.Fatalf("could not decode ir: %v", err)
+ }
+ e2e := &affectedTest{
+ store: store,
+ pool: pool,
+ ctx: ctx,
+ ir: ir,
+ v: tc.vuln,
+ isVulnerable: tc.isVulnerable,
+ }
+ t.Run(tc.name, e2e.Run)
+ }
+}
diff --git a/datastore/postgres/migrations/indexer/09-versionrange.sql b/datastore/postgres/migrations/indexer/09-versionrange.sql
new file mode 100644
index 000000000..bf750d466
--- /dev/null
+++ b/datastore/postgres/migrations/indexer/09-versionrange.sql
@@ -0,0 +1,9 @@
+-- The indexer DB needs a VersionRange function for the affectedManifest
+-- method, it already exists in the matcher DB so the existence check is
+-- imperative.
+DO $$
+BEGIN
+ IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'versionrange') THEN
+ CREATE TYPE VersionRange AS RANGE ( SUBTYPE = integer[10]);
+ END IF;
+END $$;
diff --git a/datastore/postgres/migrations/migrations.go b/datastore/postgres/migrations/migrations.go
index fa52113c4..12ad99e93 100644
--- a/datastore/postgres/migrations/migrations.go
+++ b/datastore/postgres/migrations/migrations.go
@@ -61,6 +61,10 @@ var IndexerMigrations = []migrate.Migration{
ID: 8,
Up: runFile("indexer/08-index-manifest_layer.sql"),
},
+ {
+ ID: 9,
+ Up: runFile("indexer/09-versionrange.sql"),
+ },
}
var MatcherMigrations = []migrate.Migration{
diff --git a/datastore/postgres/testdata/docker.io-library-amazonlinux-1.index.json b/datastore/postgres/testdata/docker.io-library-amazonlinux-1.index.json
deleted file mode 100644
index baa21769d..000000000
--- a/datastore/postgres/testdata/docker.io-library-amazonlinux-1.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:1a7fb13a367148e36818c53288a50ec1ed0c99540d7d1d7b6f5a116746be281e","state":"IndexFinished","packages":{"1000":{"id":"1000","name":"filesystem","version":"2.4.30-3.8.amzn1","kind":"binary","source":{"id":"999","name":"filesystem","version":"2.4.30-3.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1002":{"id":"1002","name":"libgcc72","version":"7.2.1-2.59.amzn1","kind":"binary","source":{"id":"911","name":"gcc72","version":"7.2.1-2.59.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1004":{"id":"1004","name":"glibc","version":"2.17-324.189.amzn1","kind":"binary","source":{"id":"951","name":"glibc","version":"2.17-324.189.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1006":{"id":"1006","name":"libsepol","version":"2.1.7-3.12.amzn1","kind":"binary","source":{"id":"1005","name":"libsepol","version":"2.1.7-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1008":{"id":"1008","name":"xz-libs","version":"5.2.2-1.14.amzn1","kind":"binary","source":{"id":"1007","name":"xz","version":"5.2.2-1.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1010":{"id":"1010","name":"chkconfig","version":"1.3.49.3-2.14.amzn1","kind":"binary","source":{"id":"1009","name":"chkconfig","version":"1.3.49.3-2.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1012":{"id":"1012","name":"libattr","version":"2.4.46-12.10.amzn1","kind":"binary","source":{"id":"1011","name":"attr","version":"2.4.46-12.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1014":{"id":"1014","name":"sqlite","version":"3.7.17-8.14.amzn1","kind":"binary","source":{"id":"1013","name":"sqlite","version":"3.7.17-8.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1016":{"id":"1016","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"binary","source":{"id":"849","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1018":{"id":"1018","name":"libtasn1","version":"2.3-6.6.amzn1","kind":"binary","source":{"id":"1017","name":"libtasn1","version":"2.3-6.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1020":{"id":"1020","name":"glib2","version":"2.36.3-5.22.amzn1","kind":"binary","source":{"id":"1019","name":"glib2","version":"2.36.3-5.22.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1022":{"id":"1022","name":"pcre","version":"8.21-7.8.amzn1","kind":"binary","source":{"id":"1021","name":"pcre","version":"8.21-7.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1024":{"id":"1024","name":"libpsl","version":"0.6.2-1.2.amzn1","kind":"binary","source":{"id":"1023","name":"libpsl","version":"0.6.2-1.2.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1026":{"id":"1026","name":"db4-utils","version":"4.7.25-18.11.amzn1","kind":"binary","source":{"id":"855","name":"db4","version":"4.7.25-18.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1028":{"id":"1028","name":"gawk","version":"3.1.7-10.10.amzn1","kind":"binary","source":{"id":"1027","name":"gawk","version":"3.1.7-10.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1030":{"id":"1030","name":"openssl","version":"1:1.0.2k-16.162.amzn1","kind":"binary","source":{"id":"1029","name":"openssl","version":"1.0.2k-16.162.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1032":{"id":"1032","name":"nss-sysinit","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1034":{"id":"1034","name":"libnghttp2","version":"1.33.0-1.1.6.amzn1","kind":"binary","source":{"id":"1033","name":"nghttp2","version":"1.33.0-1.1.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1036":{"id":"1036","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1038":{"id":"1038","name":"rpm-build-libs","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1040":{"id":"1040","name":"python27-libs","version":"2.7.18-2.142.amzn1","kind":"binary","source":{"id":"987","name":"python27","version":"2.7.18-2.142.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1042":{"id":"1042","name":"python27-urlgrabber","version":"3.10-8.16.amzn1","kind":"binary","source":{"id":"1041","name":"python-urlgrabber","version":"3.10-8.16.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1044":{"id":"1044","name":"python27-pyliblzma","version":"0.5.3-11.7.amzn1","kind":"binary","source":{"id":"1043","name":"python-pyliblzma","version":"0.5.3-11.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1046":{"id":"1046","name":"yum","version":"3.4.3-150.73.amzn1","kind":"binary","source":{"id":"1045","name":"yum","version":"3.4.3-150.73.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1048":{"id":"1048","name":"yum-plugin-ovl","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1050":{"id":"1050","name":"tar","version":"2:1.26-31.23.amzn1","kind":"binary","source":{"id":"1049","name":"tar","version":"1.26-31.23.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"848":{"id":"848","name":"basesystem","version":"10.0-4.9.amzn1","kind":"binary","source":{"id":"847","name":"basesystem","version":"10.0-4.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"850":{"id":"850","name":"nss-softokn-freebl","version":"3.53.1-6.46.amzn1","kind":"binary","source":{"id":"849","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"852":{"id":"852","name":"nspr","version":"4.25.0-2.45.amzn1","kind":"binary","source":{"id":"851","name":"nspr","version":"4.25.0-2.45.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"854":{"id":"854","name":"libselinux","version":"2.1.10-3.22.amzn1","kind":"binary","source":{"id":"853","name":"libselinux","version":"2.1.10-3.22.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"856":{"id":"856","name":"db4","version":"4.7.25-18.11.amzn1","kind":"binary","source":{"id":"855","name":"db4","version":"4.7.25-18.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"858":{"id":"858","name":"readline","version":"6.2-9.14.amzn1","kind":"binary","source":{"id":"857","name":"readline","version":"6.2-9.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"860":{"id":"860","name":"libacl","version":"2.2.49-6.11.amzn1","kind":"binary","source":{"id":"859","name":"acl","version":"2.2.49-6.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"862":{"id":"862","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"binary","source":{"id":"861","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"864":{"id":"864","name":"libassuan","version":"2.0.3-3.3.amzn1","kind":"binary","source":{"id":"863","name":"libassuan","version":"2.0.3-3.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"866":{"id":"866","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"binary","source":{"id":"865","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"868":{"id":"868","name":"shared-mime-info","version":"1.1-9.8.amzn1","kind":"binary","source":{"id":"867","name":"shared-mime-info","version":"1.1-9.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"870":{"id":"870","name":"grep","version":"2.20-3.18.amzn1","kind":"binary","source":{"id":"869","name":"grep","version":"2.20-3.18.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"872":{"id":"872","name":"libgcrypt","version":"1.5.3-12.20.amzn1","kind":"binary","source":{"id":"871","name":"libgcrypt","version":"1.5.3-12.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"874":{"id":"874","name":"libunistring","version":"0.9.3-6.1.amzn1","kind":"binary","source":{"id":"873","name":"libunistring","version":"0.9.3-6.1.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"876":{"id":"876","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"878":{"id":"878","name":"coreutils","version":"8.22-15.52.amzn1","kind":"binary","source":{"id":"877","name":"coreutils","version":"8.22-15.52.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"880":{"id":"880","name":"nss-tools","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"882":{"id":"882","name":"libcurl","version":"7.61.1-12.101.amzn1","kind":"binary","source":{"id":"881","name":"curl","version":"7.61.1-12.101.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"884":{"id":"884","name":"openldap","version":"2.4.40-16.32.amzn1","kind":"binary","source":{"id":"883","name":"openldap","version":"2.4.40-16.32.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"886":{"id":"886","name":"gpgme","version":"1.4.3-5.15.amzn1","kind":"binary","source":{"id":"885","name":"gpgme","version":"1.4.3-5.15.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"888":{"id":"888","name":"rpm-python27","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"890":{"id":"890","name":"python27-pygpgme","version":"0.3-9.12.amzn1","kind":"binary","source":{"id":"889","name":"python-pygpgme","version":"0.3-9.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"892":{"id":"892","name":"python27-chardet","version":"2.0.1-7.7.amzn1","kind":"binary","source":{"id":"891","name":"python-chardet","version":"2.0.1-7.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"894":{"id":"894","name":"yum-plugin-priorities","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"896":{"id":"896","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"898":{"id":"898","name":"tzdata","version":"2022g-1.84.amzn1","kind":"binary","source":{"id":"897","name":"tzdata","version":"2022g-1.84.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"900":{"id":"900","name":"bash","version":"4.2.46-34.43.amzn1","kind":"binary","source":{"id":"899","name":"bash","version":"4.2.46-34.43.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"902":{"id":"902","name":"ncurses-libs","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"904":{"id":"904","name":"zlib","version":"1.2.8-7.20.amzn1","kind":"binary","source":{"id":"903","name":"zlib","version":"1.2.8-7.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"906":{"id":"906","name":"bzip2-libs","version":"1.0.6-8.12.amzn1","kind":"binary","source":{"id":"905","name":"bzip2","version":"1.0.6-8.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"908":{"id":"908","name":"lua","version":"5.1.4-4.1.9.amzn1","kind":"binary","source":{"id":"907","name":"lua","version":"5.1.4-4.1.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"910":{"id":"910","name":"libcap","version":"2.16-5.5.8.amzn1","kind":"binary","source":{"id":"909","name":"libcap","version":"2.16-5.5.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"912":{"id":"912","name":"libstdc++72","version":"7.2.1-2.59.amzn1","kind":"binary","source":{"id":"911","name":"gcc72","version":"7.2.1-2.59.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"914":{"id":"914","name":"sed","version":"4.2.1-10.10.amzn1","kind":"binary","source":{"id":"913","name":"sed","version":"4.2.1-10.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"916":{"id":"916","name":"libffi","version":"3.0.13-16.5.amzn1","kind":"binary","source":{"id":"915","name":"libffi","version":"3.0.13-16.5.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"918":{"id":"918","name":"keyutils-libs","version":"1.5.8-3.12.amzn1","kind":"binary","source":{"id":"917","name":"keyutils","version":"1.5.8-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"920":{"id":"920","name":"p11-kit-trust","version":"0.18.5-2.3.amzn1","kind":"binary","source":{"id":"865","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"922":{"id":"922","name":"pinentry","version":"0.7.6-6.11.amzn1","kind":"binary","source":{"id":"921","name":"pinentry","version":"0.7.6-6.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"924":{"id":"924","name":"libidn2","version":"2.3.0-1.4.amzn1","kind":"binary","source":{"id":"923","name":"libidn2","version":"2.3.0-1.4.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"926":{"id":"926","name":"libverto","version":"0.2.5-4.9.amzn1","kind":"binary","source":{"id":"925","name":"libverto","version":"0.2.5-4.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"928":{"id":"928","name":"nss-pem","version":"1.0.3-4.3.amzn1","kind":"binary","source":{"id":"927","name":"nss-pem","version":"1.0.3-4.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"930":{"id":"930","name":"libssh2","version":"1.4.2-3.12.amzn1","kind":"binary","source":{"id":"929","name":"libssh2","version":"1.4.2-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"932":{"id":"932","name":"curl","version":"7.61.1-12.101.amzn1","kind":"binary","source":{"id":"881","name":"curl","version":"7.61.1-12.101.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"934":{"id":"934","name":"pth","version":"2.0.7-9.3.7.amzn1","kind":"binary","source":{"id":"933","name":"pth","version":"2.0.7-9.3.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"936":{"id":"936","name":"expat","version":"2.1.0-15.33.amzn1","kind":"binary","source":{"id":"935","name":"expat","version":"2.1.0-15.33.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"938":{"id":"938","name":"libxml2-python27","version":"2.9.1-6.4.41.amzn1","kind":"binary","source":{"id":"861","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"940":{"id":"940","name":"yum-metadata-parser","version":"1.1.4-10.20.amzn1","kind":"binary","source":{"id":"939","name":"yum-metadata-parser","version":"1.1.4-10.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"942":{"id":"942","name":"python27-kitchen","version":"1.1.1-5.6.amzn1","kind":"binary","source":{"id":"941","name":"python-kitchen","version":"1.1.1-5.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"944":{"id":"944","name":"sysctl-defaults","version":"1.0-1.1.amzn1","kind":"binary","source":{"id":"943","name":"sysctl-defaults","version":"1.0-1.1.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"946":{"id":"946","name":"gzip","version":"1.5-9.20.amzn1","kind":"binary","source":{"id":"945","name":"gzip","version":"1.5-9.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"948":{"id":"948","name":"setup","version":"2.8.14-20.12.amzn1","kind":"binary","source":{"id":"947","name":"setup","version":"2.8.14-20.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"950":{"id":"950","name":"ncurses-base","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"952":{"id":"952","name":"glibc-common","version":"2.17-324.189.amzn1","kind":"binary","source":{"id":"951","name":"glibc","version":"2.17-324.189.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"954":{"id":"954","name":"nss-util","version":"3.53.1-1.58.amzn1","kind":"binary","source":{"id":"953","name":"nss-util","version":"3.53.1-1.58.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"956":{"id":"956","name":"info","version":"5.1-4.10.amzn1","kind":"binary","source":{"id":"955","name":"texinfo","version":"5.1-4.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"958":{"id":"958","name":"popt","version":"1.13-7.7.amzn1","kind":"binary","source":{"id":"957","name":"popt","version":"1.13-7.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"960":{"id":"960","name":"elfutils-libelf","version":"0.168-8.19.amzn1","kind":"binary","source":{"id":"959","name":"elfutils","version":"0.168-8.19.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"962":{"id":"962","name":"libgpg-error","version":"1.11-1.12.amzn1","kind":"binary","source":{"id":"961","name":"libgpg-error","version":"1.11-1.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"964":{"id":"964","name":"libcom_err","version":"1.43.5-2.44.amzn1","kind":"binary","source":{"id":"963","name":"e2fsprogs","version":"1.43.5-2.44.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"966":{"id":"966","name":"file-libs","version":"5.37-8.49.amzn1","kind":"binary","source":{"id":"965","name":"file","version":"5.37-8.49.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"968":{"id":"968","name":"pkgconfig","version":"1:0.27.1-2.7.amzn1","kind":"binary","source":{"id":"967","name":"pkgconfig","version":"0.27.1-2.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"970":{"id":"970","name":"gmp","version":"6.0.0-11.16.amzn1","kind":"binary","source":{"id":"969","name":"gmp","version":"6.0.0-11.16.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"972":{"id":"972","name":"libicu","version":"50.2-4.0.amzn1","kind":"binary","source":{"id":"971","name":"icu","version":"50.2-4.0.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"974":{"id":"974","name":"cyrus-sasl-lib","version":"2.1.23-13.17.amzn1","kind":"binary","source":{"id":"973","name":"cyrus-sasl","version":"2.1.23-13.17.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"976":{"id":"976","name":"make","version":"1:3.82-21.10.amzn1","kind":"binary","source":{"id":"975","name":"make","version":"3.82-21.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"978":{"id":"978","name":"krb5-libs","version":"1.15.1-55.51.amzn1","kind":"binary","source":{"id":"977","name":"krb5","version":"1.15.1-55.51.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"980":{"id":"980","name":"nss","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"982":{"id":"982","name":"gdbm","version":"1.8.0-36.6.amzn1","kind":"binary","source":{"id":"981","name":"gdbm","version":"1.8.0-36.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"984":{"id":"984","name":"rpm-libs","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"986":{"id":"986","name":"gnupg2","version":"2.0.28-2.35.amzn1","kind":"binary","source":{"id":"985","name":"gnupg2","version":"2.0.28-2.35.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"988":{"id":"988","name":"python27","version":"2.7.18-2.142.amzn1","kind":"binary","source":{"id":"987","name":"python27","version":"2.7.18-2.142.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"990":{"id":"990","name":"python27-pycurl","version":"7.19.0-17.12.amzn1","kind":"binary","source":{"id":"989","name":"python-pycurl","version":"7.19.0-17.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"992":{"id":"992","name":"python27-pyxattr","version":"0.5.0-1.6.amzn1","kind":"binary","source":{"id":"991","name":"python-pyxattr","version":"0.5.0-1.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"994":{"id":"994","name":"python27-iniparse","version":"0.3.1-2.1.9.amzn1","kind":"binary","source":{"id":"993","name":"python-iniparse","version":"0.3.1-2.1.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"996":{"id":"996","name":"system-release","version":"2018.03-0.2","kind":"binary","source":{"id":"995","name":"system-release","version":"2018.03-0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"998":{"id":"998","name":"ca-certificates","version":"2018.2.22-65.1.29.amzn1","kind":"binary","source":{"id":"997","name":"ca-certificates","version":"2018.2.22-65.1.29.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""}},"distributions":{"7":{"id":"7","did":"amzn","name":"Amazon Linux AMI","version":"2018.03","version_code_name":"","version_id":"2018.03","arch":"","cpe":"cpe:2.3:o:amazon:linux:2018.03:ga:*:*:*:*:*:*","pretty_name":"Amazon Linux AMI 2018.03"}},"repository":{},"environments":{"1000":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1002":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1004":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1006":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1008":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1010":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1012":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1014":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1016":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1018":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1020":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1022":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1024":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1026":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1028":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1030":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1032":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1034":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1036":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1038":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1040":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1042":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1044":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1046":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1048":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1050":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"848":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"850":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"852":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"854":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"856":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"858":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"860":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"862":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"864":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"866":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"868":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"870":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"872":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"874":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"876":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"878":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"880":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"882":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"884":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"886":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"888":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"890":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"892":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"894":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"896":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"898":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"900":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"902":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"904":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"906":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"908":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"910":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"912":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"914":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"916":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"918":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"920":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"922":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"924":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"926":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"928":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"930":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"932":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"934":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"936":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"938":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"940":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"942":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"944":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"946":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"948":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"950":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"952":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"954":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"956":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"958":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"960":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"962":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"964":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"966":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"968":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"970":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"972":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"974":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"976":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"978":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"980":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"982":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"984":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"986":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"988":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"990":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"992":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"994":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"996":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"998":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-amazonlinux-1.report.json b/datastore/postgres/testdata/docker.io-library-amazonlinux-1.report.json
deleted file mode 100644
index 3f2a0e546..000000000
--- a/datastore/postgres/testdata/docker.io-library-amazonlinux-1.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:1a7fb13a367148e36818c53288a50ec1ed0c99540d7d1d7b6f5a116746be281e","packages":{"1000":{"id":"1000","name":"filesystem","version":"2.4.30-3.8.amzn1","kind":"binary","source":{"id":"999","name":"filesystem","version":"2.4.30-3.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1002":{"id":"1002","name":"libgcc72","version":"7.2.1-2.59.amzn1","kind":"binary","source":{"id":"911","name":"gcc72","version":"7.2.1-2.59.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1004":{"id":"1004","name":"glibc","version":"2.17-324.189.amzn1","kind":"binary","source":{"id":"951","name":"glibc","version":"2.17-324.189.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1006":{"id":"1006","name":"libsepol","version":"2.1.7-3.12.amzn1","kind":"binary","source":{"id":"1005","name":"libsepol","version":"2.1.7-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1008":{"id":"1008","name":"xz-libs","version":"5.2.2-1.14.amzn1","kind":"binary","source":{"id":"1007","name":"xz","version":"5.2.2-1.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1010":{"id":"1010","name":"chkconfig","version":"1.3.49.3-2.14.amzn1","kind":"binary","source":{"id":"1009","name":"chkconfig","version":"1.3.49.3-2.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1012":{"id":"1012","name":"libattr","version":"2.4.46-12.10.amzn1","kind":"binary","source":{"id":"1011","name":"attr","version":"2.4.46-12.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1014":{"id":"1014","name":"sqlite","version":"3.7.17-8.14.amzn1","kind":"binary","source":{"id":"1013","name":"sqlite","version":"3.7.17-8.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1016":{"id":"1016","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"binary","source":{"id":"849","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1018":{"id":"1018","name":"libtasn1","version":"2.3-6.6.amzn1","kind":"binary","source":{"id":"1017","name":"libtasn1","version":"2.3-6.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1020":{"id":"1020","name":"glib2","version":"2.36.3-5.22.amzn1","kind":"binary","source":{"id":"1019","name":"glib2","version":"2.36.3-5.22.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1022":{"id":"1022","name":"pcre","version":"8.21-7.8.amzn1","kind":"binary","source":{"id":"1021","name":"pcre","version":"8.21-7.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1024":{"id":"1024","name":"libpsl","version":"0.6.2-1.2.amzn1","kind":"binary","source":{"id":"1023","name":"libpsl","version":"0.6.2-1.2.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1026":{"id":"1026","name":"db4-utils","version":"4.7.25-18.11.amzn1","kind":"binary","source":{"id":"855","name":"db4","version":"4.7.25-18.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1028":{"id":"1028","name":"gawk","version":"3.1.7-10.10.amzn1","kind":"binary","source":{"id":"1027","name":"gawk","version":"3.1.7-10.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1030":{"id":"1030","name":"openssl","version":"1:1.0.2k-16.162.amzn1","kind":"binary","source":{"id":"1029","name":"openssl","version":"1.0.2k-16.162.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1032":{"id":"1032","name":"nss-sysinit","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1034":{"id":"1034","name":"libnghttp2","version":"1.33.0-1.1.6.amzn1","kind":"binary","source":{"id":"1033","name":"nghttp2","version":"1.33.0-1.1.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1036":{"id":"1036","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1038":{"id":"1038","name":"rpm-build-libs","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1040":{"id":"1040","name":"python27-libs","version":"2.7.18-2.142.amzn1","kind":"binary","source":{"id":"987","name":"python27","version":"2.7.18-2.142.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1042":{"id":"1042","name":"python27-urlgrabber","version":"3.10-8.16.amzn1","kind":"binary","source":{"id":"1041","name":"python-urlgrabber","version":"3.10-8.16.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1044":{"id":"1044","name":"python27-pyliblzma","version":"0.5.3-11.7.amzn1","kind":"binary","source":{"id":"1043","name":"python-pyliblzma","version":"0.5.3-11.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1046":{"id":"1046","name":"yum","version":"3.4.3-150.73.amzn1","kind":"binary","source":{"id":"1045","name":"yum","version":"3.4.3-150.73.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1048":{"id":"1048","name":"yum-plugin-ovl","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1050":{"id":"1050","name":"tar","version":"2:1.26-31.23.amzn1","kind":"binary","source":{"id":"1049","name":"tar","version":"1.26-31.23.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"848":{"id":"848","name":"basesystem","version":"10.0-4.9.amzn1","kind":"binary","source":{"id":"847","name":"basesystem","version":"10.0-4.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"850":{"id":"850","name":"nss-softokn-freebl","version":"3.53.1-6.46.amzn1","kind":"binary","source":{"id":"849","name":"nss-softokn","version":"3.53.1-6.46.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"852":{"id":"852","name":"nspr","version":"4.25.0-2.45.amzn1","kind":"binary","source":{"id":"851","name":"nspr","version":"4.25.0-2.45.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"854":{"id":"854","name":"libselinux","version":"2.1.10-3.22.amzn1","kind":"binary","source":{"id":"853","name":"libselinux","version":"2.1.10-3.22.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"856":{"id":"856","name":"db4","version":"4.7.25-18.11.amzn1","kind":"binary","source":{"id":"855","name":"db4","version":"4.7.25-18.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"858":{"id":"858","name":"readline","version":"6.2-9.14.amzn1","kind":"binary","source":{"id":"857","name":"readline","version":"6.2-9.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"860":{"id":"860","name":"libacl","version":"2.2.49-6.11.amzn1","kind":"binary","source":{"id":"859","name":"acl","version":"2.2.49-6.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"862":{"id":"862","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"binary","source":{"id":"861","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"864":{"id":"864","name":"libassuan","version":"2.0.3-3.3.amzn1","kind":"binary","source":{"id":"863","name":"libassuan","version":"2.0.3-3.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"866":{"id":"866","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"binary","source":{"id":"865","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"868":{"id":"868","name":"shared-mime-info","version":"1.1-9.8.amzn1","kind":"binary","source":{"id":"867","name":"shared-mime-info","version":"1.1-9.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"870":{"id":"870","name":"grep","version":"2.20-3.18.amzn1","kind":"binary","source":{"id":"869","name":"grep","version":"2.20-3.18.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"872":{"id":"872","name":"libgcrypt","version":"1.5.3-12.20.amzn1","kind":"binary","source":{"id":"871","name":"libgcrypt","version":"1.5.3-12.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"874":{"id":"874","name":"libunistring","version":"0.9.3-6.1.amzn1","kind":"binary","source":{"id":"873","name":"libunistring","version":"0.9.3-6.1.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"876":{"id":"876","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"878":{"id":"878","name":"coreutils","version":"8.22-15.52.amzn1","kind":"binary","source":{"id":"877","name":"coreutils","version":"8.22-15.52.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"880":{"id":"880","name":"nss-tools","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"882":{"id":"882","name":"libcurl","version":"7.61.1-12.101.amzn1","kind":"binary","source":{"id":"881","name":"curl","version":"7.61.1-12.101.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"884":{"id":"884","name":"openldap","version":"2.4.40-16.32.amzn1","kind":"binary","source":{"id":"883","name":"openldap","version":"2.4.40-16.32.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"886":{"id":"886","name":"gpgme","version":"1.4.3-5.15.amzn1","kind":"binary","source":{"id":"885","name":"gpgme","version":"1.4.3-5.15.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"888":{"id":"888","name":"rpm-python27","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"890":{"id":"890","name":"python27-pygpgme","version":"0.3-9.12.amzn1","kind":"binary","source":{"id":"889","name":"python-pygpgme","version":"0.3-9.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"892":{"id":"892","name":"python27-chardet","version":"2.0.1-7.7.amzn1","kind":"binary","source":{"id":"891","name":"python-chardet","version":"2.0.1-7.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"894":{"id":"894","name":"yum-plugin-priorities","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"896":{"id":"896","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"binary","source":{"id":"893","name":"yum-utils","version":"1.1.31-46.30.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"898":{"id":"898","name":"tzdata","version":"2022g-1.84.amzn1","kind":"binary","source":{"id":"897","name":"tzdata","version":"2022g-1.84.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"900":{"id":"900","name":"bash","version":"4.2.46-34.43.amzn1","kind":"binary","source":{"id":"899","name":"bash","version":"4.2.46-34.43.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"902":{"id":"902","name":"ncurses-libs","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"904":{"id":"904","name":"zlib","version":"1.2.8-7.20.amzn1","kind":"binary","source":{"id":"903","name":"zlib","version":"1.2.8-7.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"906":{"id":"906","name":"bzip2-libs","version":"1.0.6-8.12.amzn1","kind":"binary","source":{"id":"905","name":"bzip2","version":"1.0.6-8.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"908":{"id":"908","name":"lua","version":"5.1.4-4.1.9.amzn1","kind":"binary","source":{"id":"907","name":"lua","version":"5.1.4-4.1.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"910":{"id":"910","name":"libcap","version":"2.16-5.5.8.amzn1","kind":"binary","source":{"id":"909","name":"libcap","version":"2.16-5.5.8.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"912":{"id":"912","name":"libstdc++72","version":"7.2.1-2.59.amzn1","kind":"binary","source":{"id":"911","name":"gcc72","version":"7.2.1-2.59.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"914":{"id":"914","name":"sed","version":"4.2.1-10.10.amzn1","kind":"binary","source":{"id":"913","name":"sed","version":"4.2.1-10.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"916":{"id":"916","name":"libffi","version":"3.0.13-16.5.amzn1","kind":"binary","source":{"id":"915","name":"libffi","version":"3.0.13-16.5.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"918":{"id":"918","name":"keyutils-libs","version":"1.5.8-3.12.amzn1","kind":"binary","source":{"id":"917","name":"keyutils","version":"1.5.8-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"920":{"id":"920","name":"p11-kit-trust","version":"0.18.5-2.3.amzn1","kind":"binary","source":{"id":"865","name":"p11-kit","version":"0.18.5-2.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"922":{"id":"922","name":"pinentry","version":"0.7.6-6.11.amzn1","kind":"binary","source":{"id":"921","name":"pinentry","version":"0.7.6-6.11.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"924":{"id":"924","name":"libidn2","version":"2.3.0-1.4.amzn1","kind":"binary","source":{"id":"923","name":"libidn2","version":"2.3.0-1.4.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"926":{"id":"926","name":"libverto","version":"0.2.5-4.9.amzn1","kind":"binary","source":{"id":"925","name":"libverto","version":"0.2.5-4.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"928":{"id":"928","name":"nss-pem","version":"1.0.3-4.3.amzn1","kind":"binary","source":{"id":"927","name":"nss-pem","version":"1.0.3-4.3.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"930":{"id":"930","name":"libssh2","version":"1.4.2-3.12.amzn1","kind":"binary","source":{"id":"929","name":"libssh2","version":"1.4.2-3.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"932":{"id":"932","name":"curl","version":"7.61.1-12.101.amzn1","kind":"binary","source":{"id":"881","name":"curl","version":"7.61.1-12.101.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"934":{"id":"934","name":"pth","version":"2.0.7-9.3.7.amzn1","kind":"binary","source":{"id":"933","name":"pth","version":"2.0.7-9.3.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"936":{"id":"936","name":"expat","version":"2.1.0-15.33.amzn1","kind":"binary","source":{"id":"935","name":"expat","version":"2.1.0-15.33.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"938":{"id":"938","name":"libxml2-python27","version":"2.9.1-6.4.41.amzn1","kind":"binary","source":{"id":"861","name":"libxml2","version":"2.9.1-6.4.41.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"940":{"id":"940","name":"yum-metadata-parser","version":"1.1.4-10.20.amzn1","kind":"binary","source":{"id":"939","name":"yum-metadata-parser","version":"1.1.4-10.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"942":{"id":"942","name":"python27-kitchen","version":"1.1.1-5.6.amzn1","kind":"binary","source":{"id":"941","name":"python-kitchen","version":"1.1.1-5.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"944":{"id":"944","name":"sysctl-defaults","version":"1.0-1.1.amzn1","kind":"binary","source":{"id":"943","name":"sysctl-defaults","version":"1.0-1.1.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"946":{"id":"946","name":"gzip","version":"1.5-9.20.amzn1","kind":"binary","source":{"id":"945","name":"gzip","version":"1.5-9.20.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"948":{"id":"948","name":"setup","version":"2.8.14-20.12.amzn1","kind":"binary","source":{"id":"947","name":"setup","version":"2.8.14-20.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"950":{"id":"950","name":"ncurses-base","version":"5.7-4.20090207.14.amzn1","kind":"binary","source":{"id":"875","name":"ncurses","version":"5.7-4.20090207.14.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"952":{"id":"952","name":"glibc-common","version":"2.17-324.189.amzn1","kind":"binary","source":{"id":"951","name":"glibc","version":"2.17-324.189.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"954":{"id":"954","name":"nss-util","version":"3.53.1-1.58.amzn1","kind":"binary","source":{"id":"953","name":"nss-util","version":"3.53.1-1.58.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"956":{"id":"956","name":"info","version":"5.1-4.10.amzn1","kind":"binary","source":{"id":"955","name":"texinfo","version":"5.1-4.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"958":{"id":"958","name":"popt","version":"1.13-7.7.amzn1","kind":"binary","source":{"id":"957","name":"popt","version":"1.13-7.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"960":{"id":"960","name":"elfutils-libelf","version":"0.168-8.19.amzn1","kind":"binary","source":{"id":"959","name":"elfutils","version":"0.168-8.19.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"962":{"id":"962","name":"libgpg-error","version":"1.11-1.12.amzn1","kind":"binary","source":{"id":"961","name":"libgpg-error","version":"1.11-1.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"964":{"id":"964","name":"libcom_err","version":"1.43.5-2.44.amzn1","kind":"binary","source":{"id":"963","name":"e2fsprogs","version":"1.43.5-2.44.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"966":{"id":"966","name":"file-libs","version":"5.37-8.49.amzn1","kind":"binary","source":{"id":"965","name":"file","version":"5.37-8.49.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"968":{"id":"968","name":"pkgconfig","version":"1:0.27.1-2.7.amzn1","kind":"binary","source":{"id":"967","name":"pkgconfig","version":"0.27.1-2.7.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"970":{"id":"970","name":"gmp","version":"6.0.0-11.16.amzn1","kind":"binary","source":{"id":"969","name":"gmp","version":"6.0.0-11.16.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"972":{"id":"972","name":"libicu","version":"50.2-4.0.amzn1","kind":"binary","source":{"id":"971","name":"icu","version":"50.2-4.0.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"974":{"id":"974","name":"cyrus-sasl-lib","version":"2.1.23-13.17.amzn1","kind":"binary","source":{"id":"973","name":"cyrus-sasl","version":"2.1.23-13.17.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"976":{"id":"976","name":"make","version":"1:3.82-21.10.amzn1","kind":"binary","source":{"id":"975","name":"make","version":"3.82-21.10.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"978":{"id":"978","name":"krb5-libs","version":"1.15.1-55.51.amzn1","kind":"binary","source":{"id":"977","name":"krb5","version":"1.15.1-55.51.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"980":{"id":"980","name":"nss","version":"3.53.1-7.87.amzn1","kind":"binary","source":{"id":"879","name":"nss","version":"3.53.1-7.87.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"982":{"id":"982","name":"gdbm","version":"1.8.0-36.6.amzn1","kind":"binary","source":{"id":"981","name":"gdbm","version":"1.8.0-36.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"984":{"id":"984","name":"rpm-libs","version":"4.11.3-40.80.amzn1","kind":"binary","source":{"id":"887","name":"rpm","version":"4.11.3-40.80.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"986":{"id":"986","name":"gnupg2","version":"2.0.28-2.35.amzn1","kind":"binary","source":{"id":"985","name":"gnupg2","version":"2.0.28-2.35.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"988":{"id":"988","name":"python27","version":"2.7.18-2.142.amzn1","kind":"binary","source":{"id":"987","name":"python27","version":"2.7.18-2.142.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"990":{"id":"990","name":"python27-pycurl","version":"7.19.0-17.12.amzn1","kind":"binary","source":{"id":"989","name":"python-pycurl","version":"7.19.0-17.12.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"992":{"id":"992","name":"python27-pyxattr","version":"0.5.0-1.6.amzn1","kind":"binary","source":{"id":"991","name":"python-pyxattr","version":"0.5.0-1.6.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"994":{"id":"994","name":"python27-iniparse","version":"0.3.1-2.1.9.amzn1","kind":"binary","source":{"id":"993","name":"python-iniparse","version":"0.3.1-2.1.9.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"996":{"id":"996","name":"system-release","version":"2018.03-0.2","kind":"binary","source":{"id":"995","name":"system-release","version":"2018.03-0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"998":{"id":"998","name":"ca-certificates","version":"2018.2.22-65.1.29.amzn1","kind":"binary","source":{"id":"997","name":"ca-certificates","version":"2018.2.22-65.1.29.amzn1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""}},"distributions":{"7":{"id":"7","did":"amzn","name":"Amazon Linux AMI","version":"2018.03","version_code_name":"","version_id":"2018.03","arch":"","cpe":"cpe:2.3:o:amazon:linux:2018.03:ga:*:*:*:*:*:*","pretty_name":"Amazon Linux AMI 2018.03"}},"repository":{},"environments":{"1000":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1002":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1004":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1006":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1008":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1010":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1012":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1014":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1016":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1018":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1020":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1022":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1024":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1026":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1028":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1030":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1032":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1034":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1036":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1038":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1040":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1042":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1044":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1046":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1048":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"1050":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"848":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"850":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"852":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"854":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"856":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"858":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"860":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"862":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"864":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"866":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"868":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"870":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"872":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"874":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"876":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"878":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"880":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"882":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"884":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"886":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"888":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"890":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"892":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"894":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"896":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"898":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"900":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"902":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"904":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"906":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"908":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"910":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"912":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"914":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"916":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"918":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"920":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"922":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"924":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"926":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"928":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"930":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"932":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"934":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"936":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"938":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"940":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"942":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"944":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"946":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"948":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"950":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"952":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"954":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"956":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"958":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"960":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"962":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"964":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"966":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"968":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"970":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"972":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"974":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"976":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"978":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"980":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"982":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"984":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"986":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"988":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"990":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"992":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"994":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"996":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}],"998":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"","repository_ids":[]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:34e5a6b0b8d504be7f094c091bf65b92d10bc773438bfc71505a13f92baece16","distribution_id":"7","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-10.index.json b/datastore/postgres/testdata/docker.io-library-debian-10.index.json
index 81d178540..c671935a9 100644
--- a/datastore/postgres/testdata/docker.io-library-debian-10.index.json
+++ b/datastore/postgres/testdata/docker.io-library-debian-10.index.json
@@ -1 +1,2273 @@
-{"manifest_hash":"sha256:8b277f5e168f773e3dba38bca291a5fd138d56fcdd5008a2f0bf1866d311483b","state":"IndexFinished","packages":{"1618":{"id":"1618","name":"adduser","version":"3.118","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1620":{"id":"1620","name":"apt","version":"1.8.2.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1622":{"id":"1622","name":"base-files","version":"10.3+deb10u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1626":{"id":"1626","name":"bash","version":"5.0-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1628":{"id":"1628","name":"bsdutils","version":"1:2.33.1-0.1","kind":"binary","source":{"id":"1627","name":"util-linux (2.33.1-0.1)","version":"1:2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1630":{"id":"1630","name":"coreutils","version":"8.30-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1632":{"id":"1632","name":"dash","version":"0.5.10.2-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1634":{"id":"1634","name":"debconf","version":"1.5.71+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1636":{"id":"1636","name":"debian-archive-keyring","version":"2019.1+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1638":{"id":"1638","name":"debianutils","version":"4.8.6.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1642":{"id":"1642","name":"dpkg","version":"1.19.8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1644":{"id":"1644","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1646":{"id":"1646","name":"fdisk","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1648":{"id":"1648","name":"findutils","version":"4.6.0+git+20190209-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1650":{"id":"1650","name":"gcc-8-base","version":"8.3.0-6","kind":"binary","source":{"id":"1649","name":"gcc-8","version":"8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1652":{"id":"1652","name":"gpgv","version":"2.2.12-1+deb10u2","kind":"binary","source":{"id":"1651","name":"gnupg2","version":"2.2.12-1+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1654":{"id":"1654","name":"grep","version":"3.3-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1656":{"id":"1656","name":"gzip","version":"1.9-3+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1658":{"id":"1658","name":"hostname","version":"3.21","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1660":{"id":"1660","name":"init-system-helpers","version":"1.56+nmu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1662":{"id":"1662","name":"iproute2","version":"4.20.0-2+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1664":{"id":"1664","name":"iputils-ping","version":"3:20180629-2+deb10u2","kind":"binary","source":{"id":"1663","name":"iputils","version":"3:20180629-2+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1668":{"id":"1668","name":"libapt-pkg5.0","version":"1.8.2.3","kind":"binary","source":{"id":"1667","name":"apt","version":"1.8.2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1672":{"id":"1672","name":"libaudit-common","version":"1:2.8.4-3","kind":"binary","source":{"id":"1671","name":"audit","version":"1:2.8.4-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1674":{"id":"1674","name":"libaudit1","version":"1:2.8.4-3","kind":"binary","source":{"id":"1671","name":"audit","version":"1:2.8.4-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1676":{"id":"1676","name":"libblkid1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1678":{"id":"1678","name":"libbz2-1.0","version":"1.0.6-9.2~deb10u2","kind":"binary","source":{"id":"1677","name":"bzip2","version":"1.0.6-9.2~deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1680":{"id":"1680","name":"libc-bin","version":"2.28-10+deb10u2","kind":"binary","source":{"id":"1679","name":"glibc","version":"2.28-10+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1682":{"id":"1682","name":"libc6","version":"2.28-10+deb10u2","kind":"binary","source":{"id":"1679","name":"glibc","version":"2.28-10+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1686":{"id":"1686","name":"libcap2","version":"1:2.25-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1688":{"id":"1688","name":"libcap2-bin","version":"1:2.25-2","kind":"binary","source":{"id":"1687","name":"libcap2","version":"1:2.25-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1690":{"id":"1690","name":"libcom-err2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1692":{"id":"1692","name":"libdb5.3","version":"5.3.28+dfsg1-0.5","kind":"binary","source":{"id":"1691","name":"db5.3","version":"5.3.28+dfsg1-0.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1694":{"id":"1694","name":"libdebconfclient0","version":"0.249","kind":"binary","source":{"id":"1693","name":"cdebconf","version":"0.249","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1696":{"id":"1696","name":"libelf1","version":"0.176-1.1","kind":"binary","source":{"id":"1695","name":"elfutils","version":"0.176-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1698":{"id":"1698","name":"libext2fs2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1700":{"id":"1700","name":"libfdisk1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1704":{"id":"1704","name":"libgcc1","version":"1:8.3.0-6","kind":"binary","source":{"id":"1703","name":"gcc-8 (8.3.0-6)","version":"1:8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1706":{"id":"1706","name":"libgcrypt20","version":"1.8.4-5+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1708":{"id":"1708","name":"libgmp10","version":"2:6.1.2+dfsg-4+deb10u1","kind":"binary","source":{"id":"1707","name":"gmp","version":"2:6.1.2+dfsg-4+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1710":{"id":"1710","name":"libgnutls30","version":"3.6.7-4+deb10u10","kind":"binary","source":{"id":"1709","name":"gnutls28","version":"3.6.7-4+deb10u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1712":{"id":"1712","name":"libgpg-error0","version":"1.35-1","kind":"binary","source":{"id":"1711","name":"libgpg-error","version":"1.35-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1714":{"id":"1714","name":"libhogweed4","version":"3.4.1-1+deb10u1","kind":"binary","source":{"id":"1713","name":"nettle","version":"3.4.1-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1716":{"id":"1716","name":"libidn2-0","version":"2.0.5-1+deb10u1","kind":"binary","source":{"id":"1715","name":"libidn2","version":"2.0.5-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1718":{"id":"1718","name":"liblz4-1","version":"1.8.3-1+deb10u1","kind":"binary","source":{"id":"1717","name":"lz4","version":"1.8.3-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1720":{"id":"1720","name":"liblzma5","version":"5.2.4-1+deb10u1","kind":"binary","source":{"id":"1719","name":"xz-utils","version":"5.2.4-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1724":{"id":"1724","name":"libmount1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1726":{"id":"1726","name":"libncursesw6","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1728":{"id":"1728","name":"libnettle6","version":"3.4.1-1+deb10u1","kind":"binary","source":{"id":"1713","name":"nettle","version":"3.4.1-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1730":{"id":"1730","name":"libp11-kit0","version":"0.23.15-2+deb10u1","kind":"binary","source":{"id":"1729","name":"p11-kit","version":"0.23.15-2+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1732":{"id":"1732","name":"libpam-modules","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1734":{"id":"1734","name":"libpam-modules-bin","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1736":{"id":"1736","name":"libpam-runtime","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1738":{"id":"1738","name":"libpam0g","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1742":{"id":"1742","name":"libseccomp2","version":"2.3.3-4","kind":"binary","source":{"id":"1741","name":"libseccomp","version":"2.3.3-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1744":{"id":"1744","name":"libselinux1","version":"2.8-1+b1","kind":"binary","source":{"id":"1743","name":"libselinux (2.8-1)","version":"2.8-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1746":{"id":"1746","name":"libsemanage-common","version":"2.8-2","kind":"binary","source":{"id":"1745","name":"libsemanage","version":"2.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1748":{"id":"1748","name":"libsemanage1","version":"2.8-2","kind":"binary","source":{"id":"1745","name":"libsemanage","version":"2.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1750":{"id":"1750","name":"libsepol1","version":"2.8-1","kind":"binary","source":{"id":"1749","name":"libsepol","version":"2.8-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1752":{"id":"1752","name":"libsmartcols1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1754":{"id":"1754","name":"libss2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1756":{"id":"1756","name":"libstdc++6","version":"8.3.0-6","kind":"binary","source":{"id":"1649","name":"gcc-8","version":"8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1758":{"id":"1758","name":"libsystemd0","version":"241-7~deb10u9","kind":"binary","source":{"id":"1757","name":"systemd","version":"241-7~deb10u9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1760":{"id":"1760","name":"libtasn1-6","version":"4.13-3+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1762":{"id":"1762","name":"libtinfo6","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1764":{"id":"1764","name":"libudev1","version":"241-7~deb10u9","kind":"binary","source":{"id":"1757","name":"systemd","version":"241-7~deb10u9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1766":{"id":"1766","name":"libunistring2","version":"0.9.10-1","kind":"binary","source":{"id":"1765","name":"libunistring","version":"0.9.10-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1768":{"id":"1768","name":"libuuid1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1770":{"id":"1770","name":"libxtables12","version":"1.8.2-4","kind":"binary","source":{"id":"1769","name":"iptables","version":"1.8.2-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1772":{"id":"1772","name":"libzstd1","version":"1.3.8+dfsg-3+deb10u2","kind":"binary","source":{"id":"1771","name":"libzstd","version":"1.3.8+dfsg-3+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1774":{"id":"1774","name":"login","version":"1:4.5-1.1","kind":"binary","source":{"id":"1773","name":"shadow","version":"1:4.5-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1778":{"id":"1778","name":"mount","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1780":{"id":"1780","name":"ncurses-base","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1782":{"id":"1782","name":"ncurses-bin","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1784":{"id":"1784","name":"passwd","version":"1:4.5-1.1","kind":"binary","source":{"id":"1773","name":"shadow","version":"1:4.5-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1786":{"id":"1786","name":"perl-base","version":"5.28.1-6+deb10u1","kind":"binary","source":{"id":"1785","name":"perl","version":"5.28.1-6+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1790":{"id":"1790","name":"sysvinit-utils","version":"2.93-8","kind":"binary","source":{"id":"1789","name":"sysvinit","version":"2.93-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1794":{"id":"1794","name":"tzdata","version":"2021a-0+deb10u10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1796":{"id":"1796","name":"util-linux","version":"2.33.1-0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1798":{"id":"1798","name":"zlib1g","version":"1:1.2.11.dfsg-1+deb10u2","kind":"binary","source":{"id":"1797","name":"zlib","version":"1:1.2.11.dfsg-1+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"186":{"id":"186","name":"base-passwd","version":"3.5.46","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"224":{"id":"224","name":"libacl1","version":"2.2.53-4","kind":"binary","source":{"id":"223","name":"acl","version":"2.2.53-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"228":{"id":"228","name":"libattr1","version":"1:2.4.48-4","kind":"binary","source":{"id":"227","name":"attr","version":"1:2.4.48-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"242":{"id":"242","name":"libcap-ng0","version":"0.7.9-2","kind":"binary","source":{"id":"241","name":"libcap-ng","version":"0.7.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"254":{"id":"254","name":"libffi6","version":"3.2.1-9","kind":"binary","source":{"id":"253","name":"libffi","version":"3.2.1-9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"294":{"id":"294","name":"libpcre3","version":"2:8.39-12","kind":"binary","source":{"id":"293","name":"pcre3","version":"2:8.39-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"354":{"id":"354","name":"tar","version":"1.30+dfsg-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"736":{"id":"736","name":"mawk","version":"1.3.3-17+b3","kind":"binary","source":{"id":"735","name":"mawk (1.3.3-17)","version":"1.3.3-17+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"832":{"id":"832","name":"libmnl0","version":"1.0.4-2","kind":"binary","source":{"id":"831","name":"libmnl","version":"1.0.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"11":{"id":"11","did":"debian","name":"Debian GNU/Linux","version":"10 (buster)","version_code_name":"buster","version_id":"10","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 10 (buster)"}},"repository":{},"environments":{"1618":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1620":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1622":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1626":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1628":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1630":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1632":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1634":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1636":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1638":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1642":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1644":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1646":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1648":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1650":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1652":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1654":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1656":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1658":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1660":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1662":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1664":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1668":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1672":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1674":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1676":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1678":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1680":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1682":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1686":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1688":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1690":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1692":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1694":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1696":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1698":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1700":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1704":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1706":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1708":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1710":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1712":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1714":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1716":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1718":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1720":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1724":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1726":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1728":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1730":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1732":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1734":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1738":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1742":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1744":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1746":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1748":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1750":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1752":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1754":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1756":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1758":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1760":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1762":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1764":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1766":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1768":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1770":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1772":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1774":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1778":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1780":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1782":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1784":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1786":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1790":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1794":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1796":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1798":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"186":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"224":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"228":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"242":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"254":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"294":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"354":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}]},"success":true,"err":""}
+{
+ "manifest_hash": "sha256:8b277f5e168f773e3dba38bca291a5fd138d56fcdd5008a2f0bf1866d311483b",
+ "state": "IndexFinished",
+ "packages": {
+ "1618": {
+ "id": "1618",
+ "name": "adduser",
+ "version": "3.118",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1620": {
+ "id": "1620",
+ "name": "apt",
+ "version": "1.8.2.3",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1622": {
+ "id": "1622",
+ "name": "base-files",
+ "version": "10.3+deb10u13",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1626": {
+ "id": "1626",
+ "name": "bash",
+ "version": "5.0-4",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1628": {
+ "id": "1628",
+ "name": "bsdutils",
+ "version": "1:2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1627",
+ "name": "util-linux (2.33.1-0.1)",
+ "version": "1:2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1630": {
+ "id": "1630",
+ "name": "coreutils",
+ "version": "8.30-3",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1632": {
+ "id": "1632",
+ "name": "dash",
+ "version": "0.5.10.2-5",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1634": {
+ "id": "1634",
+ "name": "debconf",
+ "version": "1.5.71+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1636": {
+ "id": "1636",
+ "name": "debian-archive-keyring",
+ "version": "2019.1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1638": {
+ "id": "1638",
+ "name": "debianutils",
+ "version": "4.8.6.1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1642": {
+ "id": "1642",
+ "name": "dpkg",
+ "version": "1.19.8",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1644": {
+ "id": "1644",
+ "name": "e2fsprogs",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1646": {
+ "id": "1646",
+ "name": "fdisk",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1648": {
+ "id": "1648",
+ "name": "findutils",
+ "version": "4.6.0+git+20190209-2",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1650": {
+ "id": "1650",
+ "name": "gcc-8-base",
+ "version": "8.3.0-6",
+ "kind": "binary",
+ "source": {
+ "id": "1649",
+ "name": "gcc-8",
+ "version": "8.3.0-6",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1652": {
+ "id": "1652",
+ "name": "gpgv",
+ "version": "2.2.12-1+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1651",
+ "name": "gnupg2",
+ "version": "2.2.12-1+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1654": {
+ "id": "1654",
+ "name": "grep",
+ "version": "3.3-1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1656": {
+ "id": "1656",
+ "name": "gzip",
+ "version": "1.9-3+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1658": {
+ "id": "1658",
+ "name": "hostname",
+ "version": "3.21",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1660": {
+ "id": "1660",
+ "name": "init-system-helpers",
+ "version": "1.56+nmu1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1662": {
+ "id": "1662",
+ "name": "iproute2",
+ "version": "4.20.0-2+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1664": {
+ "id": "1664",
+ "name": "iputils-ping",
+ "version": "3:20180629-2+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1663",
+ "name": "iputils",
+ "version": "3:20180629-2+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1668": {
+ "id": "1668",
+ "name": "libapt-pkg5.0",
+ "version": "1.8.2.3",
+ "kind": "binary",
+ "source": {
+ "id": "1667",
+ "name": "apt",
+ "version": "1.8.2.3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1672": {
+ "id": "1672",
+ "name": "libaudit-common",
+ "version": "1:2.8.4-3",
+ "kind": "binary",
+ "source": {
+ "id": "1671",
+ "name": "audit",
+ "version": "1:2.8.4-3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1674": {
+ "id": "1674",
+ "name": "libaudit1",
+ "version": "1:2.8.4-3",
+ "kind": "binary",
+ "source": {
+ "id": "1671",
+ "name": "audit",
+ "version": "1:2.8.4-3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1676": {
+ "id": "1676",
+ "name": "libblkid1",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1678": {
+ "id": "1678",
+ "name": "libbz2-1.0",
+ "version": "1.0.6-9.2~deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1677",
+ "name": "bzip2",
+ "version": "1.0.6-9.2~deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1680": {
+ "id": "1680",
+ "name": "libc-bin",
+ "version": "2.28-10+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1679",
+ "name": "glibc",
+ "version": "2.28-10+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1682": {
+ "id": "1682",
+ "name": "libc6",
+ "version": "2.28-10+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1679",
+ "name": "glibc",
+ "version": "2.28-10+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1686": {
+ "id": "1686",
+ "name": "libcap2",
+ "version": "1:2.25-2",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1688": {
+ "id": "1688",
+ "name": "libcap2-bin",
+ "version": "1:2.25-2",
+ "kind": "binary",
+ "source": {
+ "id": "1687",
+ "name": "libcap2",
+ "version": "1:2.25-2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1690": {
+ "id": "1690",
+ "name": "libcom-err2",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1689",
+ "name": "e2fsprogs",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1692": {
+ "id": "1692",
+ "name": "libdb5.3",
+ "version": "5.3.28+dfsg1-0.5",
+ "kind": "binary",
+ "source": {
+ "id": "1691",
+ "name": "db5.3",
+ "version": "5.3.28+dfsg1-0.5",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1694": {
+ "id": "1694",
+ "name": "libdebconfclient0",
+ "version": "0.249",
+ "kind": "binary",
+ "source": {
+ "id": "1693",
+ "name": "cdebconf",
+ "version": "0.249",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1696": {
+ "id": "1696",
+ "name": "libelf1",
+ "version": "0.176-1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1695",
+ "name": "elfutils",
+ "version": "0.176-1.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1698": {
+ "id": "1698",
+ "name": "libext2fs2",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1689",
+ "name": "e2fsprogs",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1700": {
+ "id": "1700",
+ "name": "libfdisk1",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1704": {
+ "id": "1704",
+ "name": "libgcc1",
+ "version": "1:8.3.0-6",
+ "kind": "binary",
+ "source": {
+ "id": "1703",
+ "name": "gcc-8 (8.3.0-6)",
+ "version": "1:8.3.0-6",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1706": {
+ "id": "1706",
+ "name": "libgcrypt20",
+ "version": "1.8.4-5+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1708": {
+ "id": "1708",
+ "name": "libgmp10",
+ "version": "2:6.1.2+dfsg-4+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1707",
+ "name": "gmp",
+ "version": "2:6.1.2+dfsg-4+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1710": {
+ "id": "1710",
+ "name": "libgnutls30",
+ "version": "3.6.7-4+deb10u10",
+ "kind": "binary",
+ "source": {
+ "id": "1709",
+ "name": "gnutls28",
+ "version": "3.6.7-4+deb10u10",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1712": {
+ "id": "1712",
+ "name": "libgpg-error0",
+ "version": "1.35-1",
+ "kind": "binary",
+ "source": {
+ "id": "1711",
+ "name": "libgpg-error",
+ "version": "1.35-1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1714": {
+ "id": "1714",
+ "name": "libhogweed4",
+ "version": "3.4.1-1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1713",
+ "name": "nettle",
+ "version": "3.4.1-1+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1716": {
+ "id": "1716",
+ "name": "libidn2-0",
+ "version": "2.0.5-1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1715",
+ "name": "libidn2",
+ "version": "2.0.5-1+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1718": {
+ "id": "1718",
+ "name": "liblz4-1",
+ "version": "1.8.3-1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1717",
+ "name": "lz4",
+ "version": "1.8.3-1+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1720": {
+ "id": "1720",
+ "name": "liblzma5",
+ "version": "5.2.4-1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1719",
+ "name": "xz-utils",
+ "version": "5.2.4-1+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1724": {
+ "id": "1724",
+ "name": "libmount1",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1726": {
+ "id": "1726",
+ "name": "libncursesw6",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1725",
+ "name": "ncurses",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1728": {
+ "id": "1728",
+ "name": "libnettle6",
+ "version": "3.4.1-1+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1713",
+ "name": "nettle",
+ "version": "3.4.1-1+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1730": {
+ "id": "1730",
+ "name": "libp11-kit0",
+ "version": "0.23.15-2+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1729",
+ "name": "p11-kit",
+ "version": "0.23.15-2+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1732": {
+ "id": "1732",
+ "name": "libpam-modules",
+ "version": "1.3.1-5",
+ "kind": "binary",
+ "source": {
+ "id": "1731",
+ "name": "pam",
+ "version": "1.3.1-5",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1734": {
+ "id": "1734",
+ "name": "libpam-modules-bin",
+ "version": "1.3.1-5",
+ "kind": "binary",
+ "source": {
+ "id": "1731",
+ "name": "pam",
+ "version": "1.3.1-5",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1736": {
+ "id": "1736",
+ "name": "libpam-runtime",
+ "version": "1.3.1-5",
+ "kind": "binary",
+ "source": {
+ "id": "1731",
+ "name": "pam",
+ "version": "1.3.1-5",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1738": {
+ "id": "1738",
+ "name": "libpam0g",
+ "version": "1.3.1-5",
+ "kind": "binary",
+ "source": {
+ "id": "1731",
+ "name": "pam",
+ "version": "1.3.1-5",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1742": {
+ "id": "1742",
+ "name": "libseccomp2",
+ "version": "2.3.3-4",
+ "kind": "binary",
+ "source": {
+ "id": "1741",
+ "name": "libseccomp",
+ "version": "2.3.3-4",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1744": {
+ "id": "1744",
+ "name": "libselinux1",
+ "version": "2.8-1+b1",
+ "kind": "binary",
+ "source": {
+ "id": "1743",
+ "name": "libselinux (2.8-1)",
+ "version": "2.8-1+b1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1746": {
+ "id": "1746",
+ "name": "libsemanage-common",
+ "version": "2.8-2",
+ "kind": "binary",
+ "source": {
+ "id": "1745",
+ "name": "libsemanage",
+ "version": "2.8-2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1748": {
+ "id": "1748",
+ "name": "libsemanage1",
+ "version": "2.8-2",
+ "kind": "binary",
+ "source": {
+ "id": "1745",
+ "name": "libsemanage",
+ "version": "2.8-2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1750": {
+ "id": "1750",
+ "name": "libsepol1",
+ "version": "2.8-1",
+ "kind": "binary",
+ "source": {
+ "id": "1749",
+ "name": "libsepol",
+ "version": "2.8-1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1752": {
+ "id": "1752",
+ "name": "libsmartcols1",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1754": {
+ "id": "1754",
+ "name": "libss2",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1689",
+ "name": "e2fsprogs",
+ "version": "1.44.5-1+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1756": {
+ "id": "1756",
+ "name": "libstdc++6",
+ "version": "8.3.0-6",
+ "kind": "binary",
+ "source": {
+ "id": "1649",
+ "name": "gcc-8",
+ "version": "8.3.0-6",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1758": {
+ "id": "1758",
+ "name": "libsystemd0",
+ "version": "241-7~deb10u9",
+ "kind": "binary",
+ "source": {
+ "id": "1757",
+ "name": "systemd",
+ "version": "241-7~deb10u9",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1760": {
+ "id": "1760",
+ "name": "libtasn1-6",
+ "version": "4.13-3+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1762": {
+ "id": "1762",
+ "name": "libtinfo6",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1725",
+ "name": "ncurses",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1764": {
+ "id": "1764",
+ "name": "libudev1",
+ "version": "241-7~deb10u9",
+ "kind": "binary",
+ "source": {
+ "id": "1757",
+ "name": "systemd",
+ "version": "241-7~deb10u9",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1766": {
+ "id": "1766",
+ "name": "libunistring2",
+ "version": "0.9.10-1",
+ "kind": "binary",
+ "source": {
+ "id": "1765",
+ "name": "libunistring",
+ "version": "0.9.10-1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1768": {
+ "id": "1768",
+ "name": "libuuid1",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1770": {
+ "id": "1770",
+ "name": "libxtables12",
+ "version": "1.8.2-4",
+ "kind": "binary",
+ "source": {
+ "id": "1769",
+ "name": "iptables",
+ "version": "1.8.2-4",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1772": {
+ "id": "1772",
+ "name": "libzstd1",
+ "version": "1.3.8+dfsg-3+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1771",
+ "name": "libzstd",
+ "version": "1.3.8+dfsg-3+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1774": {
+ "id": "1774",
+ "name": "login",
+ "version": "1:4.5-1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1773",
+ "name": "shadow",
+ "version": "1:4.5-1.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1778": {
+ "id": "1778",
+ "name": "mount",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1645",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1780": {
+ "id": "1780",
+ "name": "ncurses-base",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1725",
+ "name": "ncurses",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1782": {
+ "id": "1782",
+ "name": "ncurses-bin",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "binary",
+ "source": {
+ "id": "1725",
+ "name": "ncurses",
+ "version": "6.1+20181013-2+deb10u3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1784": {
+ "id": "1784",
+ "name": "passwd",
+ "version": "1:4.5-1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1773",
+ "name": "shadow",
+ "version": "1:4.5-1.1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1786": {
+ "id": "1786",
+ "name": "perl-base",
+ "version": "5.28.1-6+deb10u1",
+ "kind": "binary",
+ "source": {
+ "id": "1785",
+ "name": "perl",
+ "version": "5.28.1-6+deb10u1",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1790": {
+ "id": "1790",
+ "name": "sysvinit-utils",
+ "version": "2.93-8",
+ "kind": "binary",
+ "source": {
+ "id": "1789",
+ "name": "sysvinit",
+ "version": "2.93-8",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1794": {
+ "id": "1794",
+ "name": "tzdata",
+ "version": "2021a-0+deb10u10",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "all",
+ "cpe": ""
+ },
+ "1796": {
+ "id": "1796",
+ "name": "util-linux",
+ "version": "2.33.1-0.1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "1798": {
+ "id": "1798",
+ "name": "zlib1g",
+ "version": "1:1.2.11.dfsg-1+deb10u2",
+ "kind": "binary",
+ "source": {
+ "id": "1797",
+ "name": "zlib",
+ "version": "1:1.2.11.dfsg-1+deb10u2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "186": {
+ "id": "186",
+ "name": "base-passwd",
+ "version": "3.5.46",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "202": {
+ "id": "202",
+ "name": "diffutils",
+ "version": "1:3.7-3",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "224": {
+ "id": "224",
+ "name": "libacl1",
+ "version": "2.2.53-4",
+ "kind": "binary",
+ "source": {
+ "id": "223",
+ "name": "acl",
+ "version": "2.2.53-4",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "228": {
+ "id": "228",
+ "name": "libattr1",
+ "version": "1:2.4.48-4",
+ "kind": "binary",
+ "source": {
+ "id": "227",
+ "name": "attr",
+ "version": "1:2.4.48-4",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "242": {
+ "id": "242",
+ "name": "libcap-ng0",
+ "version": "0.7.9-2",
+ "kind": "binary",
+ "source": {
+ "id": "241",
+ "name": "libcap-ng",
+ "version": "0.7.9-2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "254": {
+ "id": "254",
+ "name": "libffi6",
+ "version": "3.2.1-9",
+ "kind": "binary",
+ "source": {
+ "id": "253",
+ "name": "libffi",
+ "version": "3.2.1-9",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "294": {
+ "id": "294",
+ "name": "libpcre3",
+ "version": "2:8.39-12",
+ "kind": "binary",
+ "source": {
+ "id": "293",
+ "name": "pcre3",
+ "version": "2:8.39-12",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "348": {
+ "id": "348",
+ "name": "sed",
+ "version": "4.7-1",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "354": {
+ "id": "354",
+ "name": "tar",
+ "version": "1.30+dfsg-6",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "",
+ "version": "",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "736": {
+ "id": "736",
+ "name": "mawk",
+ "version": "1.3.3-17+b3",
+ "kind": "binary",
+ "source": {
+ "id": "735",
+ "name": "mawk (1.3.3-17)",
+ "version": "1.3.3-17+b3",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ },
+ "832": {
+ "id": "832",
+ "name": "libmnl0",
+ "version": "1.0.4-2",
+ "kind": "binary",
+ "source": {
+ "id": "831",
+ "name": "libmnl",
+ "version": "1.0.4-2",
+ "kind": "source",
+ "normalized_version": "",
+ "cpe": ""
+ },
+ "normalized_version": "",
+ "arch": "amd64",
+ "cpe": ""
+ }
+ },
+ "distributions": {
+ "11": {
+ "id": "11",
+ "did": "debian",
+ "name": "Debian GNU/Linux",
+ "version": "10 (buster)",
+ "version_code_name": "buster",
+ "version_id": "10",
+ "arch": "",
+ "cpe": "",
+ "pretty_name": "Debian GNU/Linux 10 (buster)"
+ }
+ },
+ "repository": {},
+ "environments": {
+ "1618": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1620": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1622": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1626": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1628": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1630": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1632": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1634": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1636": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1638": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1642": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1644": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1646": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1648": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1650": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1652": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1654": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1656": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1658": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1660": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1662": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1664": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1668": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1672": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1674": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1676": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1678": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1680": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1682": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1686": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1688": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1690": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1692": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1694": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1696": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1698": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1700": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1704": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1706": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1708": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1710": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1712": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1714": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1716": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1718": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1720": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1724": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1726": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1728": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1730": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1732": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1734": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1736": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1738": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1742": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1744": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1746": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1748": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1750": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1752": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1754": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1756": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1758": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1760": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1762": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1764": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1766": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1768": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1770": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1772": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1774": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1778": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1780": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1782": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1784": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1786": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1790": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1794": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1796": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "1798": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "186": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "202": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "224": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "228": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "242": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "254": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "294": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "348": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "354": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "736": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ],
+ "832": [
+ {
+ "package_db": "var/lib/dpkg/status",
+ "introduced_in": "sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408",
+ "distribution_id": "11",
+ "repository_ids": null
+ }
+ ]
+ },
+ "success": true,
+ "err": ""
+}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-10.report.json b/datastore/postgres/testdata/docker.io-library-debian-10.report.json
deleted file mode 100644
index 758cc9627..000000000
--- a/datastore/postgres/testdata/docker.io-library-debian-10.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:8b277f5e168f773e3dba38bca291a5fd138d56fcdd5008a2f0bf1866d311483b","packages":{"1618":{"id":"1618","name":"adduser","version":"3.118","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1620":{"id":"1620","name":"apt","version":"1.8.2.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1622":{"id":"1622","name":"base-files","version":"10.3+deb10u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1626":{"id":"1626","name":"bash","version":"5.0-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1628":{"id":"1628","name":"bsdutils","version":"1:2.33.1-0.1","kind":"binary","source":{"id":"1627","name":"util-linux (2.33.1-0.1)","version":"1:2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1630":{"id":"1630","name":"coreutils","version":"8.30-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1632":{"id":"1632","name":"dash","version":"0.5.10.2-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1634":{"id":"1634","name":"debconf","version":"1.5.71+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1636":{"id":"1636","name":"debian-archive-keyring","version":"2019.1+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1638":{"id":"1638","name":"debianutils","version":"4.8.6.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1642":{"id":"1642","name":"dpkg","version":"1.19.8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1644":{"id":"1644","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1646":{"id":"1646","name":"fdisk","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1648":{"id":"1648","name":"findutils","version":"4.6.0+git+20190209-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1650":{"id":"1650","name":"gcc-8-base","version":"8.3.0-6","kind":"binary","source":{"id":"1649","name":"gcc-8","version":"8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1652":{"id":"1652","name":"gpgv","version":"2.2.12-1+deb10u2","kind":"binary","source":{"id":"1651","name":"gnupg2","version":"2.2.12-1+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1654":{"id":"1654","name":"grep","version":"3.3-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1656":{"id":"1656","name":"gzip","version":"1.9-3+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1658":{"id":"1658","name":"hostname","version":"3.21","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1660":{"id":"1660","name":"init-system-helpers","version":"1.56+nmu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1662":{"id":"1662","name":"iproute2","version":"4.20.0-2+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1664":{"id":"1664","name":"iputils-ping","version":"3:20180629-2+deb10u2","kind":"binary","source":{"id":"1663","name":"iputils","version":"3:20180629-2+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1668":{"id":"1668","name":"libapt-pkg5.0","version":"1.8.2.3","kind":"binary","source":{"id":"1667","name":"apt","version":"1.8.2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1672":{"id":"1672","name":"libaudit-common","version":"1:2.8.4-3","kind":"binary","source":{"id":"1671","name":"audit","version":"1:2.8.4-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1674":{"id":"1674","name":"libaudit1","version":"1:2.8.4-3","kind":"binary","source":{"id":"1671","name":"audit","version":"1:2.8.4-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1676":{"id":"1676","name":"libblkid1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1678":{"id":"1678","name":"libbz2-1.0","version":"1.0.6-9.2~deb10u2","kind":"binary","source":{"id":"1677","name":"bzip2","version":"1.0.6-9.2~deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1680":{"id":"1680","name":"libc-bin","version":"2.28-10+deb10u2","kind":"binary","source":{"id":"1679","name":"glibc","version":"2.28-10+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1682":{"id":"1682","name":"libc6","version":"2.28-10+deb10u2","kind":"binary","source":{"id":"1679","name":"glibc","version":"2.28-10+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1686":{"id":"1686","name":"libcap2","version":"1:2.25-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1688":{"id":"1688","name":"libcap2-bin","version":"1:2.25-2","kind":"binary","source":{"id":"1687","name":"libcap2","version":"1:2.25-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1690":{"id":"1690","name":"libcom-err2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1692":{"id":"1692","name":"libdb5.3","version":"5.3.28+dfsg1-0.5","kind":"binary","source":{"id":"1691","name":"db5.3","version":"5.3.28+dfsg1-0.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1694":{"id":"1694","name":"libdebconfclient0","version":"0.249","kind":"binary","source":{"id":"1693","name":"cdebconf","version":"0.249","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1696":{"id":"1696","name":"libelf1","version":"0.176-1.1","kind":"binary","source":{"id":"1695","name":"elfutils","version":"0.176-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1698":{"id":"1698","name":"libext2fs2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1700":{"id":"1700","name":"libfdisk1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1704":{"id":"1704","name":"libgcc1","version":"1:8.3.0-6","kind":"binary","source":{"id":"1703","name":"gcc-8 (8.3.0-6)","version":"1:8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1706":{"id":"1706","name":"libgcrypt20","version":"1.8.4-5+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1708":{"id":"1708","name":"libgmp10","version":"2:6.1.2+dfsg-4+deb10u1","kind":"binary","source":{"id":"1707","name":"gmp","version":"2:6.1.2+dfsg-4+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1710":{"id":"1710","name":"libgnutls30","version":"3.6.7-4+deb10u10","kind":"binary","source":{"id":"1709","name":"gnutls28","version":"3.6.7-4+deb10u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1712":{"id":"1712","name":"libgpg-error0","version":"1.35-1","kind":"binary","source":{"id":"1711","name":"libgpg-error","version":"1.35-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1714":{"id":"1714","name":"libhogweed4","version":"3.4.1-1+deb10u1","kind":"binary","source":{"id":"1713","name":"nettle","version":"3.4.1-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1716":{"id":"1716","name":"libidn2-0","version":"2.0.5-1+deb10u1","kind":"binary","source":{"id":"1715","name":"libidn2","version":"2.0.5-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1718":{"id":"1718","name":"liblz4-1","version":"1.8.3-1+deb10u1","kind":"binary","source":{"id":"1717","name":"lz4","version":"1.8.3-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1720":{"id":"1720","name":"liblzma5","version":"5.2.4-1+deb10u1","kind":"binary","source":{"id":"1719","name":"xz-utils","version":"5.2.4-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1724":{"id":"1724","name":"libmount1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1726":{"id":"1726","name":"libncursesw6","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1728":{"id":"1728","name":"libnettle6","version":"3.4.1-1+deb10u1","kind":"binary","source":{"id":"1713","name":"nettle","version":"3.4.1-1+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1730":{"id":"1730","name":"libp11-kit0","version":"0.23.15-2+deb10u1","kind":"binary","source":{"id":"1729","name":"p11-kit","version":"0.23.15-2+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1732":{"id":"1732","name":"libpam-modules","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1734":{"id":"1734","name":"libpam-modules-bin","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1736":{"id":"1736","name":"libpam-runtime","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1738":{"id":"1738","name":"libpam0g","version":"1.3.1-5","kind":"binary","source":{"id":"1731","name":"pam","version":"1.3.1-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1742":{"id":"1742","name":"libseccomp2","version":"2.3.3-4","kind":"binary","source":{"id":"1741","name":"libseccomp","version":"2.3.3-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1744":{"id":"1744","name":"libselinux1","version":"2.8-1+b1","kind":"binary","source":{"id":"1743","name":"libselinux (2.8-1)","version":"2.8-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1746":{"id":"1746","name":"libsemanage-common","version":"2.8-2","kind":"binary","source":{"id":"1745","name":"libsemanage","version":"2.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1748":{"id":"1748","name":"libsemanage1","version":"2.8-2","kind":"binary","source":{"id":"1745","name":"libsemanage","version":"2.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1750":{"id":"1750","name":"libsepol1","version":"2.8-1","kind":"binary","source":{"id":"1749","name":"libsepol","version":"2.8-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1752":{"id":"1752","name":"libsmartcols1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1754":{"id":"1754","name":"libss2","version":"1.44.5-1+deb10u3","kind":"binary","source":{"id":"1689","name":"e2fsprogs","version":"1.44.5-1+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1756":{"id":"1756","name":"libstdc++6","version":"8.3.0-6","kind":"binary","source":{"id":"1649","name":"gcc-8","version":"8.3.0-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1758":{"id":"1758","name":"libsystemd0","version":"241-7~deb10u9","kind":"binary","source":{"id":"1757","name":"systemd","version":"241-7~deb10u9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1760":{"id":"1760","name":"libtasn1-6","version":"4.13-3+deb10u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1762":{"id":"1762","name":"libtinfo6","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1764":{"id":"1764","name":"libudev1","version":"241-7~deb10u9","kind":"binary","source":{"id":"1757","name":"systemd","version":"241-7~deb10u9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1766":{"id":"1766","name":"libunistring2","version":"0.9.10-1","kind":"binary","source":{"id":"1765","name":"libunistring","version":"0.9.10-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1768":{"id":"1768","name":"libuuid1","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1770":{"id":"1770","name":"libxtables12","version":"1.8.2-4","kind":"binary","source":{"id":"1769","name":"iptables","version":"1.8.2-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1772":{"id":"1772","name":"libzstd1","version":"1.3.8+dfsg-3+deb10u2","kind":"binary","source":{"id":"1771","name":"libzstd","version":"1.3.8+dfsg-3+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1774":{"id":"1774","name":"login","version":"1:4.5-1.1","kind":"binary","source":{"id":"1773","name":"shadow","version":"1:4.5-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1778":{"id":"1778","name":"mount","version":"2.33.1-0.1","kind":"binary","source":{"id":"1645","name":"util-linux","version":"2.33.1-0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1780":{"id":"1780","name":"ncurses-base","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1782":{"id":"1782","name":"ncurses-bin","version":"6.1+20181013-2+deb10u3","kind":"binary","source":{"id":"1725","name":"ncurses","version":"6.1+20181013-2+deb10u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1784":{"id":"1784","name":"passwd","version":"1:4.5-1.1","kind":"binary","source":{"id":"1773","name":"shadow","version":"1:4.5-1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1786":{"id":"1786","name":"perl-base","version":"5.28.1-6+deb10u1","kind":"binary","source":{"id":"1785","name":"perl","version":"5.28.1-6+deb10u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1790":{"id":"1790","name":"sysvinit-utils","version":"2.93-8","kind":"binary","source":{"id":"1789","name":"sysvinit","version":"2.93-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1794":{"id":"1794","name":"tzdata","version":"2021a-0+deb10u10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1796":{"id":"1796","name":"util-linux","version":"2.33.1-0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1798":{"id":"1798","name":"zlib1g","version":"1:1.2.11.dfsg-1+deb10u2","kind":"binary","source":{"id":"1797","name":"zlib","version":"1:1.2.11.dfsg-1+deb10u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"186":{"id":"186","name":"base-passwd","version":"3.5.46","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"224":{"id":"224","name":"libacl1","version":"2.2.53-4","kind":"binary","source":{"id":"223","name":"acl","version":"2.2.53-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"228":{"id":"228","name":"libattr1","version":"1:2.4.48-4","kind":"binary","source":{"id":"227","name":"attr","version":"1:2.4.48-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"242":{"id":"242","name":"libcap-ng0","version":"0.7.9-2","kind":"binary","source":{"id":"241","name":"libcap-ng","version":"0.7.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"254":{"id":"254","name":"libffi6","version":"3.2.1-9","kind":"binary","source":{"id":"253","name":"libffi","version":"3.2.1-9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"294":{"id":"294","name":"libpcre3","version":"2:8.39-12","kind":"binary","source":{"id":"293","name":"pcre3","version":"2:8.39-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"354":{"id":"354","name":"tar","version":"1.30+dfsg-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"736":{"id":"736","name":"mawk","version":"1.3.3-17+b3","kind":"binary","source":{"id":"735","name":"mawk (1.3.3-17)","version":"1.3.3-17+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"832":{"id":"832","name":"libmnl0","version":"1.0.4-2","kind":"binary","source":{"id":"831","name":"libmnl","version":"1.0.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"11":{"id":"11","did":"debian","name":"Debian GNU/Linux","version":"10 (buster)","version_code_name":"buster","version_id":"10","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 10 (buster)"}},"repository":{},"environments":{"1618":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1620":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1622":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1626":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1628":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1630":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1632":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1634":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1636":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1638":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1642":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1644":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1646":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1648":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1650":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1652":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1654":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1656":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1658":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1660":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1662":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1664":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1668":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1672":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1674":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1676":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1678":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1680":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1682":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1686":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1688":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1690":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1692":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1694":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1696":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1698":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1700":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1704":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1706":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1708":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1710":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1712":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1714":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1716":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1718":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1720":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1724":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1726":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1728":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1730":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1732":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1734":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1738":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1742":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1744":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1746":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1748":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1750":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1752":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1754":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1756":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1758":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1760":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1762":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1764":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1766":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1768":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1770":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1772":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1774":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1778":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1780":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1782":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1784":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1786":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1790":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1794":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1796":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"1798":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"186":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"224":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"228":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"242":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"254":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"294":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"354":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}],"832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:2ff1d7c41c74a25258bfa6f0b8adb0a727f84518f55f65ca845ebc747976c408","distribution_id":"11","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-8.index.json b/datastore/postgres/testdata/docker.io-library-debian-8.index.json
deleted file mode 100644
index 2c697a45a..000000000
--- a/datastore/postgres/testdata/docker.io-library-debian-8.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:3aaeab7a47777b5ca21fc6de40a6f9e7ee7ebb7302e7a025795eb9e73200c404","state":"IndexFinished","packages":{"1442":{"id":"1442","name":"libattr1","version":"1:2.4.47-2","kind":"binary","source":{"id":"1441","name":"attr","version":"1:2.4.47-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1800":{"id":"1800","name":"iputils-ping","version":"3:20121221-5+b2","kind":"binary","source":{"id":"1799","name":"iputils (3:20121221-5)","version":"3:20121221-5+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1802":{"id":"1802","name":"libpam-runtime","version":"1.1.8-3.1+deb8u2","kind":"binary","source":{"id":"1801","name":"pam","version":"1.1.8-3.1+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1804":{"id":"1804","name":"libncurses5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1806":{"id":"1806","name":"libaudit1","version":"1:2.4-1+b1","kind":"binary","source":{"id":"1805","name":"audit (1:2.4-1)","version":"1:2.4-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1808":{"id":"1808","name":"readline-common","version":"6.3-8","kind":"binary","source":{"id":"1807","name":"readline6","version":"6.3-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1810":{"id":"1810","name":"libtinfo5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1812":{"id":"1812","name":"perl-base","version":"5.20.2-3+deb8u12","kind":"binary","source":{"id":"1811","name":"perl","version":"5.20.2-3+deb8u12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1814":{"id":"1814","name":"libudev1","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1818":{"id":"1818","name":"libss2","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1820":{"id":"1820","name":"liblzma5","version":"5.1.1alpha+20120614-2+b3","kind":"binary","source":{"id":"1819","name":"xz-utils (5.1.1alpha+20120614-2)","version":"5.1.1alpha+20120614-2+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1822":{"id":"1822","name":"gcc-4.8-base","version":"4.8.4-1","kind":"binary","source":{"id":"1821","name":"gcc-4.8","version":"4.8.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1824":{"id":"1824","name":"libhogweed2","version":"2.7.1-5+deb8u2","kind":"binary","source":{"id":"1823","name":"nettle","version":"2.7.1-5+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1826":{"id":"1826","name":"libpam-modules-bin","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1828":{"id":"1828","name":"grep","version":"2.20-4.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1830":{"id":"1830","name":"base-passwd","version":"3.5.37","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1832":{"id":"1832","name":"e2fslibs","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1834":{"id":"1834","name":"debianutils","version":"4.4+b1","kind":"binary","source":{"id":"1833","name":"debianutils (4.4)","version":"4.4+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1836":{"id":"1836","name":"libgcrypt20","version":"1.6.3-2+deb8u8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1838":{"id":"1838","name":"libncursesw5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1840":{"id":"1840","name":"bash","version":"4.3-11+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1842":{"id":"1842","name":"libuuid1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1844":{"id":"1844","name":"libdb5.3","version":"5.3.28-9+deb8u1","kind":"binary","source":{"id":"1843","name":"db5.3","version":"5.3.28-9+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1846":{"id":"1846","name":"libcap2-bin","version":"1:2.24-8","kind":"binary","source":{"id":"1845","name":"libcap2","version":"1:2.24-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1848":{"id":"1848","name":"debconf","version":"1.5.56+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1850":{"id":"1850","name":"debconf-i18n","version":"1.5.56+deb8u1","kind":"binary","source":{"id":"1849","name":"debconf","version":"1.5.56+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1852":{"id":"1852","name":"zlib1g","version":"1:1.2.8.dfsg-2+deb8u1","kind":"binary","source":{"id":"1851","name":"zlib","version":"1:1.2.8.dfsg-2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1854":{"id":"1854","name":"hostname","version":"3.15","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1856":{"id":"1856","name":"multiarch-support","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1858":{"id":"1858","name":"tzdata","version":"2019c-0+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1860":{"id":"1860","name":"init","version":"1.22","kind":"binary","source":{"id":"1859","name":"init-system-helpers","version":"1.22","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1862":{"id":"1862","name":"systemd-sysv","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1864":{"id":"1864","name":"mawk","version":"1.3.3-17","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1866":{"id":"1866","name":"gzip","version":"1.6-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1868":{"id":"1868","name":"gpgv","version":"1.4.18-7+deb8u5","kind":"binary","source":{"id":"1867","name":"gnupg","version":"1.4.18-7+deb8u5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1870":{"id":"1870","name":"libcap2","version":"1:2.24-8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1872":{"id":"1872","name":"bsdutils","version":"1:2.25.2-6","kind":"binary","source":{"id":"1871","name":"util-linux (2.25.2-6)","version":"1:2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1874":{"id":"1874","name":"dash","version":"0.5.7-4+b1","kind":"binary","source":{"id":"1873","name":"dash (0.5.7-4)","version":"0.5.7-4+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1876":{"id":"1876","name":"gnupg","version":"1.4.18-7+deb8u5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1878":{"id":"1878","name":"mount","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1880":{"id":"1880","name":"libsystemd0","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1882":{"id":"1882","name":"libc6","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1884":{"id":"1884","name":"libprocps3","version":"2:3.3.9-9+deb8u1","kind":"binary","source":{"id":"1883","name":"procps","version":"2:3.3.9-9+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1886":{"id":"1886","name":"startpar","version":"0.59-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1888":{"id":"1888","name":"libpcre3","version":"2:8.35-3.3+deb8u4","kind":"binary","source":{"id":"1887","name":"pcre3","version":"2:8.35-3.3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1890":{"id":"1890","name":"libdevmapper1.02.1","version":"2:1.02.90-2.2+deb8u1","kind":"binary","source":{"id":"1889","name":"lvm2 (2.02.111-2.2+deb8u1)","version":"2:1.02.90-2.2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1892":{"id":"1892","name":"coreutils","version":"8.23-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1894":{"id":"1894","name":"iproute2","version":"3.16.0-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1896":{"id":"1896","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1898":{"id":"1898","name":"tar","version":"1.27.1-2+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1900":{"id":"1900","name":"libbz2-1.0","version":"1.0.6-7+deb8u2","kind":"binary","source":{"id":"1899","name":"bzip2","version":"1.0.6-7+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1902":{"id":"1902","name":"libkmod2","version":"18-3","kind":"binary","source":{"id":"1901","name":"kmod","version":"18-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1904":{"id":"1904","name":"libblkid1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1906":{"id":"1906","name":"libtasn1-6","version":"4.2-3+deb8u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1908":{"id":"1908","name":"lsb-base","version":"4.1+Debian13+nmu1","kind":"binary","source":{"id":"1907","name":"lsb","version":"4.1+Debian13+nmu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1910":{"id":"1910","name":"procps","version":"2:3.3.9-9+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1912":{"id":"1912","name":"libgpg-error0","version":"1.17-3","kind":"binary","source":{"id":"1911","name":"libgpg-error","version":"1.17-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1914":{"id":"1914","name":"base-files","version":"8+deb8u11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1916":{"id":"1916","name":"libgmp10","version":"2:6.0.0+dfsg-6","kind":"binary","source":{"id":"1915","name":"gmp","version":"2:6.0.0+dfsg-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1918":{"id":"1918","name":"sensible-utils","version":"0.0.9+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1920":{"id":"1920","name":"passwd","version":"1:4.2-3+deb8u4","kind":"binary","source":{"id":"1919","name":"shadow","version":"1:4.2-3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1922":{"id":"1922","name":"ncurses-base","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1924":{"id":"1924","name":"libc-bin","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1926":{"id":"1926","name":"libsemanage1","version":"2.3-1+b1","kind":"binary","source":{"id":"1925","name":"libsemanage (2.3-1)","version":"2.3-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1928":{"id":"1928","name":"udev","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1930":{"id":"1930","name":"libnettle4","version":"2.7.1-5+deb8u2","kind":"binary","source":{"id":"1823","name":"nettle","version":"2.7.1-5+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1932":{"id":"1932","name":"sysvinit-utils","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1934":{"id":"1934","name":"debian-archive-keyring","version":"2017.5~deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1936":{"id":"1936","name":"libtext-iconv-perl","version":"1.7-5+b2","kind":"binary","source":{"id":"1935","name":"libtext-iconv-perl (1.7-5)","version":"1.7-5+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1938":{"id":"1938","name":"libtext-wrapi18n-perl","version":"0.06-7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1940":{"id":"1940","name":"libsemanage-common","version":"2.3-1","kind":"binary","source":{"id":"1939","name":"libsemanage","version":"2.3-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1942":{"id":"1942","name":"libp11-kit0","version":"0.20.7-1","kind":"binary","source":{"id":"1941","name":"p11-kit","version":"0.20.7-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1944":{"id":"1944","name":"libgnutls-openssl27","version":"3.3.30-0+deb8u1","kind":"binary","source":{"id":"1943","name":"gnutls28","version":"3.3.30-0+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1946":{"id":"1946","name":"libdebconfclient0","version":"0.192","kind":"binary","source":{"id":"1945","name":"cdebconf","version":"0.192","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1948":{"id":"1948","name":"libgnutls-deb0-28","version":"3.3.30-0+deb8u1","kind":"binary","source":{"id":"1943","name":"gnutls28","version":"3.3.30-0+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1950":{"id":"1950","name":"libselinux1","version":"2.3-2","kind":"binary","source":{"id":"1949","name":"libselinux","version":"2.3-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1952":{"id":"1952","name":"systemd","version":"215-17+deb8u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1954":{"id":"1954","name":"dpkg","version":"1.17.27","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1956":{"id":"1956","name":"sysv-rc","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1958":{"id":"1958","name":"apt","version":"1.0.9.8.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1960":{"id":"1960","name":"liblocale-gettext-perl","version":"1.05-8+b1","kind":"binary","source":{"id":"1959","name":"liblocale-gettext-perl (1.05-8)","version":"1.05-8+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1962":{"id":"1962","name":"dmsetup","version":"2:1.02.90-2.2+deb8u1","kind":"binary","source":{"id":"1889","name":"lvm2 (2.02.111-2.2+deb8u1)","version":"2:1.02.90-2.2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1964":{"id":"1964","name":"diffutils","version":"1:3.3-1+b1","kind":"binary","source":{"id":"1963","name":"diffutils (1:3.3-1)","version":"1:3.3-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1966":{"id":"1966","name":"libpam-modules","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1968":{"id":"1968","name":"insserv","version":"1.14.0-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1970":{"id":"1970","name":"libstdc++6","version":"4.9.2-10+deb8u2","kind":"binary","source":{"id":"1969","name":"gcc-4.9","version":"4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1972":{"id":"1972","name":"gcc-4.9-base","version":"4.9.2-10+deb8u2","kind":"binary","source":{"id":"1969","name":"gcc-4.9","version":"4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1974":{"id":"1974","name":"libffi6","version":"3.1-2+deb8u1","kind":"binary","source":{"id":"1973","name":"libffi","version":"3.1-2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1976":{"id":"1976","name":"libaudit-common","version":"1:2.4-1","kind":"binary","source":{"id":"1975","name":"audit","version":"1:2.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1978":{"id":"1978","name":"libtext-charwidth-perl","version":"0.04-7+b3","kind":"binary","source":{"id":"1977","name":"libtext-charwidth-perl (0.04-7)","version":"0.04-7+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1980":{"id":"1980","name":"libcomerr2","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1982":{"id":"1982","name":"findutils","version":"4.4.2-9+b1","kind":"binary","source":{"id":"1981","name":"findutils (4.4.2-9)","version":"4.4.2-9+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1984":{"id":"1984","name":"libpam0g","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1986":{"id":"1986","name":"libmount1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1988":{"id":"1988","name":"login","version":"1:4.2-3+deb8u4","kind":"binary","source":{"id":"1919","name":"shadow","version":"1:4.2-3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1990":{"id":"1990","name":"adduser","version":"3.113+nmu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1992":{"id":"1992","name":"initscripts","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1994":{"id":"1994","name":"libacl1","version":"2.2.52-2","kind":"binary","source":{"id":"1993","name":"acl","version":"2.2.52-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1996":{"id":"1996","name":"ncurses-bin","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1998":{"id":"1998","name":"acl","version":"2.2.52-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2000":{"id":"2000","name":"libslang2","version":"2.3.0-2","kind":"binary","source":{"id":"1999","name":"slang2","version":"2.3.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2002":{"id":"2002","name":"libapt-pkg4.12","version":"1.0.9.8.6","kind":"binary","source":{"id":"2001","name":"apt","version":"1.0.9.8.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2004":{"id":"2004","name":"libusb-0.1-4","version":"2:0.1.12-25","kind":"binary","source":{"id":"2003","name":"libusb","version":"2:0.1.12-25","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2006":{"id":"2006","name":"libsepol1","version":"2.3-2","kind":"binary","source":{"id":"2005","name":"libsepol","version":"2.3-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2008":{"id":"2008","name":"libgcc1","version":"1:4.9.2-10+deb8u2","kind":"binary","source":{"id":"2007","name":"gcc-4.9 (4.9.2-10+deb8u2)","version":"1:4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2010":{"id":"2010","name":"libreadline6","version":"6.3-8+b3","kind":"binary","source":{"id":"2009","name":"readline6 (6.3-8)","version":"6.3-8+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2012":{"id":"2012","name":"util-linux","version":"2.25.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2014":{"id":"2014","name":"libustr-1.0-1","version":"1.0.4-3+b2","kind":"binary","source":{"id":"2013","name":"ustr (1.0.4-3)","version":"1.0.4-3+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2016":{"id":"2016","name":"sed","version":"4.2.2-4+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2018":{"id":"2018","name":"libsmartcols1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2020":{"id":"2020","name":"libcryptsetup4","version":"2:1.6.6-5","kind":"binary","source":{"id":"2019","name":"cryptsetup","version":"2:1.6.6-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"12":{"id":"12","did":"debian","name":"Debian GNU/Linux","version":"8 (jessie)","version_code_name":"jessie","version_id":"8","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 8 (jessie)"}},"repository":{},"environments":{"1442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1800":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1802":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1804":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1806":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1808":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1810":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1812":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1814":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1818":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1820":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1822":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1824":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1826":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1828":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1830":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1834":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1836":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1838":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1840":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1842":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1844":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1846":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1848":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1850":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1852":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1854":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1856":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1858":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1860":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1862":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1864":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1866":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1868":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1870":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1872":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1874":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1876":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1878":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1880":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1882":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1884":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1886":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1888":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1890":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1892":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1894":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1896":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1898":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1900":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1902":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1904":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1906":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1908":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1910":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1912":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1914":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1916":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1918":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1920":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1922":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1924":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1926":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1928":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1930":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1932":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1934":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1936":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1938":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1940":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1942":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1944":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1946":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1948":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1950":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1952":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1954":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1956":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1958":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1960":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1962":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1964":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1966":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1968":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1970":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1972":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1974":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1976":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1978":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1980":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1982":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1984":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1986":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1988":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1990":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1992":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1994":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1996":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1998":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2000":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2002":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2004":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2006":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2008":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2010":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2012":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2014":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2016":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2018":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2020":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-8.report.json b/datastore/postgres/testdata/docker.io-library-debian-8.report.json
deleted file mode 100644
index a3948b0fc..000000000
--- a/datastore/postgres/testdata/docker.io-library-debian-8.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:3aaeab7a47777b5ca21fc6de40a6f9e7ee7ebb7302e7a025795eb9e73200c404","packages":{"1442":{"id":"1442","name":"libattr1","version":"1:2.4.47-2","kind":"binary","source":{"id":"1441","name":"attr","version":"1:2.4.47-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1800":{"id":"1800","name":"iputils-ping","version":"3:20121221-5+b2","kind":"binary","source":{"id":"1799","name":"iputils (3:20121221-5)","version":"3:20121221-5+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1802":{"id":"1802","name":"libpam-runtime","version":"1.1.8-3.1+deb8u2","kind":"binary","source":{"id":"1801","name":"pam","version":"1.1.8-3.1+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1804":{"id":"1804","name":"libncurses5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1806":{"id":"1806","name":"libaudit1","version":"1:2.4-1+b1","kind":"binary","source":{"id":"1805","name":"audit (1:2.4-1)","version":"1:2.4-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1808":{"id":"1808","name":"readline-common","version":"6.3-8","kind":"binary","source":{"id":"1807","name":"readline6","version":"6.3-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1810":{"id":"1810","name":"libtinfo5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1812":{"id":"1812","name":"perl-base","version":"5.20.2-3+deb8u12","kind":"binary","source":{"id":"1811","name":"perl","version":"5.20.2-3+deb8u12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1814":{"id":"1814","name":"libudev1","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1818":{"id":"1818","name":"libss2","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1820":{"id":"1820","name":"liblzma5","version":"5.1.1alpha+20120614-2+b3","kind":"binary","source":{"id":"1819","name":"xz-utils (5.1.1alpha+20120614-2)","version":"5.1.1alpha+20120614-2+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1822":{"id":"1822","name":"gcc-4.8-base","version":"4.8.4-1","kind":"binary","source":{"id":"1821","name":"gcc-4.8","version":"4.8.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1824":{"id":"1824","name":"libhogweed2","version":"2.7.1-5+deb8u2","kind":"binary","source":{"id":"1823","name":"nettle","version":"2.7.1-5+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1826":{"id":"1826","name":"libpam-modules-bin","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1828":{"id":"1828","name":"grep","version":"2.20-4.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1830":{"id":"1830","name":"base-passwd","version":"3.5.37","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1832":{"id":"1832","name":"e2fslibs","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1834":{"id":"1834","name":"debianutils","version":"4.4+b1","kind":"binary","source":{"id":"1833","name":"debianutils (4.4)","version":"4.4+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1836":{"id":"1836","name":"libgcrypt20","version":"1.6.3-2+deb8u8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1838":{"id":"1838","name":"libncursesw5","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1840":{"id":"1840","name":"bash","version":"4.3-11+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1842":{"id":"1842","name":"libuuid1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1844":{"id":"1844","name":"libdb5.3","version":"5.3.28-9+deb8u1","kind":"binary","source":{"id":"1843","name":"db5.3","version":"5.3.28-9+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1846":{"id":"1846","name":"libcap2-bin","version":"1:2.24-8","kind":"binary","source":{"id":"1845","name":"libcap2","version":"1:2.24-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1848":{"id":"1848","name":"debconf","version":"1.5.56+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1850":{"id":"1850","name":"debconf-i18n","version":"1.5.56+deb8u1","kind":"binary","source":{"id":"1849","name":"debconf","version":"1.5.56+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1852":{"id":"1852","name":"zlib1g","version":"1:1.2.8.dfsg-2+deb8u1","kind":"binary","source":{"id":"1851","name":"zlib","version":"1:1.2.8.dfsg-2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1854":{"id":"1854","name":"hostname","version":"3.15","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1856":{"id":"1856","name":"multiarch-support","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1858":{"id":"1858","name":"tzdata","version":"2019c-0+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1860":{"id":"1860","name":"init","version":"1.22","kind":"binary","source":{"id":"1859","name":"init-system-helpers","version":"1.22","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1862":{"id":"1862","name":"systemd-sysv","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1864":{"id":"1864","name":"mawk","version":"1.3.3-17","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1866":{"id":"1866","name":"gzip","version":"1.6-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1868":{"id":"1868","name":"gpgv","version":"1.4.18-7+deb8u5","kind":"binary","source":{"id":"1867","name":"gnupg","version":"1.4.18-7+deb8u5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1870":{"id":"1870","name":"libcap2","version":"1:2.24-8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1872":{"id":"1872","name":"bsdutils","version":"1:2.25.2-6","kind":"binary","source":{"id":"1871","name":"util-linux (2.25.2-6)","version":"1:2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1874":{"id":"1874","name":"dash","version":"0.5.7-4+b1","kind":"binary","source":{"id":"1873","name":"dash (0.5.7-4)","version":"0.5.7-4+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1876":{"id":"1876","name":"gnupg","version":"1.4.18-7+deb8u5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1878":{"id":"1878","name":"mount","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1880":{"id":"1880","name":"libsystemd0","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1882":{"id":"1882","name":"libc6","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1884":{"id":"1884","name":"libprocps3","version":"2:3.3.9-9+deb8u1","kind":"binary","source":{"id":"1883","name":"procps","version":"2:3.3.9-9+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1886":{"id":"1886","name":"startpar","version":"0.59-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1888":{"id":"1888","name":"libpcre3","version":"2:8.35-3.3+deb8u4","kind":"binary","source":{"id":"1887","name":"pcre3","version":"2:8.35-3.3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1890":{"id":"1890","name":"libdevmapper1.02.1","version":"2:1.02.90-2.2+deb8u1","kind":"binary","source":{"id":"1889","name":"lvm2 (2.02.111-2.2+deb8u1)","version":"2:1.02.90-2.2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1892":{"id":"1892","name":"coreutils","version":"8.23-4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1894":{"id":"1894","name":"iproute2","version":"3.16.0-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1896":{"id":"1896","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1898":{"id":"1898","name":"tar","version":"1.27.1-2+deb8u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1900":{"id":"1900","name":"libbz2-1.0","version":"1.0.6-7+deb8u2","kind":"binary","source":{"id":"1899","name":"bzip2","version":"1.0.6-7+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1902":{"id":"1902","name":"libkmod2","version":"18-3","kind":"binary","source":{"id":"1901","name":"kmod","version":"18-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1904":{"id":"1904","name":"libblkid1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1906":{"id":"1906","name":"libtasn1-6","version":"4.2-3+deb8u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1908":{"id":"1908","name":"lsb-base","version":"4.1+Debian13+nmu1","kind":"binary","source":{"id":"1907","name":"lsb","version":"4.1+Debian13+nmu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1910":{"id":"1910","name":"procps","version":"2:3.3.9-9+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1912":{"id":"1912","name":"libgpg-error0","version":"1.17-3","kind":"binary","source":{"id":"1911","name":"libgpg-error","version":"1.17-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1914":{"id":"1914","name":"base-files","version":"8+deb8u11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1916":{"id":"1916","name":"libgmp10","version":"2:6.0.0+dfsg-6","kind":"binary","source":{"id":"1915","name":"gmp","version":"2:6.0.0+dfsg-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1918":{"id":"1918","name":"sensible-utils","version":"0.0.9+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1920":{"id":"1920","name":"passwd","version":"1:4.2-3+deb8u4","kind":"binary","source":{"id":"1919","name":"shadow","version":"1:4.2-3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1922":{"id":"1922","name":"ncurses-base","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1924":{"id":"1924","name":"libc-bin","version":"2.19-18+deb8u10","kind":"binary","source":{"id":"1855","name":"glibc","version":"2.19-18+deb8u10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1926":{"id":"1926","name":"libsemanage1","version":"2.3-1+b1","kind":"binary","source":{"id":"1925","name":"libsemanage (2.3-1)","version":"2.3-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1928":{"id":"1928","name":"udev","version":"215-17+deb8u13","kind":"binary","source":{"id":"1813","name":"systemd","version":"215-17+deb8u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1930":{"id":"1930","name":"libnettle4","version":"2.7.1-5+deb8u2","kind":"binary","source":{"id":"1823","name":"nettle","version":"2.7.1-5+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1932":{"id":"1932","name":"sysvinit-utils","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1934":{"id":"1934","name":"debian-archive-keyring","version":"2017.5~deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1936":{"id":"1936","name":"libtext-iconv-perl","version":"1.7-5+b2","kind":"binary","source":{"id":"1935","name":"libtext-iconv-perl (1.7-5)","version":"1.7-5+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1938":{"id":"1938","name":"libtext-wrapi18n-perl","version":"0.06-7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1940":{"id":"1940","name":"libsemanage-common","version":"2.3-1","kind":"binary","source":{"id":"1939","name":"libsemanage","version":"2.3-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1942":{"id":"1942","name":"libp11-kit0","version":"0.20.7-1","kind":"binary","source":{"id":"1941","name":"p11-kit","version":"0.20.7-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1944":{"id":"1944","name":"libgnutls-openssl27","version":"3.3.30-0+deb8u1","kind":"binary","source":{"id":"1943","name":"gnutls28","version":"3.3.30-0+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1946":{"id":"1946","name":"libdebconfclient0","version":"0.192","kind":"binary","source":{"id":"1945","name":"cdebconf","version":"0.192","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1948":{"id":"1948","name":"libgnutls-deb0-28","version":"3.3.30-0+deb8u1","kind":"binary","source":{"id":"1943","name":"gnutls28","version":"3.3.30-0+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1950":{"id":"1950","name":"libselinux1","version":"2.3-2","kind":"binary","source":{"id":"1949","name":"libselinux","version":"2.3-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1952":{"id":"1952","name":"systemd","version":"215-17+deb8u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1954":{"id":"1954","name":"dpkg","version":"1.17.27","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1956":{"id":"1956","name":"sysv-rc","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1958":{"id":"1958","name":"apt","version":"1.0.9.8.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1960":{"id":"1960","name":"liblocale-gettext-perl","version":"1.05-8+b1","kind":"binary","source":{"id":"1959","name":"liblocale-gettext-perl (1.05-8)","version":"1.05-8+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1962":{"id":"1962","name":"dmsetup","version":"2:1.02.90-2.2+deb8u1","kind":"binary","source":{"id":"1889","name":"lvm2 (2.02.111-2.2+deb8u1)","version":"2:1.02.90-2.2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1964":{"id":"1964","name":"diffutils","version":"1:3.3-1+b1","kind":"binary","source":{"id":"1963","name":"diffutils (1:3.3-1)","version":"1:3.3-1+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1966":{"id":"1966","name":"libpam-modules","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1968":{"id":"1968","name":"insserv","version":"1.14.0-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1970":{"id":"1970","name":"libstdc++6","version":"4.9.2-10+deb8u2","kind":"binary","source":{"id":"1969","name":"gcc-4.9","version":"4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1972":{"id":"1972","name":"gcc-4.9-base","version":"4.9.2-10+deb8u2","kind":"binary","source":{"id":"1969","name":"gcc-4.9","version":"4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1974":{"id":"1974","name":"libffi6","version":"3.1-2+deb8u1","kind":"binary","source":{"id":"1973","name":"libffi","version":"3.1-2+deb8u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1976":{"id":"1976","name":"libaudit-common","version":"1:2.4-1","kind":"binary","source":{"id":"1975","name":"audit","version":"1:2.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1978":{"id":"1978","name":"libtext-charwidth-perl","version":"0.04-7+b3","kind":"binary","source":{"id":"1977","name":"libtext-charwidth-perl (0.04-7)","version":"0.04-7+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1980":{"id":"1980","name":"libcomerr2","version":"1.42.12-2+deb8u2","kind":"binary","source":{"id":"1817","name":"e2fsprogs","version":"1.42.12-2+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1982":{"id":"1982","name":"findutils","version":"4.4.2-9+b1","kind":"binary","source":{"id":"1981","name":"findutils (4.4.2-9)","version":"4.4.2-9+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1984":{"id":"1984","name":"libpam0g","version":"1.1.8-3.1+deb8u2+b1","kind":"binary","source":{"id":"1825","name":"pam (1.1.8-3.1+deb8u2)","version":"1.1.8-3.1+deb8u2+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1986":{"id":"1986","name":"libmount1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1988":{"id":"1988","name":"login","version":"1:4.2-3+deb8u4","kind":"binary","source":{"id":"1919","name":"shadow","version":"1:4.2-3+deb8u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1990":{"id":"1990","name":"adduser","version":"3.113+nmu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1992":{"id":"1992","name":"initscripts","version":"2.88dsf-59","kind":"binary","source":{"id":"1931","name":"sysvinit","version":"2.88dsf-59","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1994":{"id":"1994","name":"libacl1","version":"2.2.52-2","kind":"binary","source":{"id":"1993","name":"acl","version":"2.2.52-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1996":{"id":"1996","name":"ncurses-bin","version":"5.9+20140913-1+deb8u3","kind":"binary","source":{"id":"1803","name":"ncurses","version":"5.9+20140913-1+deb8u3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1998":{"id":"1998","name":"acl","version":"2.2.52-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2000":{"id":"2000","name":"libslang2","version":"2.3.0-2","kind":"binary","source":{"id":"1999","name":"slang2","version":"2.3.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2002":{"id":"2002","name":"libapt-pkg4.12","version":"1.0.9.8.6","kind":"binary","source":{"id":"2001","name":"apt","version":"1.0.9.8.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2004":{"id":"2004","name":"libusb-0.1-4","version":"2:0.1.12-25","kind":"binary","source":{"id":"2003","name":"libusb","version":"2:0.1.12-25","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2006":{"id":"2006","name":"libsepol1","version":"2.3-2","kind":"binary","source":{"id":"2005","name":"libsepol","version":"2.3-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2008":{"id":"2008","name":"libgcc1","version":"1:4.9.2-10+deb8u2","kind":"binary","source":{"id":"2007","name":"gcc-4.9 (4.9.2-10+deb8u2)","version":"1:4.9.2-10+deb8u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2010":{"id":"2010","name":"libreadline6","version":"6.3-8+b3","kind":"binary","source":{"id":"2009","name":"readline6 (6.3-8)","version":"6.3-8+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2012":{"id":"2012","name":"util-linux","version":"2.25.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2014":{"id":"2014","name":"libustr-1.0-1","version":"1.0.4-3+b2","kind":"binary","source":{"id":"2013","name":"ustr (1.0.4-3)","version":"1.0.4-3+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2016":{"id":"2016","name":"sed","version":"4.2.2-4+deb8u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2018":{"id":"2018","name":"libsmartcols1","version":"2.25.2-6","kind":"binary","source":{"id":"1841","name":"util-linux","version":"2.25.2-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2020":{"id":"2020","name":"libcryptsetup4","version":"2:1.6.6-5","kind":"binary","source":{"id":"2019","name":"cryptsetup","version":"2:1.6.6-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"12":{"id":"12","did":"debian","name":"Debian GNU/Linux","version":"8 (jessie)","version_code_name":"jessie","version_id":"8","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 8 (jessie)"}},"repository":{},"environments":{"1442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1800":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1802":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1804":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1806":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1808":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1810":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1812":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1814":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1818":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1820":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1822":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1824":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1826":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1828":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1830":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1834":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1836":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1838":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1840":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1842":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1844":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1846":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1848":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1850":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1852":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1854":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1856":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1858":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1860":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1862":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1864":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1866":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1868":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1870":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1872":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1874":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1876":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1878":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1880":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1882":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1884":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1886":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1888":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1890":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1892":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1894":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1896":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1898":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1900":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1902":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1904":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1906":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1908":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1910":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1912":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1914":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1916":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1918":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1920":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1922":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1924":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1926":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1928":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1930":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1932":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1934":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1936":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1938":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1940":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1942":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1944":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1946":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1948":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1950":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1952":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1954":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1956":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1958":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1960":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1962":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1964":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1966":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1968":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1970":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1972":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1974":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1976":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1978":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1980":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1982":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1984":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1986":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1988":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1990":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1992":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1994":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1996":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"1998":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2000":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2002":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2004":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2006":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2008":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2010":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2012":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2014":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2016":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2018":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}],"2020":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:b82b9923b08dfd4c2a83d1669b67a3a0c12f2d17fc989315c05f201eabc33b52","distribution_id":"12","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-9.index.json b/datastore/postgres/testdata/docker.io-library-debian-9.index.json
deleted file mode 100644
index 6c914f50b..000000000
--- a/datastore/postgres/testdata/docker.io-library-debian-9.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:662c05203bab4c59568d24689fa5c3955439360a35c483178598d226b9a5ad10","state":"IndexFinished","packages":{"682":{"id":"682","name":"iputils-ping","version":"3:20161105-1","kind":"binary","source":{"id":"681","name":"iputils","version":"3:20161105-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"684":{"id":"684","name":"libpam-runtime","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"686":{"id":"686","name":"libapt-pkg5.0","version":"1.4.11","kind":"binary","source":{"id":"685","name":"apt","version":"1.4.11","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"688":{"id":"688","name":"libaudit1","version":"1:2.6.7-2","kind":"binary","source":{"id":"687","name":"audit","version":"1:2.6.7-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"690":{"id":"690","name":"libtinfo5","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"692":{"id":"692","name":"perl-base","version":"5.24.1-3+deb9u7","kind":"binary","source":{"id":"691","name":"perl","version":"5.24.1-3+deb9u7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"694":{"id":"694","name":"libudev1","version":"232-25+deb9u13","kind":"binary","source":{"id":"693","name":"systemd","version":"232-25+deb9u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"696":{"id":"696","name":"libnettle6","version":"3.3-1+deb9u1","kind":"binary","source":{"id":"695","name":"nettle","version":"3.3-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"698":{"id":"698","name":"libattr1","version":"1:2.4.47-2+b2","kind":"binary","source":{"id":"697","name":"attr (1:2.4.47-2)","version":"1:2.4.47-2+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"700":{"id":"700","name":"libss2","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"702":{"id":"702","name":"liblzma5","version":"5.2.2-1.2+deb9u1","kind":"binary","source":{"id":"701","name":"xz-utils","version":"5.2.2-1.2+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"704":{"id":"704","name":"libpam-modules-bin","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"706":{"id":"706","name":"grep","version":"2.27-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"708":{"id":"708","name":"base-passwd","version":"3.5.43","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"710":{"id":"710","name":"e2fslibs","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"712":{"id":"712","name":"liblz4-1","version":"0.0~r131-2+deb9u1","kind":"binary","source":{"id":"711","name":"lz4","version":"0.0~r131-2+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"714":{"id":"714","name":"debianutils","version":"4.8.1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"716":{"id":"716","name":"libgcrypt20","version":"1.7.6-2+deb9u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"718":{"id":"718","name":"libncursesw5","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"720":{"id":"720","name":"bash","version":"4.4-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"722":{"id":"722","name":"libuuid1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"724":{"id":"724","name":"libdb5.3","version":"5.3.28-12+deb9u1","kind":"binary","source":{"id":"723","name":"db5.3","version":"5.3.28-12+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"726":{"id":"726","name":"debconf","version":"1.5.61","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"728":{"id":"728","name":"zlib1g","version":"1:1.2.8.dfsg-5+deb9u1","kind":"binary","source":{"id":"727","name":"zlib","version":"1:1.2.8.dfsg-5+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"730":{"id":"730","name":"hostname","version":"3.18+b1","kind":"binary","source":{"id":"729","name":"hostname (3.18)","version":"3.18+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"732":{"id":"732","name":"multiarch-support","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"734":{"id":"734","name":"tzdata","version":"2021a-0+deb9u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"736":{"id":"736","name":"mawk","version":"1.3.3-17+b3","kind":"binary","source":{"id":"735","name":"mawk (1.3.3-17)","version":"1.3.3-17+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"738":{"id":"738","name":"gzip","version":"1.6-5+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"740":{"id":"740","name":"libelf1","version":"0.168-1+deb9u1","kind":"binary","source":{"id":"739","name":"elfutils","version":"0.168-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"742":{"id":"742","name":"gpgv","version":"2.1.18-8~deb9u4","kind":"binary","source":{"id":"741","name":"gnupg2","version":"2.1.18-8~deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"744":{"id":"744","name":"libcap2","version":"1:2.25-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"746":{"id":"746","name":"bsdutils","version":"1:2.29.2-1+deb9u1","kind":"binary","source":{"id":"745","name":"util-linux (2.29.2-1+deb9u1)","version":"1:2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"748":{"id":"748","name":"dash","version":"0.5.8-2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"750":{"id":"750","name":"gcc-6-base","version":"6.3.0-18+deb9u1","kind":"binary","source":{"id":"749","name":"gcc-6","version":"6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"752":{"id":"752","name":"mount","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"754":{"id":"754","name":"libsystemd0","version":"232-25+deb9u13","kind":"binary","source":{"id":"693","name":"systemd","version":"232-25+deb9u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"756":{"id":"756","name":"libc6","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"758":{"id":"758","name":"libfdisk1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"760":{"id":"760","name":"libpcre3","version":"2:8.39-3","kind":"binary","source":{"id":"759","name":"pcre3","version":"2:8.39-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"762":{"id":"762","name":"coreutils","version":"8.26-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"764":{"id":"764","name":"iproute2","version":"4.9.0-1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"766":{"id":"766","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"768":{"id":"768","name":"tar","version":"1.29b-1.1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"770":{"id":"770","name":"libbz2-1.0","version":"1.0.6-8.1","kind":"binary","source":{"id":"769","name":"bzip2","version":"1.0.6-8.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"772":{"id":"772","name":"libblkid1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"774":{"id":"774","name":"lsb-base","version":"9.20161125","kind":"binary","source":{"id":"773","name":"lsb","version":"9.20161125","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"776":{"id":"776","name":"libgpg-error0","version":"1.26-2","kind":"binary","source":{"id":"775","name":"libgpg-error","version":"1.26-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"778":{"id":"778","name":"base-files","version":"9.9+deb9u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"780":{"id":"780","name":"sensible-utils","version":"0.0.9+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"782":{"id":"782","name":"passwd","version":"1:4.4-4.1+deb9u1","kind":"binary","source":{"id":"781","name":"shadow","version":"1:4.4-4.1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"784":{"id":"784","name":"init-system-helpers","version":"1.48","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"786":{"id":"786","name":"ncurses-base","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"788":{"id":"788","name":"libc-bin","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"790":{"id":"790","name":"libsemanage1","version":"2.6-2","kind":"binary","source":{"id":"789","name":"libsemanage","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"792":{"id":"792","name":"sysvinit-utils","version":"2.88dsf-59.9","kind":"binary","source":{"id":"791","name":"sysvinit","version":"2.88dsf-59.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"794":{"id":"794","name":"debian-archive-keyring","version":"2017.5+deb9u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"796":{"id":"796","name":"libsemanage-common","version":"2.6-2","kind":"binary","source":{"id":"789","name":"libsemanage","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"798":{"id":"798","name":"libdebconfclient0","version":"0.227","kind":"binary","source":{"id":"797","name":"cdebconf","version":"0.227","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"800":{"id":"800","name":"libselinux1","version":"2.6-3+b3","kind":"binary","source":{"id":"799","name":"libselinux (2.6-3)","version":"2.6-3+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"802":{"id":"802","name":"dpkg","version":"1.18.26","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"804":{"id":"804","name":"apt","version":"1.4.11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"806":{"id":"806","name":"diffutils","version":"1:3.5-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"808":{"id":"808","name":"libpam-modules","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"810":{"id":"810","name":"libstdc++6","version":"6.3.0-18+deb9u1","kind":"binary","source":{"id":"749","name":"gcc-6","version":"6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"812":{"id":"812","name":"libaudit-common","version":"1:2.6.7-2","kind":"binary","source":{"id":"687","name":"audit","version":"1:2.6.7-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"814":{"id":"814","name":"libcomerr2","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"816":{"id":"816","name":"findutils","version":"4.6.0+git+20161106-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"818":{"id":"818","name":"libpam0g","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"820":{"id":"820","name":"libcap-ng0","version":"0.7.7-3+b1","kind":"binary","source":{"id":"819","name":"libcap-ng (0.7.7-3)","version":"0.7.7-3+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"822":{"id":"822","name":"libmount1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"824":{"id":"824","name":"login","version":"1:4.4-4.1+deb9u1","kind":"binary","source":{"id":"781","name":"shadow","version":"1:4.4-4.1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"826":{"id":"826","name":"adduser","version":"3.115","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"828":{"id":"828","name":"libacl1","version":"2.2.52-3+b1","kind":"binary","source":{"id":"827","name":"acl (2.2.52-3)","version":"2.2.52-3+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"830":{"id":"830","name":"ncurses-bin","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"832":{"id":"832","name":"libmnl0","version":"1.0.4-2","kind":"binary","source":{"id":"831","name":"libmnl","version":"1.0.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"834":{"id":"834","name":"libsepol1","version":"2.6-2","kind":"binary","source":{"id":"833","name":"libsepol","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"836":{"id":"836","name":"libidn11","version":"1.33-1+deb9u1","kind":"binary","source":{"id":"835","name":"libidn","version":"1.33-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"838":{"id":"838","name":"libgcc1","version":"1:6.3.0-18+deb9u1","kind":"binary","source":{"id":"837","name":"gcc-6 (6.3.0-18+deb9u1)","version":"1:6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"840":{"id":"840","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"842":{"id":"842","name":"libustr-1.0-1","version":"1.0.4-6","kind":"binary","source":{"id":"841","name":"ustr","version":"1.0.4-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"844":{"id":"844","name":"sed","version":"4.4-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"846":{"id":"846","name":"libsmartcols1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"5":{"id":"5","did":"debian","name":"Debian GNU/Linux","version":"9 (stretch)","version_code_name":"stretch","version_id":"9","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 9 (stretch)"}},"repository":{},"environments":{"682":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"684":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"686":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"688":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"690":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"692":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"694":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"696":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"698":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"700":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"702":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"704":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"706":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"708":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"710":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"712":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"714":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"716":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"718":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"720":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"722":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"724":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"726":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"728":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"730":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"732":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"734":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"738":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"740":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"742":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"744":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"746":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"748":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"750":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"752":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"754":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"756":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"758":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"760":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"762":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"764":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"766":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"768":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"770":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"772":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"774":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"776":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"778":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"780":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"782":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"784":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"786":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"788":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"790":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"792":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"794":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"796":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"798":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"800":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"802":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"804":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"806":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"808":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"810":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"812":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"814":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"816":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"818":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"820":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"822":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"824":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"826":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"828":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"830":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"834":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"836":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"838":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"840":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"842":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"844":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"846":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-debian-9.report.json b/datastore/postgres/testdata/docker.io-library-debian-9.report.json
deleted file mode 100644
index 3ed2ec2dc..000000000
--- a/datastore/postgres/testdata/docker.io-library-debian-9.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:662c05203bab4c59568d24689fa5c3955439360a35c483178598d226b9a5ad10","packages":{"682":{"id":"682","name":"iputils-ping","version":"3:20161105-1","kind":"binary","source":{"id":"681","name":"iputils","version":"3:20161105-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"684":{"id":"684","name":"libpam-runtime","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"686":{"id":"686","name":"libapt-pkg5.0","version":"1.4.11","kind":"binary","source":{"id":"685","name":"apt","version":"1.4.11","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"688":{"id":"688","name":"libaudit1","version":"1:2.6.7-2","kind":"binary","source":{"id":"687","name":"audit","version":"1:2.6.7-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"690":{"id":"690","name":"libtinfo5","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"692":{"id":"692","name":"perl-base","version":"5.24.1-3+deb9u7","kind":"binary","source":{"id":"691","name":"perl","version":"5.24.1-3+deb9u7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"694":{"id":"694","name":"libudev1","version":"232-25+deb9u13","kind":"binary","source":{"id":"693","name":"systemd","version":"232-25+deb9u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"696":{"id":"696","name":"libnettle6","version":"3.3-1+deb9u1","kind":"binary","source":{"id":"695","name":"nettle","version":"3.3-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"698":{"id":"698","name":"libattr1","version":"1:2.4.47-2+b2","kind":"binary","source":{"id":"697","name":"attr (1:2.4.47-2)","version":"1:2.4.47-2+b2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"700":{"id":"700","name":"libss2","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"702":{"id":"702","name":"liblzma5","version":"5.2.2-1.2+deb9u1","kind":"binary","source":{"id":"701","name":"xz-utils","version":"5.2.2-1.2+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"704":{"id":"704","name":"libpam-modules-bin","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"706":{"id":"706","name":"grep","version":"2.27-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"708":{"id":"708","name":"base-passwd","version":"3.5.43","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"710":{"id":"710","name":"e2fslibs","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"712":{"id":"712","name":"liblz4-1","version":"0.0~r131-2+deb9u1","kind":"binary","source":{"id":"711","name":"lz4","version":"0.0~r131-2+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"714":{"id":"714","name":"debianutils","version":"4.8.1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"716":{"id":"716","name":"libgcrypt20","version":"1.7.6-2+deb9u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"718":{"id":"718","name":"libncursesw5","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"720":{"id":"720","name":"bash","version":"4.4-5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"722":{"id":"722","name":"libuuid1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"724":{"id":"724","name":"libdb5.3","version":"5.3.28-12+deb9u1","kind":"binary","source":{"id":"723","name":"db5.3","version":"5.3.28-12+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"726":{"id":"726","name":"debconf","version":"1.5.61","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"728":{"id":"728","name":"zlib1g","version":"1:1.2.8.dfsg-5+deb9u1","kind":"binary","source":{"id":"727","name":"zlib","version":"1:1.2.8.dfsg-5+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"730":{"id":"730","name":"hostname","version":"3.18+b1","kind":"binary","source":{"id":"729","name":"hostname (3.18)","version":"3.18+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"732":{"id":"732","name":"multiarch-support","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"734":{"id":"734","name":"tzdata","version":"2021a-0+deb9u4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"736":{"id":"736","name":"mawk","version":"1.3.3-17+b3","kind":"binary","source":{"id":"735","name":"mawk (1.3.3-17)","version":"1.3.3-17+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"738":{"id":"738","name":"gzip","version":"1.6-5+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"740":{"id":"740","name":"libelf1","version":"0.168-1+deb9u1","kind":"binary","source":{"id":"739","name":"elfutils","version":"0.168-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"742":{"id":"742","name":"gpgv","version":"2.1.18-8~deb9u4","kind":"binary","source":{"id":"741","name":"gnupg2","version":"2.1.18-8~deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"744":{"id":"744","name":"libcap2","version":"1:2.25-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"746":{"id":"746","name":"bsdutils","version":"1:2.29.2-1+deb9u1","kind":"binary","source":{"id":"745","name":"util-linux (2.29.2-1+deb9u1)","version":"1:2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"748":{"id":"748","name":"dash","version":"0.5.8-2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"750":{"id":"750","name":"gcc-6-base","version":"6.3.0-18+deb9u1","kind":"binary","source":{"id":"749","name":"gcc-6","version":"6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"752":{"id":"752","name":"mount","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"754":{"id":"754","name":"libsystemd0","version":"232-25+deb9u13","kind":"binary","source":{"id":"693","name":"systemd","version":"232-25+deb9u13","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"756":{"id":"756","name":"libc6","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"758":{"id":"758","name":"libfdisk1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"760":{"id":"760","name":"libpcre3","version":"2:8.39-3","kind":"binary","source":{"id":"759","name":"pcre3","version":"2:8.39-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"762":{"id":"762","name":"coreutils","version":"8.26-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"764":{"id":"764","name":"iproute2","version":"4.9.0-1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"766":{"id":"766","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"768":{"id":"768","name":"tar","version":"1.29b-1.1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"770":{"id":"770","name":"libbz2-1.0","version":"1.0.6-8.1","kind":"binary","source":{"id":"769","name":"bzip2","version":"1.0.6-8.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"772":{"id":"772","name":"libblkid1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"774":{"id":"774","name":"lsb-base","version":"9.20161125","kind":"binary","source":{"id":"773","name":"lsb","version":"9.20161125","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"776":{"id":"776","name":"libgpg-error0","version":"1.26-2","kind":"binary","source":{"id":"775","name":"libgpg-error","version":"1.26-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"778":{"id":"778","name":"base-files","version":"9.9+deb9u13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"780":{"id":"780","name":"sensible-utils","version":"0.0.9+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"782":{"id":"782","name":"passwd","version":"1:4.4-4.1+deb9u1","kind":"binary","source":{"id":"781","name":"shadow","version":"1:4.4-4.1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"784":{"id":"784","name":"init-system-helpers","version":"1.48","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"786":{"id":"786","name":"ncurses-base","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"788":{"id":"788","name":"libc-bin","version":"2.24-11+deb9u4","kind":"binary","source":{"id":"731","name":"glibc","version":"2.24-11+deb9u4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"790":{"id":"790","name":"libsemanage1","version":"2.6-2","kind":"binary","source":{"id":"789","name":"libsemanage","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"792":{"id":"792","name":"sysvinit-utils","version":"2.88dsf-59.9","kind":"binary","source":{"id":"791","name":"sysvinit","version":"2.88dsf-59.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"794":{"id":"794","name":"debian-archive-keyring","version":"2017.5+deb9u2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"796":{"id":"796","name":"libsemanage-common","version":"2.6-2","kind":"binary","source":{"id":"789","name":"libsemanage","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"798":{"id":"798","name":"libdebconfclient0","version":"0.227","kind":"binary","source":{"id":"797","name":"cdebconf","version":"0.227","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"800":{"id":"800","name":"libselinux1","version":"2.6-3+b3","kind":"binary","source":{"id":"799","name":"libselinux (2.6-3)","version":"2.6-3+b3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"802":{"id":"802","name":"dpkg","version":"1.18.26","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"804":{"id":"804","name":"apt","version":"1.4.11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"806":{"id":"806","name":"diffutils","version":"1:3.5-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"808":{"id":"808","name":"libpam-modules","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"810":{"id":"810","name":"libstdc++6","version":"6.3.0-18+deb9u1","kind":"binary","source":{"id":"749","name":"gcc-6","version":"6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"812":{"id":"812","name":"libaudit-common","version":"1:2.6.7-2","kind":"binary","source":{"id":"687","name":"audit","version":"1:2.6.7-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"814":{"id":"814","name":"libcomerr2","version":"1.43.4-2+deb9u2","kind":"binary","source":{"id":"699","name":"e2fsprogs","version":"1.43.4-2+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"816":{"id":"816","name":"findutils","version":"4.6.0+git+20161106-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"818":{"id":"818","name":"libpam0g","version":"1.1.8-3.6","kind":"binary","source":{"id":"683","name":"pam","version":"1.1.8-3.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"820":{"id":"820","name":"libcap-ng0","version":"0.7.7-3+b1","kind":"binary","source":{"id":"819","name":"libcap-ng (0.7.7-3)","version":"0.7.7-3+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"822":{"id":"822","name":"libmount1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"824":{"id":"824","name":"login","version":"1:4.4-4.1+deb9u1","kind":"binary","source":{"id":"781","name":"shadow","version":"1:4.4-4.1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"826":{"id":"826","name":"adduser","version":"3.115","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"828":{"id":"828","name":"libacl1","version":"2.2.52-3+b1","kind":"binary","source":{"id":"827","name":"acl (2.2.52-3)","version":"2.2.52-3+b1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"830":{"id":"830","name":"ncurses-bin","version":"6.0+20161126-1+deb9u2","kind":"binary","source":{"id":"689","name":"ncurses","version":"6.0+20161126-1+deb9u2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"832":{"id":"832","name":"libmnl0","version":"1.0.4-2","kind":"binary","source":{"id":"831","name":"libmnl","version":"1.0.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"834":{"id":"834","name":"libsepol1","version":"2.6-2","kind":"binary","source":{"id":"833","name":"libsepol","version":"2.6-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"836":{"id":"836","name":"libidn11","version":"1.33-1+deb9u1","kind":"binary","source":{"id":"835","name":"libidn","version":"1.33-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"838":{"id":"838","name":"libgcc1","version":"1:6.3.0-18+deb9u1","kind":"binary","source":{"id":"837","name":"gcc-6 (6.3.0-18+deb9u1)","version":"1:6.3.0-18+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"840":{"id":"840","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"842":{"id":"842","name":"libustr-1.0-1","version":"1.0.4-6","kind":"binary","source":{"id":"841","name":"ustr","version":"1.0.4-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"844":{"id":"844","name":"sed","version":"4.4-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"846":{"id":"846","name":"libsmartcols1","version":"2.29.2-1+deb9u1","kind":"binary","source":{"id":"721","name":"util-linux","version":"2.29.2-1+deb9u1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"5":{"id":"5","did":"debian","name":"Debian GNU/Linux","version":"9 (stretch)","version_code_name":"stretch","version_id":"9","arch":"","cpe":"","pretty_name":"Debian GNU/Linux 9 (stretch)"}},"repository":{},"environments":{"682":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"684":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"686":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"688":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"690":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"692":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"694":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"696":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"698":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"700":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"702":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"704":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"706":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"708":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"710":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"712":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"714":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"716":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"718":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"720":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"722":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"724":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"726":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"728":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"730":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"732":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"734":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"736":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"738":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"740":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"742":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"744":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"746":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"748":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"750":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"752":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"754":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"756":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"758":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"760":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"762":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"764":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"766":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"768":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"770":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"772":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"774":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"776":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"778":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"780":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"782":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"784":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"786":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"788":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"790":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"792":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"794":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"796":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"798":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"800":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"802":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"804":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"806":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"808":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"810":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"812":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"814":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"816":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"818":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"820":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"822":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"824":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"826":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"828":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"830":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"832":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"834":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"836":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"838":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"840":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"842":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"844":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}],"846":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:8372a04f222be82bf67eb0010a59644b1e52f1246b3da9034edaa98f3d591cae","distribution_id":"5","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.index.json b/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.index.json
deleted file mode 100644
index cf3728a1d..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:b6f50765242581c887ff1acc2511fa2d885c52d8fb3ac8c4bba131fd86567f2e","state":"IndexFinished","packages":{"1424":{"id":"1424","name":"libpam-runtime","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1426":{"id":"1426","name":"libncurses5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1428":{"id":"1428","name":"libapt-pkg5.0","version":"1.2.35","kind":"binary","source":{"id":"1427","name":"apt","version":"1.2.35","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1430":{"id":"1430","name":"libaudit1","version":"1:2.4.5-1ubuntu2.1","kind":"binary","source":{"id":"1429","name":"audit","version":"1:2.4.5-1ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1432":{"id":"1432","name":"readline-common","version":"6.3-8ubuntu2","kind":"binary","source":{"id":"1431","name":"readline6","version":"6.3-8ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1434":{"id":"1434","name":"makedev","version":"2.3.1-93ubuntu2~ubuntu16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1436":{"id":"1436","name":"libtinfo5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1438":{"id":"1438","name":"perl-base","version":"5.22.1-9ubuntu0.9","kind":"binary","source":{"id":"1437","name":"perl","version":"5.22.1-9ubuntu0.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1440":{"id":"1440","name":"libudev1","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1442":{"id":"1442","name":"libattr1","version":"1:2.4.47-2","kind":"binary","source":{"id":"1441","name":"attr","version":"1:2.4.47-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1444":{"id":"1444","name":"libss2","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1446":{"id":"1446","name":"liblzma5","version":"5.1.1alpha+20120614-2ubuntu2","kind":"binary","source":{"id":"1445","name":"xz-utils","version":"5.1.1alpha+20120614-2ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1448":{"id":"1448","name":"libpam-modules-bin","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1450":{"id":"1450","name":"grep","version":"2.25-1~16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1452":{"id":"1452","name":"base-passwd","version":"3.5.39","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1454":{"id":"1454","name":"e2fslibs","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1456":{"id":"1456","name":"liblz4-1","version":"0.0~r131-2ubuntu2","kind":"binary","source":{"id":"1455","name":"lz4","version":"0.0~r131-2ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1458":{"id":"1458","name":"debianutils","version":"4.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1460":{"id":"1460","name":"libgcrypt20","version":"1.6.5-2ubuntu0.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1462":{"id":"1462","name":"libncursesw5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1464":{"id":"1464","name":"bash","version":"4.3-14ubuntu1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1466":{"id":"1466","name":"libuuid1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1468":{"id":"1468","name":"libdb5.3","version":"5.3.28-11ubuntu0.2","kind":"binary","source":{"id":"1467","name":"db5.3","version":"5.3.28-11ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1470":{"id":"1470","name":"libcap2-bin","version":"1:2.24-12","kind":"binary","source":{"id":"1469","name":"libcap2","version":"1:2.24-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1472":{"id":"1472","name":"debconf","version":"1.5.58ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1474":{"id":"1474","name":"zlib1g","version":"1:1.2.8.dfsg-2ubuntu4.3","kind":"binary","source":{"id":"1473","name":"zlib","version":"1:1.2.8.dfsg-2ubuntu4.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1476":{"id":"1476","name":"hostname","version":"3.16ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1478":{"id":"1478","name":"multiarch-support","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1480":{"id":"1480","name":"init","version":"1.29ubuntu4","kind":"binary","source":{"id":"1479","name":"init-system-helpers","version":"1.29ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1482":{"id":"1482","name":"systemd-sysv","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1484":{"id":"1484","name":"mawk","version":"1.3.3-17ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1486":{"id":"1486","name":"gzip","version":"1.6-4ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1488":{"id":"1488","name":"gpgv","version":"1.4.20-1ubuntu3.3","kind":"binary","source":{"id":"1487","name":"gnupg","version":"1.4.20-1ubuntu3.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1490":{"id":"1490","name":"libcap2","version":"1:2.24-12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1492":{"id":"1492","name":"bsdutils","version":"1:2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1491","name":"util-linux (2.27.1-6ubuntu3.10)","version":"1:2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1494":{"id":"1494","name":"dash","version":"0.5.8-2.1ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1496":{"id":"1496","name":"gcc-6-base","version":"6.0.1-0ubuntu1","kind":"binary","source":{"id":"1495","name":"gccgo-6","version":"6.0.1-0ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1498":{"id":"1498","name":"gnupg","version":"1.4.20-1ubuntu3.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1500":{"id":"1500","name":"mount","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1502":{"id":"1502","name":"libsystemd0","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1504":{"id":"1504","name":"libzstd1","version":"1.3.1+dfsg-1~ubuntu0.16.04.1","kind":"binary","source":{"id":"1503","name":"libzstd","version":"1.3.1+dfsg-1~ubuntu0.16.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1506":{"id":"1506","name":"libc6","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1508":{"id":"1508","name":"libfdisk1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1510":{"id":"1510","name":"libpcre3","version":"2:8.38-3.1","kind":"binary","source":{"id":"1509","name":"pcre3","version":"2:8.38-3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1512":{"id":"1512","name":"libdevmapper1.02.1","version":"2:1.02.110-1ubuntu10","kind":"binary","source":{"id":"1511","name":"lvm2 (2.02.133-1ubuntu10)","version":"2:1.02.110-1ubuntu10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1514":{"id":"1514","name":"coreutils","version":"8.25-2ubuntu3~16.04","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1516":{"id":"1516","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1518":{"id":"1518","name":"tar","version":"1.28-2.1ubuntu0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1520":{"id":"1520","name":"libbz2-1.0","version":"1.0.6-8ubuntu0.2","kind":"binary","source":{"id":"1519","name":"bzip2","version":"1.0.6-8ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1522":{"id":"1522","name":"libkmod2","version":"22-1ubuntu5.2","kind":"binary","source":{"id":"1521","name":"kmod","version":"22-1ubuntu5.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1524":{"id":"1524","name":"libblkid1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1526":{"id":"1526","name":"lsb-base","version":"9.20160110ubuntu0.2","kind":"binary","source":{"id":"1525","name":"lsb","version":"9.20160110ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1528":{"id":"1528","name":"procps","version":"2:3.3.10-4ubuntu2.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1530":{"id":"1530","name":"libgpg-error0","version":"1.21-2ubuntu1","kind":"binary","source":{"id":"1529","name":"libgpg-error","version":"1.21-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1532":{"id":"1532","name":"base-files","version":"9.4ubuntu4.13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1534":{"id":"1534","name":"sensible-utils","version":"0.0.9ubuntu0.16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1536":{"id":"1536","name":"passwd","version":"1:4.2-3.1ubuntu5.4","kind":"binary","source":{"id":"1535","name":"shadow","version":"1:4.2-3.1ubuntu5.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1538":{"id":"1538","name":"init-system-helpers","version":"1.29ubuntu4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1540":{"id":"1540","name":"ncurses-base","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1542":{"id":"1542","name":"libc-bin","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1544":{"id":"1544","name":"libsemanage1","version":"2.3-1build3","kind":"binary","source":{"id":"1543","name":"libsemanage","version":"2.3-1build3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1546":{"id":"1546","name":"libseccomp2","version":"2.5.1-1ubuntu1~16.04.1","kind":"binary","source":{"id":"1545","name":"libseccomp","version":"2.5.1-1ubuntu1~16.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1548":{"id":"1548","name":"libapparmor1","version":"2.10.95-0ubuntu2.11","kind":"binary","source":{"id":"1547","name":"apparmor","version":"2.10.95-0ubuntu2.11","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1550":{"id":"1550","name":"sysvinit-utils","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1552":{"id":"1552","name":"libsemanage-common","version":"2.3-1build3","kind":"binary","source":{"id":"1543","name":"libsemanage","version":"2.3-1build3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1554":{"id":"1554","name":"libdebconfclient0","version":"0.198ubuntu1","kind":"binary","source":{"id":"1553","name":"cdebconf","version":"0.198ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1556":{"id":"1556","name":"libselinux1","version":"2.4-3build2","kind":"binary","source":{"id":"1555","name":"libselinux","version":"2.4-3build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1558":{"id":"1558","name":"systemd","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1560":{"id":"1560","name":"dpkg","version":"1.18.4ubuntu1.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1562":{"id":"1562","name":"sysv-rc","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1564":{"id":"1564","name":"apt","version":"1.2.35","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1566":{"id":"1566","name":"diffutils","version":"1:3.3-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1568":{"id":"1568","name":"libpam-modules","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1570":{"id":"1570","name":"insserv","version":"1.14.0-5ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1572":{"id":"1572","name":"libstdc++6","version":"5.4.0-6ubuntu1~16.04.12","kind":"binary","source":{"id":"1571","name":"gcc-5","version":"5.4.0-6ubuntu1~16.04.12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1574":{"id":"1574","name":"libaudit-common","version":"1:2.4.5-1ubuntu2.1","kind":"binary","source":{"id":"1429","name":"audit","version":"1:2.4.5-1ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1576":{"id":"1576","name":"libcomerr2","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1578":{"id":"1578","name":"findutils","version":"4.6.0+git+20160126-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1580":{"id":"1580","name":"libpam0g","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1582":{"id":"1582","name":"libmount1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1584":{"id":"1584","name":"login","version":"1:4.2-3.1ubuntu5.4","kind":"binary","source":{"id":"1535","name":"shadow","version":"1:4.2-3.1ubuntu5.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1586":{"id":"1586","name":"adduser","version":"3.113+nmu3ubuntu4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1588":{"id":"1588","name":"initscripts","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1590":{"id":"1590","name":"libacl1","version":"2.2.52-3","kind":"binary","source":{"id":"1589","name":"acl","version":"2.2.52-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1592":{"id":"1592","name":"ncurses-bin","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1594":{"id":"1594","name":"libprocps4","version":"2:3.3.10-4ubuntu2.5","kind":"binary","source":{"id":"1593","name":"procps","version":"2:3.3.10-4ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1596":{"id":"1596","name":"libusb-0.1-4","version":"2:0.1.12-28","kind":"binary","source":{"id":"1595","name":"libusb","version":"2:0.1.12-28","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1598":{"id":"1598","name":"libsepol1","version":"2.4-2","kind":"binary","source":{"id":"1597","name":"libsepol","version":"2.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1600":{"id":"1600","name":"ubuntu-keyring","version":"2012.05.19.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1602":{"id":"1602","name":"libgcc1","version":"1:6.0.1-0ubuntu1","kind":"binary","source":{"id":"1601","name":"gccgo-6 (6.0.1-0ubuntu1)","version":"1:6.0.1-0ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1604":{"id":"1604","name":"libreadline6","version":"6.3-8ubuntu2","kind":"binary","source":{"id":"1431","name":"readline6","version":"6.3-8ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1606":{"id":"1606","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1608":{"id":"1608","name":"gcc-5-base","version":"5.4.0-6ubuntu1~16.04.12","kind":"binary","source":{"id":"1571","name":"gcc-5","version":"5.4.0-6ubuntu1~16.04.12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1610":{"id":"1610","name":"libustr-1.0-1","version":"1.0.4-5","kind":"binary","source":{"id":"1609","name":"ustr","version":"1.0.4-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1612":{"id":"1612","name":"sed","version":"4.2.2-7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1614":{"id":"1614","name":"libsmartcols1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1616":{"id":"1616","name":"libcryptsetup4","version":"2:1.6.6-5ubuntu2.1","kind":"binary","source":{"id":"1615","name":"cryptsetup","version":"2:1.6.6-5ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"9":{"id":"9","did":"ubuntu","name":"Ubuntu","version":"16.04 (Xenial)","version_code_name":"xenial","version_id":"16.04","arch":"","cpe":"","pretty_name":"Ubuntu 16.04"}},"repository":{},"environments":{"1424":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1426":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1428":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1430":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1432":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1434":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1436":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1438":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1440":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1444":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1446":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1448":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1450":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1452":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1454":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1456":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1458":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1460":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1462":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1464":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1466":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1468":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1470":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1472":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1474":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1476":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1478":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1480":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1482":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1484":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1486":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1488":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1490":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1492":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1494":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1496":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1498":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1500":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1502":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1504":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1506":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1508":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1510":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1512":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1514":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1516":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1518":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1520":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1522":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1524":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1526":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1528":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1530":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1532":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1534":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1536":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1538":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1540":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1542":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1544":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1546":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1548":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1550":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1552":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1554":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1556":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1558":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1560":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1562":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1564":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1566":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1568":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1570":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1572":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1574":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1576":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1578":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1580":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1582":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1584":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1586":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1588":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1590":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1592":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1594":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1596":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1598":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1600":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1602":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1604":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1606":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1608":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1610":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1612":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1614":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1616":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.report.json b/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.report.json
deleted file mode 100644
index 852130fad..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-16.04.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:b6f50765242581c887ff1acc2511fa2d885c52d8fb3ac8c4bba131fd86567f2e","packages":{"1424":{"id":"1424","name":"libpam-runtime","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1426":{"id":"1426","name":"libncurses5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1428":{"id":"1428","name":"libapt-pkg5.0","version":"1.2.35","kind":"binary","source":{"id":"1427","name":"apt","version":"1.2.35","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1430":{"id":"1430","name":"libaudit1","version":"1:2.4.5-1ubuntu2.1","kind":"binary","source":{"id":"1429","name":"audit","version":"1:2.4.5-1ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1432":{"id":"1432","name":"readline-common","version":"6.3-8ubuntu2","kind":"binary","source":{"id":"1431","name":"readline6","version":"6.3-8ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1434":{"id":"1434","name":"makedev","version":"2.3.1-93ubuntu2~ubuntu16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1436":{"id":"1436","name":"libtinfo5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1438":{"id":"1438","name":"perl-base","version":"5.22.1-9ubuntu0.9","kind":"binary","source":{"id":"1437","name":"perl","version":"5.22.1-9ubuntu0.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1440":{"id":"1440","name":"libudev1","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1442":{"id":"1442","name":"libattr1","version":"1:2.4.47-2","kind":"binary","source":{"id":"1441","name":"attr","version":"1:2.4.47-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1444":{"id":"1444","name":"libss2","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1446":{"id":"1446","name":"liblzma5","version":"5.1.1alpha+20120614-2ubuntu2","kind":"binary","source":{"id":"1445","name":"xz-utils","version":"5.1.1alpha+20120614-2ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1448":{"id":"1448","name":"libpam-modules-bin","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1450":{"id":"1450","name":"grep","version":"2.25-1~16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1452":{"id":"1452","name":"base-passwd","version":"3.5.39","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1454":{"id":"1454","name":"e2fslibs","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1456":{"id":"1456","name":"liblz4-1","version":"0.0~r131-2ubuntu2","kind":"binary","source":{"id":"1455","name":"lz4","version":"0.0~r131-2ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1458":{"id":"1458","name":"debianutils","version":"4.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1460":{"id":"1460","name":"libgcrypt20","version":"1.6.5-2ubuntu0.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1462":{"id":"1462","name":"libncursesw5","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1464":{"id":"1464","name":"bash","version":"4.3-14ubuntu1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1466":{"id":"1466","name":"libuuid1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1468":{"id":"1468","name":"libdb5.3","version":"5.3.28-11ubuntu0.2","kind":"binary","source":{"id":"1467","name":"db5.3","version":"5.3.28-11ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1470":{"id":"1470","name":"libcap2-bin","version":"1:2.24-12","kind":"binary","source":{"id":"1469","name":"libcap2","version":"1:2.24-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1472":{"id":"1472","name":"debconf","version":"1.5.58ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1474":{"id":"1474","name":"zlib1g","version":"1:1.2.8.dfsg-2ubuntu4.3","kind":"binary","source":{"id":"1473","name":"zlib","version":"1:1.2.8.dfsg-2ubuntu4.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1476":{"id":"1476","name":"hostname","version":"3.16ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1478":{"id":"1478","name":"multiarch-support","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1480":{"id":"1480","name":"init","version":"1.29ubuntu4","kind":"binary","source":{"id":"1479","name":"init-system-helpers","version":"1.29ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1482":{"id":"1482","name":"systemd-sysv","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1484":{"id":"1484","name":"mawk","version":"1.3.3-17ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1486":{"id":"1486","name":"gzip","version":"1.6-4ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1488":{"id":"1488","name":"gpgv","version":"1.4.20-1ubuntu3.3","kind":"binary","source":{"id":"1487","name":"gnupg","version":"1.4.20-1ubuntu3.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1490":{"id":"1490","name":"libcap2","version":"1:2.24-12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1492":{"id":"1492","name":"bsdutils","version":"1:2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1491","name":"util-linux (2.27.1-6ubuntu3.10)","version":"1:2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1494":{"id":"1494","name":"dash","version":"0.5.8-2.1ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1496":{"id":"1496","name":"gcc-6-base","version":"6.0.1-0ubuntu1","kind":"binary","source":{"id":"1495","name":"gccgo-6","version":"6.0.1-0ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1498":{"id":"1498","name":"gnupg","version":"1.4.20-1ubuntu3.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1500":{"id":"1500","name":"mount","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1502":{"id":"1502","name":"libsystemd0","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"1439","name":"systemd","version":"229-4ubuntu21.31","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1504":{"id":"1504","name":"libzstd1","version":"1.3.1+dfsg-1~ubuntu0.16.04.1","kind":"binary","source":{"id":"1503","name":"libzstd","version":"1.3.1+dfsg-1~ubuntu0.16.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1506":{"id":"1506","name":"libc6","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1508":{"id":"1508","name":"libfdisk1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1510":{"id":"1510","name":"libpcre3","version":"2:8.38-3.1","kind":"binary","source":{"id":"1509","name":"pcre3","version":"2:8.38-3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1512":{"id":"1512","name":"libdevmapper1.02.1","version":"2:1.02.110-1ubuntu10","kind":"binary","source":{"id":"1511","name":"lvm2 (2.02.133-1ubuntu10)","version":"2:1.02.110-1ubuntu10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1514":{"id":"1514","name":"coreutils","version":"8.25-2ubuntu3~16.04","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1516":{"id":"1516","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1518":{"id":"1518","name":"tar","version":"1.28-2.1ubuntu0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1520":{"id":"1520","name":"libbz2-1.0","version":"1.0.6-8ubuntu0.2","kind":"binary","source":{"id":"1519","name":"bzip2","version":"1.0.6-8ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1522":{"id":"1522","name":"libkmod2","version":"22-1ubuntu5.2","kind":"binary","source":{"id":"1521","name":"kmod","version":"22-1ubuntu5.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1524":{"id":"1524","name":"libblkid1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1526":{"id":"1526","name":"lsb-base","version":"9.20160110ubuntu0.2","kind":"binary","source":{"id":"1525","name":"lsb","version":"9.20160110ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1528":{"id":"1528","name":"procps","version":"2:3.3.10-4ubuntu2.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1530":{"id":"1530","name":"libgpg-error0","version":"1.21-2ubuntu1","kind":"binary","source":{"id":"1529","name":"libgpg-error","version":"1.21-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1532":{"id":"1532","name":"base-files","version":"9.4ubuntu4.13","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1534":{"id":"1534","name":"sensible-utils","version":"0.0.9ubuntu0.16.04.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1536":{"id":"1536","name":"passwd","version":"1:4.2-3.1ubuntu5.4","kind":"binary","source":{"id":"1535","name":"shadow","version":"1:4.2-3.1ubuntu5.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1538":{"id":"1538","name":"init-system-helpers","version":"1.29ubuntu4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1540":{"id":"1540","name":"ncurses-base","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1542":{"id":"1542","name":"libc-bin","version":"2.23-0ubuntu11.3","kind":"binary","source":{"id":"1477","name":"glibc","version":"2.23-0ubuntu11.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1544":{"id":"1544","name":"libsemanage1","version":"2.3-1build3","kind":"binary","source":{"id":"1543","name":"libsemanage","version":"2.3-1build3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1546":{"id":"1546","name":"libseccomp2","version":"2.5.1-1ubuntu1~16.04.1","kind":"binary","source":{"id":"1545","name":"libseccomp","version":"2.5.1-1ubuntu1~16.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1548":{"id":"1548","name":"libapparmor1","version":"2.10.95-0ubuntu2.11","kind":"binary","source":{"id":"1547","name":"apparmor","version":"2.10.95-0ubuntu2.11","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1550":{"id":"1550","name":"sysvinit-utils","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1552":{"id":"1552","name":"libsemanage-common","version":"2.3-1build3","kind":"binary","source":{"id":"1543","name":"libsemanage","version":"2.3-1build3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1554":{"id":"1554","name":"libdebconfclient0","version":"0.198ubuntu1","kind":"binary","source":{"id":"1553","name":"cdebconf","version":"0.198ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1556":{"id":"1556","name":"libselinux1","version":"2.4-3build2","kind":"binary","source":{"id":"1555","name":"libselinux","version":"2.4-3build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1558":{"id":"1558","name":"systemd","version":"229-4ubuntu21.31","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1560":{"id":"1560","name":"dpkg","version":"1.18.4ubuntu1.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1562":{"id":"1562","name":"sysv-rc","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1564":{"id":"1564","name":"apt","version":"1.2.35","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1566":{"id":"1566","name":"diffutils","version":"1:3.3-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1568":{"id":"1568","name":"libpam-modules","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1570":{"id":"1570","name":"insserv","version":"1.14.0-5ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1572":{"id":"1572","name":"libstdc++6","version":"5.4.0-6ubuntu1~16.04.12","kind":"binary","source":{"id":"1571","name":"gcc-5","version":"5.4.0-6ubuntu1~16.04.12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1574":{"id":"1574","name":"libaudit-common","version":"1:2.4.5-1ubuntu2.1","kind":"binary","source":{"id":"1429","name":"audit","version":"1:2.4.5-1ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1576":{"id":"1576","name":"libcomerr2","version":"1.42.13-1ubuntu1.2","kind":"binary","source":{"id":"1443","name":"e2fsprogs","version":"1.42.13-1ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1578":{"id":"1578","name":"findutils","version":"4.6.0+git+20160126-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1580":{"id":"1580","name":"libpam0g","version":"1.1.8-3.2ubuntu2.3","kind":"binary","source":{"id":"1423","name":"pam","version":"1.1.8-3.2ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1582":{"id":"1582","name":"libmount1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1584":{"id":"1584","name":"login","version":"1:4.2-3.1ubuntu5.4","kind":"binary","source":{"id":"1535","name":"shadow","version":"1:4.2-3.1ubuntu5.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1586":{"id":"1586","name":"adduser","version":"3.113+nmu3ubuntu4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1588":{"id":"1588","name":"initscripts","version":"2.88dsf-59.3ubuntu2","kind":"binary","source":{"id":"1549","name":"sysvinit","version":"2.88dsf-59.3ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1590":{"id":"1590","name":"libacl1","version":"2.2.52-3","kind":"binary","source":{"id":"1589","name":"acl","version":"2.2.52-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1592":{"id":"1592","name":"ncurses-bin","version":"6.0+20160213-1ubuntu1","kind":"binary","source":{"id":"1425","name":"ncurses","version":"6.0+20160213-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1594":{"id":"1594","name":"libprocps4","version":"2:3.3.10-4ubuntu2.5","kind":"binary","source":{"id":"1593","name":"procps","version":"2:3.3.10-4ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1596":{"id":"1596","name":"libusb-0.1-4","version":"2:0.1.12-28","kind":"binary","source":{"id":"1595","name":"libusb","version":"2:0.1.12-28","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1598":{"id":"1598","name":"libsepol1","version":"2.4-2","kind":"binary","source":{"id":"1597","name":"libsepol","version":"2.4-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1600":{"id":"1600","name":"ubuntu-keyring","version":"2012.05.19.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"1602":{"id":"1602","name":"libgcc1","version":"1:6.0.1-0ubuntu1","kind":"binary","source":{"id":"1601","name":"gccgo-6 (6.0.1-0ubuntu1)","version":"1:6.0.1-0ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1604":{"id":"1604","name":"libreadline6","version":"6.3-8ubuntu2","kind":"binary","source":{"id":"1431","name":"readline6","version":"6.3-8ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1606":{"id":"1606","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1608":{"id":"1608","name":"gcc-5-base","version":"5.4.0-6ubuntu1~16.04.12","kind":"binary","source":{"id":"1571","name":"gcc-5","version":"5.4.0-6ubuntu1~16.04.12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1610":{"id":"1610","name":"libustr-1.0-1","version":"1.0.4-5","kind":"binary","source":{"id":"1609","name":"ustr","version":"1.0.4-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1612":{"id":"1612","name":"sed","version":"4.2.2-7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1614":{"id":"1614","name":"libsmartcols1","version":"2.27.1-6ubuntu3.10","kind":"binary","source":{"id":"1465","name":"util-linux","version":"2.27.1-6ubuntu3.10","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"1616":{"id":"1616","name":"libcryptsetup4","version":"2:1.6.6-5ubuntu2.1","kind":"binary","source":{"id":"1615","name":"cryptsetup","version":"2:1.6.6-5ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"9":{"id":"9","did":"ubuntu","name":"Ubuntu","version":"16.04 (Xenial)","version_code_name":"xenial","version_id":"16.04","arch":"","cpe":"","pretty_name":"Ubuntu 16.04"}},"repository":{},"environments":{"1424":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1426":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1428":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1430":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1432":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1434":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1436":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1438":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1440":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1444":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1446":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1448":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1450":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1452":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1454":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1456":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1458":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1460":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1462":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1464":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1466":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1468":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1470":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1472":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1474":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1476":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1478":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1480":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1482":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1484":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1486":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1488":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1490":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1492":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1494":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1496":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1498":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1500":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1502":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1504":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1506":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1508":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1510":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1512":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1514":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1516":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1518":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1520":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1522":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1524":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1526":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1528":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1530":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1532":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1534":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1536":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1538":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1540":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1542":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1544":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1546":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1548":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1550":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1552":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1554":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1556":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1558":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1560":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1562":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1564":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1566":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1568":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1570":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1572":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1574":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1576":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1578":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1580":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1582":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1584":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1586":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1588":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1590":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1592":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1594":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1596":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1598":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1600":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1602":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1604":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1606":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1608":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1610":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1612":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1614":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}],"1616":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:58690f9b18fca6469a14da4e212c96849469f9b1be6661d2342a4bf01774aa50","distribution_id":"9","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.index.json b/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.index.json
deleted file mode 100644
index b4ad812fe..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:3941d3b032a8168d53508410a67baad120a563df67a7959565a30a1cb2114731","state":"IndexFinished","packages":{"10":{"id":"10","name":"libapt-pkg5.0","version":"1.6.14","kind":"binary","source":{"id":"9","name":"apt","version":"1.6.14","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"100":{"id":"100","name":"lsb-base","version":"9.20170808ubuntu1","kind":"binary","source":{"id":"99","name":"lsb","version":"9.20170808ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"102":{"id":"102","name":"procps","version":"2:3.3.12-3ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"104":{"id":"104","name":"libgpg-error0","version":"1.27-6","kind":"binary","source":{"id":"103","name":"libgpg-error","version":"1.27-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"106":{"id":"106","name":"base-files","version":"10.1ubuntu2.11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"108":{"id":"108","name":"libgmp10","version":"2:6.1.2+dfsg-2ubuntu0.1","kind":"binary","source":{"id":"107","name":"gmp","version":"2:6.1.2+dfsg-2ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"110":{"id":"110","name":"sensible-utils","version":"0.0.12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"112":{"id":"112","name":"passwd","version":"1:4.5-1ubuntu2.5","kind":"binary","source":{"id":"111","name":"shadow","version":"1:4.5-1ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"114":{"id":"114","name":"init-system-helpers","version":"1.51","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"116":{"id":"116","name":"ncurses-base","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"118":{"id":"118","name":"libc-bin","version":"2.27-3ubuntu1.6","kind":"binary","source":{"id":"75","name":"glibc","version":"2.27-3ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"12":{"id":"12","name":"libaudit1","version":"1:2.8.2-1ubuntu1.1","kind":"binary","source":{"id":"11","name":"audit","version":"1:2.8.2-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"120":{"id":"120","name":"libsemanage1","version":"2.7-2build2","kind":"binary","source":{"id":"119","name":"libsemanage","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"122":{"id":"122","name":"libseccomp2","version":"2.5.1-1ubuntu1~18.04.2","kind":"binary","source":{"id":"121","name":"libseccomp","version":"2.5.1-1ubuntu1~18.04.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"124":{"id":"124","name":"sysvinit-utils","version":"2.88dsf-59.10ubuntu1","kind":"binary","source":{"id":"123","name":"sysvinit","version":"2.88dsf-59.10ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"126":{"id":"126","name":"libsemanage-common","version":"2.7-2build2","kind":"binary","source":{"id":"119","name":"libsemanage","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"128":{"id":"128","name":"libp11-kit0","version":"0.23.9-2ubuntu0.1","kind":"binary","source":{"id":"127","name":"p11-kit","version":"0.23.9-2ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"130":{"id":"130","name":"libdebconfclient0","version":"0.213ubuntu1","kind":"binary","source":{"id":"129","name":"cdebconf","version":"0.213ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"132":{"id":"132","name":"libselinux1","version":"2.7-2build2","kind":"binary","source":{"id":"131","name":"libselinux","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"134":{"id":"134","name":"dpkg","version":"1.19.0.5ubuntu2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"136":{"id":"136","name":"gcc-8-base","version":"8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"135","name":"gcc-8","version":"8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"138":{"id":"138","name":"apt","version":"1.6.14","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"14":{"id":"14","name":"libtinfo5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"140":{"id":"140","name":"diffutils","version":"1:3.6-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"142":{"id":"142","name":"libpam-modules","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"144":{"id":"144","name":"libstdc++6","version":"8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"135","name":"gcc-8","version":"8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"146":{"id":"146","name":"libffi6","version":"3.2.1-8","kind":"binary","source":{"id":"145","name":"libffi","version":"3.2.1-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"148":{"id":"148","name":"libaudit-common","version":"1:2.8.2-1ubuntu1.1","kind":"binary","source":{"id":"11","name":"audit","version":"1:2.8.2-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"150":{"id":"150","name":"findutils","version":"4.6.0+git+20170828-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"152":{"id":"152","name":"libpam0g","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"154":{"id":"154","name":"libcap-ng0","version":"0.7.7-3.1","kind":"binary","source":{"id":"153","name":"libcap-ng","version":"0.7.7-3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"156":{"id":"156","name":"libmount1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"158":{"id":"158","name":"login","version":"1:4.5-1ubuntu2.5","kind":"binary","source":{"id":"111","name":"shadow","version":"1:4.5-1ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"16":{"id":"16","name":"perl-base","version":"5.26.1-6ubuntu0.6","kind":"binary","source":{"id":"15","name":"perl","version":"5.26.1-6ubuntu0.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"160":{"id":"160","name":"adduser","version":"3.116ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"162":{"id":"162","name":"libext2fs2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"164":{"id":"164","name":"libacl1","version":"2.2.52-3build1","kind":"binary","source":{"id":"163","name":"acl","version":"2.2.52-3build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"166":{"id":"166","name":"ncurses-bin","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"168":{"id":"168","name":"libsepol1","version":"2.7-1ubuntu0.1","kind":"binary","source":{"id":"167","name":"libsepol","version":"2.7-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"170":{"id":"170","name":"ubuntu-keyring","version":"2018.09.18.1~18.04.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"172":{"id":"172","name":"libgcc1","version":"1:8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"171","name":"gcc-8 (8.4.0-1ubuntu1~18.04)","version":"1:8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"174":{"id":"174","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"176":{"id":"176","name":"sed","version":"4.4-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"178":{"id":"178","name":"libsmartcols1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"18":{"id":"18","name":"libudev1","version":"237-3ubuntu10.57","kind":"binary","source":{"id":"17","name":"systemd","version":"237-3ubuntu10.57","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2":{"id":"2","name":"fdisk","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"20":{"id":"20","name":"libunistring2","version":"0.9.9-0ubuntu2","kind":"binary","source":{"id":"19","name":"libunistring","version":"0.9.9-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"22":{"id":"22","name":"libnettle6","version":"3.4.1-0ubuntu0.18.04.1","kind":"binary","source":{"id":"21","name":"nettle","version":"3.4.1-0ubuntu0.18.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"24":{"id":"24","name":"libattr1","version":"1:2.4.47-2build1","kind":"binary","source":{"id":"23","name":"attr","version":"1:2.4.47-2build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"26":{"id":"26","name":"libss2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"28":{"id":"28","name":"liblzma5","version":"5.2.2-1.3ubuntu0.1","kind":"binary","source":{"id":"27","name":"xz-utils","version":"5.2.2-1.3ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"30":{"id":"30","name":"libidn2-0","version":"2.0.4-1.1ubuntu0.2","kind":"binary","source":{"id":"29","name":"libidn2","version":"2.0.4-1.1ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"32":{"id":"32","name":"libpam-modules-bin","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"34":{"id":"34","name":"grep","version":"3.1-2build1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"36":{"id":"36","name":"base-passwd","version":"3.5.44","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"38":{"id":"38","name":"liblz4-1","version":"0.0~r131-2ubuntu3.1","kind":"binary","source":{"id":"37","name":"lz4","version":"0.0~r131-2ubuntu3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"4":{"id":"4","name":"libpam-runtime","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"40":{"id":"40","name":"debianutils","version":"4.8.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"42":{"id":"42","name":"libgcrypt20","version":"1.8.1-4ubuntu1.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"44":{"id":"44","name":"libncursesw5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"46":{"id":"46","name":"bash","version":"4.4.18-2ubuntu1.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"48":{"id":"48","name":"libuuid1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"50":{"id":"50","name":"libdb5.3","version":"5.3.28-13.1ubuntu1.1","kind":"binary","source":{"id":"49","name":"db5.3","version":"5.3.28-13.1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"52":{"id":"52","name":"debconf","version":"1.5.66ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"54":{"id":"54","name":"zlib1g","version":"1:1.2.11.dfsg-0ubuntu2.2","kind":"binary","source":{"id":"53","name":"zlib","version":"1:1.2.11.dfsg-0ubuntu2.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"56":{"id":"56","name":"hostname","version":"3.20","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"58":{"id":"58","name":"mawk","version":"1.3.3-17ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"6":{"id":"6","name":"libncurses5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"60":{"id":"60","name":"gzip","version":"1.6-5ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"62":{"id":"62","name":"gpgv","version":"2.2.4-1ubuntu1.6","kind":"binary","source":{"id":"61","name":"gnupg2","version":"2.2.4-1ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"64":{"id":"64","name":"bsdutils","version":"1:2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"63","name":"util-linux (2.31.1-0.4ubuntu3.7)","version":"1:2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"66":{"id":"66","name":"dash","version":"0.5.8-2.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"68":{"id":"68","name":"mount","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"70":{"id":"70","name":"libgnutls30","version":"3.5.18-1ubuntu1.6","kind":"binary","source":{"id":"69","name":"gnutls28","version":"3.5.18-1ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"72":{"id":"72","name":"libsystemd0","version":"237-3ubuntu10.57","kind":"binary","source":{"id":"17","name":"systemd","version":"237-3ubuntu10.57","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"74":{"id":"74","name":"libzstd1","version":"1.3.3+dfsg-2ubuntu1.2","kind":"binary","source":{"id":"73","name":"libzstd","version":"1.3.3+dfsg-2ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"76":{"id":"76","name":"libc6","version":"2.27-3ubuntu1.6","kind":"binary","source":{"id":"75","name":"glibc","version":"2.27-3ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"78":{"id":"78","name":"libfdisk1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"8":{"id":"8","name":"libcom-err2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"80":{"id":"80","name":"libpcre3","version":"2:8.39-9ubuntu0.1","kind":"binary","source":{"id":"79","name":"pcre3","version":"2:8.39-9ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"82":{"id":"82","name":"coreutils","version":"8.28-1ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"84":{"id":"84","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"86":{"id":"86","name":"tar","version":"1.29b-2ubuntu0.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"88":{"id":"88","name":"libprocps6","version":"2:3.3.12-3ubuntu1.2","kind":"binary","source":{"id":"87","name":"procps","version":"2:3.3.12-3ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"90":{"id":"90","name":"libbz2-1.0","version":"1.0.6-8.1ubuntu0.2","kind":"binary","source":{"id":"89","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"92":{"id":"92","name":"libblkid1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"94":{"id":"94","name":"libtasn1-6","version":"4.13-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"96":{"id":"96","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"98":{"id":"98","name":"libhogweed4","version":"3.4.1-0ubuntu0.18.04.1","kind":"binary","source":{"id":"21","name":"nettle","version":"3.4.1-0ubuntu0.18.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"1":{"id":"1","did":"ubuntu","name":"Ubuntu","version":"18.04 (Bionic)","version_code_name":"bionic","version_id":"18.04","arch":"","cpe":"","pretty_name":"Ubuntu 18.04"}},"repository":{},"environments":{"10":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"100":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"102":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"104":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"106":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"108":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"110":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"112":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"114":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"116":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"118":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"12":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"120":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"122":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"124":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"126":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"128":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"130":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"132":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"134":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"136":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"138":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"14":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"140":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"142":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"144":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"146":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"148":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"150":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"152":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"154":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"156":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"158":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"16":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"160":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"162":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"164":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"166":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"168":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"170":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"172":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"174":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"176":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"178":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"18":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"2":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"20":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"22":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"24":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"26":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"28":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"30":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"32":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"34":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"36":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"38":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"4":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"40":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"42":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"44":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"46":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"48":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"50":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"52":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"54":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"56":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"58":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"6":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"60":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"62":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"64":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"66":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"68":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"70":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"72":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"74":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"76":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"78":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"8":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"80":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"82":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"84":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"86":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"88":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"90":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"92":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"94":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"96":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"98":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.report.json b/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.report.json
deleted file mode 100644
index c516cdaae..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-18.04.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:3941d3b032a8168d53508410a67baad120a563df67a7959565a30a1cb2114731","packages":{"10":{"id":"10","name":"libapt-pkg5.0","version":"1.6.14","kind":"binary","source":{"id":"9","name":"apt","version":"1.6.14","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"100":{"id":"100","name":"lsb-base","version":"9.20170808ubuntu1","kind":"binary","source":{"id":"99","name":"lsb","version":"9.20170808ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"102":{"id":"102","name":"procps","version":"2:3.3.12-3ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"104":{"id":"104","name":"libgpg-error0","version":"1.27-6","kind":"binary","source":{"id":"103","name":"libgpg-error","version":"1.27-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"106":{"id":"106","name":"base-files","version":"10.1ubuntu2.11","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"108":{"id":"108","name":"libgmp10","version":"2:6.1.2+dfsg-2ubuntu0.1","kind":"binary","source":{"id":"107","name":"gmp","version":"2:6.1.2+dfsg-2ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"110":{"id":"110","name":"sensible-utils","version":"0.0.12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"112":{"id":"112","name":"passwd","version":"1:4.5-1ubuntu2.5","kind":"binary","source":{"id":"111","name":"shadow","version":"1:4.5-1ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"114":{"id":"114","name":"init-system-helpers","version":"1.51","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"116":{"id":"116","name":"ncurses-base","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"118":{"id":"118","name":"libc-bin","version":"2.27-3ubuntu1.6","kind":"binary","source":{"id":"75","name":"glibc","version":"2.27-3ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"12":{"id":"12","name":"libaudit1","version":"1:2.8.2-1ubuntu1.1","kind":"binary","source":{"id":"11","name":"audit","version":"1:2.8.2-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"120":{"id":"120","name":"libsemanage1","version":"2.7-2build2","kind":"binary","source":{"id":"119","name":"libsemanage","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"122":{"id":"122","name":"libseccomp2","version":"2.5.1-1ubuntu1~18.04.2","kind":"binary","source":{"id":"121","name":"libseccomp","version":"2.5.1-1ubuntu1~18.04.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"124":{"id":"124","name":"sysvinit-utils","version":"2.88dsf-59.10ubuntu1","kind":"binary","source":{"id":"123","name":"sysvinit","version":"2.88dsf-59.10ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"126":{"id":"126","name":"libsemanage-common","version":"2.7-2build2","kind":"binary","source":{"id":"119","name":"libsemanage","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"128":{"id":"128","name":"libp11-kit0","version":"0.23.9-2ubuntu0.1","kind":"binary","source":{"id":"127","name":"p11-kit","version":"0.23.9-2ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"130":{"id":"130","name":"libdebconfclient0","version":"0.213ubuntu1","kind":"binary","source":{"id":"129","name":"cdebconf","version":"0.213ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"132":{"id":"132","name":"libselinux1","version":"2.7-2build2","kind":"binary","source":{"id":"131","name":"libselinux","version":"2.7-2build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"134":{"id":"134","name":"dpkg","version":"1.19.0.5ubuntu2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"136":{"id":"136","name":"gcc-8-base","version":"8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"135","name":"gcc-8","version":"8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"138":{"id":"138","name":"apt","version":"1.6.14","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"14":{"id":"14","name":"libtinfo5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"140":{"id":"140","name":"diffutils","version":"1:3.6-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"142":{"id":"142","name":"libpam-modules","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"144":{"id":"144","name":"libstdc++6","version":"8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"135","name":"gcc-8","version":"8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"146":{"id":"146","name":"libffi6","version":"3.2.1-8","kind":"binary","source":{"id":"145","name":"libffi","version":"3.2.1-8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"148":{"id":"148","name":"libaudit-common","version":"1:2.8.2-1ubuntu1.1","kind":"binary","source":{"id":"11","name":"audit","version":"1:2.8.2-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"150":{"id":"150","name":"findutils","version":"4.6.0+git+20170828-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"152":{"id":"152","name":"libpam0g","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"154":{"id":"154","name":"libcap-ng0","version":"0.7.7-3.1","kind":"binary","source":{"id":"153","name":"libcap-ng","version":"0.7.7-3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"156":{"id":"156","name":"libmount1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"158":{"id":"158","name":"login","version":"1:4.5-1ubuntu2.5","kind":"binary","source":{"id":"111","name":"shadow","version":"1:4.5-1ubuntu2.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"16":{"id":"16","name":"perl-base","version":"5.26.1-6ubuntu0.6","kind":"binary","source":{"id":"15","name":"perl","version":"5.26.1-6ubuntu0.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"160":{"id":"160","name":"adduser","version":"3.116ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"162":{"id":"162","name":"libext2fs2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"164":{"id":"164","name":"libacl1","version":"2.2.52-3build1","kind":"binary","source":{"id":"163","name":"acl","version":"2.2.52-3build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"166":{"id":"166","name":"ncurses-bin","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"168":{"id":"168","name":"libsepol1","version":"2.7-1ubuntu0.1","kind":"binary","source":{"id":"167","name":"libsepol","version":"2.7-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"170":{"id":"170","name":"ubuntu-keyring","version":"2018.09.18.1~18.04.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"172":{"id":"172","name":"libgcc1","version":"1:8.4.0-1ubuntu1~18.04","kind":"binary","source":{"id":"171","name":"gcc-8 (8.4.0-1ubuntu1~18.04)","version":"1:8.4.0-1ubuntu1~18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"174":{"id":"174","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"176":{"id":"176","name":"sed","version":"4.4-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"178":{"id":"178","name":"libsmartcols1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"18":{"id":"18","name":"libudev1","version":"237-3ubuntu10.57","kind":"binary","source":{"id":"17","name":"systemd","version":"237-3ubuntu10.57","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"2":{"id":"2","name":"fdisk","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"20":{"id":"20","name":"libunistring2","version":"0.9.9-0ubuntu2","kind":"binary","source":{"id":"19","name":"libunistring","version":"0.9.9-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"22":{"id":"22","name":"libnettle6","version":"3.4.1-0ubuntu0.18.04.1","kind":"binary","source":{"id":"21","name":"nettle","version":"3.4.1-0ubuntu0.18.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"24":{"id":"24","name":"libattr1","version":"1:2.4.47-2build1","kind":"binary","source":{"id":"23","name":"attr","version":"1:2.4.47-2build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"26":{"id":"26","name":"libss2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"28":{"id":"28","name":"liblzma5","version":"5.2.2-1.3ubuntu0.1","kind":"binary","source":{"id":"27","name":"xz-utils","version":"5.2.2-1.3ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"30":{"id":"30","name":"libidn2-0","version":"2.0.4-1.1ubuntu0.2","kind":"binary","source":{"id":"29","name":"libidn2","version":"2.0.4-1.1ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"32":{"id":"32","name":"libpam-modules-bin","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"34":{"id":"34","name":"grep","version":"3.1-2build1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"36":{"id":"36","name":"base-passwd","version":"3.5.44","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"38":{"id":"38","name":"liblz4-1","version":"0.0~r131-2ubuntu3.1","kind":"binary","source":{"id":"37","name":"lz4","version":"0.0~r131-2ubuntu3.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"4":{"id":"4","name":"libpam-runtime","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"binary","source":{"id":"3","name":"pam","version":"1.1.8-3.6ubuntu2.18.04.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"40":{"id":"40","name":"debianutils","version":"4.8.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"42":{"id":"42","name":"libgcrypt20","version":"1.8.1-4ubuntu1.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"44":{"id":"44","name":"libncursesw5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"46":{"id":"46","name":"bash","version":"4.4.18-2ubuntu1.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"48":{"id":"48","name":"libuuid1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"50":{"id":"50","name":"libdb5.3","version":"5.3.28-13.1ubuntu1.1","kind":"binary","source":{"id":"49","name":"db5.3","version":"5.3.28-13.1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"52":{"id":"52","name":"debconf","version":"1.5.66ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"54":{"id":"54","name":"zlib1g","version":"1:1.2.11.dfsg-0ubuntu2.2","kind":"binary","source":{"id":"53","name":"zlib","version":"1:1.2.11.dfsg-0ubuntu2.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"56":{"id":"56","name":"hostname","version":"3.20","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"58":{"id":"58","name":"mawk","version":"1.3.3-17ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"6":{"id":"6","name":"libncurses5","version":"6.1-1ubuntu1.18.04","kind":"binary","source":{"id":"5","name":"ncurses","version":"6.1-1ubuntu1.18.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"60":{"id":"60","name":"gzip","version":"1.6-5ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"62":{"id":"62","name":"gpgv","version":"2.2.4-1ubuntu1.6","kind":"binary","source":{"id":"61","name":"gnupg2","version":"2.2.4-1ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"64":{"id":"64","name":"bsdutils","version":"1:2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"63","name":"util-linux (2.31.1-0.4ubuntu3.7)","version":"1:2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"66":{"id":"66","name":"dash","version":"0.5.8-2.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"68":{"id":"68","name":"mount","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"70":{"id":"70","name":"libgnutls30","version":"3.5.18-1ubuntu1.6","kind":"binary","source":{"id":"69","name":"gnutls28","version":"3.5.18-1ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"72":{"id":"72","name":"libsystemd0","version":"237-3ubuntu10.57","kind":"binary","source":{"id":"17","name":"systemd","version":"237-3ubuntu10.57","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"74":{"id":"74","name":"libzstd1","version":"1.3.3+dfsg-2ubuntu1.2","kind":"binary","source":{"id":"73","name":"libzstd","version":"1.3.3+dfsg-2ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"76":{"id":"76","name":"libc6","version":"2.27-3ubuntu1.6","kind":"binary","source":{"id":"75","name":"glibc","version":"2.27-3ubuntu1.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"78":{"id":"78","name":"libfdisk1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"8":{"id":"8","name":"libcom-err2","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"7","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"80":{"id":"80","name":"libpcre3","version":"2:8.39-9ubuntu0.1","kind":"binary","source":{"id":"79","name":"pcre3","version":"2:8.39-9ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"82":{"id":"82","name":"coreutils","version":"8.28-1ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"84":{"id":"84","name":"e2fsprogs","version":"1.44.1-1ubuntu1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"86":{"id":"86","name":"tar","version":"1.29b-2ubuntu0.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"88":{"id":"88","name":"libprocps6","version":"2:3.3.12-3ubuntu1.2","kind":"binary","source":{"id":"87","name":"procps","version":"2:3.3.12-3ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"90":{"id":"90","name":"libbz2-1.0","version":"1.0.6-8.1ubuntu0.2","kind":"binary","source":{"id":"89","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"92":{"id":"92","name":"libblkid1","version":"2.31.1-0.4ubuntu3.7","kind":"binary","source":{"id":"1","name":"util-linux","version":"2.31.1-0.4ubuntu3.7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"94":{"id":"94","name":"libtasn1-6","version":"4.13-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"96":{"id":"96","name":"bzip2","version":"1.0.6-8.1ubuntu0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"98":{"id":"98","name":"libhogweed4","version":"3.4.1-0ubuntu0.18.04.1","kind":"binary","source":{"id":"21","name":"nettle","version":"3.4.1-0ubuntu0.18.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"1":{"id":"1","did":"ubuntu","name":"Ubuntu","version":"18.04 (Bionic)","version_code_name":"bionic","version_id":"18.04","arch":"","cpe":"","pretty_name":"Ubuntu 18.04"}},"repository":{},"environments":{"10":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"100":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"102":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"104":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"106":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"108":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"110":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"112":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"114":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"116":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"118":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"12":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"120":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"122":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"124":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"126":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"128":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"130":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"132":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"134":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"136":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"138":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"14":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"140":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"142":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"144":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"146":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"148":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"150":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"152":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"154":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"156":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"158":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"16":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"160":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"162":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"164":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"166":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"168":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"170":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"172":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"174":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"176":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"178":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"18":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"2":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"20":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"22":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"24":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"26":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"28":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"30":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"32":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"34":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"36":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"38":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"4":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"40":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"42":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"44":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"46":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"48":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"50":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"52":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"54":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"56":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"58":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"6":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"60":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"62":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"64":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"66":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"68":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"70":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"72":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"74":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"76":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"78":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"8":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"80":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"82":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"84":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"86":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"88":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"90":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"92":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"94":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"96":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}],"98":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:0c5227665c11379f79e9da3d3e4f1724f9316b87d259ac0131628ca1b923a392","distribution_id":"1","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.index.json b/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.index.json
deleted file mode 100644
index c7ea99bae..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:2f6c85efea61013a1f52da29b66610c7a780cf6fa4299613e8fecb878f508ac6","state":"IndexFinished","packages":{"110":{"id":"110","name":"sensible-utils","version":"0.0.12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"180":{"id":"180","name":"adduser","version":"3.118ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"182":{"id":"182","name":"apt","version":"1.9.4ubuntu0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"184":{"id":"184","name":"base-files","version":"10.2ubuntu7.19.10.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"186":{"id":"186","name":"base-passwd","version":"3.5.46","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"188":{"id":"188","name":"bash","version":"5.0-4ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"190":{"id":"190","name":"bsdutils","version":"1:2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"189","name":"util-linux (2.34-0.1ubuntu2.4)","version":"1:2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"192":{"id":"192","name":"bzip2","version":"1.0.6-9.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"194":{"id":"194","name":"coreutils","version":"8.30-3ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"196":{"id":"196","name":"dash","version":"0.5.10.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"198":{"id":"198","name":"debconf","version":"1.5.73","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"200":{"id":"200","name":"debianutils","version":"4.8.6.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"204":{"id":"204","name":"dpkg","version":"1.19.7ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"206":{"id":"206","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"208":{"id":"208","name":"fdisk","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"210":{"id":"210","name":"findutils","version":"4.6.0+git+20190209-2ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"212":{"id":"212","name":"gcc-9-base","version":"9.2.1-9ubuntu2","kind":"binary","source":{"id":"211","name":"gcc-9","version":"9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"214":{"id":"214","name":"gpgv","version":"2.2.12-1ubuntu3","kind":"binary","source":{"id":"213","name":"gnupg2","version":"2.2.12-1ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"216":{"id":"216","name":"grep","version":"3.3-1build1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"218":{"id":"218","name":"gzip","version":"1.10-0ubuntu3.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"220":{"id":"220","name":"hostname","version":"3.22","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"222":{"id":"222","name":"init-system-helpers","version":"1.57","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"224":{"id":"224","name":"libacl1","version":"2.2.53-4","kind":"binary","source":{"id":"223","name":"acl","version":"2.2.53-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"226":{"id":"226","name":"libapt-pkg5.90","version":"1.9.4ubuntu0.1","kind":"binary","source":{"id":"225","name":"apt","version":"1.9.4ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"228":{"id":"228","name":"libattr1","version":"1:2.4.48-4","kind":"binary","source":{"id":"227","name":"attr","version":"1:2.4.48-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"230":{"id":"230","name":"libaudit-common","version":"1:2.8.5-2ubuntu1","kind":"binary","source":{"id":"229","name":"audit","version":"1:2.8.5-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"232":{"id":"232","name":"libaudit1","version":"1:2.8.5-2ubuntu1","kind":"binary","source":{"id":"229","name":"audit","version":"1:2.8.5-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"234":{"id":"234","name":"libblkid1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"236":{"id":"236","name":"libbz2-1.0","version":"1.0.6-9.2","kind":"binary","source":{"id":"235","name":"bzip2","version":"1.0.6-9.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"238":{"id":"238","name":"libc-bin","version":"2.30-0ubuntu2.1","kind":"binary","source":{"id":"237","name":"glibc","version":"2.30-0ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"240":{"id":"240","name":"libc6","version":"2.30-0ubuntu2.1","kind":"binary","source":{"id":"237","name":"glibc","version":"2.30-0ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"242":{"id":"242","name":"libcap-ng0","version":"0.7.9-2","kind":"binary","source":{"id":"241","name":"libcap-ng","version":"0.7.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"244":{"id":"244","name":"libcom-err2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"246":{"id":"246","name":"libdb5.3","version":"5.3.28+dfsg1-0.6ubuntu1","kind":"binary","source":{"id":"245","name":"db5.3","version":"5.3.28+dfsg1-0.6ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"248":{"id":"248","name":"libdebconfclient0","version":"0.249ubuntu1","kind":"binary","source":{"id":"247","name":"cdebconf","version":"0.249ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"250":{"id":"250","name":"libext2fs2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"252":{"id":"252","name":"libfdisk1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"254":{"id":"254","name":"libffi6","version":"3.2.1-9","kind":"binary","source":{"id":"253","name":"libffi","version":"3.2.1-9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"256":{"id":"256","name":"libgcc1","version":"1:9.2.1-9ubuntu2","kind":"binary","source":{"id":"255","name":"gcc-9 (9.2.1-9ubuntu2)","version":"1:9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"258":{"id":"258","name":"libgcrypt20","version":"1.8.4-5ubuntu2.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"260":{"id":"260","name":"libgmp10","version":"2:6.1.2+dfsg-4","kind":"binary","source":{"id":"259","name":"gmp","version":"2:6.1.2+dfsg-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"262":{"id":"262","name":"libgnutls30","version":"3.6.9-5ubuntu1.2","kind":"binary","source":{"id":"261","name":"gnutls28","version":"3.6.9-5ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"264":{"id":"264","name":"libgpg-error0","version":"1.36-7","kind":"binary","source":{"id":"263","name":"libgpg-error","version":"1.36-7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"266":{"id":"266","name":"libhogweed4","version":"3.4.1-1","kind":"binary","source":{"id":"265","name":"nettle","version":"3.4.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"268":{"id":"268","name":"libidn2-0","version":"2.2.0-2","kind":"binary","source":{"id":"267","name":"libidn2","version":"2.2.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"270":{"id":"270","name":"liblz4-1","version":"1.9.1-1","kind":"binary","source":{"id":"269","name":"lz4","version":"1.9.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"272":{"id":"272","name":"liblzma5","version":"5.2.4-1","kind":"binary","source":{"id":"271","name":"xz-utils","version":"5.2.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"274":{"id":"274","name":"libmount1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"276":{"id":"276","name":"libncurses6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"278":{"id":"278","name":"libncursesw6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"280":{"id":"280","name":"libnettle6","version":"3.4.1-1","kind":"binary","source":{"id":"265","name":"nettle","version":"3.4.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"282":{"id":"282","name":"libp11-kit0","version":"0.23.17-2","kind":"binary","source":{"id":"281","name":"p11-kit","version":"0.23.17-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"284":{"id":"284","name":"libpam-modules","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"286":{"id":"286","name":"libpam-modules-bin","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"288":{"id":"288","name":"libpam-runtime","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"290":{"id":"290","name":"libpam0g","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"292":{"id":"292","name":"libpcre2-8-0","version":"10.32-5","kind":"binary","source":{"id":"291","name":"pcre2","version":"10.32-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"294":{"id":"294","name":"libpcre3","version":"2:8.39-12","kind":"binary","source":{"id":"293","name":"pcre3","version":"2:8.39-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"296":{"id":"296","name":"libprocps7","version":"2:3.3.15-2ubuntu3","kind":"binary","source":{"id":"295","name":"procps","version":"2:3.3.15-2ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"298":{"id":"298","name":"libseccomp2","version":"2.4.1-0ubuntu0.19.10.3","kind":"binary","source":{"id":"297","name":"libseccomp","version":"2.4.1-0ubuntu0.19.10.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"300":{"id":"300","name":"libselinux1","version":"2.9-2","kind":"binary","source":{"id":"299","name":"libselinux","version":"2.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"302":{"id":"302","name":"libsemanage-common","version":"2.9-3","kind":"binary","source":{"id":"301","name":"libsemanage","version":"2.9-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"304":{"id":"304","name":"libsemanage1","version":"2.9-3","kind":"binary","source":{"id":"301","name":"libsemanage","version":"2.9-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"306":{"id":"306","name":"libsepol1","version":"2.9-2","kind":"binary","source":{"id":"305","name":"libsepol","version":"2.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"308":{"id":"308","name":"libsmartcols1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"310":{"id":"310","name":"libss2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"312":{"id":"312","name":"libstdc++6","version":"9.2.1-9ubuntu2","kind":"binary","source":{"id":"211","name":"gcc-9","version":"9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"314":{"id":"314","name":"libsystemd0","version":"242-7ubuntu3.9","kind":"binary","source":{"id":"313","name":"systemd","version":"242-7ubuntu3.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"316":{"id":"316","name":"libtasn1-6","version":"4.14-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"318":{"id":"318","name":"libtinfo6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"320":{"id":"320","name":"libudev1","version":"242-7ubuntu3.9","kind":"binary","source":{"id":"313","name":"systemd","version":"242-7ubuntu3.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"322":{"id":"322","name":"libunistring2","version":"0.9.10-2","kind":"binary","source":{"id":"321","name":"libunistring","version":"0.9.10-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"324":{"id":"324","name":"libuuid1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"326":{"id":"326","name":"libzstd1","version":"1.4.3+dfsg-1","kind":"binary","source":{"id":"325","name":"libzstd","version":"1.4.3+dfsg-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"328":{"id":"328","name":"login","version":"1:4.5-1.1ubuntu4","kind":"binary","source":{"id":"327","name":"shadow","version":"1:4.5-1.1ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"330":{"id":"330","name":"logsave","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"332":{"id":"332","name":"lsb-base","version":"11.0.1ubuntu1","kind":"binary","source":{"id":"331","name":"lsb","version":"11.0.1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"336":{"id":"336","name":"mount","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"338":{"id":"338","name":"ncurses-base","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"340":{"id":"340","name":"ncurses-bin","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"342":{"id":"342","name":"passwd","version":"1:4.5-1.1ubuntu4","kind":"binary","source":{"id":"327","name":"shadow","version":"1:4.5-1.1ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"344":{"id":"344","name":"perl-base","version":"5.28.1-6build1","kind":"binary","source":{"id":"343","name":"perl","version":"5.28.1-6build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"346":{"id":"346","name":"procps","version":"2:3.3.15-2ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"352":{"id":"352","name":"sysvinit-utils","version":"2.95-5ubuntu2","kind":"binary","source":{"id":"351","name":"sysvinit","version":"2.95-5ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"354":{"id":"354","name":"tar","version":"1.30+dfsg-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"356":{"id":"356","name":"ubuntu-keyring","version":"2018.09.18.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"358":{"id":"358","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"360":{"id":"360","name":"zlib1g","version":"1:1.2.11.dfsg-1ubuntu3","kind":"binary","source":{"id":"359","name":"zlib","version":"1:1.2.11.dfsg-1ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"58":{"id":"58","name":"mawk","version":"1.3.3-17ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"2":{"id":"2","did":"ubuntu","name":"Ubuntu","version":"19.10 (Eoan)","version_code_name":"eoan","version_id":"19.10","arch":"","cpe":"","pretty_name":"Ubuntu 19.10"}},"repository":{},"environments":{"110":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"180":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"182":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"184":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"186":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"188":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"190":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"192":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"194":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"196":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"198":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"200":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"204":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"206":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"208":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"210":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"212":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"214":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"216":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"218":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"220":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"222":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"224":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"226":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"228":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"230":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"232":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"234":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"236":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"238":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"240":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"242":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"244":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"246":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"248":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"250":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"252":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"254":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"256":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"258":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"260":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"262":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"264":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"266":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"268":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"270":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"272":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"274":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"276":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"278":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"280":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"282":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"284":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"286":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"288":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"290":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"292":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"294":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"296":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"298":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"300":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"302":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"304":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"306":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"308":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"310":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"312":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"314":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"316":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"318":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"320":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"322":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"324":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"326":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"328":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"330":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"332":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"336":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"338":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"340":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"342":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"344":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"346":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"352":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"354":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"356":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"358":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"360":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"58":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.report.json b/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.report.json
deleted file mode 100644
index 8dde0aed2..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-19.10.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:2f6c85efea61013a1f52da29b66610c7a780cf6fa4299613e8fecb878f508ac6","packages":{"110":{"id":"110","name":"sensible-utils","version":"0.0.12","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"180":{"id":"180","name":"adduser","version":"3.118ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"182":{"id":"182","name":"apt","version":"1.9.4ubuntu0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"184":{"id":"184","name":"base-files","version":"10.2ubuntu7.19.10.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"186":{"id":"186","name":"base-passwd","version":"3.5.46","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"188":{"id":"188","name":"bash","version":"5.0-4ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"190":{"id":"190","name":"bsdutils","version":"1:2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"189","name":"util-linux (2.34-0.1ubuntu2.4)","version":"1:2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"192":{"id":"192","name":"bzip2","version":"1.0.6-9.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"194":{"id":"194","name":"coreutils","version":"8.30-3ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"196":{"id":"196","name":"dash","version":"0.5.10.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"198":{"id":"198","name":"debconf","version":"1.5.73","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"200":{"id":"200","name":"debianutils","version":"4.8.6.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"204":{"id":"204","name":"dpkg","version":"1.19.7ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"206":{"id":"206","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"208":{"id":"208","name":"fdisk","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"210":{"id":"210","name":"findutils","version":"4.6.0+git+20190209-2ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"212":{"id":"212","name":"gcc-9-base","version":"9.2.1-9ubuntu2","kind":"binary","source":{"id":"211","name":"gcc-9","version":"9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"214":{"id":"214","name":"gpgv","version":"2.2.12-1ubuntu3","kind":"binary","source":{"id":"213","name":"gnupg2","version":"2.2.12-1ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"216":{"id":"216","name":"grep","version":"3.3-1build1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"218":{"id":"218","name":"gzip","version":"1.10-0ubuntu3.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"220":{"id":"220","name":"hostname","version":"3.22","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"222":{"id":"222","name":"init-system-helpers","version":"1.57","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"224":{"id":"224","name":"libacl1","version":"2.2.53-4","kind":"binary","source":{"id":"223","name":"acl","version":"2.2.53-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"226":{"id":"226","name":"libapt-pkg5.90","version":"1.9.4ubuntu0.1","kind":"binary","source":{"id":"225","name":"apt","version":"1.9.4ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"228":{"id":"228","name":"libattr1","version":"1:2.4.48-4","kind":"binary","source":{"id":"227","name":"attr","version":"1:2.4.48-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"230":{"id":"230","name":"libaudit-common","version":"1:2.8.5-2ubuntu1","kind":"binary","source":{"id":"229","name":"audit","version":"1:2.8.5-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"232":{"id":"232","name":"libaudit1","version":"1:2.8.5-2ubuntu1","kind":"binary","source":{"id":"229","name":"audit","version":"1:2.8.5-2ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"234":{"id":"234","name":"libblkid1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"236":{"id":"236","name":"libbz2-1.0","version":"1.0.6-9.2","kind":"binary","source":{"id":"235","name":"bzip2","version":"1.0.6-9.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"238":{"id":"238","name":"libc-bin","version":"2.30-0ubuntu2.1","kind":"binary","source":{"id":"237","name":"glibc","version":"2.30-0ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"240":{"id":"240","name":"libc6","version":"2.30-0ubuntu2.1","kind":"binary","source":{"id":"237","name":"glibc","version":"2.30-0ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"242":{"id":"242","name":"libcap-ng0","version":"0.7.9-2","kind":"binary","source":{"id":"241","name":"libcap-ng","version":"0.7.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"244":{"id":"244","name":"libcom-err2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"246":{"id":"246","name":"libdb5.3","version":"5.3.28+dfsg1-0.6ubuntu1","kind":"binary","source":{"id":"245","name":"db5.3","version":"5.3.28+dfsg1-0.6ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"248":{"id":"248","name":"libdebconfclient0","version":"0.249ubuntu1","kind":"binary","source":{"id":"247","name":"cdebconf","version":"0.249ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"250":{"id":"250","name":"libext2fs2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"252":{"id":"252","name":"libfdisk1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"254":{"id":"254","name":"libffi6","version":"3.2.1-9","kind":"binary","source":{"id":"253","name":"libffi","version":"3.2.1-9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"256":{"id":"256","name":"libgcc1","version":"1:9.2.1-9ubuntu2","kind":"binary","source":{"id":"255","name":"gcc-9 (9.2.1-9ubuntu2)","version":"1:9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"258":{"id":"258","name":"libgcrypt20","version":"1.8.4-5ubuntu2.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"260":{"id":"260","name":"libgmp10","version":"2:6.1.2+dfsg-4","kind":"binary","source":{"id":"259","name":"gmp","version":"2:6.1.2+dfsg-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"262":{"id":"262","name":"libgnutls30","version":"3.6.9-5ubuntu1.2","kind":"binary","source":{"id":"261","name":"gnutls28","version":"3.6.9-5ubuntu1.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"264":{"id":"264","name":"libgpg-error0","version":"1.36-7","kind":"binary","source":{"id":"263","name":"libgpg-error","version":"1.36-7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"266":{"id":"266","name":"libhogweed4","version":"3.4.1-1","kind":"binary","source":{"id":"265","name":"nettle","version":"3.4.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"268":{"id":"268","name":"libidn2-0","version":"2.2.0-2","kind":"binary","source":{"id":"267","name":"libidn2","version":"2.2.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"270":{"id":"270","name":"liblz4-1","version":"1.9.1-1","kind":"binary","source":{"id":"269","name":"lz4","version":"1.9.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"272":{"id":"272","name":"liblzma5","version":"5.2.4-1","kind":"binary","source":{"id":"271","name":"xz-utils","version":"5.2.4-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"274":{"id":"274","name":"libmount1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"276":{"id":"276","name":"libncurses6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"278":{"id":"278","name":"libncursesw6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"280":{"id":"280","name":"libnettle6","version":"3.4.1-1","kind":"binary","source":{"id":"265","name":"nettle","version":"3.4.1-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"282":{"id":"282","name":"libp11-kit0","version":"0.23.17-2","kind":"binary","source":{"id":"281","name":"p11-kit","version":"0.23.17-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"284":{"id":"284","name":"libpam-modules","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"286":{"id":"286","name":"libpam-modules-bin","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"288":{"id":"288","name":"libpam-runtime","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"290":{"id":"290","name":"libpam0g","version":"1.3.1-5ubuntu1.19.10.1","kind":"binary","source":{"id":"283","name":"pam","version":"1.3.1-5ubuntu1.19.10.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"292":{"id":"292","name":"libpcre2-8-0","version":"10.32-5","kind":"binary","source":{"id":"291","name":"pcre2","version":"10.32-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"294":{"id":"294","name":"libpcre3","version":"2:8.39-12","kind":"binary","source":{"id":"293","name":"pcre3","version":"2:8.39-12","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"296":{"id":"296","name":"libprocps7","version":"2:3.3.15-2ubuntu3","kind":"binary","source":{"id":"295","name":"procps","version":"2:3.3.15-2ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"298":{"id":"298","name":"libseccomp2","version":"2.4.1-0ubuntu0.19.10.3","kind":"binary","source":{"id":"297","name":"libseccomp","version":"2.4.1-0ubuntu0.19.10.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"300":{"id":"300","name":"libselinux1","version":"2.9-2","kind":"binary","source":{"id":"299","name":"libselinux","version":"2.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"302":{"id":"302","name":"libsemanage-common","version":"2.9-3","kind":"binary","source":{"id":"301","name":"libsemanage","version":"2.9-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"304":{"id":"304","name":"libsemanage1","version":"2.9-3","kind":"binary","source":{"id":"301","name":"libsemanage","version":"2.9-3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"306":{"id":"306","name":"libsepol1","version":"2.9-2","kind":"binary","source":{"id":"305","name":"libsepol","version":"2.9-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"308":{"id":"308","name":"libsmartcols1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"310":{"id":"310","name":"libss2","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"312":{"id":"312","name":"libstdc++6","version":"9.2.1-9ubuntu2","kind":"binary","source":{"id":"211","name":"gcc-9","version":"9.2.1-9ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"314":{"id":"314","name":"libsystemd0","version":"242-7ubuntu3.9","kind":"binary","source":{"id":"313","name":"systemd","version":"242-7ubuntu3.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"316":{"id":"316","name":"libtasn1-6","version":"4.14-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"318":{"id":"318","name":"libtinfo6","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"320":{"id":"320","name":"libudev1","version":"242-7ubuntu3.9","kind":"binary","source":{"id":"313","name":"systemd","version":"242-7ubuntu3.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"322":{"id":"322","name":"libunistring2","version":"0.9.10-2","kind":"binary","source":{"id":"321","name":"libunistring","version":"0.9.10-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"324":{"id":"324","name":"libuuid1","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"326":{"id":"326","name":"libzstd1","version":"1.4.3+dfsg-1","kind":"binary","source":{"id":"325","name":"libzstd","version":"1.4.3+dfsg-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"328":{"id":"328","name":"login","version":"1:4.5-1.1ubuntu4","kind":"binary","source":{"id":"327","name":"shadow","version":"1:4.5-1.1ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"330":{"id":"330","name":"logsave","version":"1.45.3-4ubuntu2.1","kind":"binary","source":{"id":"243","name":"e2fsprogs","version":"1.45.3-4ubuntu2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"332":{"id":"332","name":"lsb-base","version":"11.0.1ubuntu1","kind":"binary","source":{"id":"331","name":"lsb","version":"11.0.1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"336":{"id":"336","name":"mount","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"207","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"338":{"id":"338","name":"ncurses-base","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"340":{"id":"340","name":"ncurses-bin","version":"6.1+20190803-1ubuntu1","kind":"binary","source":{"id":"275","name":"ncurses","version":"6.1+20190803-1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"342":{"id":"342","name":"passwd","version":"1:4.5-1.1ubuntu4","kind":"binary","source":{"id":"327","name":"shadow","version":"1:4.5-1.1ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"344":{"id":"344","name":"perl-base","version":"5.28.1-6build1","kind":"binary","source":{"id":"343","name":"perl","version":"5.28.1-6build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"346":{"id":"346","name":"procps","version":"2:3.3.15-2ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"352":{"id":"352","name":"sysvinit-utils","version":"2.95-5ubuntu2","kind":"binary","source":{"id":"351","name":"sysvinit","version":"2.95-5ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"354":{"id":"354","name":"tar","version":"1.30+dfsg-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"356":{"id":"356","name":"ubuntu-keyring","version":"2018.09.18.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"358":{"id":"358","name":"util-linux","version":"2.34-0.1ubuntu2.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"360":{"id":"360","name":"zlib1g","version":"1:1.2.11.dfsg-1ubuntu3","kind":"binary","source":{"id":"359","name":"zlib","version":"1:1.2.11.dfsg-1ubuntu3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"58":{"id":"58","name":"mawk","version":"1.3.3-17ubuntu3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"2":{"id":"2","did":"ubuntu","name":"Ubuntu","version":"19.10 (Eoan)","version_code_name":"eoan","version_id":"19.10","arch":"","cpe":"","pretty_name":"Ubuntu 19.10"}},"repository":{},"environments":{"110":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"180":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"182":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"184":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"186":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"188":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"190":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"192":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"194":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"196":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"198":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"200":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"204":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"206":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"208":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"210":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"212":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"214":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"216":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"218":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"220":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"222":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"224":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"226":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"228":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"230":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"232":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"234":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"236":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"238":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"240":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"242":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"244":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"246":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"248":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"250":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"252":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"254":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"256":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"258":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"260":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"262":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"264":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"266":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"268":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"270":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"272":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"274":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"276":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"278":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"280":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"282":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"284":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"286":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"288":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"290":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"292":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"294":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"296":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"298":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"300":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"302":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"304":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"306":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"308":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"310":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"312":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"314":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"316":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"318":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"320":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"322":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"324":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"326":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"328":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"330":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"332":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"336":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"338":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"340":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"342":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"344":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"346":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"352":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"354":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"356":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"358":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"360":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}],"58":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:3f2411103a12c8e169df7a9ea00ff26ab07501858e3eff315a2e11c219e78ce1","distribution_id":"2","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.index.json b/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.index.json
deleted file mode 100644
index 2e3bae211..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:1c5c8d0b973ab9d6d7742cf050beefa8ba2efb7779e09bfb1200d6192180766e","state":"IndexFinished","packages":{"194":{"id":"194","name":"coreutils","version":"8.30-3ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"196":{"id":"196","name":"dash","version":"0.5.10.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"198":{"id":"198","name":"debconf","version":"1.5.73","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"222":{"id":"222","name":"init-system-helpers","version":"1.57","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"268":{"id":"268","name":"libidn2-0","version":"2.2.0-2","kind":"binary","source":{"id":"267","name":"libidn2","version":"2.2.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"322":{"id":"322","name":"libunistring2","version":"0.9.10-2","kind":"binary","source":{"id":"321","name":"libunistring","version":"0.9.10-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"362":{"id":"362","name":"adduser","version":"3.118ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"364":{"id":"364","name":"apt","version":"2.0.9","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"366":{"id":"366","name":"base-files","version":"11ubuntu5.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"368":{"id":"368","name":"base-passwd","version":"3.5.47","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"370":{"id":"370","name":"bash","version":"5.0-6ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"372":{"id":"372","name":"bsdutils","version":"1:2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"371","name":"util-linux (2.34-0.1ubuntu9.3)","version":"1:2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"374":{"id":"374","name":"bzip2","version":"1.0.8-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"382":{"id":"382","name":"debianutils","version":"4.9.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"386":{"id":"386","name":"dpkg","version":"1.19.7ubuntu3.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"388":{"id":"388","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"390":{"id":"390","name":"fdisk","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"392":{"id":"392","name":"findutils","version":"4.7.0-1ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"394":{"id":"394","name":"gcc-10-base","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"396":{"id":"396","name":"gpgv","version":"2.2.19-3ubuntu2.2","kind":"binary","source":{"id":"395","name":"gnupg2","version":"2.2.19-3ubuntu2.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"398":{"id":"398","name":"grep","version":"3.4-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"400":{"id":"400","name":"gzip","version":"1.10-0ubuntu4.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"402":{"id":"402","name":"hostname","version":"3.23","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"406":{"id":"406","name":"libacl1","version":"2.2.53-6","kind":"binary","source":{"id":"405","name":"acl","version":"2.2.53-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"408":{"id":"408","name":"libapt-pkg6.0","version":"2.0.9","kind":"binary","source":{"id":"407","name":"apt","version":"2.0.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"410":{"id":"410","name":"libattr1","version":"1:2.4.48-5","kind":"binary","source":{"id":"409","name":"attr","version":"1:2.4.48-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"412":{"id":"412","name":"libaudit-common","version":"1:2.8.5-2ubuntu6","kind":"binary","source":{"id":"411","name":"audit","version":"1:2.8.5-2ubuntu6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"414":{"id":"414","name":"libaudit1","version":"1:2.8.5-2ubuntu6","kind":"binary","source":{"id":"411","name":"audit","version":"1:2.8.5-2ubuntu6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"416":{"id":"416","name":"libblkid1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"418":{"id":"418","name":"libbz2-1.0","version":"1.0.8-2","kind":"binary","source":{"id":"417","name":"bzip2","version":"1.0.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"420":{"id":"420","name":"libc-bin","version":"2.31-0ubuntu9.9","kind":"binary","source":{"id":"419","name":"glibc","version":"2.31-0ubuntu9.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"422":{"id":"422","name":"libc6","version":"2.31-0ubuntu9.9","kind":"binary","source":{"id":"419","name":"glibc","version":"2.31-0ubuntu9.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"424":{"id":"424","name":"libcap-ng0","version":"0.7.9-2.1build1","kind":"binary","source":{"id":"423","name":"libcap-ng","version":"0.7.9-2.1build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"426":{"id":"426","name":"libcom-err2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"428":{"id":"428","name":"libcrypt1","version":"1:4.4.10-10ubuntu4","kind":"binary","source":{"id":"427","name":"libxcrypt","version":"1:4.4.10-10ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"430":{"id":"430","name":"libdb5.3","version":"5.3.28+dfsg1-0.6ubuntu2","kind":"binary","source":{"id":"429","name":"db5.3","version":"5.3.28+dfsg1-0.6ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"432":{"id":"432","name":"libdebconfclient0","version":"0.251ubuntu1","kind":"binary","source":{"id":"431","name":"cdebconf","version":"0.251ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"434":{"id":"434","name":"libext2fs2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"436":{"id":"436","name":"libfdisk1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"438":{"id":"438","name":"libffi7","version":"3.3-4","kind":"binary","source":{"id":"437","name":"libffi","version":"3.3-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"440":{"id":"440","name":"libgcc-s1","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"442":{"id":"442","name":"libgcrypt20","version":"1.8.5-5ubuntu1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"444":{"id":"444","name":"libgmp10","version":"2:6.2.0+dfsg-4ubuntu0.1","kind":"binary","source":{"id":"443","name":"gmp","version":"2:6.2.0+dfsg-4ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"446":{"id":"446","name":"libgnutls30","version":"3.6.13-2ubuntu1.8","kind":"binary","source":{"id":"445","name":"gnutls28","version":"3.6.13-2ubuntu1.8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"448":{"id":"448","name":"libgpg-error0","version":"1.37-1","kind":"binary","source":{"id":"447","name":"libgpg-error","version":"1.37-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"450":{"id":"450","name":"libhogweed5","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"binary","source":{"id":"449","name":"nettle","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"454":{"id":"454","name":"liblz4-1","version":"1.9.2-2ubuntu0.20.04.1","kind":"binary","source":{"id":"453","name":"lz4","version":"1.9.2-2ubuntu0.20.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"456":{"id":"456","name":"liblzma5","version":"5.2.4-1ubuntu1.1","kind":"binary","source":{"id":"455","name":"xz-utils","version":"5.2.4-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"458":{"id":"458","name":"libmount1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"460":{"id":"460","name":"libncurses6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"462":{"id":"462","name":"libncursesw6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"464":{"id":"464","name":"libnettle7","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"binary","source":{"id":"449","name":"nettle","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"466":{"id":"466","name":"libp11-kit0","version":"0.23.20-1ubuntu0.1","kind":"binary","source":{"id":"465","name":"p11-kit","version":"0.23.20-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"468":{"id":"468","name":"libpam-modules","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"470":{"id":"470","name":"libpam-modules-bin","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"472":{"id":"472","name":"libpam-runtime","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"474":{"id":"474","name":"libpam0g","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"476":{"id":"476","name":"libpcre2-8-0","version":"10.34-7ubuntu0.1","kind":"binary","source":{"id":"475","name":"pcre2","version":"10.34-7ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"478":{"id":"478","name":"libpcre3","version":"2:8.39-12ubuntu0.1","kind":"binary","source":{"id":"477","name":"pcre3","version":"2:8.39-12ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"480":{"id":"480","name":"libprocps8","version":"2:3.3.16-1ubuntu2.3","kind":"binary","source":{"id":"479","name":"procps","version":"2:3.3.16-1ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"482":{"id":"482","name":"libseccomp2","version":"2.5.1-1ubuntu1~20.04.2","kind":"binary","source":{"id":"481","name":"libseccomp","version":"2.5.1-1ubuntu1~20.04.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"484":{"id":"484","name":"libselinux1","version":"3.0-1build2","kind":"binary","source":{"id":"483","name":"libselinux","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"486":{"id":"486","name":"libsemanage-common","version":"3.0-1build2","kind":"binary","source":{"id":"485","name":"libsemanage","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"488":{"id":"488","name":"libsemanage1","version":"3.0-1build2","kind":"binary","source":{"id":"485","name":"libsemanage","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"490":{"id":"490","name":"libsepol1","version":"3.0-1ubuntu0.1","kind":"binary","source":{"id":"489","name":"libsepol","version":"3.0-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"492":{"id":"492","name":"libsmartcols1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"494":{"id":"494","name":"libss2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"496":{"id":"496","name":"libstdc++6","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"498":{"id":"498","name":"libsystemd0","version":"245.4-4ubuntu3.20","kind":"binary","source":{"id":"497","name":"systemd","version":"245.4-4ubuntu3.20","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"500":{"id":"500","name":"libtasn1-6","version":"4.16.0-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"502":{"id":"502","name":"libtinfo6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"504":{"id":"504","name":"libudev1","version":"245.4-4ubuntu3.20","kind":"binary","source":{"id":"497","name":"systemd","version":"245.4-4ubuntu3.20","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"508":{"id":"508","name":"libuuid1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"510":{"id":"510","name":"libzstd1","version":"1.4.4+dfsg-3ubuntu0.1","kind":"binary","source":{"id":"509","name":"libzstd","version":"1.4.4+dfsg-3ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"512":{"id":"512","name":"login","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"binary","source":{"id":"511","name":"shadow","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"514":{"id":"514","name":"logsave","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"516":{"id":"516","name":"lsb-base","version":"11.1.0ubuntu2","kind":"binary","source":{"id":"515","name":"lsb","version":"11.1.0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"518":{"id":"518","name":"mawk","version":"1.3.4.20200120-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"520":{"id":"520","name":"mount","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"522":{"id":"522","name":"ncurses-base","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"524":{"id":"524","name":"ncurses-bin","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"526":{"id":"526","name":"passwd","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"binary","source":{"id":"511","name":"shadow","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"528":{"id":"528","name":"perl-base","version":"5.30.0-9ubuntu0.3","kind":"binary","source":{"id":"527","name":"perl","version":"5.30.0-9ubuntu0.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"530":{"id":"530","name":"procps","version":"2:3.3.16-1ubuntu2.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"534":{"id":"534","name":"sensible-utils","version":"0.0.12+nmu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"536":{"id":"536","name":"sysvinit-utils","version":"2.96-2.1ubuntu1","kind":"binary","source":{"id":"535","name":"sysvinit","version":"2.96-2.1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"538":{"id":"538","name":"tar","version":"1.30+dfsg-7ubuntu0.20.04.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"540":{"id":"540","name":"ubuntu-keyring","version":"2020.02.11.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"542":{"id":"542","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"544":{"id":"544","name":"zlib1g","version":"1:1.2.11.dfsg-2ubuntu1.5","kind":"binary","source":{"id":"543","name":"zlib","version":"1:1.2.11.dfsg-2ubuntu1.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"3":{"id":"3","did":"ubuntu","name":"Ubuntu","version":"20.04 (Focal)","version_code_name":"focal","version_id":"20.04","arch":"","cpe":"","pretty_name":"Ubuntu 20.04"}},"repository":{},"environments":{"194":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"196":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"198":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"222":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"268":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"322":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"362":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"364":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"366":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"368":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"370":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"372":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"374":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"382":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"386":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"388":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"390":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"392":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"394":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"396":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"398":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"400":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"402":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"406":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"408":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"410":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"412":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"414":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"416":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"418":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"420":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"422":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"424":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"426":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"428":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"430":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"432":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"434":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"436":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"438":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"440":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"444":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"446":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"448":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"450":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"454":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"456":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"458":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"460":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"462":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"464":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"466":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"468":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"470":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"472":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"474":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"476":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"478":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"480":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"482":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"484":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"486":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"488":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"490":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"492":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"494":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"496":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"498":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"500":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"502":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"504":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"508":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"510":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"512":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"514":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"516":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"518":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"520":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"522":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"524":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"526":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"528":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"530":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"534":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"536":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"538":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"540":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"542":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"544":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.report.json b/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.report.json
deleted file mode 100644
index 76b5d3253..000000000
--- a/datastore/postgres/testdata/docker.io-library-ubuntu-20.04.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:1c5c8d0b973ab9d6d7742cf050beefa8ba2efb7779e09bfb1200d6192180766e","packages":{"194":{"id":"194","name":"coreutils","version":"8.30-3ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"196":{"id":"196","name":"dash","version":"0.5.10.2-6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"198":{"id":"198","name":"debconf","version":"1.5.73","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"202":{"id":"202","name":"diffutils","version":"1:3.7-3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"222":{"id":"222","name":"init-system-helpers","version":"1.57","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"268":{"id":"268","name":"libidn2-0","version":"2.2.0-2","kind":"binary","source":{"id":"267","name":"libidn2","version":"2.2.0-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"322":{"id":"322","name":"libunistring2","version":"0.9.10-2","kind":"binary","source":{"id":"321","name":"libunistring","version":"0.9.10-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"348":{"id":"348","name":"sed","version":"4.7-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"362":{"id":"362","name":"adduser","version":"3.118ubuntu2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"364":{"id":"364","name":"apt","version":"2.0.9","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"366":{"id":"366","name":"base-files","version":"11ubuntu5.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"368":{"id":"368","name":"base-passwd","version":"3.5.47","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"370":{"id":"370","name":"bash","version":"5.0-6ubuntu1.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"372":{"id":"372","name":"bsdutils","version":"1:2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"371","name":"util-linux (2.34-0.1ubuntu9.3)","version":"1:2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"374":{"id":"374","name":"bzip2","version":"1.0.8-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"382":{"id":"382","name":"debianutils","version":"4.9.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"386":{"id":"386","name":"dpkg","version":"1.19.7ubuntu3.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"388":{"id":"388","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"390":{"id":"390","name":"fdisk","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"392":{"id":"392","name":"findutils","version":"4.7.0-1ubuntu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"394":{"id":"394","name":"gcc-10-base","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"396":{"id":"396","name":"gpgv","version":"2.2.19-3ubuntu2.2","kind":"binary","source":{"id":"395","name":"gnupg2","version":"2.2.19-3ubuntu2.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"398":{"id":"398","name":"grep","version":"3.4-1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"400":{"id":"400","name":"gzip","version":"1.10-0ubuntu4.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"402":{"id":"402","name":"hostname","version":"3.23","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"406":{"id":"406","name":"libacl1","version":"2.2.53-6","kind":"binary","source":{"id":"405","name":"acl","version":"2.2.53-6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"408":{"id":"408","name":"libapt-pkg6.0","version":"2.0.9","kind":"binary","source":{"id":"407","name":"apt","version":"2.0.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"410":{"id":"410","name":"libattr1","version":"1:2.4.48-5","kind":"binary","source":{"id":"409","name":"attr","version":"1:2.4.48-5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"412":{"id":"412","name":"libaudit-common","version":"1:2.8.5-2ubuntu6","kind":"binary","source":{"id":"411","name":"audit","version":"1:2.8.5-2ubuntu6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"414":{"id":"414","name":"libaudit1","version":"1:2.8.5-2ubuntu6","kind":"binary","source":{"id":"411","name":"audit","version":"1:2.8.5-2ubuntu6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"416":{"id":"416","name":"libblkid1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"418":{"id":"418","name":"libbz2-1.0","version":"1.0.8-2","kind":"binary","source":{"id":"417","name":"bzip2","version":"1.0.8-2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"420":{"id":"420","name":"libc-bin","version":"2.31-0ubuntu9.9","kind":"binary","source":{"id":"419","name":"glibc","version":"2.31-0ubuntu9.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"422":{"id":"422","name":"libc6","version":"2.31-0ubuntu9.9","kind":"binary","source":{"id":"419","name":"glibc","version":"2.31-0ubuntu9.9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"424":{"id":"424","name":"libcap-ng0","version":"0.7.9-2.1build1","kind":"binary","source":{"id":"423","name":"libcap-ng","version":"0.7.9-2.1build1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"426":{"id":"426","name":"libcom-err2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"428":{"id":"428","name":"libcrypt1","version":"1:4.4.10-10ubuntu4","kind":"binary","source":{"id":"427","name":"libxcrypt","version":"1:4.4.10-10ubuntu4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"430":{"id":"430","name":"libdb5.3","version":"5.3.28+dfsg1-0.6ubuntu2","kind":"binary","source":{"id":"429","name":"db5.3","version":"5.3.28+dfsg1-0.6ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"432":{"id":"432","name":"libdebconfclient0","version":"0.251ubuntu1","kind":"binary","source":{"id":"431","name":"cdebconf","version":"0.251ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"434":{"id":"434","name":"libext2fs2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"436":{"id":"436","name":"libfdisk1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"438":{"id":"438","name":"libffi7","version":"3.3-4","kind":"binary","source":{"id":"437","name":"libffi","version":"3.3-4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"440":{"id":"440","name":"libgcc-s1","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"442":{"id":"442","name":"libgcrypt20","version":"1.8.5-5ubuntu1.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"444":{"id":"444","name":"libgmp10","version":"2:6.2.0+dfsg-4ubuntu0.1","kind":"binary","source":{"id":"443","name":"gmp","version":"2:6.2.0+dfsg-4ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"446":{"id":"446","name":"libgnutls30","version":"3.6.13-2ubuntu1.8","kind":"binary","source":{"id":"445","name":"gnutls28","version":"3.6.13-2ubuntu1.8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"448":{"id":"448","name":"libgpg-error0","version":"1.37-1","kind":"binary","source":{"id":"447","name":"libgpg-error","version":"1.37-1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"450":{"id":"450","name":"libhogweed5","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"binary","source":{"id":"449","name":"nettle","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"454":{"id":"454","name":"liblz4-1","version":"1.9.2-2ubuntu0.20.04.1","kind":"binary","source":{"id":"453","name":"lz4","version":"1.9.2-2ubuntu0.20.04.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"456":{"id":"456","name":"liblzma5","version":"5.2.4-1ubuntu1.1","kind":"binary","source":{"id":"455","name":"xz-utils","version":"5.2.4-1ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"458":{"id":"458","name":"libmount1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"460":{"id":"460","name":"libncurses6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"462":{"id":"462","name":"libncursesw6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"464":{"id":"464","name":"libnettle7","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"binary","source":{"id":"449","name":"nettle","version":"3.5.1+really3.5.1-2ubuntu0.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"466":{"id":"466","name":"libp11-kit0","version":"0.23.20-1ubuntu0.1","kind":"binary","source":{"id":"465","name":"p11-kit","version":"0.23.20-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"468":{"id":"468","name":"libpam-modules","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"470":{"id":"470","name":"libpam-modules-bin","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"472":{"id":"472","name":"libpam-runtime","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"474":{"id":"474","name":"libpam0g","version":"1.3.1-5ubuntu4.6","kind":"binary","source":{"id":"467","name":"pam","version":"1.3.1-5ubuntu4.6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"476":{"id":"476","name":"libpcre2-8-0","version":"10.34-7ubuntu0.1","kind":"binary","source":{"id":"475","name":"pcre2","version":"10.34-7ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"478":{"id":"478","name":"libpcre3","version":"2:8.39-12ubuntu0.1","kind":"binary","source":{"id":"477","name":"pcre3","version":"2:8.39-12ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"480":{"id":"480","name":"libprocps8","version":"2:3.3.16-1ubuntu2.3","kind":"binary","source":{"id":"479","name":"procps","version":"2:3.3.16-1ubuntu2.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"482":{"id":"482","name":"libseccomp2","version":"2.5.1-1ubuntu1~20.04.2","kind":"binary","source":{"id":"481","name":"libseccomp","version":"2.5.1-1ubuntu1~20.04.2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"484":{"id":"484","name":"libselinux1","version":"3.0-1build2","kind":"binary","source":{"id":"483","name":"libselinux","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"486":{"id":"486","name":"libsemanage-common","version":"3.0-1build2","kind":"binary","source":{"id":"485","name":"libsemanage","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"488":{"id":"488","name":"libsemanage1","version":"3.0-1build2","kind":"binary","source":{"id":"485","name":"libsemanage","version":"3.0-1build2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"490":{"id":"490","name":"libsepol1","version":"3.0-1ubuntu0.1","kind":"binary","source":{"id":"489","name":"libsepol","version":"3.0-1ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"492":{"id":"492","name":"libsmartcols1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"494":{"id":"494","name":"libss2","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"496":{"id":"496","name":"libstdc++6","version":"10.3.0-1ubuntu1~20.04","kind":"binary","source":{"id":"393","name":"gcc-10","version":"10.3.0-1ubuntu1~20.04","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"498":{"id":"498","name":"libsystemd0","version":"245.4-4ubuntu3.20","kind":"binary","source":{"id":"497","name":"systemd","version":"245.4-4ubuntu3.20","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"500":{"id":"500","name":"libtasn1-6","version":"4.16.0-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"502":{"id":"502","name":"libtinfo6","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"504":{"id":"504","name":"libudev1","version":"245.4-4ubuntu3.20","kind":"binary","source":{"id":"497","name":"systemd","version":"245.4-4ubuntu3.20","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"508":{"id":"508","name":"libuuid1","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"510":{"id":"510","name":"libzstd1","version":"1.4.4+dfsg-3ubuntu0.1","kind":"binary","source":{"id":"509","name":"libzstd","version":"1.4.4+dfsg-3ubuntu0.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"512":{"id":"512","name":"login","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"binary","source":{"id":"511","name":"shadow","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"514":{"id":"514","name":"logsave","version":"1.45.5-2ubuntu1.1","kind":"binary","source":{"id":"425","name":"e2fsprogs","version":"1.45.5-2ubuntu1.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"516":{"id":"516","name":"lsb-base","version":"11.1.0ubuntu2","kind":"binary","source":{"id":"515","name":"lsb","version":"11.1.0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"518":{"id":"518","name":"mawk","version":"1.3.4.20200120-2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"520":{"id":"520","name":"mount","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"389","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"522":{"id":"522","name":"ncurses-base","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"524":{"id":"524","name":"ncurses-bin","version":"6.2-0ubuntu2","kind":"binary","source":{"id":"459","name":"ncurses","version":"6.2-0ubuntu2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"526":{"id":"526","name":"passwd","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"binary","source":{"id":"511","name":"shadow","version":"1:4.8.1-1ubuntu5.20.04.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"528":{"id":"528","name":"perl-base","version":"5.30.0-9ubuntu0.3","kind":"binary","source":{"id":"527","name":"perl","version":"5.30.0-9ubuntu0.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"530":{"id":"530","name":"procps","version":"2:3.3.16-1ubuntu2.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"534":{"id":"534","name":"sensible-utils","version":"0.0.12+nmu1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"536":{"id":"536","name":"sysvinit-utils","version":"2.96-2.1ubuntu1","kind":"binary","source":{"id":"535","name":"sysvinit","version":"2.96-2.1ubuntu1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"538":{"id":"538","name":"tar","version":"1.30+dfsg-7ubuntu0.20.04.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"540":{"id":"540","name":"ubuntu-keyring","version":"2020.02.11.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"all","cpe":""},"542":{"id":"542","name":"util-linux","version":"2.34-0.1ubuntu9.3","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""},"544":{"id":"544","name":"zlib1g","version":"1:1.2.11.dfsg-2ubuntu1.5","kind":"binary","source":{"id":"543","name":"zlib","version":"1:1.2.11.dfsg-2ubuntu1.5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"amd64","cpe":""}},"distributions":{"3":{"id":"3","did":"ubuntu","name":"Ubuntu","version":"20.04 (Focal)","version_code_name":"focal","version_id":"20.04","arch":"","cpe":"","pretty_name":"Ubuntu 20.04"}},"repository":{},"environments":{"194":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"196":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"198":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"202":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"222":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"268":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"322":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"348":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"362":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"364":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"366":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"368":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"370":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"372":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"374":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"382":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"386":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"388":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"390":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"392":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"394":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"396":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"398":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"400":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"402":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"406":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"408":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"410":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"412":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"414":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"416":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"418":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"420":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"422":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"424":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"426":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"428":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"430":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"432":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"434":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"436":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"438":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"440":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"442":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"444":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"446":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"448":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"450":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"454":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"456":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"458":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"460":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"462":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"464":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"466":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"468":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"470":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"472":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"474":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"476":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"478":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"480":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"482":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"484":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"486":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"488":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"490":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"492":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"494":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"496":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"498":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"500":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"502":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"504":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"508":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"510":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"512":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"514":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"516":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"518":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"520":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"522":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"524":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"526":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"528":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"530":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"534":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"536":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"538":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"540":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"542":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}],"544":[{"package_db":"var/lib/dpkg/status","introduced_in":"sha256:06d39c85623a79eb68b6cac39f4c4aba8834873ee5fc27be9d9d7655e6313c26","distribution_id":"3","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.index.json b/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.index.json
deleted file mode 100644
index 7506c3465..000000000
--- a/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:acd5c2cc5694477b343a87a9a16ff6eb1833945d667ef87744dfe7d730cec218","state":"IndexFinished","packages":{"548":{"id":"548","name":"busybox","version":"1.27.2-r7","kind":"binary","source":{"id":"547","name":"busybox","version":"1.27.2-r7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"550":{"id":"550","name":"alpine-baselayout","version":"3.0.5-r2","kind":"binary","source":{"id":"549","name":"alpine-baselayout","version":"3.0.5-r2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"552":{"id":"552","name":"alpine-keys","version":"2.1-r1","kind":"binary","source":{"id":"551","name":"alpine-keys","version":"2.1-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"554":{"id":"554","name":"libressl2.6-libcrypto","version":"2.6.3-r0","kind":"binary","source":{"id":"553","name":"libressl","version":"2.6.3-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"556":{"id":"556","name":"libressl2.6-libssl","version":"2.6.3-r0","kind":"binary","source":{"id":"553","name":"libressl","version":"2.6.3-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"558":{"id":"558","name":"zlib","version":"1.2.11-r1","kind":"binary","source":{"id":"557","name":"zlib","version":"1.2.11-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"560":{"id":"560","name":"apk-tools","version":"2.8.2-r0","kind":"binary","source":{"id":"559","name":"apk-tools","version":"2.8.2-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"562":{"id":"562","name":"scanelf","version":"1.2.2-r1","kind":"binary","source":{"id":"561","name":"pax-utils","version":"1.2.2-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"566":{"id":"566","name":"libc-utils","version":"0.7.1-r0","kind":"binary","source":{"id":"565","name":"libc-dev","version":"0.7.1-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"586":{"id":"586","name":"musl","version":"1.1.18-r3","kind":"binary","source":{"id":"585","name":"musl","version":"1.1.18-r3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"588":{"id":"588","name":"libgcc","version":"6.4.0-r5","kind":"binary","source":{"id":"587","name":"gcc","version":"6.4.0-r5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"590":{"id":"590","name":"libstdc++","version":"6.4.0-r5","kind":"binary","source":{"id":"587","name":"gcc","version":"6.4.0-r5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"592":{"id":"592","name":"expat","version":"2.2.5-r0","kind":"binary","source":{"id":"591","name":"expat","version":"2.2.5-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"594":{"id":"594","name":"musl-utils","version":"1.1.18-r3","kind":"binary","source":{"id":"585","name":"musl","version":"1.1.18-r3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"596":{"id":"596","name":"libffi","version":"3.2.1-r4","kind":"binary","source":{"id":"595","name":"libffi","version":"3.2.1-r4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"598":{"id":"598","name":"libcrypto1.0","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"600":{"id":"600","name":"libssl1.0","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"602":{"id":"602","name":"openssl","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"604":{"id":"604","name":"libbz2","version":"1.0.6-r6","kind":"binary","source":{"id":"603","name":"bzip2","version":"1.0.6-r6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"606":{"id":"606","name":"gdbm","version":"1.13-r1","kind":"binary","source":{"id":"605","name":"gdbm","version":"1.13-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"608":{"id":"608","name":"xz-libs","version":"5.2.3-r1","kind":"binary","source":{"id":"607","name":"xz","version":"5.2.3-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"610":{"id":"610","name":"ncurses-terminfo-base","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"612":{"id":"612","name":"ncurses-terminfo","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"614":{"id":"614","name":"ncurses-libs","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"616":{"id":"616","name":"readline","version":"7.0.003-r0","kind":"binary","source":{"id":"615","name":"readline","version":"7.0.003-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"618":{"id":"618","name":"sqlite-libs","version":"3.21.0-r0","kind":"binary","source":{"id":"617","name":"sqlite","version":"3.21.0-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"620":{"id":"620","name":"python3","version":"3.6.3-r9","kind":"binary","source":{"id":"619","name":"python3","version":"3.6.3-r9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"622":{"id":"622","name":"su-exec","version":"0.2-r0","kind":"binary","source":{"id":"621","name":"su-exec","version":"0.2-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"624":{"id":"624","name":"asn1crypto","version":"0.24.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.24.0.0.0.0.0.0.0","cpe":""},"626":{"id":"626","name":"blinker","version":"1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.4.0.0.0.0.0.0.0","cpe":""},"628":{"id":"628","name":"brotlipy","version":"0.7.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.7.0.0.0.0.0.0.0","cpe":""},"630":{"id":"630","name":"certifi","version":"2018.4.16","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2018.4.16.0.0.0.0.0.0","cpe":""},"632":{"id":"632","name":"cffi","version":"1.11.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.11.5.0.0.0.0.0.0","cpe":""},"634":{"id":"634","name":"click","version":"6.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.6.7.0.0.0.0.0.0.0","cpe":""},"636":{"id":"636","name":"cryptography","version":"2.2.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.2.2.0.0.0.0.0.0","cpe":""},"638":{"id":"638","name":"h11","version":"0.7.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.7.0.0.0.0.0.0.0","cpe":""},"640":{"id":"640","name":"h2","version":"3.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.3.0.1.0.0.0.0.0.0","cpe":""},"642":{"id":"642","name":"hpack","version":"3.0.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.3.0.0.0.0.0.0.0.0","cpe":""},"644":{"id":"644","name":"hyperframe","version":"5.1.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.5.1.0.0.0.0.0.0.0","cpe":""},"646":{"id":"646","name":"idna","version":"2.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.6.0.0.0.0.0.0.0","cpe":""},"648":{"id":"648","name":"kaitaistruct","version":"0.8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.8.0.0.0.0.0.0.0","cpe":""},"650":{"id":"650","name":"ldap3","version":"2.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.5.0.0.0.0.0.0.0","cpe":""},"652":{"id":"652","name":"mitmproxy","version":"4.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.4.0.1.0.0.0.0.0.0","cpe":""},"654":{"id":"654","name":"passlib","version":"1.7.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.7.1.0.0.0.0.0.0","cpe":""},"656":{"id":"656","name":"pip","version":"9.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.9.0.1.0.0.0.0.0.0","cpe":""},"658":{"id":"658","name":"pyopenssl","version":"17.5.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.17.5.0.0.0.0.0.0.0","cpe":""},"660":{"id":"660","name":"pyasn1","version":"0.4.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.4.2.0.0.0.0.0.0","cpe":""},"662":{"id":"662","name":"pycparser","version":"2.18","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.18.0.0.0.0.0.0.0","cpe":""},"664":{"id":"664","name":"pyparsing","version":"2.2.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.2.0.0.0.0.0.0.0","cpe":""},"666":{"id":"666","name":"pyperclip","version":"1.6.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.6.0.0.0.0.0.0.0","cpe":""},"668":{"id":"668","name":"ruamel.yaml","version":"0.15.37","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.15.37.0.0.0.0.0.0","cpe":""},"670":{"id":"670","name":"setuptools","version":"28.8.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.28.8.0.0.0.0.0.0.0","cpe":""},"672":{"id":"672","name":"six","version":"1.11.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.11.0.0.0.0.0.0.0","cpe":""},"674":{"id":"674","name":"sortedcontainers","version":"1.5.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.5.10.0.0.0.0.0.0","cpe":""},"676":{"id":"676","name":"tornado","version":"5.0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.5.0.2.0.0.0.0.0.0","cpe":""},"678":{"id":"678","name":"urwid","version":"2.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.0.1.0.0.0.0.0.0","cpe":""},"680":{"id":"680","name":"wsproto","version":"0.11.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.11.0.0.0.0.0.0.0","cpe":""}},"distributions":{"4":{"id":"4","did":"alpine","name":"Alpine Linux","version":"3.7","version_code_name":"","version_id":"","arch":"","cpe":"","pretty_name":"Alpine Linux v3.7"}},"repository":{"1":{"id":"1","name":"pypi","uri":"https://pypi.org/simple","cpe":""}},"environments":{"548":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"550":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"552":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"554":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"556":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"558":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"560":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"562":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"566":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"586":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"588":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"590":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"592":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"594":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"596":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"598":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"600":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"602":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"604":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"606":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"608":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"610":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"612":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"614":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"616":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"618":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"620":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"622":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"624":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"626":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"628":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"630":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"632":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"634":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"636":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"638":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"640":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"642":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"644":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"646":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"648":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"650":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"652":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"654":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"656":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"658":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"660":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"662":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"664":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"666":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"668":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"670":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"672":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"674":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"676":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"678":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"680":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.report.json b/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.report.json
deleted file mode 100644
index f852141ba..000000000
--- a/datastore/postgres/testdata/docker.io-mitmproxy-mitmproxy-4.0.1.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:acd5c2cc5694477b343a87a9a16ff6eb1833945d667ef87744dfe7d730cec218","packages":{"548":{"id":"548","name":"busybox","version":"1.27.2-r7","kind":"binary","source":{"id":"547","name":"busybox","version":"1.27.2-r7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"550":{"id":"550","name":"alpine-baselayout","version":"3.0.5-r2","kind":"binary","source":{"id":"549","name":"alpine-baselayout","version":"3.0.5-r2","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"552":{"id":"552","name":"alpine-keys","version":"2.1-r1","kind":"binary","source":{"id":"551","name":"alpine-keys","version":"2.1-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"554":{"id":"554","name":"libressl2.6-libcrypto","version":"2.6.3-r0","kind":"binary","source":{"id":"553","name":"libressl","version":"2.6.3-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"556":{"id":"556","name":"libressl2.6-libssl","version":"2.6.3-r0","kind":"binary","source":{"id":"553","name":"libressl","version":"2.6.3-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"558":{"id":"558","name":"zlib","version":"1.2.11-r1","kind":"binary","source":{"id":"557","name":"zlib","version":"1.2.11-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"560":{"id":"560","name":"apk-tools","version":"2.8.2-r0","kind":"binary","source":{"id":"559","name":"apk-tools","version":"2.8.2-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"562":{"id":"562","name":"scanelf","version":"1.2.2-r1","kind":"binary","source":{"id":"561","name":"pax-utils","version":"1.2.2-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"566":{"id":"566","name":"libc-utils","version":"0.7.1-r0","kind":"binary","source":{"id":"565","name":"libc-dev","version":"0.7.1-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"586":{"id":"586","name":"musl","version":"1.1.18-r3","kind":"binary","source":{"id":"585","name":"musl","version":"1.1.18-r3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"588":{"id":"588","name":"libgcc","version":"6.4.0-r5","kind":"binary","source":{"id":"587","name":"gcc","version":"6.4.0-r5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"590":{"id":"590","name":"libstdc++","version":"6.4.0-r5","kind":"binary","source":{"id":"587","name":"gcc","version":"6.4.0-r5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"592":{"id":"592","name":"expat","version":"2.2.5-r0","kind":"binary","source":{"id":"591","name":"expat","version":"2.2.5-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"594":{"id":"594","name":"musl-utils","version":"1.1.18-r3","kind":"binary","source":{"id":"585","name":"musl","version":"1.1.18-r3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"596":{"id":"596","name":"libffi","version":"3.2.1-r4","kind":"binary","source":{"id":"595","name":"libffi","version":"3.2.1-r4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"598":{"id":"598","name":"libcrypto1.0","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"600":{"id":"600","name":"libssl1.0","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"602":{"id":"602","name":"openssl","version":"1.0.2o-r0","kind":"binary","source":{"id":"597","name":"openssl","version":"1.0.2o-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"604":{"id":"604","name":"libbz2","version":"1.0.6-r6","kind":"binary","source":{"id":"603","name":"bzip2","version":"1.0.6-r6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"606":{"id":"606","name":"gdbm","version":"1.13-r1","kind":"binary","source":{"id":"605","name":"gdbm","version":"1.13-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"608":{"id":"608","name":"xz-libs","version":"5.2.3-r1","kind":"binary","source":{"id":"607","name":"xz","version":"5.2.3-r1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"610":{"id":"610","name":"ncurses-terminfo-base","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"612":{"id":"612","name":"ncurses-terminfo","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"614":{"id":"614","name":"ncurses-libs","version":"6.0_p20171125-r0","kind":"binary","source":{"id":"609","name":"ncurses","version":"6.0_p20171125-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"616":{"id":"616","name":"readline","version":"7.0.003-r0","kind":"binary","source":{"id":"615","name":"readline","version":"7.0.003-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"618":{"id":"618","name":"sqlite-libs","version":"3.21.0-r0","kind":"binary","source":{"id":"617","name":"sqlite","version":"3.21.0-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"620":{"id":"620","name":"python3","version":"3.6.3-r9","kind":"binary","source":{"id":"619","name":"python3","version":"3.6.3-r9","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"622":{"id":"622","name":"su-exec","version":"0.2-r0","kind":"binary","source":{"id":"621","name":"su-exec","version":"0.2-r0","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"624":{"id":"624","name":"asn1crypto","version":"0.24.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.24.0.0.0.0.0.0.0","cpe":""},"626":{"id":"626","name":"blinker","version":"1.4","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.4.0.0.0.0.0.0.0","cpe":""},"628":{"id":"628","name":"brotlipy","version":"0.7.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.7.0.0.0.0.0.0.0","cpe":""},"630":{"id":"630","name":"certifi","version":"2018.4.16","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2018.4.16.0.0.0.0.0.0","cpe":""},"632":{"id":"632","name":"cffi","version":"1.11.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.11.5.0.0.0.0.0.0","cpe":""},"634":{"id":"634","name":"click","version":"6.7","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.6.7.0.0.0.0.0.0.0","cpe":""},"636":{"id":"636","name":"cryptography","version":"2.2.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.2.2.0.0.0.0.0.0","cpe":""},"638":{"id":"638","name":"h11","version":"0.7.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.7.0.0.0.0.0.0.0","cpe":""},"640":{"id":"640","name":"h2","version":"3.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.3.0.1.0.0.0.0.0.0","cpe":""},"642":{"id":"642","name":"hpack","version":"3.0.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.3.0.0.0.0.0.0.0.0","cpe":""},"644":{"id":"644","name":"hyperframe","version":"5.1.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.5.1.0.0.0.0.0.0.0","cpe":""},"646":{"id":"646","name":"idna","version":"2.6","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.6.0.0.0.0.0.0.0","cpe":""},"648":{"id":"648","name":"kaitaistruct","version":"0.8","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.8.0.0.0.0.0.0.0","cpe":""},"650":{"id":"650","name":"ldap3","version":"2.5","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.5.0.0.0.0.0.0.0","cpe":""},"652":{"id":"652","name":"mitmproxy","version":"4.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.4.0.1.0.0.0.0.0.0","cpe":""},"654":{"id":"654","name":"passlib","version":"1.7.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.7.1.0.0.0.0.0.0","cpe":""},"656":{"id":"656","name":"pip","version":"9.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.9.0.1.0.0.0.0.0.0","cpe":""},"658":{"id":"658","name":"pyopenssl","version":"17.5.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.17.5.0.0.0.0.0.0.0","cpe":""},"660":{"id":"660","name":"pyasn1","version":"0.4.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.4.2.0.0.0.0.0.0","cpe":""},"662":{"id":"662","name":"pycparser","version":"2.18","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.18.0.0.0.0.0.0.0","cpe":""},"664":{"id":"664","name":"pyparsing","version":"2.2.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.2.0.0.0.0.0.0.0","cpe":""},"666":{"id":"666","name":"pyperclip","version":"1.6.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.6.0.0.0.0.0.0.0","cpe":""},"668":{"id":"668","name":"ruamel.yaml","version":"0.15.37","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.15.37.0.0.0.0.0.0","cpe":""},"670":{"id":"670","name":"setuptools","version":"28.8.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.28.8.0.0.0.0.0.0.0","cpe":""},"672":{"id":"672","name":"six","version":"1.11.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.11.0.0.0.0.0.0.0","cpe":""},"674":{"id":"674","name":"sortedcontainers","version":"1.5.10","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.1.5.10.0.0.0.0.0.0","cpe":""},"676":{"id":"676","name":"tornado","version":"5.0.2","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.5.0.2.0.0.0.0.0.0","cpe":""},"678":{"id":"678","name":"urwid","version":"2.0.1","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.2.0.1.0.0.0.0.0.0","cpe":""},"680":{"id":"680","name":"wsproto","version":"0.11.0","kind":"binary","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"pep440:0.0.11.0.0.0.0.0.0.0","cpe":""}},"distributions":{"4":{"id":"4","did":"alpine","name":"Alpine Linux","version":"3.7","version_code_name":"","version_id":"","arch":"","cpe":"","pretty_name":"Alpine Linux v3.7"}},"repository":{"1":{"id":"1","name":"pypi","uri":"https://pypi.org/simple","cpe":""}},"environments":{"548":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"550":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"552":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"554":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"556":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"558":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"560":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"562":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"566":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28","distribution_id":"4","repository_ids":null}],"586":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"588":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"590":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"592":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"594":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"596":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"598":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"600":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"602":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"604":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"606":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"608":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"610":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"612":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"614":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"616":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"618":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"620":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"622":[{"package_db":"lib/apk/db/installed","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"4","repository_ids":null}],"624":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"626":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"628":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"630":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"632":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"634":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"636":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"638":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"640":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"642":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"644":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"646":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"648":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"650":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"652":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"654":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"656":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"658":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"660":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"662":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"664":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"666":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"668":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"670":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"672":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"674":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"676":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"678":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}],"680":[{"package_db":"python:usr/lib/python3.6/site-packages","introduced_in":"sha256:95200ab871bdbed0f4962f61926c67d1771dea166bb8469ce2036213bb406784","distribution_id":"","repository_ids":["1"]}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.index.json b/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.index.json
deleted file mode 100644
index 8aebaba0a..000000000
--- a/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.index.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:768688a189716f9aef8d33a9eef4209f57dc2e66e9cb5fc3b8862940f314b9bc","state":"IndexFinished","packages":{"1052":{"id":"1052","name":"ubi8-container","version":"8.7-1112","kind":"source","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"rhctag:8.7.0.0.0.0.0.0.0.0","arch":"x86_64","cpe":""},"1054":{"id":"1054","name":"ubi8","version":"8.7-1112","kind":"binary","source":{"id":"1052","name":"ubi8-container","version":"8.7-1112","kind":"source","normalized_version":"","arch":"x86_64","cpe":""},"normalized_version":"rhctag:8.7.0.0.0.0.0.0.0.0","arch":"x86_64","cpe":""},"1056":{"id":"1056","name":"tzdata","version":"2022g-1.el8","kind":"binary","source":{"id":"1055","name":"tzdata","version":"2022g-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1058":{"id":"1058","name":"python3-pip-wheel","version":"9.0.3-22.el8","kind":"binary","source":{"id":"1057","name":"python-pip","version":"9.0.3-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1060":{"id":"1060","name":"redhat-release","version":"8.7-0.3.el8","kind":"binary","source":{"id":"1059","name":"redhat-release","version":"8.7-0.3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1062":{"id":"1062","name":"filesystem","version":"3.8-6.el8","kind":"binary","source":{"id":"1061","name":"filesystem","version":"3.8-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1064":{"id":"1064","name":"publicsuffix-list-dafsa","version":"20180723-1.el8","kind":"binary","source":{"id":"1063","name":"publicsuffix-list","version":"20180723-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1066":{"id":"1066","name":"pcre2","version":"10.32-3.el8_6","kind":"binary","source":{"id":"1065","name":"pcre2","version":"10.32-3.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1068":{"id":"1068","name":"ncurses-libs","version":"6.1-9.20180224.el8","kind":"binary","source":{"id":"1067","name":"ncurses","version":"6.1-9.20180224.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1070":{"id":"1070","name":"glibc-common","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1072":{"id":"1072","name":"bash","version":"4.4.20-4.el8_6","kind":"binary","source":{"id":"1071","name":"bash","version":"4.4.20-4.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1074":{"id":"1074","name":"zlib","version":"1.2.11-21.el8_7","kind":"binary","source":{"id":"1073","name":"zlib","version":"1.2.11-21.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1076":{"id":"1076","name":"bzip2-libs","version":"1.0.6-26.el8","kind":"binary","source":{"id":"1075","name":"bzip2","version":"1.0.6-26.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1078":{"id":"1078","name":"sqlite-libs","version":"3.26.0-17.el8_7","kind":"binary","source":{"id":"1077","name":"sqlite","version":"3.26.0-17.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1080":{"id":"1080","name":"info","version":"6.5-7.el8","kind":"binary","source":{"id":"1079","name":"texinfo","version":"6.5-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1082":{"id":"1082","name":"libxcrypt","version":"4.1.1-6.el8","kind":"binary","source":{"id":"1081","name":"libxcrypt","version":"4.1.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1084":{"id":"1084","name":"popt","version":"1.18-1.el8","kind":"binary","source":{"id":"1083","name":"popt","version":"1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1086":{"id":"1086","name":"expat","version":"2.2.5-10.el8_7.1","kind":"binary","source":{"id":"1085","name":"expat","version":"2.2.5-10.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1088":{"id":"1088","name":"libcom_err","version":"1.45.6-5.el8","kind":"binary","source":{"id":"1087","name":"e2fsprogs","version":"1.45.6-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1090":{"id":"1090","name":"libuuid","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1092":{"id":"1092","name":"gmp","version":"1:6.1.2-10.el8","kind":"binary","source":{"id":"1091","name":"gmp","version":"6.1.2-10.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1094":{"id":"1094","name":"libacl","version":"2.2.53-1.el8","kind":"binary","source":{"id":"1093","name":"acl","version":"2.2.53-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1096":{"id":"1096","name":"libblkid","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1098":{"id":"1098","name":"sed","version":"4.5-5.el8","kind":"binary","source":{"id":"1097","name":"sed","version":"4.5-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1100":{"id":"1100","name":"libstdc++","version":"8.5.0-16.el8_7","kind":"binary","source":{"id":"1099","name":"gcc","version":"8.5.0-16.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1102":{"id":"1102","name":"p11-kit","version":"0.23.22-1.el8","kind":"binary","source":{"id":"1101","name":"p11-kit","version":"0.23.22-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1104":{"id":"1104","name":"libunistring","version":"0.9.9-3.el8","kind":"binary","source":{"id":"1103","name":"libunistring","version":"0.9.9-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1106":{"id":"1106","name":"libgcrypt","version":"1.8.5-7.el8_6","kind":"binary","source":{"id":"1105","name":"libgcrypt","version":"1.8.5-7.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1108":{"id":"1108","name":"libcap-ng","version":"0.7.11-1.el8","kind":"binary","source":{"id":"1107","name":"libcap-ng","version":"0.7.11-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1110":{"id":"1110","name":"lz4-libs","version":"1.8.3-3.el8_4","kind":"binary","source":{"id":"1109","name":"lz4","version":"1.8.3-3.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1112":{"id":"1112","name":"gdbm-libs","version":"1:1.18-2.el8","kind":"binary","source":{"id":"1111","name":"gdbm","version":"1.18-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1114":{"id":"1114","name":"libtasn1","version":"4.13-4.el8_7","kind":"binary","source":{"id":"1113","name":"libtasn1","version":"4.13-4.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1116":{"id":"1116","name":"pcre","version":"8.42-6.el8","kind":"binary","source":{"id":"1115","name":"pcre","version":"8.42-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1118":{"id":"1118","name":"systemd-libs","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1120":{"id":"1120","name":"ca-certificates","version":"2022.2.54-80.2.el8_6","kind":"binary","source":{"id":"1119","name":"ca-certificates","version":"2022.2.54-80.2.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1122":{"id":"1122","name":"libusbx","version":"1.0.23-4.el8","kind":"binary","source":{"id":"1121","name":"libusbx","version":"1.0.23-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1124":{"id":"1124","name":"libsemanage","version":"2.9-9.el8","kind":"binary","source":{"id":"1123","name":"libsemanage","version":"2.9-9.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1126":{"id":"1126","name":"libutempter","version":"1.1.6-14.el8","kind":"binary","source":{"id":"1125","name":"libutempter","version":"1.1.6-14.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1128":{"id":"1128","name":"libfdisk","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1130":{"id":"1130","name":"cracklib","version":"2.9.6-15.el8","kind":"binary","source":{"id":"1129","name":"cracklib","version":"2.9.6-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1132":{"id":"1132","name":"which","version":"2.21-18.el8","kind":"binary","source":{"id":"1131","name":"which","version":"2.21-18.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1134":{"id":"1134","name":"mpfr","version":"3.1.6-1.el8","kind":"binary","source":{"id":"1133","name":"mpfr","version":"3.1.6-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1136":{"id":"1136","name":"libcomps","version":"0.1.18-1.el8","kind":"binary","source":{"id":"1135","name":"libcomps","version":"0.1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1138":{"id":"1138","name":"brotli","version":"1.0.6-3.el8","kind":"binary","source":{"id":"1137","name":"brotli","version":"1.0.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1140":{"id":"1140","name":"libnghttp2","version":"1.33.0-3.el8_2.1","kind":"binary","source":{"id":"1139","name":"nghttp2","version":"1.33.0-3.el8_2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1142":{"id":"1142","name":"libseccomp","version":"2.5.2-1.el8","kind":"binary","source":{"id":"1141","name":"libseccomp","version":"2.5.2-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1144":{"id":"1144","name":"gawk","version":"4.2.1-4.el8","kind":"binary","source":{"id":"1143","name":"gawk","version":"4.2.1-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1146":{"id":"1146","name":"libnsl2","version":"1.2.0-2.20180605git4a062cf.el8","kind":"binary","source":{"id":"1145","name":"libnsl2","version":"1.2.0-2.20180605git4a062cf.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1148":{"id":"1148","name":"krb5-libs","version":"1.18.2-22.el8_7","kind":"binary","source":{"id":"1147","name":"krb5","version":"1.18.2-22.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1150":{"id":"1150","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"binary","source":{"id":"1149","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1152":{"id":"1152","name":"platform-python-setuptools","version":"39.2.0-6.el8_7.1","kind":"binary","source":{"id":"1151","name":"python-setuptools","version":"39.2.0-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1154":{"id":"1154","name":"python3-libs","version":"3.6.8-48.el8_7.1","kind":"binary","source":{"id":"1153","name":"python3","version":"3.6.8-48.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1156":{"id":"1156","name":"libpwquality","version":"1.4.4-5.el8","kind":"binary","source":{"id":"1155","name":"libpwquality","version":"1.4.4-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1158":{"id":"1158","name":"python3-six","version":"1.11.0-8.el8","kind":"binary","source":{"id":"1157","name":"python-six","version":"1.11.0-8.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1160":{"id":"1160","name":"python3-dateutil","version":"1:2.6.1-6.el8","kind":"binary","source":{"id":"1159","name":"python-dateutil","version":"2.6.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1162":{"id":"1162","name":"glib2","version":"2.56.4-159.el8","kind":"binary","source":{"id":"1161","name":"glib2","version":"2.56.4-159.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1164":{"id":"1164","name":"librhsm","version":"0.0.3-4.el8","kind":"binary","source":{"id":"1163","name":"librhsm","version":"0.0.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1166":{"id":"1166","name":"dbus-glib","version":"0.110-2.el8","kind":"binary","source":{"id":"1165","name":"dbus-glib","version":"0.110-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1168":{"id":"1168","name":"gobject-introspection","version":"1.56.1-1.el8","kind":"binary","source":{"id":"1167","name":"gobject-introspection","version":"1.56.1-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1170":{"id":"1170","name":"virt-what","version":"1.25-1.el8","kind":"binary","source":{"id":"1169","name":"virt-what","version":"1.25-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1172":{"id":"1172","name":"openldap","version":"2.4.46-18.el8","kind":"binary","source":{"id":"1171","name":"openldap","version":"2.4.46-18.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1174":{"id":"1174","name":"passwd","version":"0.80-4.el8","kind":"binary","source":{"id":"1173","name":"passwd","version":"0.80-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1176":{"id":"1176","name":"libdb-utils","version":"5.3.28-42.el8_4","kind":"binary","source":{"id":"1175","name":"libdb","version":"5.3.28-42.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1178":{"id":"1178","name":"python3-libcomps","version":"0.1.18-1.el8","kind":"binary","source":{"id":"1135","name":"libcomps","version":"0.1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1180":{"id":"1180","name":"python3-dmidecode","version":"3.12.2-15.el8","kind":"binary","source":{"id":"1179","name":"python-dmidecode","version":"3.12.2-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1182":{"id":"1182","name":"python3-decorator","version":"4.2.1-2.el8","kind":"binary","source":{"id":"1181","name":"python-decorator","version":"4.2.1-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1184":{"id":"1184","name":"python3-inotify","version":"0.9.6-13.el8","kind":"binary","source":{"id":"1183","name":"python-inotify","version":"0.9.6-13.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1186":{"id":"1186","name":"python3-urllib3","version":"1.24.2-5.el8","kind":"binary","source":{"id":"1185","name":"python-urllib3","version":"1.24.2-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1188":{"id":"1188","name":"python3-cloud-what","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1190":{"id":"1190","name":"kmod-libs","version":"25-19.el8","kind":"binary","source":{"id":"1189","name":"kmod","version":"25-19.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1192":{"id":"1192","name":"device-mapper-libs","version":"8:1.02.181-6.el8","kind":"binary","source":{"id":"1191","name":"lvm2","version":"2.03.14-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1194":{"id":"1194","name":"elfutils-default-yama-scope","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1196":{"id":"1196","name":"dbus-common","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1198":{"id":"1198","name":"systemd-pam","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1200":{"id":"1200","name":"dbus","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1202":{"id":"1202","name":"tpm2-tss","version":"2.3.2-4.el8","kind":"binary","source":{"id":"1201","name":"tpm2-tss","version":"2.3.2-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1204":{"id":"1204","name":"libyaml","version":"0.1.7-5.el8","kind":"binary","source":{"id":"1203","name":"libyaml","version":"0.1.7-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1206":{"id":"1206","name":"gnupg2","version":"2.2.20-3.el8_6","kind":"binary","source":{"id":"1205","name":"gnupg2","version":"2.2.20-3.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1208":{"id":"1208","name":"python3-gpg","version":"1.13.1-11.el8","kind":"binary","source":{"id":"1207","name":"gpgme","version":"1.13.1-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1210":{"id":"1210","name":"libssh","version":"0.9.6-3.el8","kind":"binary","source":{"id":"1209","name":"libssh","version":"0.9.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1212":{"id":"1212","name":"librepo","version":"1.14.2-3.el8","kind":"binary","source":{"id":"1211","name":"librepo","version":"1.14.2-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1214":{"id":"1214","name":"curl","version":"7.61.1-25.el8_7.3","kind":"binary","source":{"id":"1213","name":"curl","version":"7.61.1-25.el8_7.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1216":{"id":"1216","name":"rpm-libs","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1218":{"id":"1218","name":"libsolv","version":"0.7.20-4.el8_7","kind":"binary","source":{"id":"1217","name":"libsolv","version":"0.7.20-4.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1220":{"id":"1220","name":"python3-libdnf","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1222":{"id":"1222","name":"rpm-build-libs","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1224":{"id":"1224","name":"python3-subscription-manager-rhsm","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1226":{"id":"1226","name":"dnf-data","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1228":{"id":"1228","name":"dnf","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1230":{"id":"1230","name":"dnf-plugin-subscription-manager","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1232":{"id":"1232","name":"yum","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1234":{"id":"1234","name":"tar","version":"2:1.30-6.el8_7.1","kind":"binary","source":{"id":"1233","name":"tar","version":"1.30-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1236":{"id":"1236","name":"findutils","version":"1:4.6.0-20.el8","kind":"binary","source":{"id":"1235","name":"findutils","version":"4.6.0-20.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1238":{"id":"1238","name":"rootfiles","version":"8.1-22.el8","kind":"binary","source":{"id":"1237","name":"rootfiles","version":"8.1-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1240":{"id":"1240","name":"libgcc","version":"8.5.0-16.el8_7","kind":"binary","source":{"id":"1099","name":"gcc","version":"8.5.0-16.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1242":{"id":"1242","name":"python3-setuptools-wheel","version":"39.2.0-6.el8_7.1","kind":"binary","source":{"id":"1151","name":"python-setuptools","version":"39.2.0-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1244":{"id":"1244","name":"subscription-manager-rhsm-certificates","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1246":{"id":"1246","name":"setup","version":"2.12.2-7.el8","kind":"binary","source":{"id":"1245","name":"setup","version":"2.12.2-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1248":{"id":"1248","name":"basesystem","version":"11-5.el8","kind":"binary","source":{"id":"1247","name":"basesystem","version":"11-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1250":{"id":"1250","name":"ncurses-base","version":"6.1-9.20180224.el8","kind":"binary","source":{"id":"1067","name":"ncurses","version":"6.1-9.20180224.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1252":{"id":"1252","name":"libselinux","version":"2.9-6.el8","kind":"binary","source":{"id":"1251","name":"libselinux","version":"2.9-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1254":{"id":"1254","name":"glibc-minimal-langpack","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1256":{"id":"1256","name":"glibc","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1258":{"id":"1258","name":"libsepol","version":"2.9-3.el8","kind":"binary","source":{"id":"1257","name":"libsepol","version":"2.9-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1260":{"id":"1260","name":"xz-libs","version":"5.2.4-4.el8_6","kind":"binary","source":{"id":"1259","name":"xz","version":"5.2.4-4.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1262":{"id":"1262","name":"libgpg-error","version":"1.31-1.el8","kind":"binary","source":{"id":"1261","name":"libgpg-error","version":"1.31-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1264":{"id":"1264","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"binary","source":{"id":"1263","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1266":{"id":"1266","name":"libcap","version":"2.48-4.el8","kind":"binary","source":{"id":"1265","name":"libcap","version":"2.48-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1268":{"id":"1268","name":"libzstd","version":"1.4.4-1.el8","kind":"binary","source":{"id":"1267","name":"zstd","version":"1.4.4-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1270":{"id":"1270","name":"elfutils-libelf","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1272":{"id":"1272","name":"json-c","version":"0.13.1-3.el8","kind":"binary","source":{"id":"1271","name":"json-c","version":"0.13.1-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1274":{"id":"1274","name":"libffi","version":"3.1-23.el8","kind":"binary","source":{"id":"1273","name":"libffi","version":"3.1-23.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1276":{"id":"1276","name":"readline","version":"7.0-10.el8","kind":"binary","source":{"id":"1275","name":"readline","version":"7.0-10.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1278":{"id":"1278","name":"libattr","version":"2.4.48-3.el8","kind":"binary","source":{"id":"1277","name":"attr","version":"2.4.48-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1280":{"id":"1280","name":"coreutils-single","version":"8.30-13.el8","kind":"binary","source":{"id":"1279","name":"coreutils","version":"8.30-13.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1282":{"id":"1282","name":"libmount","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1284":{"id":"1284","name":"libsmartcols","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1286":{"id":"1286","name":"lua-libs","version":"5.3.4-12.el8","kind":"binary","source":{"id":"1285","name":"lua","version":"5.3.4-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1288":{"id":"1288","name":"chkconfig","version":"1.19.1-1.el8","kind":"binary","source":{"id":"1287","name":"chkconfig","version":"1.19.1-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1290":{"id":"1290","name":"libidn2","version":"2.2.0-1.el8","kind":"binary","source":{"id":"1289","name":"libidn2","version":"2.2.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1292":{"id":"1292","name":"file-libs","version":"5.33-21.el8","kind":"binary","source":{"id":"1291","name":"file","version":"5.33-21.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1294":{"id":"1294","name":"audit-libs","version":"3.0.7-4.el8","kind":"binary","source":{"id":"1293","name":"audit","version":"3.0.7-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1296":{"id":"1296","name":"libassuan","version":"2.5.1-3.el8","kind":"binary","source":{"id":"1295","name":"libassuan","version":"2.5.1-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1298":{"id":"1298","name":"keyutils-libs","version":"1.5.10-9.el8","kind":"binary","source":{"id":"1297","name":"keyutils","version":"1.5.10-9.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1300":{"id":"1300","name":"p11-kit-trust","version":"0.23.22-1.el8","kind":"binary","source":{"id":"1101","name":"p11-kit","version":"0.23.22-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1302":{"id":"1302","name":"grep","version":"3.1-6.el8","kind":"binary","source":{"id":"1301","name":"grep","version":"3.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1304":{"id":"1304","name":"dbus-libs","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1306":{"id":"1306","name":"dbus-tools","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1308":{"id":"1308","name":"gdbm","version":"1:1.18-2.el8","kind":"binary","source":{"id":"1111","name":"gdbm","version":"1.18-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1310":{"id":"1310","name":"shadow-utils","version":"2:4.6-17.el8","kind":"binary","source":{"id":"1309","name":"shadow-utils","version":"4.6-17.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1312":{"id":"1312","name":"libpsl","version":"0.20.2-6.el8","kind":"binary","source":{"id":"1311","name":"libpsl","version":"0.20.2-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1314":{"id":"1314","name":"gzip","version":"1.9-13.el8_5","kind":"binary","source":{"id":"1313","name":"gzip","version":"1.9-13.el8_5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1316":{"id":"1316","name":"cracklib-dicts","version":"2.9.6-15.el8","kind":"binary","source":{"id":"1129","name":"cracklib","version":"2.9.6-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1318":{"id":"1318","name":"acl","version":"2.2.53-1.el8","kind":"binary","source":{"id":"1093","name":"acl","version":"2.2.53-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1320":{"id":"1320","name":"nettle","version":"3.4.1-7.el8","kind":"binary","source":{"id":"1319","name":"nettle","version":"3.4.1-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1322":{"id":"1322","name":"libksba","version":"1.3.5-9.el8_7","kind":"binary","source":{"id":"1321","name":"libksba","version":"1.3.5-9.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1324":{"id":"1324","name":"dmidecode","version":"1:3.3-4.el8","kind":"binary","source":{"id":"1323","name":"dmidecode","version":"3.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1326":{"id":"1326","name":"libnl3","version":"3.7.0-1.el8","kind":"binary","source":{"id":"1325","name":"libnl3","version":"3.7.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1328":{"id":"1328","name":"libsigsegv","version":"2.11-5.el8","kind":"binary","source":{"id":"1327","name":"libsigsegv","version":"2.11-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1330":{"id":"1330","name":"libverto","version":"0.3.2-2.el8","kind":"binary","source":{"id":"1329","name":"libverto","version":"0.3.2-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1332":{"id":"1332","name":"libtirpc","version":"1.1.4-8.el8","kind":"binary","source":{"id":"1331","name":"libtirpc","version":"1.1.4-8.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1334":{"id":"1334","name":"openssl-libs","version":"1:1.1.1k-9.el8_7","kind":"binary","source":{"id":"1333","name":"openssl","version":"1.1.1k-9.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1336":{"id":"1336","name":"crypto-policies-scripts","version":"20211116-1.gitae470d6.el8","kind":"binary","source":{"id":"1149","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1338":{"id":"1338","name":"platform-python","version":"3.6.8-48.el8_7.1","kind":"binary","source":{"id":"1153","name":"python3","version":"3.6.8-48.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1340":{"id":"1340","name":"libdb","version":"5.3.28-42.el8_4","kind":"binary","source":{"id":"1175","name":"libdb","version":"5.3.28-42.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1342":{"id":"1342","name":"pam","version":"1.3.1-22.el8","kind":"binary","source":{"id":"1341","name":"pam","version":"1.3.1-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1344":{"id":"1344","name":"util-linux","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1346":{"id":"1346","name":"gnutls","version":"3.6.16-6.el8_7","kind":"binary","source":{"id":"1345","name":"gnutls","version":"3.6.16-6.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1348":{"id":"1348","name":"json-glib","version":"1.4.4-1.el8","kind":"binary","source":{"id":"1347","name":"json-glib","version":"1.4.4-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1350":{"id":"1350","name":"python3-iniparse","version":"0.4-31.el8","kind":"binary","source":{"id":"1349","name":"python-iniparse","version":"0.4-31.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1352":{"id":"1352","name":"python3-dbus","version":"1.2.4-15.el8","kind":"binary","source":{"id":"1351","name":"dbus-python","version":"1.2.4-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1354":{"id":"1354","name":"python3-gobject-base","version":"3.28.3-2.el8","kind":"binary","source":{"id":"1353","name":"pygobject3","version":"3.28.3-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1356":{"id":"1356","name":"cyrus-sasl-lib","version":"2.1.27-6.el8_5","kind":"binary","source":{"id":"1355","name":"cyrus-sasl","version":"2.1.27-6.el8_5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1358":{"id":"1358","name":"libuser","version":"0.62-24.el8","kind":"binary","source":{"id":"1357","name":"libuser","version":"0.62-24.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1360":{"id":"1360","name":"usermode","version":"1.113-2.el8","kind":"binary","source":{"id":"1359","name":"usermode","version":"1.113-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1362":{"id":"1362","name":"python3-ethtool","version":"0.14-5.el8","kind":"binary","source":{"id":"1361","name":"python-ethtool","version":"0.14-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1364":{"id":"1364","name":"python3-libxml2","version":"2.9.7-15.el8_7.1","kind":"binary","source":{"id":"1263","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1366":{"id":"1366","name":"python3-chardet","version":"3.0.4-7.el8","kind":"binary","source":{"id":"1365","name":"python-chardet","version":"3.0.4-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1368":{"id":"1368","name":"python3-idna","version":"2.5-5.el8","kind":"binary","source":{"id":"1367","name":"python-idna","version":"2.5-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1370":{"id":"1370","name":"python3-pysocks","version":"1.6.8-3.el8","kind":"binary","source":{"id":"1369","name":"python-pysocks","version":"1.6.8-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1372":{"id":"1372","name":"python3-requests","version":"2.20.0-2.1.el8_1","kind":"binary","source":{"id":"1371","name":"python-requests","version":"2.20.0-2.1.el8_1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1374":{"id":"1374","name":"python3-syspurpose","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1376":{"id":"1376","name":"device-mapper","version":"8:1.02.181-6.el8","kind":"binary","source":{"id":"1191","name":"lvm2","version":"2.03.14-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1378":{"id":"1378","name":"cryptsetup-libs","version":"2.3.7-2.el8","kind":"binary","source":{"id":"1377","name":"cryptsetup","version":"2.3.7-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1380":{"id":"1380","name":"elfutils-libs","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1382":{"id":"1382","name":"dbus-daemon","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1384":{"id":"1384","name":"systemd","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1386":{"id":"1386","name":"libarchive","version":"3.3.3-4.el8","kind":"binary","source":{"id":"1385","name":"libarchive","version":"3.3.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1388":{"id":"1388","name":"ima-evm-utils","version":"1.3.2-12.el8","kind":"binary","source":{"id":"1387","name":"ima-evm-utils","version":"1.3.2-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1390":{"id":"1390","name":"npth","version":"1.5-4.el8","kind":"binary","source":{"id":"1389","name":"npth","version":"1.5-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1392":{"id":"1392","name":"gpgme","version":"1.13.1-11.el8","kind":"binary","source":{"id":"1207","name":"gpgme","version":"1.13.1-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1394":{"id":"1394","name":"libssh-config","version":"0.9.6-3.el8","kind":"binary","source":{"id":"1209","name":"libssh","version":"0.9.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1396":{"id":"1396","name":"libcurl","version":"7.61.1-25.el8_7.3","kind":"binary","source":{"id":"1213","name":"curl","version":"7.61.1-25.el8_7.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1398":{"id":"1398","name":"python3-librepo","version":"1.14.2-3.el8","kind":"binary","source":{"id":"1211","name":"librepo","version":"1.14.2-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1400":{"id":"1400","name":"rpm","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1402":{"id":"1402","name":"libmodulemd","version":"2.13.0-1.el8","kind":"binary","source":{"id":"1401","name":"libmodulemd","version":"2.13.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1404":{"id":"1404","name":"libdnf","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1406":{"id":"1406","name":"python3-hawkey","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1408":{"id":"1408","name":"python3-rpm","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1410":{"id":"1410","name":"libreport-filesystem","version":"2.9.5-15.el8","kind":"binary","source":{"id":"1409","name":"libreport","version":"2.9.5-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1412":{"id":"1412","name":"python3-dnf","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1414":{"id":"1414","name":"python3-dnf-plugins-core","version":"4.0.21-14.1.el8","kind":"binary","source":{"id":"1413","name":"dnf-plugins-core","version":"4.0.21-14.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1416":{"id":"1416","name":"subscription-manager","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1418":{"id":"1418","name":"gdb-gdbserver","version":"8.2-19.el8","kind":"binary","source":{"id":"1417","name":"gdb","version":"8.2-19.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1420":{"id":"1420","name":"vim-minimal","version":"2:8.0.1763-19.el8_6.4","kind":"binary","source":{"id":"1419","name":"vim","version":"8.0.1763-19.el8_6.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1422":{"id":"1422","name":"langpacks-en","version":"1.0-12.el8","kind":"binary","source":{"id":"1421","name":"langpacks","version":"1.0-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""}},"distributions":{"8":{"id":"8","did":"rhel","name":"Red Hat Enterprise Linux Server","version":"8","version_code_name":"","version_id":"8","arch":"","cpe":"cpe:2.3:o:redhat:enterprise_linux:8:*:*:*:*:*:*:*","pretty_name":"Red Hat Enterprise Linux Server 8"}},"repository":{"2":{"id":"2","name":"cpe:/a:redhat:enterprise_linux:8::appstream","key":"rhel-cpe-repository","cpe":"cpe:2.3:a:redhat:enterprise_linux:8:*:appstream:*:*:*:*:*"},"3":{"id":"3","name":"cpe:/a:redhat:rhel:8.3::appstream","key":"rhel-cpe-repository","cpe":"cpe:2.3:a:redhat:rhel:8.3:*:appstream:*:*:*:*:*"},"4":{"id":"4","name":"cpe:/o:redhat:enterprise_linux:8::baseos","key":"rhel-cpe-repository","cpe":"cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*"},"5":{"id":"5","name":"cpe:/o:redhat:rhel:8.3::baseos","key":"rhel-cpe-repository","cpe":"cpe:2.3:o:redhat:rhel:8.3:*:baseos:*:*:*:*:*"},"6":{"id":"6","name":"Red Hat Container Catalog","uri":"https://catalog.redhat.com/software/containers/explore","cpe":""}},"environments":{"1052":[{"package_db":"root/buildinfo/Dockerfile-ubi8-8.7-1112","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":["6"]}],"1054":[{"package_db":"root/buildinfo/Dockerfile-ubi8-8.7-1112","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":["6"]}],"1056":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1058":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1060":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1062":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1064":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1066":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1068":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1070":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1072":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1074":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1076":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1078":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1080":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1082":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1084":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1086":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1088":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1090":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1092":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1094":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1096":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1098":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1100":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1102":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1104":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1106":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1108":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1110":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1112":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1114":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1116":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1118":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1120":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1122":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1124":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1126":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1128":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1130":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1132":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1134":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1136":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1138":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1140":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1142":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1144":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1146":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1148":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1150":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1152":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1154":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1156":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1158":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1160":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1162":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1164":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1166":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1168":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1170":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1172":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1174":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1176":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1178":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1180":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1182":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1184":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1186":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1188":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1190":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1192":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1194":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1196":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1198":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1200":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1202":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1204":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1206":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1208":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1210":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1212":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1214":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1216":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1218":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1220":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1222":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1224":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1226":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1228":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1230":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1232":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1234":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1236":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1238":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1240":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1242":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1244":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1246":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1248":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1250":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1252":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1254":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1256":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1258":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1260":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1262":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1264":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1266":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1268":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1270":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1272":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1274":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1276":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1278":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1280":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1282":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1284":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1286":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1288":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1290":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1292":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1294":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1296":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1298":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1300":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1302":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1304":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1306":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1308":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1310":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1312":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1314":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1316":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1318":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1320":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1322":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1324":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1326":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1328":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1330":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1332":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1334":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1336":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1338":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1340":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1342":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1344":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1346":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1348":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1350":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1352":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1354":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1356":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1358":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1360":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1362":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1364":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1366":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1368":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1370":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1372":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1374":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1376":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1378":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1380":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1382":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1384":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1386":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1388":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1390":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1392":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1394":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1396":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1398":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1400":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1402":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1404":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1406":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1408":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1410":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1412":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1414":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1416":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1418":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1420":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1422":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}]},"success":true,"err":""}
diff --git a/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.report.json b/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.report.json
deleted file mode 100644
index 57229c3b6..000000000
--- a/datastore/postgres/testdata/registry.access.redhat.com-ubi8-ubi.report.json
+++ /dev/null
@@ -1 +0,0 @@
-{"manifest_hash":"sha256:768688a189716f9aef8d33a9eef4209f57dc2e66e9cb5fc3b8862940f314b9bc","packages":{"1052":{"id":"1052","name":"ubi8-container","version":"8.7-1112","kind":"source","source":{"id":"33","name":"","version":"","normalized_version":"","cpe":""},"normalized_version":"rhctag:8.7.0.0.0.0.0.0.0.0","arch":"x86_64","cpe":""},"1054":{"id":"1054","name":"ubi8","version":"8.7-1112","kind":"binary","source":{"id":"1052","name":"ubi8-container","version":"8.7-1112","kind":"source","normalized_version":"","arch":"x86_64","cpe":""},"normalized_version":"rhctag:8.7.0.0.0.0.0.0.0.0","arch":"x86_64","cpe":""},"1056":{"id":"1056","name":"tzdata","version":"2022g-1.el8","kind":"binary","source":{"id":"1055","name":"tzdata","version":"2022g-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1058":{"id":"1058","name":"python3-pip-wheel","version":"9.0.3-22.el8","kind":"binary","source":{"id":"1057","name":"python-pip","version":"9.0.3-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1060":{"id":"1060","name":"redhat-release","version":"8.7-0.3.el8","kind":"binary","source":{"id":"1059","name":"redhat-release","version":"8.7-0.3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1062":{"id":"1062","name":"filesystem","version":"3.8-6.el8","kind":"binary","source":{"id":"1061","name":"filesystem","version":"3.8-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1064":{"id":"1064","name":"publicsuffix-list-dafsa","version":"20180723-1.el8","kind":"binary","source":{"id":"1063","name":"publicsuffix-list","version":"20180723-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1066":{"id":"1066","name":"pcre2","version":"10.32-3.el8_6","kind":"binary","source":{"id":"1065","name":"pcre2","version":"10.32-3.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1068":{"id":"1068","name":"ncurses-libs","version":"6.1-9.20180224.el8","kind":"binary","source":{"id":"1067","name":"ncurses","version":"6.1-9.20180224.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1070":{"id":"1070","name":"glibc-common","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1072":{"id":"1072","name":"bash","version":"4.4.20-4.el8_6","kind":"binary","source":{"id":"1071","name":"bash","version":"4.4.20-4.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1074":{"id":"1074","name":"zlib","version":"1.2.11-21.el8_7","kind":"binary","source":{"id":"1073","name":"zlib","version":"1.2.11-21.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1076":{"id":"1076","name":"bzip2-libs","version":"1.0.6-26.el8","kind":"binary","source":{"id":"1075","name":"bzip2","version":"1.0.6-26.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1078":{"id":"1078","name":"sqlite-libs","version":"3.26.0-17.el8_7","kind":"binary","source":{"id":"1077","name":"sqlite","version":"3.26.0-17.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1080":{"id":"1080","name":"info","version":"6.5-7.el8","kind":"binary","source":{"id":"1079","name":"texinfo","version":"6.5-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1082":{"id":"1082","name":"libxcrypt","version":"4.1.1-6.el8","kind":"binary","source":{"id":"1081","name":"libxcrypt","version":"4.1.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1084":{"id":"1084","name":"popt","version":"1.18-1.el8","kind":"binary","source":{"id":"1083","name":"popt","version":"1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1086":{"id":"1086","name":"expat","version":"2.2.5-10.el8_7.1","kind":"binary","source":{"id":"1085","name":"expat","version":"2.2.5-10.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1088":{"id":"1088","name":"libcom_err","version":"1.45.6-5.el8","kind":"binary","source":{"id":"1087","name":"e2fsprogs","version":"1.45.6-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1090":{"id":"1090","name":"libuuid","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1092":{"id":"1092","name":"gmp","version":"1:6.1.2-10.el8","kind":"binary","source":{"id":"1091","name":"gmp","version":"6.1.2-10.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1094":{"id":"1094","name":"libacl","version":"2.2.53-1.el8","kind":"binary","source":{"id":"1093","name":"acl","version":"2.2.53-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1096":{"id":"1096","name":"libblkid","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1098":{"id":"1098","name":"sed","version":"4.5-5.el8","kind":"binary","source":{"id":"1097","name":"sed","version":"4.5-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1100":{"id":"1100","name":"libstdc++","version":"8.5.0-16.el8_7","kind":"binary","source":{"id":"1099","name":"gcc","version":"8.5.0-16.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1102":{"id":"1102","name":"p11-kit","version":"0.23.22-1.el8","kind":"binary","source":{"id":"1101","name":"p11-kit","version":"0.23.22-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1104":{"id":"1104","name":"libunistring","version":"0.9.9-3.el8","kind":"binary","source":{"id":"1103","name":"libunistring","version":"0.9.9-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1106":{"id":"1106","name":"libgcrypt","version":"1.8.5-7.el8_6","kind":"binary","source":{"id":"1105","name":"libgcrypt","version":"1.8.5-7.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1108":{"id":"1108","name":"libcap-ng","version":"0.7.11-1.el8","kind":"binary","source":{"id":"1107","name":"libcap-ng","version":"0.7.11-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1110":{"id":"1110","name":"lz4-libs","version":"1.8.3-3.el8_4","kind":"binary","source":{"id":"1109","name":"lz4","version":"1.8.3-3.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1112":{"id":"1112","name":"gdbm-libs","version":"1:1.18-2.el8","kind":"binary","source":{"id":"1111","name":"gdbm","version":"1.18-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1114":{"id":"1114","name":"libtasn1","version":"4.13-4.el8_7","kind":"binary","source":{"id":"1113","name":"libtasn1","version":"4.13-4.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1116":{"id":"1116","name":"pcre","version":"8.42-6.el8","kind":"binary","source":{"id":"1115","name":"pcre","version":"8.42-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1118":{"id":"1118","name":"systemd-libs","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1120":{"id":"1120","name":"ca-certificates","version":"2022.2.54-80.2.el8_6","kind":"binary","source":{"id":"1119","name":"ca-certificates","version":"2022.2.54-80.2.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1122":{"id":"1122","name":"libusbx","version":"1.0.23-4.el8","kind":"binary","source":{"id":"1121","name":"libusbx","version":"1.0.23-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1124":{"id":"1124","name":"libsemanage","version":"2.9-9.el8","kind":"binary","source":{"id":"1123","name":"libsemanage","version":"2.9-9.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1126":{"id":"1126","name":"libutempter","version":"1.1.6-14.el8","kind":"binary","source":{"id":"1125","name":"libutempter","version":"1.1.6-14.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1128":{"id":"1128","name":"libfdisk","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1130":{"id":"1130","name":"cracklib","version":"2.9.6-15.el8","kind":"binary","source":{"id":"1129","name":"cracklib","version":"2.9.6-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1132":{"id":"1132","name":"which","version":"2.21-18.el8","kind":"binary","source":{"id":"1131","name":"which","version":"2.21-18.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1134":{"id":"1134","name":"mpfr","version":"3.1.6-1.el8","kind":"binary","source":{"id":"1133","name":"mpfr","version":"3.1.6-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1136":{"id":"1136","name":"libcomps","version":"0.1.18-1.el8","kind":"binary","source":{"id":"1135","name":"libcomps","version":"0.1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1138":{"id":"1138","name":"brotli","version":"1.0.6-3.el8","kind":"binary","source":{"id":"1137","name":"brotli","version":"1.0.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1140":{"id":"1140","name":"libnghttp2","version":"1.33.0-3.el8_2.1","kind":"binary","source":{"id":"1139","name":"nghttp2","version":"1.33.0-3.el8_2.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1142":{"id":"1142","name":"libseccomp","version":"2.5.2-1.el8","kind":"binary","source":{"id":"1141","name":"libseccomp","version":"2.5.2-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1144":{"id":"1144","name":"gawk","version":"4.2.1-4.el8","kind":"binary","source":{"id":"1143","name":"gawk","version":"4.2.1-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1146":{"id":"1146","name":"libnsl2","version":"1.2.0-2.20180605git4a062cf.el8","kind":"binary","source":{"id":"1145","name":"libnsl2","version":"1.2.0-2.20180605git4a062cf.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1148":{"id":"1148","name":"krb5-libs","version":"1.18.2-22.el8_7","kind":"binary","source":{"id":"1147","name":"krb5","version":"1.18.2-22.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1150":{"id":"1150","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"binary","source":{"id":"1149","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1152":{"id":"1152","name":"platform-python-setuptools","version":"39.2.0-6.el8_7.1","kind":"binary","source":{"id":"1151","name":"python-setuptools","version":"39.2.0-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1154":{"id":"1154","name":"python3-libs","version":"3.6.8-48.el8_7.1","kind":"binary","source":{"id":"1153","name":"python3","version":"3.6.8-48.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1156":{"id":"1156","name":"libpwquality","version":"1.4.4-5.el8","kind":"binary","source":{"id":"1155","name":"libpwquality","version":"1.4.4-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1158":{"id":"1158","name":"python3-six","version":"1.11.0-8.el8","kind":"binary","source":{"id":"1157","name":"python-six","version":"1.11.0-8.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1160":{"id":"1160","name":"python3-dateutil","version":"1:2.6.1-6.el8","kind":"binary","source":{"id":"1159","name":"python-dateutil","version":"2.6.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1162":{"id":"1162","name":"glib2","version":"2.56.4-159.el8","kind":"binary","source":{"id":"1161","name":"glib2","version":"2.56.4-159.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1164":{"id":"1164","name":"librhsm","version":"0.0.3-4.el8","kind":"binary","source":{"id":"1163","name":"librhsm","version":"0.0.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1166":{"id":"1166","name":"dbus-glib","version":"0.110-2.el8","kind":"binary","source":{"id":"1165","name":"dbus-glib","version":"0.110-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1168":{"id":"1168","name":"gobject-introspection","version":"1.56.1-1.el8","kind":"binary","source":{"id":"1167","name":"gobject-introspection","version":"1.56.1-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1170":{"id":"1170","name":"virt-what","version":"1.25-1.el8","kind":"binary","source":{"id":"1169","name":"virt-what","version":"1.25-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1172":{"id":"1172","name":"openldap","version":"2.4.46-18.el8","kind":"binary","source":{"id":"1171","name":"openldap","version":"2.4.46-18.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1174":{"id":"1174","name":"passwd","version":"0.80-4.el8","kind":"binary","source":{"id":"1173","name":"passwd","version":"0.80-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1176":{"id":"1176","name":"libdb-utils","version":"5.3.28-42.el8_4","kind":"binary","source":{"id":"1175","name":"libdb","version":"5.3.28-42.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1178":{"id":"1178","name":"python3-libcomps","version":"0.1.18-1.el8","kind":"binary","source":{"id":"1135","name":"libcomps","version":"0.1.18-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1180":{"id":"1180","name":"python3-dmidecode","version":"3.12.2-15.el8","kind":"binary","source":{"id":"1179","name":"python-dmidecode","version":"3.12.2-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1182":{"id":"1182","name":"python3-decorator","version":"4.2.1-2.el8","kind":"binary","source":{"id":"1181","name":"python-decorator","version":"4.2.1-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1184":{"id":"1184","name":"python3-inotify","version":"0.9.6-13.el8","kind":"binary","source":{"id":"1183","name":"python-inotify","version":"0.9.6-13.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1186":{"id":"1186","name":"python3-urllib3","version":"1.24.2-5.el8","kind":"binary","source":{"id":"1185","name":"python-urllib3","version":"1.24.2-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1188":{"id":"1188","name":"python3-cloud-what","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1190":{"id":"1190","name":"kmod-libs","version":"25-19.el8","kind":"binary","source":{"id":"1189","name":"kmod","version":"25-19.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1192":{"id":"1192","name":"device-mapper-libs","version":"8:1.02.181-6.el8","kind":"binary","source":{"id":"1191","name":"lvm2","version":"2.03.14-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1194":{"id":"1194","name":"elfutils-default-yama-scope","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1196":{"id":"1196","name":"dbus-common","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1198":{"id":"1198","name":"systemd-pam","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1200":{"id":"1200","name":"dbus","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1202":{"id":"1202","name":"tpm2-tss","version":"2.3.2-4.el8","kind":"binary","source":{"id":"1201","name":"tpm2-tss","version":"2.3.2-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1204":{"id":"1204","name":"libyaml","version":"0.1.7-5.el8","kind":"binary","source":{"id":"1203","name":"libyaml","version":"0.1.7-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1206":{"id":"1206","name":"gnupg2","version":"2.2.20-3.el8_6","kind":"binary","source":{"id":"1205","name":"gnupg2","version":"2.2.20-3.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1208":{"id":"1208","name":"python3-gpg","version":"1.13.1-11.el8","kind":"binary","source":{"id":"1207","name":"gpgme","version":"1.13.1-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1210":{"id":"1210","name":"libssh","version":"0.9.6-3.el8","kind":"binary","source":{"id":"1209","name":"libssh","version":"0.9.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1212":{"id":"1212","name":"librepo","version":"1.14.2-3.el8","kind":"binary","source":{"id":"1211","name":"librepo","version":"1.14.2-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1214":{"id":"1214","name":"curl","version":"7.61.1-25.el8_7.3","kind":"binary","source":{"id":"1213","name":"curl","version":"7.61.1-25.el8_7.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1216":{"id":"1216","name":"rpm-libs","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1218":{"id":"1218","name":"libsolv","version":"0.7.20-4.el8_7","kind":"binary","source":{"id":"1217","name":"libsolv","version":"0.7.20-4.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1220":{"id":"1220","name":"python3-libdnf","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1222":{"id":"1222","name":"rpm-build-libs","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1224":{"id":"1224","name":"python3-subscription-manager-rhsm","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1226":{"id":"1226","name":"dnf-data","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1228":{"id":"1228","name":"dnf","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1230":{"id":"1230","name":"dnf-plugin-subscription-manager","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1232":{"id":"1232","name":"yum","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1234":{"id":"1234","name":"tar","version":"2:1.30-6.el8_7.1","kind":"binary","source":{"id":"1233","name":"tar","version":"1.30-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1236":{"id":"1236","name":"findutils","version":"1:4.6.0-20.el8","kind":"binary","source":{"id":"1235","name":"findutils","version":"4.6.0-20.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1238":{"id":"1238","name":"rootfiles","version":"8.1-22.el8","kind":"binary","source":{"id":"1237","name":"rootfiles","version":"8.1-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1240":{"id":"1240","name":"libgcc","version":"8.5.0-16.el8_7","kind":"binary","source":{"id":"1099","name":"gcc","version":"8.5.0-16.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1242":{"id":"1242","name":"python3-setuptools-wheel","version":"39.2.0-6.el8_7.1","kind":"binary","source":{"id":"1151","name":"python-setuptools","version":"39.2.0-6.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1244":{"id":"1244","name":"subscription-manager-rhsm-certificates","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1246":{"id":"1246","name":"setup","version":"2.12.2-7.el8","kind":"binary","source":{"id":"1245","name":"setup","version":"2.12.2-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1248":{"id":"1248","name":"basesystem","version":"11-5.el8","kind":"binary","source":{"id":"1247","name":"basesystem","version":"11-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1250":{"id":"1250","name":"ncurses-base","version":"6.1-9.20180224.el8","kind":"binary","source":{"id":"1067","name":"ncurses","version":"6.1-9.20180224.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1252":{"id":"1252","name":"libselinux","version":"2.9-6.el8","kind":"binary","source":{"id":"1251","name":"libselinux","version":"2.9-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1254":{"id":"1254","name":"glibc-minimal-langpack","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1256":{"id":"1256","name":"glibc","version":"2.28-211.el8","kind":"binary","source":{"id":"1069","name":"glibc","version":"2.28-211.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1258":{"id":"1258","name":"libsepol","version":"2.9-3.el8","kind":"binary","source":{"id":"1257","name":"libsepol","version":"2.9-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1260":{"id":"1260","name":"xz-libs","version":"5.2.4-4.el8_6","kind":"binary","source":{"id":"1259","name":"xz","version":"5.2.4-4.el8_6","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1262":{"id":"1262","name":"libgpg-error","version":"1.31-1.el8","kind":"binary","source":{"id":"1261","name":"libgpg-error","version":"1.31-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1264":{"id":"1264","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"binary","source":{"id":"1263","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1266":{"id":"1266","name":"libcap","version":"2.48-4.el8","kind":"binary","source":{"id":"1265","name":"libcap","version":"2.48-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1268":{"id":"1268","name":"libzstd","version":"1.4.4-1.el8","kind":"binary","source":{"id":"1267","name":"zstd","version":"1.4.4-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1270":{"id":"1270","name":"elfutils-libelf","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1272":{"id":"1272","name":"json-c","version":"0.13.1-3.el8","kind":"binary","source":{"id":"1271","name":"json-c","version":"0.13.1-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1274":{"id":"1274","name":"libffi","version":"3.1-23.el8","kind":"binary","source":{"id":"1273","name":"libffi","version":"3.1-23.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1276":{"id":"1276","name":"readline","version":"7.0-10.el8","kind":"binary","source":{"id":"1275","name":"readline","version":"7.0-10.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1278":{"id":"1278","name":"libattr","version":"2.4.48-3.el8","kind":"binary","source":{"id":"1277","name":"attr","version":"2.4.48-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1280":{"id":"1280","name":"coreutils-single","version":"8.30-13.el8","kind":"binary","source":{"id":"1279","name":"coreutils","version":"8.30-13.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1282":{"id":"1282","name":"libmount","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1284":{"id":"1284","name":"libsmartcols","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1286":{"id":"1286","name":"lua-libs","version":"5.3.4-12.el8","kind":"binary","source":{"id":"1285","name":"lua","version":"5.3.4-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1288":{"id":"1288","name":"chkconfig","version":"1.19.1-1.el8","kind":"binary","source":{"id":"1287","name":"chkconfig","version":"1.19.1-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1290":{"id":"1290","name":"libidn2","version":"2.2.0-1.el8","kind":"binary","source":{"id":"1289","name":"libidn2","version":"2.2.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1292":{"id":"1292","name":"file-libs","version":"5.33-21.el8","kind":"binary","source":{"id":"1291","name":"file","version":"5.33-21.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1294":{"id":"1294","name":"audit-libs","version":"3.0.7-4.el8","kind":"binary","source":{"id":"1293","name":"audit","version":"3.0.7-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1296":{"id":"1296","name":"libassuan","version":"2.5.1-3.el8","kind":"binary","source":{"id":"1295","name":"libassuan","version":"2.5.1-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1298":{"id":"1298","name":"keyutils-libs","version":"1.5.10-9.el8","kind":"binary","source":{"id":"1297","name":"keyutils","version":"1.5.10-9.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1300":{"id":"1300","name":"p11-kit-trust","version":"0.23.22-1.el8","kind":"binary","source":{"id":"1101","name":"p11-kit","version":"0.23.22-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1302":{"id":"1302","name":"grep","version":"3.1-6.el8","kind":"binary","source":{"id":"1301","name":"grep","version":"3.1-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1304":{"id":"1304","name":"dbus-libs","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1306":{"id":"1306","name":"dbus-tools","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1308":{"id":"1308","name":"gdbm","version":"1:1.18-2.el8","kind":"binary","source":{"id":"1111","name":"gdbm","version":"1.18-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1310":{"id":"1310","name":"shadow-utils","version":"2:4.6-17.el8","kind":"binary","source":{"id":"1309","name":"shadow-utils","version":"4.6-17.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1312":{"id":"1312","name":"libpsl","version":"0.20.2-6.el8","kind":"binary","source":{"id":"1311","name":"libpsl","version":"0.20.2-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1314":{"id":"1314","name":"gzip","version":"1.9-13.el8_5","kind":"binary","source":{"id":"1313","name":"gzip","version":"1.9-13.el8_5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1316":{"id":"1316","name":"cracklib-dicts","version":"2.9.6-15.el8","kind":"binary","source":{"id":"1129","name":"cracklib","version":"2.9.6-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1318":{"id":"1318","name":"acl","version":"2.2.53-1.el8","kind":"binary","source":{"id":"1093","name":"acl","version":"2.2.53-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1320":{"id":"1320","name":"nettle","version":"3.4.1-7.el8","kind":"binary","source":{"id":"1319","name":"nettle","version":"3.4.1-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1322":{"id":"1322","name":"libksba","version":"1.3.5-9.el8_7","kind":"binary","source":{"id":"1321","name":"libksba","version":"1.3.5-9.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1324":{"id":"1324","name":"dmidecode","version":"1:3.3-4.el8","kind":"binary","source":{"id":"1323","name":"dmidecode","version":"3.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1326":{"id":"1326","name":"libnl3","version":"3.7.0-1.el8","kind":"binary","source":{"id":"1325","name":"libnl3","version":"3.7.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1328":{"id":"1328","name":"libsigsegv","version":"2.11-5.el8","kind":"binary","source":{"id":"1327","name":"libsigsegv","version":"2.11-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1330":{"id":"1330","name":"libverto","version":"0.3.2-2.el8","kind":"binary","source":{"id":"1329","name":"libverto","version":"0.3.2-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1332":{"id":"1332","name":"libtirpc","version":"1.1.4-8.el8","kind":"binary","source":{"id":"1331","name":"libtirpc","version":"1.1.4-8.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1334":{"id":"1334","name":"openssl-libs","version":"1:1.1.1k-9.el8_7","kind":"binary","source":{"id":"1333","name":"openssl","version":"1.1.1k-9.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1336":{"id":"1336","name":"crypto-policies-scripts","version":"20211116-1.gitae470d6.el8","kind":"binary","source":{"id":"1149","name":"crypto-policies","version":"20211116-1.gitae470d6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1338":{"id":"1338","name":"platform-python","version":"3.6.8-48.el8_7.1","kind":"binary","source":{"id":"1153","name":"python3","version":"3.6.8-48.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1340":{"id":"1340","name":"libdb","version":"5.3.28-42.el8_4","kind":"binary","source":{"id":"1175","name":"libdb","version":"5.3.28-42.el8_4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1342":{"id":"1342","name":"pam","version":"1.3.1-22.el8","kind":"binary","source":{"id":"1341","name":"pam","version":"1.3.1-22.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1344":{"id":"1344","name":"util-linux","version":"2.32.1-39.el8_7","kind":"binary","source":{"id":"1089","name":"util-linux","version":"2.32.1-39.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1346":{"id":"1346","name":"gnutls","version":"3.6.16-6.el8_7","kind":"binary","source":{"id":"1345","name":"gnutls","version":"3.6.16-6.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1348":{"id":"1348","name":"json-glib","version":"1.4.4-1.el8","kind":"binary","source":{"id":"1347","name":"json-glib","version":"1.4.4-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1350":{"id":"1350","name":"python3-iniparse","version":"0.4-31.el8","kind":"binary","source":{"id":"1349","name":"python-iniparse","version":"0.4-31.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1352":{"id":"1352","name":"python3-dbus","version":"1.2.4-15.el8","kind":"binary","source":{"id":"1351","name":"dbus-python","version":"1.2.4-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1354":{"id":"1354","name":"python3-gobject-base","version":"3.28.3-2.el8","kind":"binary","source":{"id":"1353","name":"pygobject3","version":"3.28.3-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1356":{"id":"1356","name":"cyrus-sasl-lib","version":"2.1.27-6.el8_5","kind":"binary","source":{"id":"1355","name":"cyrus-sasl","version":"2.1.27-6.el8_5","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1358":{"id":"1358","name":"libuser","version":"0.62-24.el8","kind":"binary","source":{"id":"1357","name":"libuser","version":"0.62-24.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1360":{"id":"1360","name":"usermode","version":"1.113-2.el8","kind":"binary","source":{"id":"1359","name":"usermode","version":"1.113-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1362":{"id":"1362","name":"python3-ethtool","version":"0.14-5.el8","kind":"binary","source":{"id":"1361","name":"python-ethtool","version":"0.14-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1364":{"id":"1364","name":"python3-libxml2","version":"2.9.7-15.el8_7.1","kind":"binary","source":{"id":"1263","name":"libxml2","version":"2.9.7-15.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1366":{"id":"1366","name":"python3-chardet","version":"3.0.4-7.el8","kind":"binary","source":{"id":"1365","name":"python-chardet","version":"3.0.4-7.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1368":{"id":"1368","name":"python3-idna","version":"2.5-5.el8","kind":"binary","source":{"id":"1367","name":"python-idna","version":"2.5-5.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1370":{"id":"1370","name":"python3-pysocks","version":"1.6.8-3.el8","kind":"binary","source":{"id":"1369","name":"python-pysocks","version":"1.6.8-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1372":{"id":"1372","name":"python3-requests","version":"2.20.0-2.1.el8_1","kind":"binary","source":{"id":"1371","name":"python-requests","version":"2.20.0-2.1.el8_1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1374":{"id":"1374","name":"python3-syspurpose","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1376":{"id":"1376","name":"device-mapper","version":"8:1.02.181-6.el8","kind":"binary","source":{"id":"1191","name":"lvm2","version":"2.03.14-6.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1378":{"id":"1378","name":"cryptsetup-libs","version":"2.3.7-2.el8","kind":"binary","source":{"id":"1377","name":"cryptsetup","version":"2.3.7-2.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1380":{"id":"1380","name":"elfutils-libs","version":"0.187-4.el8","kind":"binary","source":{"id":"1193","name":"elfutils","version":"0.187-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1382":{"id":"1382","name":"dbus-daemon","version":"1:1.12.8-23.el8_7.1","kind":"binary","source":{"id":"1195","name":"dbus","version":"1.12.8-23.el8_7.1","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1384":{"id":"1384","name":"systemd","version":"239-68.el8_7.4","kind":"binary","source":{"id":"1117","name":"systemd","version":"239-68.el8_7.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1386":{"id":"1386","name":"libarchive","version":"3.3.3-4.el8","kind":"binary","source":{"id":"1385","name":"libarchive","version":"3.3.3-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1388":{"id":"1388","name":"ima-evm-utils","version":"1.3.2-12.el8","kind":"binary","source":{"id":"1387","name":"ima-evm-utils","version":"1.3.2-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1390":{"id":"1390","name":"npth","version":"1.5-4.el8","kind":"binary","source":{"id":"1389","name":"npth","version":"1.5-4.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1392":{"id":"1392","name":"gpgme","version":"1.13.1-11.el8","kind":"binary","source":{"id":"1207","name":"gpgme","version":"1.13.1-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1394":{"id":"1394","name":"libssh-config","version":"0.9.6-3.el8","kind":"binary","source":{"id":"1209","name":"libssh","version":"0.9.6-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1396":{"id":"1396","name":"libcurl","version":"7.61.1-25.el8_7.3","kind":"binary","source":{"id":"1213","name":"curl","version":"7.61.1-25.el8_7.3","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1398":{"id":"1398","name":"python3-librepo","version":"1.14.2-3.el8","kind":"binary","source":{"id":"1211","name":"librepo","version":"1.14.2-3.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1400":{"id":"1400","name":"rpm","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1402":{"id":"1402","name":"libmodulemd","version":"2.13.0-1.el8","kind":"binary","source":{"id":"1401","name":"libmodulemd","version":"2.13.0-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1404":{"id":"1404","name":"libdnf","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1406":{"id":"1406","name":"python3-hawkey","version":"0.63.0-11.1.el8","kind":"binary","source":{"id":"1219","name":"libdnf","version":"0.63.0-11.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1408":{"id":"1408","name":"python3-rpm","version":"4.14.3-24.el8_7","kind":"binary","source":{"id":"1215","name":"rpm","version":"4.14.3-24.el8_7","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1410":{"id":"1410","name":"libreport-filesystem","version":"2.9.5-15.el8","kind":"binary","source":{"id":"1409","name":"libreport","version":"2.9.5-15.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1412":{"id":"1412","name":"python3-dnf","version":"4.7.0-11.el8","kind":"binary","source":{"id":"1225","name":"dnf","version":"4.7.0-11.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1414":{"id":"1414","name":"python3-dnf-plugins-core","version":"4.0.21-14.1.el8","kind":"binary","source":{"id":"1413","name":"dnf-plugins-core","version":"4.0.21-14.1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""},"1416":{"id":"1416","name":"subscription-manager","version":"1.28.32-1.el8","kind":"binary","source":{"id":"1187","name":"subscription-manager","version":"1.28.32-1.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1418":{"id":"1418","name":"gdb-gdbserver","version":"8.2-19.el8","kind":"binary","source":{"id":"1417","name":"gdb","version":"8.2-19.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1420":{"id":"1420","name":"vim-minimal","version":"2:8.0.1763-19.el8_6.4","kind":"binary","source":{"id":"1419","name":"vim","version":"8.0.1763-19.el8_6.4","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"x86_64","cpe":""},"1422":{"id":"1422","name":"langpacks-en","version":"1.0-12.el8","kind":"binary","source":{"id":"1421","name":"langpacks","version":"1.0-12.el8","kind":"source","normalized_version":"","cpe":""},"normalized_version":"","arch":"noarch","cpe":""}},"distributions":{"8":{"id":"8","did":"rhel","name":"Red Hat Enterprise Linux Server","version":"8","version_code_name":"","version_id":"8","arch":"","cpe":"cpe:2.3:o:redhat:enterprise_linux:8:*:*:*:*:*:*:*","pretty_name":"Red Hat Enterprise Linux Server 8"}},"repository":{"2":{"id":"2","name":"cpe:/a:redhat:enterprise_linux:8::appstream","key":"rhel-cpe-repository","cpe":"cpe:2.3:a:redhat:enterprise_linux:8:*:appstream:*:*:*:*:*"},"3":{"id":"3","name":"cpe:/a:redhat:rhel:8.3::appstream","key":"rhel-cpe-repository","cpe":"cpe:2.3:a:redhat:rhel:8.3:*:appstream:*:*:*:*:*"},"4":{"id":"4","name":"cpe:/o:redhat:enterprise_linux:8::baseos","key":"rhel-cpe-repository","cpe":"cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*"},"5":{"id":"5","name":"cpe:/o:redhat:rhel:8.3::baseos","key":"rhel-cpe-repository","cpe":"cpe:2.3:o:redhat:rhel:8.3:*:baseos:*:*:*:*:*"},"6":{"id":"6","name":"Red Hat Container Catalog","uri":"https://catalog.redhat.com/software/containers/explore","cpe":""}},"environments":{"1052":[{"package_db":"root/buildinfo/Dockerfile-ubi8-8.7-1112","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":["6"]}],"1054":[{"package_db":"root/buildinfo/Dockerfile-ubi8-8.7-1112","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":["6"]}],"1056":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1058":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1060":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1062":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1064":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1066":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1068":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1070":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1072":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1074":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1076":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1078":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1080":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1082":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1084":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1086":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1088":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1090":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1092":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1094":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1096":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1098":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1100":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1102":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1104":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1106":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1108":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1110":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1112":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1114":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1116":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1118":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1120":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1122":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1124":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1126":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1128":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1130":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1132":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1134":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1136":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1138":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1140":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1142":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1144":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1146":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1148":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1150":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1152":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1154":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1156":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1158":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1160":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1162":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1164":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1166":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1168":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1170":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1172":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1174":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1176":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1178":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1180":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1182":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1184":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1186":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1188":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1190":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1192":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1194":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1196":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1198":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1200":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1202":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1204":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1206":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1208":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1210":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1212":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1214":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1216":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1218":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1220":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1222":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1224":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1226":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1228":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1230":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1232":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1234":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1236":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1238":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1240":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1242":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1244":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1246":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1248":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1250":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1252":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1254":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1256":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1258":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1260":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1262":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1264":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1266":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1268":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1270":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1272":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1274":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1276":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1278":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1280":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1282":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1284":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1286":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1288":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1290":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1292":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1294":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1296":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1298":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1300":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1302":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1304":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1306":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1308":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1310":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1312":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1314":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1316":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1318":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1320":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1322":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1324":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1326":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1328":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1330":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1332":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1334":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1336":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1338":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1340":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1342":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1344":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1346":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1348":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1350":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1352":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1354":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1356":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1358":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1360":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1362":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1364":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1366":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1368":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1370":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1372":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1374":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1376":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1378":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1380":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1382":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1384":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1386":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1388":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1390":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1392":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1394":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1396":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1398":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1400":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1402":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1404":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1406":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1408":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1410":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1412":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1414":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1416":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1418":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1420":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}],"1422":[{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"8","repository_ids":["2","3","4","5"]},{"package_db":"bdb:var/lib/rpm","introduced_in":"sha256:6208c5a2e205726f3a2cd42a392c5e4f05256850d13197a711000c4021ede87b","distribution_id":"","repository_ids":null}]},"vulnerabilities":{},"package_vulnerabilities":{},"enrichments":{}}
diff --git a/datastore/postgres/testdata/rhacs-main-rhel8.index.json b/datastore/postgres/testdata/rhacs-main-rhel8.index.json
new file mode 100644
index 000000000..491bd73db
--- /dev/null
+++ b/datastore/postgres/testdata/rhacs-main-rhel8.index.json
@@ -0,0 +1,12824 @@
+{
+ "manifest_hash": "sha256:34021eba7d00b371cfbaa6a7662ccb9314c58fcc2f502d0e6de1b4fa91668e43",
+ "state": "IndexFinished",
+ "packages": {
+ "2472": {
+ "id": "2472",
+ "name": "github.com/Azure/go-autorest/tracing",
+ "version": "v0.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.0.0.0.0.0.0.0"
+ },
+ "638": {
+ "id": "638",
+ "name": "github.com/np-guard/models",
+ "version": "v0.3.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.4.0.0.0.0.0.0"
+ },
+ "116": {
+ "id": "116",
+ "name": "basesystem",
+ "version": "11-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "115",
+ "name": "basesystem",
+ "version": "11-5.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "2466": {
+ "id": "2466",
+ "name": "github.com/Azure/go-autorest/autorest/azure/cli",
+ "version": "v0.4.6",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.4.6.0.0.0.0.0.0"
+ },
+ "754": {
+ "id": "754",
+ "name": "golang.org/x/sys",
+ "version": "v0.28.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.28.0.0.0.0.0.0.0"
+ },
+ "504": {
+ "id": "504",
+ "name": "github.com/go-logr/stdr",
+ "version": "v1.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.2.0.0.0.0.0.0"
+ },
+ "4828": {
+ "id": "4828",
+ "name": "github.com/bits-and-blooms/bitset",
+ "version": "v1.12.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.12.0.0.0.0.0.0.0"
+ },
+ "2816": {
+ "id": "2816",
+ "name": "github.com/tjfoc/gmsm",
+ "version": "v1.4.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.1.0.0.0.0.0.0"
+ },
+ "542": {
+ "id": "542",
+ "name": "github.com/gorilla/websocket",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "2650": {
+ "id": "2650",
+ "name": "github.com/google/s2a-go",
+ "version": "v0.1.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.8.0.0.0.0.0.0"
+ },
+ "2754": {
+ "id": "2754",
+ "name": "github.com/pelletier/go-toml/v2",
+ "version": "v2.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.2.2.0.0.0.0.0.0"
+ },
+ "4720": {
+ "id": "4720",
+ "name": "github.com/AzureAD/microsoft-authentication-library-for-go",
+ "version": "v1.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.2.0.0.0.0.0.0"
+ },
+ "512": {
+ "id": "512",
+ "name": "github.com/gobwas/glob",
+ "version": "v0.2.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.3.0.0.0.0.0.0"
+ },
+ "706": {
+ "id": "706",
+ "name": "github.com/tidwall/pretty",
+ "version": "v1.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.1.0.0.0.0.0.0"
+ },
+ "2698": {
+ "id": "2698",
+ "name": "github.com/jedisct1/go-minisign",
+ "version": "v0.0.0-20230811132847-661be99b8267",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "750": {
+ "id": "750",
+ "name": "github.com/stackrox/oauth2",
+ "version": "v0.0.0-20240521152739-4d3f7e4f6b49",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2834": {
+ "id": "2834",
+ "name": "go.mongodb.org/mongo-driver",
+ "version": "v1.14.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.14.0.0.0.0.0.0.0"
+ },
+ "668": {
+ "id": "668",
+ "name": "github.com/prometheus/client_model",
+ "version": "v0.6.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.1.0.0.0.0.0.0"
+ },
+ "764": {
+ "id": "764",
+ "name": "google.golang.org/genproto/googleapis/api",
+ "version": "v0.0.0-20240814211410-ddb44dafa142",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "84": {
+ "id": "84",
+ "name": "libnghttp2",
+ "version": "1.33.0-6.el8_10.1",
+ "kind": "binary",
+ "source": {
+ "id": "83",
+ "name": "nghttp2",
+ "version": "1.33.0-6.el8_10.1",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3614": {
+ "id": "3614",
+ "name": "github.com/adhocore/gronx",
+ "version": "v1.8.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.1.0.0.0.0.0.0"
+ },
+ "744": {
+ "id": "744",
+ "name": "golang.org/x/crypto",
+ "version": "v0.31.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.31.0.0.0.0.0.0.0"
+ },
+ "564": {
+ "id": "564",
+ "name": "github.com/huandu/xstrings",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "56": {
+ "id": "56",
+ "name": "grep",
+ "version": "3.1-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "55",
+ "name": "grep",
+ "version": "3.1-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "32": {
+ "id": "32",
+ "name": "sqlite-libs",
+ "version": "3.26.0-19.el8_9",
+ "kind": "binary",
+ "source": {
+ "id": "31",
+ "name": "sqlite",
+ "version": "3.26.0-19.el8_9",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "514": {
+ "id": "514",
+ "name": "github.com/gofrs/uuid",
+ "version": "v4.4.0+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.4.0.0.0.0.0.0.0"
+ },
+ "168": {
+ "id": "168",
+ "name": "libarchive",
+ "version": "3.3.3-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "167",
+ "name": "libarchive",
+ "version": "3.3.3-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "178": {
+ "id": "178",
+ "name": "libksba",
+ "version": "1.3.5-9.el8_7",
+ "kind": "binary",
+ "source": {
+ "id": "177",
+ "name": "libksba",
+ "version": "1.3.5-9.el8_7",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2452": {
+ "id": "2452",
+ "name": "cloud.google.com/go/securitycenter",
+ "version": "v1.35.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.35.0.0.0.0.0.0.0"
+ },
+ "2484": {
+ "id": "2484",
+ "name": "github.com/alibabacloud-go/darabonba-openapi",
+ "version": "v0.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.1.0.0.0.0.0.0"
+ },
+ "12": {
+ "id": "12",
+ "name": "redhat-release",
+ "version": "8.10-0.3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "11",
+ "name": "redhat-release",
+ "version": "8.10-0.3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "440": {
+ "id": "440",
+ "name": "github.com/beorn7/perks",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "670": {
+ "id": "670",
+ "name": "github.com/prometheus/common",
+ "version": "v0.57.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.57.0.0.0.0.0.0.0"
+ },
+ "2468": {
+ "id": "2468",
+ "name": "github.com/Azure/go-autorest/autorest/date",
+ "version": "v0.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.0.0.0.0.0.0.0"
+ },
+ "3136": {
+ "id": "3136",
+ "name": "github.com/knqyf263/go-rpm-version",
+ "version": "v0.0.0-20220614171824-631e686d1075",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "700": {
+ "id": "700",
+ "name": "github.com/stretchr/testify",
+ "version": "v1.9.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.9.0.0.0.0.0.0.0"
+ },
+ "518": {
+ "id": "518",
+ "name": "github.com/golang-jwt/jwt/v4",
+ "version": "v4.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.5.0.0.0.0.0.0.0"
+ },
+ "3206": {
+ "id": "3206",
+ "name": "github.com/quay/zlog",
+ "version": "v1.1.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.8.0.0.0.0.0.0"
+ },
+ "20": {
+ "id": "20",
+ "name": "ncurses-libs",
+ "version": "6.1-10.20180224.el8",
+ "kind": "binary",
+ "source": {
+ "id": "19",
+ "name": "ncurses",
+ "version": "6.1-10.20180224.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "60": {
+ "id": "60",
+ "name": "libusbx",
+ "version": "1.0.23-4.el8",
+ "kind": "binary",
+ "source": {
+ "id": "59",
+ "name": "libusbx",
+ "version": "1.0.23-4.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3216": {
+ "id": "3216",
+ "name": "github.com/skeema/knownhosts",
+ "version": "v1.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.2.0.0.0.0.0.0"
+ },
+ "3552": {
+ "id": "3552",
+ "name": "sigs.k8s.io/controller-runtime",
+ "version": "v0.18.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.18.5.0.0.0.0.0.0"
+ },
+ "3224": {
+ "id": "3224",
+ "name": "github.com/stackrox/istio-cves",
+ "version": "v0.0.0-20221007013142-0bde9b541ec8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "166": {
+ "id": "166",
+ "name": "libdb",
+ "version": "5.3.28-42.el8_4",
+ "kind": "binary",
+ "source": {
+ "id": "65",
+ "name": "libdb",
+ "version": "5.3.28-42.el8_4",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3134": {
+ "id": "3134",
+ "name": "github.com/klauspost/pgzip",
+ "version": "v1.2.6",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.6.0.0.0.0.0.0"
+ },
+ "2836": {
+ "id": "2836",
+ "name": "go.opencensus.io",
+ "version": "v0.24.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.24.0.0.0.0.0.0.0"
+ },
+ "2474": {
+ "id": "2474",
+ "name": "github.com/NYTimes/gziphandler",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "522": {
+ "id": "522",
+ "name": "github.com/golang/protobuf",
+ "version": "v1.5.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.4.0.0.0.0.0.0"
+ },
+ "2530": {
+ "id": "2530",
+ "name": "github.com/aws/smithy-go",
+ "version": "v1.20.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.20.4.0.0.0.0.0.0"
+ },
+ "28": {
+ "id": "28",
+ "name": "xz-libs",
+ "version": "5.2.4-4.el8_6",
+ "kind": "binary",
+ "source": {
+ "id": "27",
+ "name": "xz",
+ "version": "5.2.4-4.el8_6",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2654": {
+ "id": "2654",
+ "name": "github.com/googleapis/enterprise-certificate-proxy",
+ "version": "v0.3.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.2.0.0.0.0.0.0"
+ },
+ "18": {
+ "id": "18",
+ "name": "pcre2",
+ "version": "10.32-3.el8_6",
+ "kind": "binary",
+ "source": {
+ "id": "17",
+ "name": "pcre2",
+ "version": "10.32-3.el8_6",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "204": {
+ "id": "204",
+ "name": "libmodulemd",
+ "version": "2.13.0-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "203",
+ "name": "libmodulemd",
+ "version": "2.13.0-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "8": {
+ "id": "8",
+ "name": "advanced-cluster-security/rhacs-main-rhel8",
+ "version": "4.6.1-2",
+ "kind": "binary",
+ "source": {
+ "id": "6",
+ "name": "rhacs-main-container",
+ "version": "4.6.1-2",
+ "kind": "source",
+ "arch": "x86_64"
+ },
+ "normalized_version": "rhctag:4.6.0.0.0.0.0.0.0.0",
+ "arch": "x86_64"
+ },
+ "722": {
+ "id": "722",
+ "name": "github.com/zmap/zcrypto",
+ "version": "v0.0.0-20231219022726-a1f61fb1661c",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "802": {
+ "id": "802",
+ "name": "k8s.io/utils",
+ "version": "v0.0.0-20240711033017-18e509b52bc8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "626": {
+ "id": "626",
+ "name": "github.com/modern-go/concurrent",
+ "version": "v0.0.0-20180306012644-bacd9c7ef1dd",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "494": {
+ "id": "494",
+ "name": "github.com/go-errors/errors",
+ "version": "v1.4.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.2.0.0.0.0.0.0"
+ },
+ "566": {
+ "id": "566",
+ "name": "github.com/imdario/mergo",
+ "version": "v0.3.16",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.16.0.0.0.0.0.0"
+ },
+ "470": {
+ "id": "470",
+ "name": "github.com/docker/docker",
+ "version": "v27.1.1+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.27.1.1.0.0.0.0.0.0"
+ },
+ "3334": {
+ "id": "3334",
+ "name": "modernc.org/mathutil",
+ "version": "v1.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.6.0.0.0.0.0.0.0"
+ },
+ "3164": {
+ "id": "3164",
+ "name": "github.com/nwaples/rardecode",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "62": {
+ "id": "62",
+ "name": "p11-kit-trust",
+ "version": "0.23.22-2.el8",
+ "kind": "binary",
+ "source": {
+ "id": "39",
+ "name": "p11-kit",
+ "version": "0.23.22-2.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "5004": {
+ "id": "5004",
+ "name": "github.com/gorilla/css",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "728": {
+ "id": "728",
+ "name": "go.opentelemetry.io/otel",
+ "version": "v1.30.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.0.0.0.0.0.0.0"
+ },
+ "604": {
+ "id": "604",
+ "name": "github.com/mattermost/xml-roundtrip-validator",
+ "version": "v0.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.0.0.0.0.0.0.0"
+ },
+ "768": {
+ "id": "768",
+ "name": "google.golang.org/grpc",
+ "version": "v1.65.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.65.0.0.0.0.0.0.0"
+ },
+ "4780": {
+ "id": "4780",
+ "name": "github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream",
+ "version": "v1.6.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.6.4.0.0.0.0.0.0"
+ },
+ "536": {
+ "id": "536",
+ "name": "github.com/google/uuid",
+ "version": "v1.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.6.0.0.0.0.0.0.0"
+ },
+ "642": {
+ "id": "642",
+ "name": "github.com/olekukonko/tablewriter",
+ "version": "v0.0.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.5.0.0.0.0.0.0"
+ },
+ "152": {
+ "id": "152",
+ "name": "libtasn1",
+ "version": "4.13-4.el8_7",
+ "kind": "binary",
+ "source": {
+ "id": "151",
+ "name": "libtasn1",
+ "version": "4.13-4.el8_7",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "4804": {
+ "id": "4804",
+ "name": "github.com/aws/aws-sdk-go-v2/service/internal/checksum",
+ "version": "v1.3.18",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.18.0.0.0.0.0.0"
+ },
+ "3202": {
+ "id": "3202",
+ "name": "github.com/quay/claircore/toolkit",
+ "version": "v1.2.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.4.0.0.0.0.0.0"
+ },
+ "2458": {
+ "id": "2458",
+ "name": "github.com/Azure/azure-sdk-for-go",
+ "version": "v68.0.0+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.68.0.0.0.0.0.0.0.0"
+ },
+ "798": {
+ "id": "798",
+ "name": "k8s.io/kube-openapi",
+ "version": "v0.0.0-20240228011516-70dd3763d340",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3690": {
+ "id": "3690",
+ "name": "github.com/cockroachdb/errors",
+ "version": "v1.11.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.3.0.0.0.0.0.0"
+ },
+ "3874": {
+ "id": "3874",
+ "name": "github.com/kr/pretty",
+ "version": "v0.3.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.1.0.0.0.0.0.0"
+ },
+ "804": {
+ "id": "804",
+ "name": "oras.land/oras-go",
+ "version": "v1.2.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.5.0.0.0.0.0.0"
+ },
+ "2942": {
+ "id": "2942",
+ "name": "cloud.google.com/go/storage",
+ "version": "v1.43.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.43.0.0.0.0.0.0.0"
+ },
+ "4910": {
+ "id": "4910",
+ "name": "github.com/fatih/structs",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "446": {
+ "id": "446",
+ "name": "github.com/cloudflare/cfssl",
+ "version": "v1.6.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.6.5.0.0.0.0.0.0"
+ },
+ "2802": {
+ "id": "2802",
+ "name": "github.com/spf13/viper",
+ "version": "v1.18.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.18.2.0.0.0.0.0.0"
+ },
+ "134": {
+ "id": "134",
+ "name": "gmp",
+ "version": "1:6.1.2-11.el8",
+ "kind": "binary",
+ "source": {
+ "id": "133",
+ "name": "gmp",
+ "version": "6.1.2-11.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "586": {
+ "id": "586",
+ "name": "github.com/jonboulle/clockwork",
+ "version": "v0.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.4.0.0.0.0.0.0.0"
+ },
+ "10": {
+ "id": "10",
+ "name": "crypto-policies",
+ "version": "20230731-1.git3177e06.el8",
+ "kind": "binary",
+ "source": {
+ "id": "9",
+ "name": "crypto-policies",
+ "version": "20230731-1.git3177e06.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "2784": {
+ "id": "2784",
+ "name": "github.com/sigstore/rekor",
+ "version": "v1.3.6",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.6.0.0.0.0.0.0"
+ },
+ "2750": {
+ "id": "2750",
+ "name": "github.com/opentracing/opentracing-go",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "548": {
+ "id": "548",
+ "name": "github.com/gregjones/httpcache",
+ "version": "v0.0.0-20190611155906-901d90724c79",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "708": {
+ "id": "708",
+ "name": "github.com/tkuchiki/go-timezone",
+ "version": "v0.2.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.3.0.0.0.0.0.0"
+ },
+ "436": {
+ "id": "436",
+ "name": "github.com/asaskevich/govalidator",
+ "version": "v0.0.0-20230301143203-a9d515a09cc2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2820": {
+ "id": "2820",
+ "name": "github.com/transparency-dev/merkle",
+ "version": "v0.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.2.0.0.0.0.0.0"
+ },
+ "788": {
+ "id": "788",
+ "name": "k8s.io/apiserver",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "82": {
+ "id": "82",
+ "name": "libcap-ng",
+ "version": "0.7.11-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "81",
+ "name": "libcap-ng",
+ "version": "0.7.11-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "732": {
+ "id": "732",
+ "name": "go.opentelemetry.io/otel/trace",
+ "version": "v1.30.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.0.0.0.0.0.0.0"
+ },
+ "2740": {
+ "id": "2740",
+ "name": "github.com/oklog/ulid",
+ "version": "v1.3.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.1.0.0.0.0.0.0"
+ },
+ "16": {
+ "id": "16",
+ "name": "publicsuffix-list-dafsa",
+ "version": "20180723-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "15",
+ "name": "publicsuffix-list",
+ "version": "20180723-1.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "488": {
+ "id": "488",
+ "name": "github.com/felixge/httpsnoop",
+ "version": "v1.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.4.0.0.0.0.0.0"
+ },
+ "632": {
+ "id": "632",
+ "name": "github.com/munnerz/goautoneg",
+ "version": "v0.0.0-20191010083416-a7dc8b61c822",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "516": {
+ "id": "516",
+ "name": "github.com/gogo/protobuf",
+ "version": "v1.3.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.2.0.0.0.0.0.0"
+ },
+ "468": {
+ "id": "468",
+ "name": "github.com/docker/distribution",
+ "version": "v2.8.3+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.8.3.0.0.0.0.0.0"
+ },
+ "3204": {
+ "id": "3204",
+ "name": "github.com/quay/goval-parser",
+ "version": "v0.8.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.8.8.0.0.0.0.0.0"
+ },
+ "634": {
+ "id": "634",
+ "name": "github.com/mxk/go-flowrate",
+ "version": "v0.0.0-20140419014527-cca7078d478f",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2812": {
+ "id": "2812",
+ "name": "github.com/theupdateframework/go-tuf",
+ "version": "v0.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.7.0.0.0.0.0.0.0"
+ },
+ "588": {
+ "id": "588",
+ "name": "github.com/josharian/intern",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "674": {
+ "id": "674",
+ "name": "github.com/rivo/uniseg",
+ "version": "v0.4.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.4.7.0.0.0.0.0.0"
+ },
+ "2664": {
+ "id": "2664",
+ "name": "github.com/grpc-ecosystem/go-grpc-prometheus",
+ "version": "v1.2.1-0.20210315223345-82c243799c99",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.1.0.0.0.0.0.0"
+ },
+ "3486": {
+ "id": "3486",
+ "name": "go.opentelemetry.io/proto/otlp",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "410": {
+ "id": "410",
+ "name": "snappy",
+ "version": "1.1.8-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "409",
+ "name": "snappy",
+ "version": "1.1.8-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2520": {
+ "id": "2520",
+ "name": "github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding",
+ "version": "v1.11.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.4.0.0.0.0.0.0"
+ },
+ "122": {
+ "id": "122",
+ "name": "glibc-minimal-langpack",
+ "version": "2.28-251.el8_10.5",
+ "kind": "binary",
+ "source": {
+ "id": "21",
+ "name": "glibc",
+ "version": "2.28-251.el8_10.5",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3338": {
+ "id": "3338",
+ "name": "modernc.org/sqlite",
+ "version": "v1.33.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.33.1.0.0.0.0.0.0"
+ },
+ "3044": {
+ "id": "3044",
+ "name": "github.com/go-git/go-git/v5",
+ "version": "v5.12.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.12.0.0.0.0.0.0.0"
+ },
+ "5038": {
+ "id": "5038",
+ "name": "github.com/heimdalr/dag",
+ "version": "v1.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.0.0.0.0.0.0.0"
+ },
+ "3696": {
+ "id": "3696",
+ "name": "github.com/cockroachdb/pebble",
+ "version": "v1.1.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.2.0.0.0.0.0.0"
+ },
+ "406": {
+ "id": "406",
+ "name": "bzip2-libs",
+ "version": "1.0.6-27.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "405",
+ "name": "bzip2",
+ "version": "1.0.6-27.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "4772": {
+ "id": "4772",
+ "name": "github.com/andygrunwald/go-jira",
+ "version": "v1.16.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.16.0.0.0.0.0.0.0"
+ },
+ "4704": {
+ "id": "4704",
+ "name": "github.com/Azure/azure-sdk-for-go/sdk/monitor/ingestion/azlogs",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "162": {
+ "id": "162",
+ "name": "chkconfig",
+ "version": "1.19.2-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "161",
+ "name": "chkconfig",
+ "version": "1.19.2-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "500": {
+ "id": "500",
+ "name": "github.com/go-jose/go-jose/v4",
+ "version": "v4.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.0.2.0.0.0.0.0.0"
+ },
+ "534": {
+ "id": "534",
+ "name": "github.com/google/shlex",
+ "version": "v0.0.0-20191202100458-e7afc7fbc510",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "4740": {
+ "id": "4740",
+ "name": "github.com/PagerDuty/go-pagerduty",
+ "version": "v1.8.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.0.0.0.0.0.0.0"
+ },
+ "616": {
+ "id": "616",
+ "name": "github.com/mitchellh/hashstructure/v2",
+ "version": "v2.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.2.0.0.0.0.0.0"
+ },
+ "186": {
+ "id": "186",
+ "name": "libsigsegv",
+ "version": "2.11-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "185",
+ "name": "libsigsegv",
+ "version": "2.11-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "734": {
+ "id": "734",
+ "name": "go.starlark.net",
+ "version": "v0.0.0-20230612165344-9532f5667272",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "184": {
+ "id": "184",
+ "name": "audit-libs",
+ "version": "3.1.2-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "183",
+ "name": "audit",
+ "version": "3.1.2-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "306": {
+ "id": "306",
+ "name": "libpq",
+ "version": "13.11-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "305",
+ "name": "libpq",
+ "version": "13.11-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2544": {
+ "id": "2544",
+ "name": "github.com/clbanning/mxj/v2",
+ "version": "v2.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.7.0.0.0.0.0.0.0"
+ },
+ "2996": {
+ "id": "2996",
+ "name": "github.com/containers/image/v5",
+ "version": "v5.32.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.32.2.0.0.0.0.0.0"
+ },
+ "5240": {
+ "id": "5240",
+ "name": "github.com/sourcegraph/conc",
+ "version": "v0.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.0.0.0.0.0.0.0"
+ },
+ "3350": {
+ "id": "3350",
+ "name": "github.com/antlr/antlr4/runtime/Go/antlr/v4",
+ "version": "v4.0.0-20230512164433-5d1fd1a340c9",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.0.0.0.0.0.0.0.0"
+ },
+ "2602": {
+ "id": "2602",
+ "name": "github.com/go-openapi/analysis",
+ "version": "v0.23.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.23.0.0.0.0.0.0.0"
+ },
+ "810": {
+ "id": "810",
+ "name": "sigs.k8s.io/kustomize/kyaml",
+ "version": "v0.16.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.16.0.0.0.0.0.0.0"
+ },
+ "624": {
+ "id": "624",
+ "name": "github.com/moby/term",
+ "version": "v0.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.0.0.0.0.0.0.0"
+ },
+ "540": {
+ "id": "540",
+ "name": "github.com/gorilla/schema",
+ "version": "v1.4.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.1.0.0.0.0.0.0"
+ },
+ "2810": {
+ "id": "2810",
+ "name": "github.com/syndtr/goleveldb",
+ "version": "v1.0.1-0.20220721030215-126854af5e6d",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "2646": {
+ "id": "2646",
+ "name": "github.com/google/go-querystring",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "724": {
+ "id": "724",
+ "name": "github.com/zmap/zlint/v3",
+ "version": "v3.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.6.0.0.0.0.0.0.0"
+ },
+ "2554": {
+ "id": "2554",
+ "name": "github.com/containerd/stargz-snapshotter/estargz",
+ "version": "v0.15.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.15.1.0.0.0.0.0.0"
+ },
+ "794": {
+ "id": "794",
+ "name": "k8s.io/component-base",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "3178": {
+ "id": "3178",
+ "name": "github.com/package-url/packageurl-go",
+ "version": "v0.1.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.3.0.0.0.0.0.0"
+ },
+ "414": {
+ "id": "414",
+ "name": "github.com/stackrox/rox",
+ "version": "(devel) (git, commit ee71a8f7b48cb7606c47364396c8e5be4b793599, built at 2024-12-13T13:09:44Z, dirty)",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ }
+ },
+ "2780": {
+ "id": "2780",
+ "name": "github.com/stackrox/cosign/v2",
+ "version": "v2.0.0-20240412144741-15f5395d853a",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.0.0.0.0.0.0.0"
+ },
+ "3042": {
+ "id": "3042",
+ "name": "github.com/go-git/go-billy/v5",
+ "version": "v5.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.5.0.0.0.0.0.0.0"
+ },
+ "3236": {
+ "id": "3236",
+ "name": "github.com/ulikunitz/xz",
+ "version": "v0.5.12",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.12.0.0.0.0.0.0"
+ },
+ "780": {
+ "id": "780",
+ "name": "helm.sh/helm/v3",
+ "version": "v3.15.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.15.4.0.0.0.0.0.0"
+ },
+ "94": {
+ "id": "94",
+ "name": "npth",
+ "version": "1.5-4.el8",
+ "kind": "binary",
+ "source": {
+ "id": "93",
+ "name": "npth",
+ "version": "1.5-4.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2680": {
+ "id": "2680",
+ "name": "github.com/stackrox/docker-registry-client",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "2998": {
+ "id": "2998",
+ "name": "github.com/containers/storage",
+ "version": "v1.55.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.55.0.0.0.0.0.0.0"
+ },
+ "2916": {
+ "id": "2916",
+ "name": "sigs.k8s.io/release-utils",
+ "version": "v0.7.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.7.7.0.0.0.0.0.0"
+ },
+ "194": {
+ "id": "194",
+ "name": "libyaml",
+ "version": "0.1.7-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "193",
+ "name": "libyaml",
+ "version": "0.1.7-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "756": {
+ "id": "756",
+ "name": "golang.org/x/term",
+ "version": "v0.27.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.27.0.0.0.0.0.0.0"
+ },
+ "2506": {
+ "id": "2506",
+ "name": "github.com/aws/aws-sdk-go-v2/credentials",
+ "version": "v1.17.33",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.33.0.0.0.0.0.0"
+ },
+ "3876": {
+ "id": "3876",
+ "name": "github.com/kr/text",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "812": {
+ "id": "812",
+ "name": "sigs.k8s.io/structured-merge-diff/v4",
+ "version": "v4.4.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.4.1.0.0.0.0.0.0"
+ },
+ "110": {
+ "id": "110",
+ "name": "libgcc",
+ "version": "8.5.0-22.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "109",
+ "name": "gcc",
+ "version": "8.5.0-22.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "430": {
+ "id": "430",
+ "name": "github.com/Masterminds/squirrel",
+ "version": "v1.5.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.4.0.0.0.0.0.0"
+ },
+ "3698": {
+ "id": "3698",
+ "name": "github.com/cockroachdb/redact",
+ "version": "v1.1.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.5.0.0.0.0.0.0"
+ },
+ "2528": {
+ "id": "2528",
+ "name": "github.com/aws/aws-sdk-go-v2/service/sts",
+ "version": "v1.30.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.8.0.0.0.0.0.0"
+ },
+ "738": {
+ "id": "738",
+ "name": "go.uber.org/mock",
+ "version": "v0.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.4.0.0.0.0.0.0.0"
+ },
+ "2512": {
+ "id": "2512",
+ "name": "github.com/aws/aws-sdk-go-v2/internal/endpoints/v2",
+ "version": "v2.6.17",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.6.17.0.0.0.0.0.0"
+ },
+ "4968": {
+ "id": "4968",
+ "name": "github.com/golang-jwt/jwt/v5",
+ "version": "v5.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.2.1.0.0.0.0.0.0"
+ },
+ "2446": {
+ "id": "2446",
+ "name": "cloud.google.com/go/compute/metadata",
+ "version": "v0.5.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.1.0.0.0.0.0.0"
+ },
+ "30": {
+ "id": "30",
+ "name": "info",
+ "version": "6.5-7.el8",
+ "kind": "binary",
+ "source": {
+ "id": "29",
+ "name": "texinfo",
+ "version": "6.5-7.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "6": {
+ "id": "6",
+ "name": "rhacs-main-container",
+ "version": "4.6.1-2",
+ "kind": "source",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "rhctag:4.6.0.0.0.0.0.0.0.0",
+ "arch": "x86_64"
+ },
+ "530": {
+ "id": "530",
+ "name": "github.com/google/go-cmp",
+ "version": "v0.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.0.0.0.0.0.0.0"
+ },
+ "3336": {
+ "id": "3336",
+ "name": "modernc.org/memory",
+ "version": "v1.8.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.0.0.0.0.0.0.0"
+ },
+ "2562": {
+ "id": "2562",
+ "name": "github.com/digitorus/pkcs7",
+ "version": "v0.0.0-20230818184609-3a137a874352",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3232": {
+ "id": "3232",
+ "name": "github.com/syndtr/gocapability",
+ "version": "v0.0.0-20200815063812-42c35b437635",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "442": {
+ "id": "442",
+ "name": "github.com/cespare/xxhash/v2",
+ "version": "v2.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.3.0.0.0.0.0.0.0"
+ },
+ "74": {
+ "id": "74",
+ "name": "librhsm",
+ "version": "0.0.3-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "73",
+ "name": "librhsm",
+ "version": "0.0.3-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "568": {
+ "id": "568",
+ "name": "github.com/jackc/pgio",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "726": {
+ "id": "726",
+ "name": "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp",
+ "version": "v0.53.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.53.0.0.0.0.0.0.0"
+ },
+ "3130": {
+ "id": "3130",
+ "name": "github.com/kevinburke/ssh_config",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "124": {
+ "id": "124",
+ "name": "glibc",
+ "version": "2.28-251.el8_10.5",
+ "kind": "binary",
+ "source": {
+ "id": "21",
+ "name": "glibc",
+ "version": "2.28-251.el8_10.5",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "174": {
+ "id": "174",
+ "name": "json-glib",
+ "version": "1.4.4-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "173",
+ "name": "json-glib",
+ "version": "1.4.4-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "526": {
+ "id": "526",
+ "name": "github.com/google/certificate-transparency-go",
+ "version": "v1.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.1.0.0.0.0.0.0"
+ },
+ "656": {
+ "id": "656",
+ "name": "github.com/peterbourgon/diskv",
+ "version": "v2.0.1+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.1.0.0.0.0.0.0"
+ },
+ "544": {
+ "id": "544",
+ "name": "github.com/gosuri/uitable",
+ "version": "v0.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.4.0.0.0.0.0.0"
+ },
+ "2476": {
+ "id": "2476",
+ "name": "github.com/ProtonMail/go-crypto",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "450": {
+ "id": "450",
+ "name": "github.com/containerd/containerd",
+ "version": "v1.7.18",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.7.18.0.0.0.0.0.0"
+ },
+ "652": {
+ "id": "652",
+ "name": "github.com/owenrumney/go-sarif/v2",
+ "version": "v2.3.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.3.2.0.0.0.0.0.0"
+ },
+ "150": {
+ "id": "150",
+ "name": "sed",
+ "version": "4.5-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "149",
+ "name": "sed",
+ "version": "4.5-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "612": {
+ "id": "612",
+ "name": "github.com/mitchellh/copystructure",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "2508": {
+ "id": "2508",
+ "name": "github.com/aws/aws-sdk-go-v2/feature/ec2/imds",
+ "version": "v1.16.13",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.16.13.0.0.0.0.0.0"
+ },
+ "80": {
+ "id": "80",
+ "name": "json-c",
+ "version": "0.13.1-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "79",
+ "name": "json-c",
+ "version": "0.13.1-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "170": {
+ "id": "170",
+ "name": "mpfr",
+ "version": "3.1.6-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "169",
+ "name": "mpfr",
+ "version": "3.1.6-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2828": {
+ "id": "2828",
+ "name": "github.com/xanzy/go-gitlab",
+ "version": "v0.102.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.102.0.0.0.0.0.0.0"
+ },
+ "688": {
+ "id": "688",
+ "name": "github.com/shopspring/decimal",
+ "version": "v1.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.0.0.0.0.0.0.0"
+ },
+ "678": {
+ "id": "678",
+ "name": "github.com/russellhaering/gosaml2",
+ "version": "v0.9.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.1.0.0.0.0.0.0"
+ },
+ "2814": {
+ "id": "2814",
+ "name": "github.com/titanous/rocacheck",
+ "version": "v0.0.0-20171023193734-afe73141d399",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "188": {
+ "id": "188",
+ "name": "libstdc++",
+ "version": "8.5.0-22.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "109",
+ "name": "gcc",
+ "version": "8.5.0-22.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2524": {
+ "id": "2524",
+ "name": "github.com/aws/aws-sdk-go-v2/service/sso",
+ "version": "v1.22.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.22.8.0.0.0.0.0.0"
+ },
+ "3024": {
+ "id": "3024",
+ "name": "github.com/emirpasic/gods",
+ "version": "v1.18.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.18.1.0.0.0.0.0.0"
+ },
+ "4678": {
+ "id": "4678",
+ "name": "cloud.google.com/go/containeranalysis",
+ "version": "v0.13.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.13.0.0.0.0.0.0.0"
+ },
+ "462": {
+ "id": "462",
+ "name": "github.com/davecgh/go-spew",
+ "version": "v1.1.2-0.20180830191138-d8f796af33cc",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.2.0.0.0.0.0.0"
+ },
+ "3332": {
+ "id": "3332",
+ "name": "modernc.org/libc",
+ "version": "v1.55.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.55.3.0.0.0.0.0.0"
+ },
+ "2516": {
+ "id": "2516",
+ "name": "github.com/aws/aws-sdk-go-v2/service/ecr",
+ "version": "v1.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.3.0.0.0.0.0.0"
+ },
+ "2714": {
+ "id": "2714",
+ "name": "github.com/kylelemons/godebug",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "3692": {
+ "id": "3692",
+ "name": "github.com/cockroachdb/fifo",
+ "version": "v0.0.0-20240606204812-0bbfbd93a7ce",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2734": {
+ "id": "2734",
+ "name": "github.com/mozillazg/docker-credential-acr-helper",
+ "version": "v0.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.0.0.0.0.0.0.0"
+ },
+ "3116": {
+ "id": "3116",
+ "name": "github.com/jbenet/go-context",
+ "version": "v0.0.0-20150711004518-d14ea06fba99",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "444": {
+ "id": "444",
+ "name": "github.com/chai2010/gettext-go",
+ "version": "v1.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.2.0.0.0.0.0.0"
+ },
+ "2862": {
+ "id": "2862",
+ "name": "golang.org/x/mod",
+ "version": "v0.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.21.0.0.0.0.0.0.0"
+ },
+ "766": {
+ "id": "766",
+ "name": "google.golang.org/genproto/googleapis/rpc",
+ "version": "v0.0.0-20240814211410-ddb44dafa142",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "556": {
+ "id": "556",
+ "name": "github.com/hashicorp/go-cleanhttp",
+ "version": "v0.5.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.2.0.0.0.0.0.0"
+ },
+ "748": {
+ "id": "748",
+ "name": "golang.org/x/net",
+ "version": "v0.29.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.29.0.0.0.0.0.0.0"
+ },
+ "172": {
+ "id": "172",
+ "name": "gnutls",
+ "version": "3.6.16-8.el8_9.3",
+ "kind": "binary",
+ "source": {
+ "id": "171",
+ "name": "gnutls",
+ "version": "3.6.16-8.el8_9.3",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "524": {
+ "id": "524",
+ "name": "github.com/google/btree",
+ "version": "v1.1.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.2.0.0.0.0.0.0"
+ },
+ "558": {
+ "id": "558",
+ "name": "github.com/hashicorp/go-multierror",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "2630": {
+ "id": "2630",
+ "name": "github.com/golang/groupcache",
+ "version": "v0.0.0-20210331224755-41bb18bfe9da",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2442": {
+ "id": "2442",
+ "name": "cloud.google.com/go/auth",
+ "version": "v0.9.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.1.0.0.0.0.0.0"
+ },
+ "164": {
+ "id": "164",
+ "name": "ca-certificates",
+ "version": "2024.2.69_v8.0.303-80.0.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "163",
+ "name": "ca-certificates",
+ "version": "2024.2.69_v8.0.303-80.0.el8_10",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "654": {
+ "id": "654",
+ "name": "github.com/pelletier/go-toml",
+ "version": "v1.9.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.9.5.0.0.0.0.0.0"
+ },
+ "454": {
+ "id": "454",
+ "name": "github.com/containerd/log",
+ "version": "v0.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.0.0.0.0.0.0.0"
+ },
+ "42": {
+ "id": "42",
+ "name": "elfutils-libelf",
+ "version": "0.190-2.el8",
+ "kind": "binary",
+ "source": {
+ "id": "41",
+ "name": "elfutils",
+ "version": "0.190-2.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2552": {
+ "id": "2552",
+ "name": "github.com/common-nighthawk/go-figure",
+ "version": "v0.0.0-20210622060536-734e95fb86be",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "610": {
+ "id": "610",
+ "name": "github.com/mattn/go-runewidth",
+ "version": "v0.0.16",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.16.0.0.0.0.0.0"
+ },
+ "2558": {
+ "id": "2558",
+ "name": "github.com/cyberphone/json-canonicalization",
+ "version": "v0.0.0-20231217050601-ba74d44ecf5f",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "560": {
+ "id": "560",
+ "name": "github.com/hashicorp/go-retryablehttp",
+ "version": "v0.7.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.7.7.0.0.0.0.0.0"
+ },
+ "2034": {
+ "id": "2034",
+ "name": "github.com/Azure/go-ansiterm",
+ "version": "v0.0.0-20230124172434-306776ec8161",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "50": {
+ "id": "50",
+ "name": "libsmartcols",
+ "version": "2.32.1-46.el8",
+ "kind": "binary",
+ "source": {
+ "id": "49",
+ "name": "util-linux",
+ "version": "2.32.1-46.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "550": {
+ "id": "550",
+ "name": "github.com/grpc-ecosystem/go-grpc-middleware/v2",
+ "version": "v2.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.1.0.0.0.0.0.0.0"
+ },
+ "34": {
+ "id": "34",
+ "name": "libcap",
+ "version": "2.48-6.el8_9",
+ "kind": "binary",
+ "source": {
+ "id": "33",
+ "name": "libcap",
+ "version": "2.48-6.el8_9",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3988": {
+ "id": "3988",
+ "name": "github.com/stackrox/pkcs7",
+ "version": "v0.0.0-20240314170115-841ca6b5f88d",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3604": {
+ "id": "3604",
+ "name": "github.com/ComplianceAsCode/compliance-operator",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "2620": {
+ "id": "2620",
+ "name": "github.com/go-openapi/validate",
+ "version": "v0.24.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.24.0.0.0.0.0.0.0"
+ },
+ "562": {
+ "id": "562",
+ "name": "github.com/hashicorp/golang-lru/v2",
+ "version": "v2.0.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.7.0.0.0.0.0.0"
+ },
+ "424": {
+ "id": "424",
+ "name": "github.com/Masterminds/semver",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "44": {
+ "id": "44",
+ "name": "libassuan",
+ "version": "2.5.1-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "43",
+ "name": "libassuan",
+ "version": "2.5.1-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2720": {
+ "id": "2720",
+ "name": "github.com/magiconair/properties",
+ "version": "v1.8.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.7.0.0.0.0.0.0"
+ },
+ "3476": {
+ "id": "3476",
+ "name": "go.opentelemetry.io/otel/exporters/otlp/otlptrace",
+ "version": "v1.22.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.22.0.0.0.0.0.0.0"
+ },
+ "58": {
+ "id": "58",
+ "name": "libmount",
+ "version": "2.32.1-46.el8",
+ "kind": "binary",
+ "source": {
+ "id": "49",
+ "name": "util-linux",
+ "version": "2.32.1-46.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "140": {
+ "id": "140",
+ "name": "libffi",
+ "version": "3.1-24.el8",
+ "kind": "binary",
+ "source": {
+ "id": "139",
+ "name": "libffi",
+ "version": "3.1-24.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "472": {
+ "id": "472",
+ "name": "github.com/docker/docker-credential-helpers",
+ "version": "v0.8.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.8.2.0.0.0.0.0.0"
+ },
+ "644": {
+ "id": "644",
+ "name": "github.com/opencontainers/go-digest",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "770": {
+ "id": "770",
+ "name": "google.golang.org/protobuf",
+ "version": "v1.34.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.34.2.0.0.0.0.0.0"
+ },
+ "2684": {
+ "id": "2684",
+ "name": "github.com/in-toto/in-toto-golang",
+ "version": "v0.9.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.0.0.0.0.0.0.0"
+ },
+ "814": {
+ "id": "814",
+ "name": "sigs.k8s.io/yaml",
+ "version": "v1.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.0.0.0.0.0.0.0"
+ },
+ "774": {
+ "id": "774",
+ "name": "github.com/stackrox/yaml/v2",
+ "version": "v2.4.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.4.1.0.0.0.0.0.0"
+ },
+ "182": {
+ "id": "182",
+ "name": "keyutils-libs",
+ "version": "1.5.10-9.el8",
+ "kind": "binary",
+ "source": {
+ "id": "181",
+ "name": "keyutils",
+ "version": "1.5.10-9.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "5282": {
+ "id": "5282",
+ "name": "github.com/trivago/tgo",
+ "version": "v1.0.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.7.0.0.0.0.0.0"
+ },
+ "3356": {
+ "id": "3356",
+ "name": "github.com/cenkalti/backoff/v4",
+ "version": "v4.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.2.1.0.0.0.0.0.0"
+ },
+ "622": {
+ "id": "622",
+ "name": "github.com/moby/spdystream",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "730": {
+ "id": "730",
+ "name": "go.opentelemetry.io/otel/metric",
+ "version": "v1.30.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.0.0.0.0.0.0.0"
+ },
+ "660": {
+ "id": "660",
+ "name": "github.com/pkg/errors",
+ "version": "v0.9.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.1.0.0.0.0.0.0"
+ },
+ "2788": {
+ "id": "2788",
+ "name": "github.com/sigstore/timestamp-authority",
+ "version": "v1.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.2.0.0.0.0.0.0"
+ },
+ "2": {
+ "id": "2",
+ "name": "ubi8-minimal-container",
+ "version": "8.10-1130",
+ "kind": "source",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "rhctag:8.10.0.0.0.0.0.0.0.0",
+ "arch": "x86_64"
+ },
+ "666": {
+ "id": "666",
+ "name": "github.com/prometheus/client_golang",
+ "version": "v1.20.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.20.4.0.0.0.0.0.0"
+ },
+ "3184": {
+ "id": "3184",
+ "name": "github.com/pjbgf/sha1cd",
+ "version": "v0.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.0.0.0.0.0.0.0"
+ },
+ "2822": {
+ "id": "2822",
+ "name": "github.com/travelaudience/go-promhttp",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "3478": {
+ "id": "3478",
+ "name": "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc",
+ "version": "v1.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.21.0.0.0.0.0.0.0"
+ },
+ "552": {
+ "id": "552",
+ "name": "github.com/grpc-ecosystem/grpc-gateway/v2",
+ "version": "v2.22.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.22.0.0.0.0.0.0.0"
+ },
+ "118": {
+ "id": "118",
+ "name": "ncurses-base",
+ "version": "6.1-10.20180224.el8",
+ "kind": "binary",
+ "source": {
+ "id": "19",
+ "name": "ncurses",
+ "version": "6.1-10.20180224.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "2566": {
+ "id": "2566",
+ "name": "github.com/dimchansky/utfbom",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "620": {
+ "id": "620",
+ "name": "github.com/moby/locker",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "680": {
+ "id": "680",
+ "name": "github.com/russellhaering/goxmldsig",
+ "version": "v1.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.0.0.0.0.0.0.0"
+ },
+ "2716": {
+ "id": "2716",
+ "name": "github.com/letsencrypt/boulder",
+ "version": "v0.0.0-20240418210053-89b07f4543e0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2480": {
+ "id": "2480",
+ "name": "github.com/alibabacloud-go/cr-20160607",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "790": {
+ "id": "790",
+ "name": "k8s.io/cli-runtime",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "2488": {
+ "id": "2488",
+ "name": "github.com/alibabacloud-go/endpoint-util",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "2510": {
+ "id": "2510",
+ "name": "github.com/aws/aws-sdk-go-v2/internal/configsources",
+ "version": "v1.3.17",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.17.0.0.0.0.0.0"
+ },
+ "14": {
+ "id": "14",
+ "name": "filesystem",
+ "version": "3.8-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "13",
+ "name": "filesystem",
+ "version": "3.8-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3304": {
+ "id": "3304",
+ "name": "gopkg.in/tomb.v1",
+ "version": "v1.0.0-20141024135613-dd632973f1e7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "792": {
+ "id": "792",
+ "name": "k8s.io/client-go",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "3612": {
+ "id": "3612",
+ "name": "github.com/Shopify/toxiproxy/v2",
+ "version": "v2.8.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.8.0.0.0.0.0.0.0"
+ },
+ "2772": {
+ "id": "2772",
+ "name": "github.com/sassoftware/relic",
+ "version": "v7.2.1+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.7.2.1.0.0.0.0.0.0"
+ },
+ "2464": {
+ "id": "2464",
+ "name": "github.com/Azure/go-autorest/autorest/azure/auth",
+ "version": "v0.5.12",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.12.0.0.0.0.0.0"
+ },
+ "584": {
+ "id": "584",
+ "name": "github.com/jmoiron/sqlx",
+ "version": "v1.3.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.5.0.0.0.0.0.0"
+ },
+ "3382": {
+ "id": "3382",
+ "name": "github.com/go-logr/zapr",
+ "version": "v1.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.0.0.0.0.0.0.0"
+ },
+ "608": {
+ "id": "608",
+ "name": "github.com/mattn/go-isatty",
+ "version": "v0.0.20",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.20.0.0.0.0.0.0"
+ },
+ "148": {
+ "id": "148",
+ "name": "libacl",
+ "version": "2.2.53-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "147",
+ "name": "acl",
+ "version": "2.2.53-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2614": {
+ "id": "2614",
+ "name": "github.com/go-openapi/spec",
+ "version": "v0.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.21.0.0.0.0.0.0.0"
+ },
+ "2952": {
+ "id": "2952",
+ "name": "github.com/andybalholm/brotli",
+ "version": "v1.0.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.5.0.0.0.0.0.0"
+ },
+ "460": {
+ "id": "460",
+ "name": "github.com/cyphar/filepath-securejoin",
+ "version": "v0.3.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.1.0.0.0.0.0.0"
+ },
+ "5112": {
+ "id": "5112",
+ "name": "github.com/microcosm-cc/bluemonday",
+ "version": "v1.0.23",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.23.0.0.0.0.0.0"
+ },
+ "486": {
+ "id": "486",
+ "name": "github.com/fatih/color",
+ "version": "v1.17.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.0.0.0.0.0.0.0"
+ },
+ "618": {
+ "id": "618",
+ "name": "github.com/mitchellh/reflectwalk",
+ "version": "v1.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.2.0.0.0.0.0.0"
+ },
+ "696": {
+ "id": "696",
+ "name": "github.com/spf13/pflag",
+ "version": "v1.0.6-0.20210604193023-d5e0c0615ace",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.6.0.0.0.0.0.0"
+ },
+ "582": {
+ "id": "582",
+ "name": "github.com/jinzhu/now",
+ "version": "v1.1.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.5.0.0.0.0.0.0"
+ },
+ "434": {
+ "id": "434",
+ "name": "github.com/acarl005/stripansi",
+ "version": "v0.0.0-20180116102854-5a71ef0e047d",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2926": {
+ "id": "2926",
+ "name": "cloud.google.com/go",
+ "version": "v0.115.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.115.1.0.0.0.0.0.0"
+ },
+ "108": {
+ "id": "108",
+ "name": "langpacks-en",
+ "version": "1.0-12.el8",
+ "kind": "binary",
+ "source": {
+ "id": "107",
+ "name": "langpacks",
+ "version": "1.0-12.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "2564": {
+ "id": "2564",
+ "name": "github.com/digitorus/timestamp",
+ "version": "v0.0.0-20231217203849-220c5c2851b7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3482": {
+ "id": "3482",
+ "name": "go.opentelemetry.io/otel/sdk",
+ "version": "v1.28.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.28.0.0.0.0.0.0.0"
+ },
+ "458": {
+ "id": "458",
+ "name": "github.com/cpuguy83/go-md2man/v2",
+ "version": "v2.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.4.0.0.0.0.0.0"
+ },
+ "2634": {
+ "id": "2634",
+ "name": "github.com/golang/snappy",
+ "version": "v0.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.4.0.0.0.0.0.0"
+ },
+ "2492": {
+ "id": "2492",
+ "name": "github.com/alibabacloud-go/tea",
+ "version": "v1.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.1.0.0.0.0.0.0"
+ },
+ "2478": {
+ "id": "2478",
+ "name": "github.com/alibabacloud-go/alibabacloud-gateway-spi",
+ "version": "v0.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.4.0.0.0.0.0.0"
+ },
+ "3226": {
+ "id": "3226",
+ "name": "github.com/stackrox/k8s-cves",
+ "version": "v0.0.0-20220818200547-7d0d1420c58d",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2656": {
+ "id": "2656",
+ "name": "github.com/googleapis/gax-go/v2",
+ "version": "v2.13.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.13.0.0.0.0.0.0.0"
+ },
+ "572": {
+ "id": "572",
+ "name": "github.com/jackc/pgservicefile",
+ "version": "v0.0.0-20231201235250-de7065d80cb9",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "482": {
+ "id": "482",
+ "name": "github.com/exponent-io/jsonpath",
+ "version": "v0.0.0-20210407135951-1de76d718b3f",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "664": {
+ "id": "664",
+ "name": "github.com/pmezard/go-difflib",
+ "version": "v1.0.1-0.20181226105442-5d4384ee4fb2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "2770": {
+ "id": "2770",
+ "name": "github.com/sagikazarmark/slog-shim",
+ "version": "v0.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.0.0.0.0.0.0.0"
+ },
+ "2532": {
+ "id": "2532",
+ "name": "github.com/awslabs/amazon-ecr-credential-helper/ecr-login",
+ "version": "v0.0.0-20231024185945-8841054dbdb8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3370": {
+ "id": "3370",
+ "name": "github.com/evanphx/json-patch/v5",
+ "version": "v5.9.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.9.0.0.0.0.0.0.0"
+ },
+ "2548": {
+ "id": "2548",
+ "name": "github.com/cloudflare/circl",
+ "version": "v1.3.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.7.0.0.0.0.0.0"
+ },
+ "2482": {
+ "id": "2482",
+ "name": "github.com/alibabacloud-go/cr-20181201",
+ "version": "v1.0.10",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.10.0.0.0.0.0.0"
+ },
+ "2502": {
+ "id": "2502",
+ "name": "github.com/aws/aws-sdk-go-v2",
+ "version": "v1.30.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.30.5.0.0.0.0.0.0"
+ },
+ "456": {
+ "id": "456",
+ "name": "github.com/coreos/go-oidc/v3",
+ "version": "v3.11.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.11.0.0.0.0.0.0.0"
+ },
+ "796": {
+ "id": "796",
+ "name": "k8s.io/klog/v2",
+ "version": "v2.120.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.120.1.0.0.0.0.0.0"
+ },
+ "4822": {
+ "id": "4822",
+ "name": "github.com/aymerick/douceur",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "2678": {
+ "id": "2678",
+ "name": "github.com/hashicorp/hcl",
+ "version": "v1.0.1-vault-5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "606": {
+ "id": "606",
+ "name": "github.com/mattn/go-colorable",
+ "version": "v0.1.13",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.13.0.0.0.0.0.0"
+ },
+ "720": {
+ "id": "720",
+ "name": "github.com/xlab/treeprint",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "2792": {
+ "id": "2792",
+ "name": "github.com/skratchdot/open-golang",
+ "version": "v0.0.0-20200116055534-eef842397966",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "650": {
+ "id": "650",
+ "name": "github.com/openshift/client-go",
+ "version": "v0.0.0-20240415191513-dcdeb09390b4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "776": {
+ "id": "776",
+ "name": "github.com/stackrox/yaml/v3",
+ "version": "v3.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.0.0.0.0.0.0.0.0"
+ },
+ "492": {
+ "id": "492",
+ "name": "github.com/ghodss/yaml",
+ "version": "v1.0.1-0.20190212211648-25d852aebe32",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "46": {
+ "id": "46",
+ "name": "libattr",
+ "version": "2.4.48-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "45",
+ "name": "attr",
+ "version": "2.4.48-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "38": {
+ "id": "38",
+ "name": "libxml2",
+ "version": "2.9.7-18.el8_10.1",
+ "kind": "binary",
+ "source": {
+ "id": "37",
+ "name": "libxml2",
+ "version": "2.9.7-18.el8_10.1",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2728": {
+ "id": "2728",
+ "name": "github.com/mitchellh/mapstructure",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "3328": {
+ "id": "3328",
+ "name": "k8s.io/kubelet",
+ "version": "v0.29.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.29.3.0.0.0.0.0.0"
+ },
+ "636": {
+ "id": "636",
+ "name": "github.com/np-guard/cluster-topology-analyzer/v2",
+ "version": "v2.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.3.0.0.0.0.0.0.0"
+ },
+ "88": {
+ "id": "88",
+ "name": "libverto",
+ "version": "0.3.2-2.el8",
+ "kind": "binary",
+ "source": {
+ "id": "87",
+ "name": "libverto",
+ "version": "0.3.2-2.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "712": {
+ "id": "712",
+ "name": "github.com/weppos/publicsuffix-go",
+ "version": "v0.30.3-0.20240411085455-21202160c2ed",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "2576": {
+ "id": "2576",
+ "name": "github.com/docker/libtrust",
+ "version": "v0.0.0-20160708172513-aabc10ec26b7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3550": {
+ "id": "3550",
+ "name": "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
+ "version": "v0.29.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.29.0.0.0.0.0.0.0"
+ },
+ "592": {
+ "id": "592",
+ "name": "github.com/klauspost/compress",
+ "version": "v1.17.10",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.10.0.0.0.0.0.0"
+ },
+ "684": {
+ "id": "684",
+ "name": "github.com/segmentio/analytics-go/v3",
+ "version": "v3.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.3.0.0.0.0.0.0.0"
+ },
+ "304": {
+ "id": "304",
+ "name": "tzdata",
+ "version": "2024b-4.el8",
+ "kind": "binary",
+ "source": {
+ "id": "303",
+ "name": "tzdata",
+ "version": "2024b-4.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "3018": {
+ "id": "3018",
+ "name": "github.com/dsnet/compress",
+ "version": "v0.0.2-0.20210315054119-f66993602bf5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.2.0.0.0.0.0.0"
+ },
+ "138": {
+ "id": "138",
+ "name": "libidn2",
+ "version": "2.2.0-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "137",
+ "name": "libidn2",
+ "version": "2.2.0-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "176": {
+ "id": "176",
+ "name": "gobject-introspection",
+ "version": "1.56.1-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "175",
+ "name": "gobject-introspection",
+ "version": "1.56.1-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "662": {
+ "id": "662",
+ "name": "github.com/planetscale/vtprotobuf",
+ "version": "v0.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.0.0.0.0.0.0.0"
+ },
+ "120": {
+ "id": "120",
+ "name": "libselinux",
+ "version": "2.9-8.el8",
+ "kind": "binary",
+ "source": {
+ "id": "119",
+ "name": "libselinux",
+ "version": "2.9-8.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "160": {
+ "id": "160",
+ "name": "systemd-libs",
+ "version": "239-82.el8_10.2",
+ "kind": "binary",
+ "source": {
+ "id": "159",
+ "name": "systemd",
+ "version": "239-82.el8_10.2",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "510": {
+ "id": "510",
+ "name": "github.com/go-openapi/swag",
+ "version": "v0.23.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.23.0.0.0.0.0.0.0"
+ },
+ "3166": {
+ "id": "3166",
+ "name": "github.com/stackrox/tail",
+ "version": "v1.4.9-0.20240806130957-77cf33bea65f",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.9.0.0.0.0.0.0"
+ },
+ "3926": {
+ "id": "3926",
+ "name": "github.com/openshift/runtime-utils",
+ "version": "v0.0.0-20230921210328-7bdb5b9c177b",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2880": {
+ "id": "2880",
+ "name": "google.golang.org/api",
+ "version": "v0.194.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.194.0.0.0.0.0.0.0"
+ },
+ "580": {
+ "id": "580",
+ "name": "github.com/jinzhu/inflection",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "3028": {
+ "id": "3028",
+ "name": "github.com/facebookincubator/flog",
+ "version": "v0.0.0-20190930132826-d2511d0ce33c",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "528": {
+ "id": "528",
+ "name": "github.com/google/gnostic-models",
+ "version": "v0.6.9-0.20230804172637-c7be7c783f49",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.9.0.0.0.0.0.0"
+ },
+ "2848": {
+ "id": "2848",
+ "name": "go.step.sm/crypto",
+ "version": "v0.44.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.44.2.0.0.0.0.0.0"
+ },
+ "2454": {
+ "id": "2454",
+ "name": "filippo.io/edwards25519",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "158": {
+ "id": "158",
+ "name": "libblkid",
+ "version": "2.32.1-46.el8",
+ "kind": "binary",
+ "source": {
+ "id": "49",
+ "name": "util-linux",
+ "version": "2.32.1-46.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "432": {
+ "id": "432",
+ "name": "github.com/VividCortex/ewma",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "3056": {
+ "id": "3056",
+ "name": "github.com/godbus/dbus/v5",
+ "version": "v5.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.1.0.0.0.0.0.0.0"
+ },
+ "2644": {
+ "id": "2644",
+ "name": "github.com/google/go-github/v55",
+ "version": "v55.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.55.0.0.0.0.0.0.0.0"
+ },
+ "2526": {
+ "id": "2526",
+ "name": "github.com/aws/aws-sdk-go-v2/service/ssooidc",
+ "version": "v1.26.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.26.8.0.0.0.0.0.0"
+ },
+ "78": {
+ "id": "78",
+ "name": "file-libs",
+ "version": "5.33-26.el8",
+ "kind": "binary",
+ "source": {
+ "id": "77",
+ "name": "file",
+ "version": "5.33-26.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "752": {
+ "id": "752",
+ "name": "golang.org/x/sync",
+ "version": "v0.10.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.10.0.0.0.0.0.0.0"
+ },
+ "5374": {
+ "id": "5374",
+ "name": "gopkg.in/robfig/cron.v2",
+ "version": "v2.0.0-20150107220207-be2e0b0deed5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.0.0.0.0.0.0.0.0"
+ },
+ "4696": {
+ "id": "4696",
+ "name": "github.com/Azure/azure-sdk-for-go-extensions",
+ "version": "v0.1.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.8.0.0.0.0.0.0"
+ },
+ "490": {
+ "id": "490",
+ "name": "github.com/georgysavva/scany/v2",
+ "version": "v2.1.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.1.3.0.0.0.0.0.0"
+ },
+ "2776": {
+ "id": "2776",
+ "name": "github.com/segmentio/ksuid",
+ "version": "v1.0.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.4.0.0.0.0.0.0"
+ },
+ "740": {
+ "id": "740",
+ "name": "go.uber.org/multierr",
+ "version": "v1.11.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.0.0.0.0.0.0.0"
+ },
+ "198": {
+ "id": "198",
+ "name": "libssh-config",
+ "version": "0.9.6-14.el8",
+ "kind": "binary",
+ "source": {
+ "id": "97",
+ "name": "libssh",
+ "version": "0.9.6-14.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "26": {
+ "id": "26",
+ "name": "zlib",
+ "version": "1.2.11-25.el8",
+ "kind": "binary",
+ "source": {
+ "id": "25",
+ "name": "zlib",
+ "version": "1.2.11-25.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2486": {
+ "id": "2486",
+ "name": "github.com/alibabacloud-go/debug",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "2824": {
+ "id": "2824",
+ "name": "github.com/vbatts/tar-split",
+ "version": "v0.11.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.11.5.0.0.0.0.0.0"
+ },
+ "132": {
+ "id": "132",
+ "name": "libzstd",
+ "version": "1.4.4-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "131",
+ "name": "zstd",
+ "version": "1.4.4-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "648": {
+ "id": "648",
+ "name": "github.com/openshift/api",
+ "version": "v0.0.0-20240415161129-d7aff303fa1a",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "782": {
+ "id": "782",
+ "name": "k8s.io/api",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "428": {
+ "id": "428",
+ "name": "github.com/Masterminds/sprig/v3",
+ "version": "v3.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.3.0.0.0.0.0.0.0"
+ },
+ "2470": {
+ "id": "2470",
+ "name": "github.com/Azure/go-autorest/logger",
+ "version": "v0.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.1.0.0.0.0.0.0"
+ },
+ "484": {
+ "id": "484",
+ "name": "github.com/fatih/camelcase",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "2440": {
+ "id": "2440",
+ "name": "cloud.google.com/go/artifactregistry",
+ "version": "v1.14.13",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.14.13.0.0.0.0.0.0"
+ },
+ "52": {
+ "id": "52",
+ "name": "libuuid",
+ "version": "2.32.1-46.el8",
+ "kind": "binary",
+ "source": {
+ "id": "49",
+ "name": "util-linux",
+ "version": "2.32.1-46.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3748": {
+ "id": "3748",
+ "name": "github.com/getsentry/sentry-go",
+ "version": "v0.27.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.27.0.0.0.0.0.0.0"
+ },
+ "596": {
+ "id": "596",
+ "name": "github.com/lann/ps",
+ "version": "v0.0.0-20150810152359-62de8c46ede0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "808": {
+ "id": "808",
+ "name": "sigs.k8s.io/kustomize/api",
+ "version": "v0.13.5-0.20230601165947-6ce0bf390ce3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.13.5.0.0.0.0.0.0"
+ },
+ "190": {
+ "id": "190",
+ "name": "krb5-libs",
+ "version": "1.18.2-30.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "189",
+ "name": "krb5",
+ "version": "1.18.2-30.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "40": {
+ "id": "40",
+ "name": "p11-kit",
+ "version": "0.23.22-2.el8",
+ "kind": "binary",
+ "source": {
+ "id": "39",
+ "name": "p11-kit",
+ "version": "0.23.22-2.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "156": {
+ "id": "156",
+ "name": "pcre",
+ "version": "8.42-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "155",
+ "name": "pcre",
+ "version": "8.42-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "532": {
+ "id": "532",
+ "name": "github.com/google/gofuzz",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "96": {
+ "id": "96",
+ "name": "gpgme",
+ "version": "1.13.1-12.el8",
+ "kind": "binary",
+ "source": {
+ "id": "95",
+ "name": "gpgme",
+ "version": "1.13.1-12.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "716": {
+ "id": "716",
+ "name": "github.com/xeipuuv/gojsonreference",
+ "version": "v0.0.0-20180127040603-bd5ef7bd5415",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3040": {
+ "id": "3040",
+ "name": "github.com/go-git/gcfg",
+ "version": "v1.5.1-0.20230307220236-3a3c6141e376",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.1.0.0.0.0.0.0"
+ },
+ "2592": {
+ "id": "2592",
+ "name": "github.com/go-chi/chi",
+ "version": "v4.1.2+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.1.2.0.0.0.0.0.0"
+ },
+ "736": {
+ "id": "736",
+ "name": "go.uber.org/atomic",
+ "version": "v1.11.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.0.0.0.0.0.0.0"
+ },
+ "2586": {
+ "id": "2586",
+ "name": "github.com/fsnotify/fsnotify",
+ "version": "v1.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.7.0.0.0.0.0.0.0"
+ },
+ "554": {
+ "id": "554",
+ "name": "github.com/hashicorp/errwrap",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "704": {
+ "id": "704",
+ "name": "github.com/tidwall/match",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "464": {
+ "id": "464",
+ "name": "github.com/distribution/reference",
+ "version": "v0.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.0.0.0.0.0.0.0"
+ },
+ "672": {
+ "id": "672",
+ "name": "github.com/prometheus/procfs",
+ "version": "v0.15.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.15.1.0.0.0.0.0.0"
+ },
+ "2984": {
+ "id": "2984",
+ "name": "github.com/blang/semver/v4",
+ "version": "v4.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.0.0.0.0.0.0.0.0"
+ },
+ "3154": {
+ "id": "3154",
+ "name": "github.com/moby/sys/mountinfo",
+ "version": "v0.7.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.7.2.0.0.0.0.0.0"
+ },
+ "710": {
+ "id": "710",
+ "name": "github.com/vbauerster/mpb/v4",
+ "version": "v4.12.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.12.2.0.0.0.0.0.0"
+ },
+ "630": {
+ "id": "630",
+ "name": "github.com/monochromegane/go-gitignore",
+ "version": "v0.0.0-20200626010858-205db1a8cc00",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3460": {
+ "id": "3460",
+ "name": "github.com/stoewer/go-strcase",
+ "version": "v1.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.0.0.0.0.0.0.0"
+ },
+ "90": {
+ "id": "90",
+ "name": "libxcrypt",
+ "version": "4.1.1-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "89",
+ "name": "libxcrypt",
+ "version": "4.1.1-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2496": {
+ "id": "2496",
+ "name": "github.com/alibabacloud-go/tea-xml",
+ "version": "v1.1.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.3.0.0.0.0.0.0"
+ },
+ "506": {
+ "id": "506",
+ "name": "github.com/go-openapi/jsonpointer",
+ "version": "v0.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.21.0.0.0.0.0.0.0"
+ },
+ "3240": {
+ "id": "3240",
+ "name": "github.com/xanzy/ssh-agent",
+ "version": "v0.3.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.3.0.0.0.0.0.0"
+ },
+ "508": {
+ "id": "508",
+ "name": "github.com/go-openapi/jsonreference",
+ "version": "v0.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.21.0.0.0.0.0.0.0"
+ },
+ "3400": {
+ "id": "3400",
+ "name": "github.com/google/cel-go",
+ "version": "v0.17.8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.17.8.0.0.0.0.0.0"
+ },
+ "2462": {
+ "id": "2462",
+ "name": "github.com/Azure/go-autorest/autorest/adal",
+ "version": "v0.9.23",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.23.0.0.0.0.0.0"
+ },
+ "2738": {
+ "id": "2738",
+ "name": "github.com/nozzle/throttler",
+ "version": "v0.0.0-20180817012639-2ea982251481",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "70": {
+ "id": "70",
+ "name": "nettle",
+ "version": "3.4.1-7.el8",
+ "kind": "binary",
+ "source": {
+ "id": "69",
+ "name": "nettle",
+ "version": "3.4.1-7.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "784": {
+ "id": "784",
+ "name": "k8s.io/apiextensions-apiserver",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "702": {
+ "id": "702",
+ "name": "github.com/tidwall/gjson",
+ "version": "v1.17.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.1.0.0.0.0.0.0"
+ },
+ "92": {
+ "id": "92",
+ "name": "openldap",
+ "version": "2.4.46-20.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "91",
+ "name": "openldap",
+ "version": "2.4.46-20.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "598": {
+ "id": "598",
+ "name": "github.com/lib/pq",
+ "version": "v1.10.9",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.10.9.0.0.0.0.0.0"
+ },
+ "422": {
+ "id": "422",
+ "name": "github.com/Masterminds/goutils",
+ "version": "v1.1.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.1.0.0.0.0.0.0"
+ },
+ "98": {
+ "id": "98",
+ "name": "libssh",
+ "version": "0.9.6-14.el8",
+ "kind": "binary",
+ "source": {
+ "id": "97",
+ "name": "libssh",
+ "version": "0.9.6-14.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "438": {
+ "id": "438",
+ "name": "github.com/beevik/etree",
+ "version": "v1.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.0.0.0.0.0.0.0"
+ },
+ "2498": {
+ "id": "2498",
+ "name": "github.com/aliyun/credentials-go",
+ "version": "v1.3.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.1.0.0.0.0.0.0"
+ },
+ "682": {
+ "id": "682",
+ "name": "github.com/russross/blackfriday/v2",
+ "version": "v2.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.1.0.0.0.0.0.0.0"
+ },
+ "590": {
+ "id": "590",
+ "name": "github.com/json-iterator/go",
+ "version": "v1.1.12",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.12.0.0.0.0.0.0"
+ },
+ "2444": {
+ "id": "2444",
+ "name": "cloud.google.com/go/auth/oauth2adapt",
+ "version": "v0.2.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.4.0.0.0.0.0.0"
+ },
+ "498": {
+ "id": "498",
+ "name": "github.com/go-jose/go-jose/v3",
+ "version": "v3.0.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.0.3.0.0.0.0.0.0"
+ },
+ "48": {
+ "id": "48",
+ "name": "coreutils-single",
+ "version": "8.30-15.el8",
+ "kind": "binary",
+ "source": {
+ "id": "47",
+ "name": "coreutils",
+ "version": "8.30-15.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2490": {
+ "id": "2490",
+ "name": "github.com/alibabacloud-go/openapi-util",
+ "version": "v0.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.0.0.0.0.0.0.0"
+ },
+ "412": {
+ "id": "412",
+ "name": "stdlib",
+ "version": "1.22.9",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.22.9.0.0.0.0.0.0"
+ },
+ "2778": {
+ "id": "2778",
+ "name": "github.com/shibumi/go-pathspec",
+ "version": "v1.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.0.0.0.0.0.0.0"
+ },
+ "4294": {
+ "id": "4294",
+ "name": "gorm.io/driver/postgres",
+ "version": "v1.5.9",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.9.0.0.0.0.0.0"
+ },
+ "3148": {
+ "id": "3148",
+ "name": "github.com/anchore/archiver/v3",
+ "version": "v3.5.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.5.2.0.0.0.0.0.0"
+ },
+ "154": {
+ "id": "154",
+ "name": "lua-libs",
+ "version": "5.3.4-12.el8",
+ "kind": "binary",
+ "source": {
+ "id": "153",
+ "name": "lua",
+ "version": "5.3.4-12.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "806": {
+ "id": "806",
+ "name": "sigs.k8s.io/json",
+ "version": "v0.0.0-20221116044647-bc3834ca7abd",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "142": {
+ "id": "142",
+ "name": "popt",
+ "version": "1.18-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "141",
+ "name": "popt",
+ "version": "1.18-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3640": {
+ "id": "3640",
+ "name": "github.com/aws/aws-sdk-go",
+ "version": "v1.55.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.55.5.0.0.0.0.0.0"
+ },
+ "4788": {
+ "id": "4788",
+ "name": "github.com/aws/aws-sdk-go-v2/feature/s3/manager",
+ "version": "v1.17.16",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.16.0.0.0.0.0.0"
+ },
+ "758": {
+ "id": "758",
+ "name": "golang.org/x/text",
+ "version": "v0.21.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.21.0.0.0.0.0.0.0"
+ },
+ "54": {
+ "id": "54",
+ "name": "lz4-libs",
+ "version": "1.8.3-3.el8_4",
+ "kind": "binary",
+ "source": {
+ "id": "53",
+ "name": "lz4",
+ "version": "1.8.3-3.el8_4",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "86": {
+ "id": "86",
+ "name": "gawk",
+ "version": "4.2.1-4.el8",
+ "kind": "binary",
+ "source": {
+ "id": "85",
+ "name": "gawk",
+ "version": "4.2.1-4.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "474": {
+ "id": "474",
+ "name": "github.com/docker/go-connections",
+ "version": "v0.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.0.0.0.0.0.0.0"
+ },
+ "614": {
+ "id": "614",
+ "name": "github.com/mitchellh/go-wordwrap",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "2522": {
+ "id": "2522",
+ "name": "github.com/aws/aws-sdk-go-v2/service/internal/presigned-url",
+ "version": "v1.11.19",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.19.0.0.0.0.0.0"
+ },
+ "3210": {
+ "id": "3210",
+ "name": "github.com/rs/zerolog",
+ "version": "v1.33.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.33.0.0.0.0.0.0.0"
+ },
+ "2542": {
+ "id": "2542",
+ "name": "github.com/chrismellard/docker-credential-acr-env",
+ "version": "v0.0.0-20230304212654-82a0ddb27589",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3172": {
+ "id": "3172",
+ "name": "github.com/opencontainers/runtime-spec",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "800": {
+ "id": "800",
+ "name": "k8s.io/kubectl",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "2724": {
+ "id": "2724",
+ "name": "github.com/mitchellh/go-homedir",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "420": {
+ "id": "420",
+ "name": "github.com/MakeNowJust/heredoc",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "418": {
+ "id": "418",
+ "name": "github.com/BurntSushi/toml",
+ "version": "v1.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.0.0.0.0.0.0.0"
+ },
+ "114": {
+ "id": "114",
+ "name": "setup",
+ "version": "2.12.2-9.el8",
+ "kind": "binary",
+ "source": {
+ "id": "113",
+ "name": "setup",
+ "version": "2.12.2-9.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "4700": {
+ "id": "4700",
+ "name": "github.com/Azure/azure-sdk-for-go/sdk/azidentity",
+ "version": "v1.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.7.0.0.0.0.0.0.0"
+ },
+ "4744": {
+ "id": "4744",
+ "name": "github.com/RoaringBitmap/roaring",
+ "version": "v1.9.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.9.4.0.0.0.0.0.0"
+ },
+ "640": {
+ "id": "640",
+ "name": "github.com/np-guard/netpol-analyzer",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "686": {
+ "id": "686",
+ "name": "github.com/segmentio/backo-go",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "3098": {
+ "id": "3098",
+ "name": "github.com/hashicorp/go-version",
+ "version": "v1.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.7.0.0.0.0.0.0.0"
+ },
+ "602": {
+ "id": "602",
+ "name": "github.com/mailru/easyjson",
+ "version": "v0.7.7",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.7.7.0.0.0.0.0.0"
+ },
+ "574": {
+ "id": "574",
+ "name": "github.com/jackc/pgtype",
+ "version": "v1.14.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.14.3.0.0.0.0.0.0"
+ },
+ "136": {
+ "id": "136",
+ "name": "libcom_err",
+ "version": "1.45.6-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "135",
+ "name": "e2fsprogs",
+ "version": "1.45.6-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2782": {
+ "id": "2782",
+ "name": "github.com/sigstore/fulcio",
+ "version": "v1.4.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.5.0.0.0.0.0.0"
+ },
+ "578": {
+ "id": "578",
+ "name": "github.com/jackc/puddle/v2",
+ "version": "v2.2.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.2.1.0.0.0.0.0.0"
+ },
+ "2808": {
+ "id": "2808",
+ "name": "github.com/subosito/gotenv",
+ "version": "v1.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.6.0.0.0.0.0.0.0"
+ },
+ "742": {
+ "id": "742",
+ "name": "github.com/stackrox/zap",
+ "version": "v1.18.2-0.20240314134248-5f932edd0404",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.18.2.0.0.0.0.0.0"
+ },
+ "416": {
+ "id": "416",
+ "name": "dario.cat/mergo",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "2456": {
+ "id": "2456",
+ "name": "github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "426": {
+ "id": "426",
+ "name": "github.com/Masterminds/semver/v3",
+ "version": "v3.3.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.3.0.0.0.0.0.0.0"
+ },
+ "2610": {
+ "id": "2610",
+ "name": "github.com/go-openapi/loads",
+ "version": "v0.22.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.22.0.0.0.0.0.0.0"
+ },
+ "4": {
+ "id": "4",
+ "name": "ubi8-minimal",
+ "version": "8.10-1130",
+ "kind": "binary",
+ "source": {
+ "id": "2",
+ "name": "ubi8-minimal-container",
+ "version": "8.10-1130",
+ "kind": "source",
+ "arch": "x86_64"
+ },
+ "normalized_version": "rhctag:8.10.0.0.0.0.0.0.0.0",
+ "arch": "x86_64"
+ },
+ "196": {
+ "id": "196",
+ "name": "gnupg2",
+ "version": "2.2.20-3.el8_6",
+ "kind": "binary",
+ "source": {
+ "id": "195",
+ "name": "gnupg2",
+ "version": "2.2.20-3.el8_6",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "786": {
+ "id": "786",
+ "name": "k8s.io/apimachinery",
+ "version": "v0.30.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.30.3.0.0.0.0.0.0"
+ },
+ "3014": {
+ "id": "3014",
+ "name": "github.com/docker/go-units",
+ "version": "v0.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.0.0.0.0.0.0.0"
+ },
+ "310": {
+ "id": "310",
+ "name": "zstd",
+ "version": "1.4.4-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "131",
+ "name": "zstd",
+ "version": "1.4.4-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "126": {
+ "id": "126",
+ "name": "libsepol",
+ "version": "2.9-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "125",
+ "name": "libsepol",
+ "version": "2.9-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "718": {
+ "id": "718",
+ "name": "github.com/xeipuuv/gojsonschema",
+ "version": "v1.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.0.0.0.0.0.0.0"
+ },
+ "210": {
+ "id": "210",
+ "name": "rootfiles",
+ "version": "8.1-22.el8",
+ "kind": "binary",
+ "source": {
+ "id": "209",
+ "name": "rootfiles",
+ "version": "8.1-22.el8",
+ "kind": "source"
+ },
+ "arch": "noarch"
+ },
+ "594": {
+ "id": "594",
+ "name": "github.com/lann/builder",
+ "version": "v0.0.0-20180802200727-47ae307949d0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "646": {
+ "id": "646",
+ "name": "github.com/opencontainers/image-spec",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "466": {
+ "id": "466",
+ "name": "github.com/docker/cli",
+ "version": "v27.1.1+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.27.1.1.0.0.0.0.0.0"
+ },
+ "76": {
+ "id": "76",
+ "name": "libpeas",
+ "version": "1.22.0-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "75",
+ "name": "libpeas",
+ "version": "1.22.0-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "144": {
+ "id": "144",
+ "name": "readline",
+ "version": "7.0-10.el8",
+ "kind": "binary",
+ "source": {
+ "id": "143",
+ "name": "readline",
+ "version": "7.0-10.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "760": {
+ "id": "760",
+ "name": "golang.org/x/time",
+ "version": "v0.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.6.0.0.0.0.0.0.0"
+ },
+ "146": {
+ "id": "146",
+ "name": "libgcrypt",
+ "version": "1.8.5-7.el8_6",
+ "kind": "binary",
+ "source": {
+ "id": "145",
+ "name": "libgcrypt",
+ "version": "1.8.5-7.el8_6",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3000": {
+ "id": "3000",
+ "name": "github.com/coreos/go-systemd/v22",
+ "version": "v22.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.22.5.0.0.0.0.0.0.0"
+ },
+ "3694": {
+ "id": "3694",
+ "name": "github.com/cockroachdb/logtags",
+ "version": "v0.0.0-20230118201751-21c54148d20b",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2578": {
+ "id": "2578",
+ "name": "github.com/dustin/go-humanize",
+ "version": "v1.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.1.0.0.0.0.0.0"
+ },
+ "762": {
+ "id": "762",
+ "name": "golang.stackrox.io/grpc-http1",
+ "version": "v0.3.13",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.3.13.0.0.0.0.0.0"
+ },
+ "68": {
+ "id": "68",
+ "name": "libpsl",
+ "version": "0.20.2-6.el8",
+ "kind": "binary",
+ "source": {
+ "id": "67",
+ "name": "libpsl",
+ "version": "0.20.2-6.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3030": {
+ "id": "3030",
+ "name": "github.com/stackrox/nvdtools",
+ "version": "v0.0.0-20231111002313-57e262e4797e",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2450": {
+ "id": "2450",
+ "name": "cloud.google.com/go/longrunning",
+ "version": "v0.5.12",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.5.12.0.0.0.0.0.0"
+ },
+ "4796": {
+ "id": "4796",
+ "name": "github.com/aws/aws-sdk-go-v2/internal/v4a",
+ "version": "v1.3.16",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.16.0.0.0.0.0.0"
+ },
+ "4808": {
+ "id": "4808",
+ "name": "github.com/aws/aws-sdk-go-v2/service/internal/s3shared",
+ "version": "v1.17.16",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.17.16.0.0.0.0.0.0"
+ },
+ "3182": {
+ "id": "3182",
+ "name": "github.com/pierrec/lz4/v4",
+ "version": "v4.1.15",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.4.1.15.0.0.0.0.0.0"
+ },
+ "502": {
+ "id": "502",
+ "name": "github.com/go-logr/logr",
+ "version": "v1.4.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.2.0.0.0.0.0.0"
+ },
+ "2538": {
+ "id": "2538",
+ "name": "github.com/cenkalti/backoff/v3",
+ "version": "v3.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.2.2.0.0.0.0.0.0"
+ },
+ "694": {
+ "id": "694",
+ "name": "github.com/spf13/cobra",
+ "version": "v1.8.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.1.0.0.0.0.0.0"
+ },
+ "3212": {
+ "id": "3212",
+ "name": "github.com/sergi/go-diff",
+ "version": "v1.3.2-0.20230802210424-5b0b94c5c0d3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.2.0.0.0.0.0.0"
+ },
+ "658": {
+ "id": "658",
+ "name": "github.com/pkg/browser",
+ "version": "v0.0.0-20240102092130-5ac0b6a4141c",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "308": {
+ "id": "308",
+ "name": "findutils",
+ "version": "1:4.6.0-23.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "307",
+ "name": "findutils",
+ "version": "4.6.0-23.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "692": {
+ "id": "692",
+ "name": "github.com/spf13/cast",
+ "version": "v1.7.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.7.0.0.0.0.0.0.0"
+ },
+ "2616": {
+ "id": "2616",
+ "name": "github.com/go-openapi/strfmt",
+ "version": "v0.23.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.23.0.0.0.0.0.0.0"
+ },
+ "2604": {
+ "id": "2604",
+ "name": "github.com/go-openapi/errors",
+ "version": "v0.22.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.22.0.0.0.0.0.0.0"
+ },
+ "3200": {
+ "id": "3200",
+ "name": "github.com/quay/claircore",
+ "version": "v1.5.32",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.32.0.0.0.0.0.0"
+ },
+ "4702": {
+ "id": "4702",
+ "name": "github.com/Azure/azure-sdk-for-go/sdk/internal",
+ "version": "v1.9.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.9.0.0.0.0.0.0.0"
+ },
+ "448": {
+ "id": "448",
+ "name": "github.com/coder/websocket",
+ "version": "v1.8.12",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.12.0.0.0.0.0.0"
+ },
+ "408": {
+ "id": "408",
+ "name": "postgresql",
+ "version": "13.18-1.module+el8.10.0+22549+cf2ec3d9",
+ "kind": "binary",
+ "source": {
+ "id": "407",
+ "name": "postgresql",
+ "version": "13.18-1.module+el8.10.0+22549+cf2ec3d9",
+ "kind": "source",
+ "module": "postgresql:13"
+ },
+ "module": "postgresql:13",
+ "arch": "x86_64"
+ },
+ "772": {
+ "id": "772",
+ "name": "gopkg.in/inf.v0",
+ "version": "v0.9.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.9.1.0.0.0.0.0.0"
+ },
+ "24": {
+ "id": "24",
+ "name": "bash",
+ "version": "4.4.20-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "23",
+ "name": "bash",
+ "version": "4.4.20-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "4810": {
+ "id": "4810",
+ "name": "github.com/aws/aws-sdk-go-v2/service/s3",
+ "version": "v1.61.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.61.0.0.0.0.0.0.0"
+ },
+ "628": {
+ "id": "628",
+ "name": "github.com/modern-go/reflect2",
+ "version": "v1.0.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.2.0.0.0.0.0.0"
+ },
+ "480": {
+ "id": "480",
+ "name": "github.com/evanphx/json-patch",
+ "version": "v5.7.0+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.7.0.0.0.0.0.0.0"
+ },
+ "2774": {
+ "id": "2774",
+ "name": "github.com/secure-systems-lab/go-securesystemslib",
+ "version": "v0.8.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.8.0.0.0.0.0.0.0"
+ },
+ "478": {
+ "id": "478",
+ "name": "github.com/emicklei/go-restful/v3",
+ "version": "v3.11.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.11.2.0.0.0.0.0.0"
+ },
+ "2612": {
+ "id": "2612",
+ "name": "github.com/go-openapi/runtime",
+ "version": "v0.28.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.28.0.0.0.0.0.0.0"
+ },
+ "600": {
+ "id": "600",
+ "name": "github.com/liggitt/tabwriter",
+ "version": "v0.0.0-20181228230101-89fcab3d43de",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "496": {
+ "id": "496",
+ "name": "github.com/go-gorp/gorp/v3",
+ "version": "v3.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.1.0.0.0.0.0.0.0"
+ },
+ "690": {
+ "id": "690",
+ "name": "github.com/sirupsen/logrus",
+ "version": "v1.9.3",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.9.3.0.0.0.0.0.0"
+ },
+ "538": {
+ "id": "538",
+ "name": "github.com/gorilla/mux",
+ "version": "v1.8.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.1.0.0.0.0.0.0"
+ },
+ "3306": {
+ "id": "3306",
+ "name": "gopkg.in/warnings.v0",
+ "version": "v0.1.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.2.0.0.0.0.0.0"
+ },
+ "3222": {
+ "id": "3222",
+ "name": "github.com/stackrox/dotnet-scraper",
+ "version": "v0.0.0-20201023051640-72ef543323dd",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3242": {
+ "id": "3242",
+ "name": "github.com/xi2/xz",
+ "version": "v0.0.0-20171230120015-48954b6210f8",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "206": {
+ "id": "206",
+ "name": "librepo",
+ "version": "1.14.2-5.el8",
+ "kind": "binary",
+ "source": {
+ "id": "205",
+ "name": "librepo",
+ "version": "1.14.2-5.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "36": {
+ "id": "36",
+ "name": "libunistring",
+ "version": "0.9.9-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "35",
+ "name": "libunistring",
+ "version": "0.9.9-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2504": {
+ "id": "2504",
+ "name": "github.com/aws/aws-sdk-go-v2/config",
+ "version": "v1.27.31",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.27.31.0.0.0.0.0.0"
+ },
+ "576": {
+ "id": "576",
+ "name": "github.com/jackc/pgx/v5",
+ "version": "v5.6.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.5.6.0.0.0.0.0.0.0"
+ },
+ "2536": {
+ "id": "2536",
+ "name": "github.com/blang/semver",
+ "version": "v3.5.1+incompatible",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.3.5.1.0.0.0.0.0.0"
+ },
+ "22": {
+ "id": "22",
+ "name": "glibc-common",
+ "version": "2.28-251.el8_10.5",
+ "kind": "binary",
+ "source": {
+ "id": "21",
+ "name": "glibc",
+ "version": "2.28-251.el8_10.5",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3208": {
+ "id": "3208",
+ "name": "github.com/remyoudompheng/bigfft",
+ "version": "v0.0.0-20230129092748-24d4a6f8daec",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "3606": {
+ "id": "3606",
+ "name": "github.com/DataDog/zstd",
+ "version": "v1.4.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.5.0.0.0.0.0.0"
+ },
+ "200": {
+ "id": "200",
+ "name": "libcurl",
+ "version": "7.61.1-34.el8_10.2",
+ "kind": "binary",
+ "source": {
+ "id": "99",
+ "name": "curl",
+ "version": "7.61.1-34.el8_10.2",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2448": {
+ "id": "2448",
+ "name": "cloud.google.com/go/iam",
+ "version": "v1.1.13",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.13.0.0.0.0.0.0"
+ },
+ "476": {
+ "id": "476",
+ "name": "github.com/docker/go-metrics",
+ "version": "v0.0.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.1.0.0.0.0.0.0"
+ },
+ "3156": {
+ "id": "3156",
+ "name": "github.com/moby/sys/user",
+ "version": "v0.2.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.2.0.0.0.0.0.0.0"
+ },
+ "2882": {
+ "id": "2882",
+ "name": "google.golang.org/genproto",
+ "version": "v0.0.0-20240814211410-ddb44dafa142",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "570": {
+ "id": "570",
+ "name": "github.com/jackc/pgpassfile",
+ "version": "v1.0.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.0.0.0.0.0.0.0.0"
+ },
+ "192": {
+ "id": "192",
+ "name": "cyrus-sasl-lib",
+ "version": "2.1.27-6.el8_5",
+ "kind": "binary",
+ "source": {
+ "id": "191",
+ "name": "cyrus-sasl",
+ "version": "2.1.27-6.el8_5",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "66": {
+ "id": "66",
+ "name": "libdb-utils",
+ "version": "5.3.28-42.el8_4",
+ "kind": "binary",
+ "source": {
+ "id": "65",
+ "name": "libdb",
+ "version": "5.3.28-42.el8_4",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "3516": {
+ "id": "3516",
+ "name": "gomodules.xyz/jsonpatch/v2",
+ "version": "v2.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.2.4.0.0.0.0.0.0.0"
+ },
+ "3700": {
+ "id": "3700",
+ "name": "github.com/cockroachdb/tokenbucket",
+ "version": "v0.0.0-20230807174530-cc333fc44b06",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "4698": {
+ "id": "4698",
+ "name": "github.com/Azure/azure-sdk-for-go/sdk/azcore",
+ "version": "v1.12.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.12.0.0.0.0.0.0.0"
+ },
+ "746": {
+ "id": "746",
+ "name": "golang.org/x/exp",
+ "version": "v0.0.0-20240719175910-8a7402abbf56",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2518": {
+ "id": "2518",
+ "name": "github.com/aws/aws-sdk-go-v2/service/ecrpublic",
+ "version": "v1.18.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.18.2.0.0.0.0.0.0"
+ },
+ "520": {
+ "id": "520",
+ "name": "github.com/golang/glog",
+ "version": "v1.2.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.2.2.0.0.0.0.0.0"
+ },
+ "128": {
+ "id": "128",
+ "name": "libgpg-error",
+ "version": "1.31-1.el8",
+ "kind": "binary",
+ "source": {
+ "id": "127",
+ "name": "libgpg-error",
+ "version": "1.31-1.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2642": {
+ "id": "2642",
+ "name": "github.com/google/go-containerregistry",
+ "version": "v0.20.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.20.2.0.0.0.0.0.0"
+ },
+ "2704": {
+ "id": "2704",
+ "name": "github.com/jmespath/go-jmespath",
+ "version": "v0.4.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.4.0.0.0.0.0.0.0"
+ },
+ "2794": {
+ "id": "2794",
+ "name": "github.com/spf13/afero",
+ "version": "v1.11.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.11.0.0.0.0.0.0.0"
+ },
+ "698": {
+ "id": "698",
+ "name": "github.com/stackrox/scanner",
+ "version": "v0.0.0-20240830165150-d133ba942d59",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "714": {
+ "id": "714",
+ "name": "github.com/xeipuuv/gojsonpointer",
+ "version": "v0.0.0-20190905194746-02993c407bfb",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "2894": {
+ "id": "2894",
+ "name": "gopkg.in/ini.v1",
+ "version": "v1.67.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.67.0.0.0.0.0.0.0"
+ },
+ "2786": {
+ "id": "2786",
+ "name": "github.com/sigstore/sigstore",
+ "version": "v1.8.4",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.4.0.0.0.0.0.0"
+ },
+ "72": {
+ "id": "72",
+ "name": "glib2",
+ "version": "2.56.4-165.el8_10",
+ "kind": "binary",
+ "source": {
+ "id": "71",
+ "name": "glib2",
+ "version": "2.56.4-165.el8_10",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "2494": {
+ "id": "2494",
+ "name": "github.com/alibabacloud-go/tea-utils",
+ "version": "v1.4.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.4.5.0.0.0.0.0.0"
+ },
+ "452": {
+ "id": "452",
+ "name": "github.com/containerd/errdefs",
+ "version": "v0.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.0.0.0.0.0.0.0"
+ },
+ "2838": {
+ "id": "2838",
+ "name": "go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc",
+ "version": "v0.52.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.52.0.0.0.0.0.0.0"
+ },
+ "3950": {
+ "id": "3950",
+ "name": "github.com/rogpeppe/go-internal",
+ "version": "v1.12.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.12.0.0.0.0.0.0.0"
+ },
+ "2514": {
+ "id": "2514",
+ "name": "github.com/aws/aws-sdk-go-v2/internal/ini",
+ "version": "v1.8.1",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.8.1.0.0.0.0.0.0"
+ },
+ "5154": {
+ "id": "5154",
+ "name": "github.com/openshift-online/ocm-sdk-go",
+ "version": "v0.1.431",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.1.431.0.0.0.0.0.0"
+ },
+ "676": {
+ "id": "676",
+ "name": "github.com/rubenv/sql-migrate",
+ "version": "v1.5.2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.2.0.0.0.0.0.0"
+ },
+ "5254": {
+ "id": "5254",
+ "name": "github.com/stackrox/external-network-pusher",
+ "version": "v0.0.0-20231115153210-b82d72f500a2",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.0.0.0.0.0.0.0.0"
+ },
+ "546": {
+ "id": "546",
+ "name": "github.com/graph-gophers/graphql-go",
+ "version": "v1.5.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.5.0.0.0.0.0.0.0"
+ },
+ "778": {
+ "id": "778",
+ "name": "gorm.io/gorm",
+ "version": "v1.25.10",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.25.10.0.0.0.0.0.0"
+ },
+ "3248": {
+ "id": "3248",
+ "name": "go.etcd.io/bbolt",
+ "version": "v1.3.10",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.3.10.0.0.0.0.0.0"
+ },
+ "2050": {
+ "id": "2050",
+ "name": "github.com/Microsoft/hcsshim",
+ "version": "v0.12.5",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.12.5.0.0.0.0.0.0"
+ },
+ "2460": {
+ "id": "2460",
+ "name": "github.com/Azure/go-autorest/autorest",
+ "version": "v0.11.29",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.0.11.29.0.0.0.0.0.0"
+ },
+ "2188": {
+ "id": "2188",
+ "name": "github.com/inconshreveable/mousetrap",
+ "version": "v1.1.0",
+ "kind": "binary",
+ "source": {
+ "id": "1",
+ "name": "",
+ "version": ""
+ },
+ "normalized_version": "semver:0.1.1.0.0.0.0.0.0.0"
+ },
+ "64": {
+ "id": "64",
+ "name": "openssl-libs",
+ "version": "1:1.1.1k-14.el8_6",
+ "kind": "binary",
+ "source": {
+ "id": "63",
+ "name": "openssl",
+ "version": "1.1.1k-14.el8_6",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ },
+ "180": {
+ "id": "180",
+ "name": "brotli",
+ "version": "1.0.6-3.el8",
+ "kind": "binary",
+ "source": {
+ "id": "179",
+ "name": "brotli",
+ "version": "1.0.6-3.el8",
+ "kind": "source"
+ },
+ "arch": "x86_64"
+ }
+ },
+ "distributions": {
+ "1": {
+ "id": "1",
+ "did": "rhel",
+ "name": "Red Hat Enterprise Linux Server",
+ "version": "8",
+ "version_code_name": "",
+ "version_id": "8",
+ "arch": "",
+ "cpe": "cpe:2.3:o:redhat:enterprise_linux:8:*:*:*:*:*:*:*",
+ "pretty_name": "Red Hat Enterprise Linux Server 8"
+ }
+ },
+ "repository": {
+ "3": {
+ "id": "3",
+ "name": "cpe:/a:redhat:enterprise_linux:8::appstream",
+ "key": "rhel-cpe-repository",
+ "cpe": "cpe:2.3:a:redhat:enterprise_linux:8:*:appstream:*:*:*:*:*"
+ },
+ "7": {
+ "id": "7",
+ "name": "go",
+ "uri": "https://pkg.go.dev/"
+ },
+ "1": {
+ "id": "1",
+ "name": "Red Hat Container Catalog",
+ "uri": "https://catalog.redhat.com/software/containers/explore"
+ },
+ "2": {
+ "id": "2",
+ "name": "cpe:/o:redhat:enterprise_linux:8::baseos",
+ "key": "rhel-cpe-repository",
+ "cpe": "cpe:2.3:o:redhat:enterprise_linux:8:*:baseos:*:*:*:*:*"
+ }
+ },
+ "environments": {
+ "616": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "444": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "150": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "702": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "538": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "450": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2882": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2470": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3690": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3184": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "666": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "188": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "436": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "512": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3476": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2650": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "748": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "116": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "532": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3216": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2504": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "204": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "56": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "58": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3350": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3222": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "640": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "508": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3748": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "686": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "54": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3606": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2490": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "76": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2754": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "156": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "510": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "144": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "434": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "534": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "78": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "526": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "38": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2820": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5374": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2506": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3334": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "718": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "32": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "560": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2050": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "210": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2782": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "128": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "754": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2446": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2460": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "558": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "82": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "772": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4294": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2740": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "154": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3000": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2824": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "186": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2456": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3700": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3154": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3210": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3242": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2564": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "760": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "716": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "486": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "712": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "8": [
+ {
+ "package_db": "root/buildinfo/Dockerfile-rhacs-main-rhel8-4.6.1-2",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "1"
+ ]
+ }
+ ],
+ "168": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "4828": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2592": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "110": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "196": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "648": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2616": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "546": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "602": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2654": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "192": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2536": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2814": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "756": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "590": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "124": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "464": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "86": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2810": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "62": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3116": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "564": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "738": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2452": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "528": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2604": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "184": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3248": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "456": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "310": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "304": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "536": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2464": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3164": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5254": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "570": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "806": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3306": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "582": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5004": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "64": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "468": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2778": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2776": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "632": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2802": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "516": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "682": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "734": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2684": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "638": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "42": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "600": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2794": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "466": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "656": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "50": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2494": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "488": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2602": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "542": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "660": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3482": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2562": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "416": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3178": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "16": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3028": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "584": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2538": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2492": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "414": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "652": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2834": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2480": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "84": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "504": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "664": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4696": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "170": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "728": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2716": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "180": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "786": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "576": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "740": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2188": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "548": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "580": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "424": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2458": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4702": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "158": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2714": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "514": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2984": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "492": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "752": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "160": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "454": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "792": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2614": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "636": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "422": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "612": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "440": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "626": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "134": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3516": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2838": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "770": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2750": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "596": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "412": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "696": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "432": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "678": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "498": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3098": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "540": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "604": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "778": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2738": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "472": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3950": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3988": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "814": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "628": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "732": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "710": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2698": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2724": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "694": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "500": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4788": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2808": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "200": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "152": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "788": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "706": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "692": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2576": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5282": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "206": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "132": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "4910": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "680": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "578": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2952": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "164": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2450": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2454": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3208": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2482": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2786": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2558": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "46": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "802": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2510": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2526": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2478": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "614": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2822": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "194": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2440": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2448": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2836": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "34": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3156": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "80": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2": [
+ {
+ "package_db": "root/buildinfo/Dockerfile-ubi8-minimal-8.10-1130",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": [
+ "1"
+ ]
+ }
+ ],
+ "610": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2486": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3460": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3382": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3336": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5240": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3400": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2508": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "176": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2620": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2728": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "724": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4744": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "714": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3226": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3204": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "496": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "484": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "480": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "474": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5154": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "308": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "572": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "178": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3612": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4780": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "776": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "700": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3640": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "736": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2476": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2586": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2942": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "174": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "624": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2554": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "182": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "166": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "586": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "426": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "746": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5038": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2644": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3478": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "482": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3206": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2734": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "774": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3696": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "808": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "306": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2542": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "744": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "452": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4700": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "766": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3232": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "768": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "634": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3370": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "430": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "162": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "198": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "90": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "796": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "18": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "122": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "720": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "140": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "554": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2522": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4740": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2474": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "428": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3182": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2656": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "490": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "142": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "12": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3134": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3130": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4808": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3136": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2720": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "30": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2848": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "750": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "662": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3200": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "460": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "782": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "784": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2774": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4810": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "94": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3040": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "670": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "594": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "618": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "606": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2916": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "598": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3042": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "120": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "190": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "608": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3694": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2502": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "462": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "758": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "6": [
+ {
+ "package_db": "root/buildinfo/Dockerfile-rhacs-main-rhel8-4.6.1-2",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "1"
+ ]
+ }
+ ],
+ "108": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "642": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "804": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "762": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2532": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4796": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2680": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "20": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3926": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "26": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "36": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "568": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "684": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2784": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3604": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "98": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "418": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3356": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "60": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "96": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "630": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "40": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "4804": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "68": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "408": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "574": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3328": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "708": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "438": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3692": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2578": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2704": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2788": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2678": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2520": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3018": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2664": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2816": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2530": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "790": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2544": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2548": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2780": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "126": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "658": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2812": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "800": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2566": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "644": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2552": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "88": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "3166": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2880": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "798": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "588": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2998": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2926": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "794": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3552": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "10": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "812": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3044": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "654": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "502": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "24": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "742": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4822": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "14": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "556": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "442": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "764": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3304": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "148": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "672": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "494": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "410": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2524": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2642": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "566": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2462": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2770": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2828": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "470": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "138": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "74": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2612": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "650": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "22": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "172": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "118": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2444": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2862": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2496": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4968": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "70": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2792": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "722": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2488": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "698": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2442": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "620": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4704": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3550": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "114": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2034": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "704": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3486": [
+ {
+ "package_db": "go:stackrox/bin/config-controller",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3240": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "92": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "810": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "562": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "530": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4678": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "688": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3876": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2468": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "5112": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2894": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "146": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "66": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2610": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2630": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3338": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2528": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "524": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "44": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2646": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2512": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2466": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "676": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3236": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3148": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3024": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3874": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "726": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "476": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3332": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3056": [
+ {
+ "package_db": "go:stackrox/bin/compliance",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2634": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "780": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "478": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "52": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2514": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2516": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "522": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "730": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "458": [
+ {
+ "package_db": "go:assets/downloads/cli/roxctl-windows-amd64.exe",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2996": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4720": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3172": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "420": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "550": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "544": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3212": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4698": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "448": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "446": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4772": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2518": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "28": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "690": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3698": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2484": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "518": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "48": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "2498": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "406": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "592": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "506": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3614": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "520": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2772": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "136": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "646": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "2472": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3202": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "552": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3030": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3224": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "3014": [
+ {
+ "package_db": "go:stackrox/bin/kubernetes-sensor",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "4": [
+ {
+ "package_db": "root/buildinfo/Dockerfile-ubi8-minimal-8.10-1130",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": [
+ "1"
+ ]
+ }
+ ],
+ "622": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "72": [
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "1",
+ "repository_ids": [
+ "2",
+ "3"
+ ]
+ },
+ {
+ "package_db": "bdb:var/lib/rpm",
+ "introduced_in": "sha256:e0348fdb2685077d22116d294a90a253709aba78815882a57fcc536b22dcae2f",
+ "distribution_id": "",
+ "repository_ids": null
+ }
+ ],
+ "668": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ],
+ "674": [
+ {
+ "package_db": "go:stackrox/central",
+ "introduced_in": "sha256:3888fc396543ace4c466a4316f2f54e334d75ec7caf8d20e26957e9564289ae3",
+ "distribution_id": "",
+ "repository_ids": [
+ "7"
+ ]
+ }
+ ]
+ },
+ "success": true,
+ "err": ""
+}
diff --git a/debian/updater.go b/debian/updater.go
index 7522c3515..f870fefce 100644
--- a/debian/updater.go
+++ b/debian/updater.go
@@ -23,8 +23,8 @@ import (
//doc:url updater
const (
- defaultMirror = `https://deb.debian.org/`
- defaultJSON = `https://security-tracker.debian.org/tracker/data/json`
+ DefaultMirror = `https://deb.debian.org/`
+ DefaultJSON = `https://security-tracker.debian.org/tracker/data/json`
)
var (
@@ -64,7 +64,7 @@ func (f *Factory) Configure(_ context.Context, cf driver.ConfigUnmarshaler, c *h
return fmt.Errorf("debian: neither archive_url nor oval_url should be populated anymore; use json_url and mirror_url instead")
}
- u, err := url.Parse(defaultMirror)
+ u, err := url.Parse(DefaultMirror)
if cfg.MirrorURL != "" {
u, err = url.Parse(cfg.MirrorURL)
}
@@ -76,7 +76,7 @@ func (f *Factory) Configure(_ context.Context, cf driver.ConfigUnmarshaler, c *h
return fmt.Errorf("debian: bad mirror URL: %w", err)
}
- f.json, err = url.Parse(defaultJSON)
+ f.json, err = url.Parse(DefaultJSON)
if cfg.JSONURL != "" {
f.json, err = url.Parse(cfg.JSONURL)
}
diff --git a/indexer/store.go b/indexer/store.go
index f4009e7e0..6c7c4a5c8 100644
--- a/indexer/store.go
+++ b/indexer/store.go
@@ -69,7 +69,7 @@ type Querier interface {
IndexReport(ctx context.Context, hash claircore.Digest) (*claircore.IndexReport, bool, error)
// AffectedManifests returns a list of manifest digests which the target vulnerability
// affects.
- AffectedManifests(ctx context.Context, v claircore.Vulnerability, f claircore.CheckVulnernableFunc) ([]claircore.Digest, error)
+ AffectedManifests(ctx context.Context, v claircore.Vulnerability) ([]claircore.Digest, error)
}
// Indexer interface provide the method set required for indexing layer and manifest contents into
diff --git a/java/matcher.go b/java/matcher.go
index 5167ce7ba..2ec6bfcfa 100644
--- a/java/matcher.go
+++ b/java/matcher.go
@@ -4,9 +4,10 @@ import (
"context"
"net/url"
+ "github.com/quay/zlog"
+
"github.com/quay/claircore"
"github.com/quay/claircore/libvuln/driver"
- "github.com/quay/zlog"
)
// Matcher matches discovered Java Maven packages against advisories provided via OSV.
diff --git a/libindex/libindex.go b/libindex/libindex.go
index b9e8874a1..874dc601b 100644
--- a/libindex/libindex.go
+++ b/libindex/libindex.go
@@ -21,7 +21,6 @@ import (
"github.com/quay/claircore/indexer"
"github.com/quay/claircore/indexer/controller"
"github.com/quay/claircore/java"
- "github.com/quay/claircore/pkg/omnimatcher"
"github.com/quay/claircore/python"
"github.com/quay/claircore/rhel"
"github.com/quay/claircore/rhel/rhcc"
@@ -243,7 +242,6 @@ func (l *Libindex) IndexReport(ctx context.Context, hash claircore.Digest) (*cla
// AffectedManifests retrieves a list of affected manifests when provided a list of vulnerabilities.
func (l *Libindex) AffectedManifests(ctx context.Context, vulns []claircore.Vulnerability) (*claircore.AffectedManifests, error) {
ctx = zlog.ContextWithValues(ctx, "component", "libindex/Libindex.AffectedManifests")
- om := omnimatcher.New(nil)
affected := claircore.NewAffectedManifests()
g, ctx := errgroup.WithContext(ctx)
@@ -257,7 +255,7 @@ func (l *Libindex) AffectedManifests(ctx context.Context, vulns []claircore.Vuln
return context.Cause(ctx)
default:
}
- hashes, err := l.store.AffectedManifests(ctx, vulns[i], om.Vulnerable)
+ hashes, err := l.store.AffectedManifests(ctx, vulns[i])
if err != nil {
return err
}
diff --git a/libindex/libindex_test.go b/libindex/libindex_test.go
index 8d5fb2d7b..113eae74d 100644
--- a/libindex/libindex_test.go
+++ b/libindex/libindex_test.go
@@ -62,7 +62,7 @@ func TestAffectedManifests(t *testing.T) {
mockStore: func(t *testing.T) indexer.Store {
ctrl := gomock.NewController(t)
s := indexer.NewMockStore(ctrl)
- s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any(), gomock.Any()).Return(
+ s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any()).Return(
[]claircore.Digest{
digest("first digest"),
digest("second digest"),
@@ -80,7 +80,7 @@ func TestAffectedManifests(t *testing.T) {
mockStore: func(t *testing.T) indexer.Store {
ctrl := gomock.NewController(t)
s := indexer.NewMockStore(ctrl)
- s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any(), gomock.Any()).Return(
+ s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any()).Return(
[]claircore.Digest{
digest("first digest"),
digest("second digest"),
@@ -142,8 +142,7 @@ func BenchmarkAffectedManifests(b *testing.B) {
// create store
ctrl := gomock.NewController(b)
s := indexer.NewMockStore(ctrl)
- var check claircore.CheckVulnernableFunc
- s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any(), gomock.AssignableToTypeOf(check)).Return(
+ s.EXPECT().AffectedManifests(gomock.Any(), gomock.Any()).Return(
[]claircore.Digest{
digest("first digest"),
digest("second digest"),
diff --git a/nodejs/matcher.go b/nodejs/matcher.go
index 3b6a91e36..6ec97537e 100644
--- a/nodejs/matcher.go
+++ b/nodejs/matcher.go
@@ -2,6 +2,7 @@ package nodejs
import (
"context"
+
"github.com/quay/claircore"
"github.com/quay/claircore/libvuln/driver"
)
diff --git a/pkg/omnimatcher/omnimatcher.go b/pkg/omnimatcher/omnimatcher.go
deleted file mode 100644
index 969edaec4..000000000
--- a/pkg/omnimatcher/omnimatcher.go
+++ /dev/null
@@ -1,64 +0,0 @@
-package omnimatcher
-
-import (
- "context"
-
- "github.com/quay/claircore"
- "github.com/quay/claircore/alpine"
- "github.com/quay/claircore/aws"
- "github.com/quay/claircore/debian"
- "github.com/quay/claircore/gobin"
- "github.com/quay/claircore/libvuln/driver"
- "github.com/quay/claircore/python"
- "github.com/quay/claircore/rhel"
- "github.com/quay/claircore/ubuntu"
-)
-
-// defaultOmniMatcher is the default implementation
-// containing all in-tree matchers.
-var defaultOmniMatcher = []driver.Matcher{
- &alpine.Matcher{},
- &aws.Matcher{},
- &debian.Matcher{},
- &gobin.Matcher{},
- &python.Matcher{},
- &rhel.Matcher{},
- &ubuntu.Matcher{},
-}
-
-// OmniMatcher is a aggregation of Matcher implementations.
-//
-// Its exported methods will call each implementation's method
-// of the same name and return the first true value.
-//
-// Currently Vulnerable is the only method implemented.
-type OmniMatcher []driver.Matcher
-
-// NewOmniMatcher is a constructor for an OmniMatcher.
-//
-// If a nil array of Matchers is provided the default
-// containing all in-tree matchers is used.
-func New(m []driver.Matcher) OmniMatcher {
- if m == nil {
- return defaultOmniMatcher
- }
- return m
-}
-
-// Vulnerable will call each Matcher's Vulnerable method until one returns true.
-func (om OmniMatcher) Vulnerable(ctx context.Context, record *claircore.IndexRecord, vuln *claircore.Vulnerability) (bool, error) {
- for _, m := range om {
- applicable := m.Filter(record)
- if !applicable {
- continue
- }
- match, err := m.Vulnerable(ctx, record, vuln)
- if err != nil {
- return false, err
- }
- if match {
- return true, nil
- }
- }
- return false, nil
-}
diff --git a/rhel/matcher_test.go b/rhel/matcher_test.go
index 8c6290fdc..ab774a0ad 100644
--- a/rhel/matcher_test.go
+++ b/rhel/matcher_test.go
@@ -1,268 +1,11 @@
package rhel
import (
- "context"
- "encoding/json"
- "fmt"
- "io"
- "net/http"
- "net/http/httptest"
- "os"
- "path/filepath"
"testing"
- "github.com/quay/zlog"
-
- "github.com/quay/claircore"
- "github.com/quay/claircore/datastore/postgres"
- "github.com/quay/claircore/internal/matcher"
- "github.com/quay/claircore/libvuln/driver"
- "github.com/quay/claircore/libvuln/updates"
- "github.com/quay/claircore/pkg/ctxlock"
- "github.com/quay/claircore/test/integration"
- pgtest "github.com/quay/claircore/test/postgres"
"github.com/quay/claircore/toolkit/types/cpe"
)
-func TestMain(m *testing.M) {
- var c int
- defer func() { os.Exit(c) }()
- defer integration.DBSetup()()
- c = m.Run()
-}
-
-func serveOVAL(t *testing.T) (string, *http.Client) {
- srv := httptest.NewServer(http.FileServer(http.Dir("testdata")))
- t.Cleanup(srv.Close)
- return srv.URL, srv.Client()
-}
-
-func TestMatcherIntegration(t *testing.T) {
- t.Parallel()
- integration.NeedDB(t)
- ctx := zlog.Test(context.Background(), t)
- pool := pgtest.TestMatcherDB(ctx, t)
- store := postgres.NewMatcherStore(pool)
- m := &Matcher{}
- fs, err := filepath.Glob("testdata/*.xml")
- if err != nil {
- t.Error(err)
- }
- root, c := serveOVAL(t)
- locks, err := ctxlock.New(ctx, pool)
- if err != nil {
- t.Error(err)
- return
- }
- defer locks.Close(ctx)
-
- facs := make(map[string]driver.UpdaterSetFactory, len(fs))
- for _, fn := range fs {
- u, err := NewUpdater(
- fmt.Sprintf("test-updater-%s", filepath.Base(fn)),
- 1,
- root+"/"+filepath.Base(fn),
- false,
- )
- if err != nil {
- t.Error(err)
- continue
- }
- u.Configure(ctx, func(v interface{}) error { return nil }, c)
- if err != nil {
- t.Error(err)
- continue
- }
- s := driver.NewUpdaterSet()
- if err := s.Add(u); err != nil {
- t.Error(err)
- continue
- }
- facs[u.Name()] = driver.StaticSet(s)
- }
- mgr, err := updates.NewManager(ctx, store, locks, c, updates.WithFactories(facs))
- if err != nil {
- t.Error(err)
- }
- // force update
- if err := mgr.Run(ctx); err != nil {
- t.Error(err)
- }
-
- f, err := os.Open(filepath.Join("testdata", "rhel-report.json"))
- if err != nil {
- t.Fatalf("%v", err)
- }
- defer f.Close()
- var ir claircore.IndexReport
- if err := json.NewDecoder(f).Decode(&ir); err != nil {
- t.Fatalf("failed to decode IndexReport: %v", err)
- }
- vr, err := matcher.Match(ctx, &ir, []driver.Matcher{m}, store)
- if err != nil {
- t.Fatal(err)
- }
- if err := json.NewEncoder(io.Discard).Encode(&vr); err != nil {
- t.Fatalf("failed to marshal VR: %v", err)
- }
-}
-
-type vulnerableTestCase struct {
- ir *claircore.IndexRecord
- v *claircore.Vulnerability
- name string
- want bool
-}
-
-func TestVulnerable(t *testing.T) {
- record := &claircore.IndexRecord{
- Package: &claircore.Package{
- Version: "0.33.0-6.el8",
- },
- Repository: &claircore.Repository{
- CPE: cpe.MustUnbind("cpe:/o:redhat:enterprise_linux:8::baseos"),
- Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- openshiftRecord := &claircore.IndexRecord{
- Package: &claircore.Package{
- Version: "0.33.0-6.el8",
- },
- Repository: &claircore.Repository{
- CPE: cpe.MustUnbind("cpe:/a:redhat:openshift:4.13::el8"),
- Name: "cpe:/a:redhat:openshift:4.13::el8",
- Key: "rhel-cpe-repository",
- },
- }
- openshift5Record := &claircore.IndexRecord{
- Package: &claircore.Package{
- Version: "0.33.0-6.el8",
- },
- Repository: &claircore.Repository{
- CPE: cpe.MustUnbind("cpe:/a:redhat:openshift:5.1::el8"),
- Name: "cpe:/a:redhat:openshift:5.1::el8",
- Key: "rhel-cpe-repository",
- },
- }
- fixedVulnPast := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "0.33.0-5.el8",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- fixedVulnCurrent := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "0.33.0-6.el8",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- fixedVulnFuture := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "0.33.0-7.el8",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- unfixedVuln := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- unfixedVulnBadCPE := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cep:o:redhat:enterprise_linux:8::baseos",
- Key: "rhel-cpe-repository",
- },
- }
- unfixedVulnRepoIsSubset := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8",
- Key: "rhel-cpe-repository",
- },
- }
- unfixedVulnRepoNotSubset := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cpe:/o:redhat:enterprise_linux:8::appstream",
- Key: "rhel-cpe-repository",
- },
- }
- unfixedVulnRepoSubstring := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cpe:/a:redhat:openshift:4",
- Key: "rhel-cpe-repository",
- },
- }
- genericWilcardRepo := &claircore.Vulnerability{
- Package: &claircore.Package{
- Version: "",
- },
- FixedInVersion: "",
- Repo: &claircore.Repository{
- Name: "cpe:/a:redhat:openshift:4.%02::el8",
- Key: "rhel-cpe-repository",
- },
- }
-
- testCases := []vulnerableTestCase{
- {ir: record, v: fixedVulnPast, want: false, name: "vuln fixed in past version"},
- {ir: record, v: fixedVulnCurrent, want: false, name: "vuln fixed in current version"},
- {ir: record, v: fixedVulnFuture, want: true, name: "outdated package"},
- {ir: record, v: unfixedVuln, want: true, name: "unfixed vuln"},
- {ir: record, v: unfixedVulnBadCPE, want: false, name: "unfixed vuln, invalid CPE"},
- {ir: record, v: unfixedVulnRepoIsSubset, want: true, name: "unfixed vuln, Repo is a subset"},
- {ir: record, v: unfixedVulnRepoNotSubset, want: false, name: "unfixed vuln, Repo not a subset"},
- {ir: openshiftRecord, v: unfixedVulnRepoSubstring, want: true, name: "unfixed vuln, Repo is a substring match"},
- {ir: openshiftRecord, v: genericWilcardRepo, want: true, name: "unfixed vuln, Repo is a superset (with wildcard)"},
- {ir: openshift5Record, v: genericWilcardRepo, want: false, name: "unfixed vuln, Repo isn't a superset (with wildcard)"},
- }
-
- m := &Matcher{}
- ctx := context.Background()
- ctx = zlog.Test(ctx, t)
- for _, tc := range testCases {
- got, err := m.Vulnerable(ctx, tc.ir, tc.v)
- if err != nil {
- t.Error(err)
- }
- if tc.want != got {
- t.Errorf("%q failed: want %t, got %t", tc.name, tc.want, got)
- }
- }
-}
-
func TestIsCPEStringSubsetMatch(t *testing.T) {
t.Parallel()
diff --git a/rpm/testdata/rhel-report.json b/rpm/testdata/rhel-report.json
deleted file mode 100644
index 1692fb4d5..000000000
--- a/rpm/testdata/rhel-report.json
+++ /dev/null
@@ -1,2725 +0,0 @@
-{
- "manifest_hash": "a7209baef64d9a6e8e87cbc2a6f27d402a04cd3750006f1338a2924b4bf585f7",
- "state": "IndexFinished",
- "packages": {
- "1": {
- "id": 1,
- "name": "tzdata",
- "version": "2019c-1.el8",
- "source": {
- "id": 1,
- "name": "tzdata",
- "version": "2019c-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fb879d27f047aa8bb3ddbc747016f3e45be8a780d163344436059eb48237077c|key:199e2f91fd431d51"
- },
- "10": {
- "id": 10,
- "name": "publicsuffix-list-dafsa",
- "version": "20180723-1.el8",
- "source": {
- "id": 9,
- "name": "publicsuffix-list",
- "version": "20180723-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a778baf6457f01596e39e6eb14f9d10fd44aa21a2adbc2dfcf61677acd5f3779|key:199e2f91fd431d51"
- },
- "100": {
- "id": 100,
- "name": "iptables-libs",
- "version": "1.8.2-16.el8",
- "source": {
- "id": 99,
- "name": "iptables",
- "version": "1.8.2-16.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:aa2b98894d1324de6f2fe27fe857fcfd1166b66ccd5879c2918a8db2b7467418|key:199e2f91fd431d51"
- },
- "101": {
- "id": 101,
- "name": "libsigsegv",
- "version": "2.11-5.el8",
- "source": {
- "id": 101,
- "name": "libsigsegv",
- "version": "2.11-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b715a2359fd8b8cc6b18257ad9e12e9c291299624ae875f5cdb5f071a25d6df9|key:199e2f91fd431d51"
- },
- "103": {
- "id": 103,
- "name": "libverto",
- "version": "0.3.0-5.el8",
- "source": {
- "id": 103,
- "name": "libverto",
- "version": "0.3.0-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0cd7425bd6f49966565ac4ad04ec285f534208148d984578d082bd072399ba3c|key:199e2f91fd431d51"
- },
- "105": {
- "id": 105,
- "name": "libtirpc",
- "version": "1.1.4-4.el8",
- "source": {
- "id": 105,
- "name": "libtirpc",
- "version": "1.1.4-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b1cac337a830eb2094bf0be67a34fa3a3f43ffd00c87b5d645d7cc6e298a2b1a|key:199e2f91fd431d51"
- },
- "108": {
- "id": 108,
- "name": "platform-python-pip",
- "version": "9.0.3-15.el8",
- "source": {
- "id": 3,
- "name": "python-pip",
- "version": "9.0.3-15.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8d3c65295b6c437fc70e1607880972b57fa1005f3d0955645f41a612c919da4a|key:199e2f91fd431d51"
- },
- "11": {
- "id": 11,
- "name": "pcre2",
- "version": "10.32-1.el8",
- "source": {
- "id": 11,
- "name": "pcre2",
- "version": "10.32-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fa2a3bf8975f93ab6e4844d1203fad7cccf95d2deefe2b9004252e63dfb49ca6|key:199e2f91fd431d51"
- },
- "110": {
- "id": 110,
- "name": "platform-python",
- "version": "3.6.8-15.1.el8",
- "source": {
- "id": 109,
- "name": "python3",
- "version": "3.6.8-15.1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2be319312fa4161e0a163e0e6676963be98404951e4f046f2a2688c0d2b406a5|key:199e2f91fd431d51"
- },
- "111": {
- "id": 111,
- "name": "libpwquality",
- "version": "1.4.0-9.el8",
- "source": {
- "id": 111,
- "name": "libpwquality",
- "version": "1.4.0-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:37ec3c09ea66217b616b55858a202d356ea86107ae1c77cf70104f1a4d371064|key:199e2f91fd431d51"
- },
- "116": {
- "id": 116,
- "name": "python3-dateutil",
- "version": "1:2.6.1-6.el8",
- "source": {
- "id": 115,
- "name": "python-dateutil",
- "version": "2.6.1-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8f205160b21e23d363bfef7bada4d3686c8c935331ee142d3cc9b1fd25b05b33|key:199e2f91fd431d51"
- },
- "118": {
- "id": 118,
- "name": "python3-dbus",
- "version": "1.2.4-15.el8",
- "source": {
- "id": 117,
- "name": "dbus-python",
- "version": "1.2.4-15.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b3262a8f2a71dfd1501743276733e7ef9d50b9c27da5eb83aa7fb50bf7db5e81|key:199e2f91fd431d51"
- },
- "120": {
- "id": 120,
- "name": "python3-libcomps",
- "version": "0.1.11-2.el8",
- "source": {
- "id": 91,
- "name": "libcomps",
- "version": "0.1.11-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:eed62b97ff90710678622720a5ead89c1103b8094e7ed923733b61c0be003e44|key:199e2f91fd431d51"
- },
- "122": {
- "id": 122,
- "name": "python3-dmidecode",
- "version": "3.12.2-15.el8",
- "source": {
- "id": 121,
- "name": "python-dmidecode",
- "version": "3.12.2-15.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4f5cfafc11fee4061349da9ef83b1a41dfad625cd8757d69370338a7e288eab6|key:199e2f91fd431d51"
- },
- "124": {
- "id": 124,
- "name": "python3-gobject-base",
- "version": "3.28.3-1.el8",
- "source": {
- "id": 123,
- "name": "pygobject3",
- "version": "3.28.3-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0bc0dbdb9cd9a4f2ddfbdec0226b2c236a51dbd599460393ff7ce59bff7b36cc|key:199e2f91fd431d51"
- },
- "125": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "source": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2b23ebc2a6f1fef690010512c196a28fc849587096e82c9f24163fe29f74a22a|key:199e2f91fd431d51"
- },
- "126": {
- "id": 126,
- "name": "python3-syspurpose",
- "version": "1.25.17-1.el8",
- "source": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ccd8f0803d35495f206b948d779aa50cad44bb1d88a7a7ff51f0262044343697|key:199e2f91fd431d51"
- },
- "127": {
- "id": 127,
- "name": "openldap",
- "version": "2.4.46-10.el8",
- "source": {
- "id": 127,
- "name": "openldap",
- "version": "2.4.46-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:488b87ce988eb766ee29a6a66acb0dd888c6e22ea649cd3d31a1999ed7d59b7e|key:199e2f91fd431d51"
- },
- "129": {
- "id": 129,
- "name": "passwd",
- "version": "0.80-2.el8",
- "source": {
- "id": 129,
- "name": "passwd",
- "version": "0.80-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:e41db5bf6405fe8f44c58e42ffcb820e589baed7eb7d56f6536baac5392afcba|key:199e2f91fd431d51"
- },
- "131": {
- "id": 131,
- "name": "libyaml",
- "version": "0.1.7-5.el8",
- "source": {
- "id": 131,
- "name": "libyaml",
- "version": "0.1.7-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:32e1cfb1529194d663cfcd67d263fddfc37ff63b8da8266ba069f190fb9b5890|key:199e2f91fd431d51"
- },
- "133": {
- "id": 133,
- "name": "npth",
- "version": "1.5-4.el8",
- "source": {
- "id": 133,
- "name": "npth",
- "version": "1.5-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b9b2f231925fa2557f3630ad71c2b26008e636929439ea6ace80320f88dc472b|key:199e2f91fd431d51"
- },
- "135": {
- "id": 135,
- "name": "gpgme",
- "version": "1.10.0-6.el8",
- "source": {
- "id": 135,
- "name": "gpgme",
- "version": "1.10.0-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:df1d14b479c86457376099ae71bdee909ad9098aeb2bb0d1df90b3f6c2baa947|key:199e2f91fd431d51"
- },
- "137": {
- "id": 137,
- "name": "which",
- "version": "2.21-10.el8",
- "source": {
- "id": 137,
- "name": "which",
- "version": "2.21-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:3550991863db72d187d81b8099d1f7757b8bc779a5329c068101de7e378f0d18|key:199e2f91fd431d51"
- },
- "139": {
- "id": 139,
- "name": "libssh",
- "version": "0.9.0-4.el8",
- "source": {
- "id": 139,
- "name": "libssh",
- "version": "0.9.0-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a88c1d55ff653ba581c17eadc845d827982c36d9277f6f77eae125634f8dc892|key:199e2f91fd431d51"
- },
- "14": {
- "id": 14,
- "name": "ncurses-libs",
- "version": "6.1-7.20180224.el8",
- "source": {
- "id": 13,
- "name": "ncurses",
- "version": "6.1-7.20180224.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c16d2f2f0ec0fcdfd05c533d06abc37621230b5abc81249f1ed6a15a62e15377|key:199e2f91fd431d51"
- },
- "140": {
- "id": 140,
- "name": "libssh-config",
- "version": "0.9.0-4.el8",
- "source": {
- "id": 139,
- "name": "libssh",
- "version": "0.9.0-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9f4c45038f853e5fbfa76e4d372990d7a539488b95e80de2c09990f79e14f94b|key:199e2f91fd431d51"
- },
- "141": {
- "id": 141,
- "name": "curl",
- "version": "7.61.1-11.el8",
- "source": {
- "id": 141,
- "name": "curl",
- "version": "7.61.1-11.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c7b88f3b0323e0b5a4fe1d71ea58de28f7b88e4bf150a1faa42fc3cb782bee96|key:199e2f91fd431d51"
- },
- "142": {
- "id": 142,
- "name": "libcurl",
- "version": "7.61.1-11.el8",
- "source": {
- "id": 141,
- "name": "curl",
- "version": "7.61.1-11.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:241885b9e13490acb312e3f35150bf80e3bedcde7768ca7c99a1c73559f72a20|key:199e2f91fd431d51"
- },
- "143": {
- "id": 143,
- "name": "librepo",
- "version": "1.10.3-3.el8",
- "source": {
- "id": 143,
- "name": "librepo",
- "version": "1.10.3-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:1b9b39351aaa1d64cf4bc192aedfd1e97fc0a3a521b7b7698775bacd757a002e|key:199e2f91fd431d51"
- },
- "144": {
- "id": 144,
- "name": "python3-librepo",
- "version": "1.10.3-3.el8",
- "source": {
- "id": 143,
- "name": "librepo",
- "version": "1.10.3-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2f81be026c5c40ba8397a0199ee32ed687fc261db5588aa5da549e9de2e32c22|key:199e2f91fd431d51"
- },
- "145": {
- "id": 145,
- "name": "rpm",
- "version": "4.14.2-25.el8",
- "source": {
- "id": 145,
- "name": "rpm",
- "version": "4.14.2-25.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:90ced114d63ca4433bcd4adb2dfd63aac1253f9ad3cc39ee29ad8c1de92f5eaa|key:199e2f91fd431d51"
- },
- "147": {
- "id": 147,
- "name": "libsolv",
- "version": "0.7.4-3.el8",
- "source": {
- "id": 147,
- "name": "libsolv",
- "version": "0.7.4-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6d8cfd071d6886edfb718bb080a64acbaca3b7f951783913edd0ae58a92275e6|key:199e2f91fd431d51"
- },
- "149": {
- "id": 149,
- "name": "libdnf",
- "version": "0.35.1-9.el8_1",
- "source": {
- "id": 149,
- "name": "libdnf",
- "version": "0.35.1-9.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8ee617b19d0beb67e1d447c14b4abef2ca6933e789b5d8e416771ffc48940853|key:199e2f91fd431d51"
- },
- "15": {
- "id": 15,
- "name": "glibc",
- "version": "2.28-72.el8",
- "source": {
- "id": 15,
- "name": "glibc",
- "version": "2.28-72.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:39c705dcbbc6dd5686214acc4fa8f55f7360bd1386ac086b38f078728f05fbd3|key:199e2f91fd431d51"
- },
- "150": {
- "id": 150,
- "name": "python3-libdnf",
- "version": "0.35.1-9.el8_1",
- "source": {
- "id": 149,
- "name": "libdnf",
- "version": "0.35.1-9.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:86aa2839722816cfaea75d12fcc8272d33ad7fc33ad54e66c1f3e85d529c49da|key:199e2f91fd431d51"
- },
- "152": {
- "id": 152,
- "name": "libreport-filesystem",
- "version": "2.9.5-9.el8",
- "source": {
- "id": 151,
- "name": "libreport",
- "version": "2.9.5-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0f49e15614db841ee3074b7e9cedd5890be79e272b0cdfcf4a3ada907b1678f5|key:199e2f91fd431d51"
- },
- "154": {
- "id": 154,
- "name": "dbus-common",
- "version": "1:1.12.8-9.el8",
- "source": {
- "id": 63,
- "name": "dbus",
- "version": "1.12.8-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c90bac16bb219ff9a23495273316f1a358fea744ab8db7d680c26b0a291cb8ea|key:199e2f91fd431d51"
- },
- "156": {
- "id": 156,
- "name": "device-mapper",
- "version": "8:1.02.163-5.el8",
- "source": {
- "id": 155,
- "name": "lvm2",
- "version": "2.03.05-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ad924258f5851bb50684dc7c8340830f5c8e5279fe77ca356c14528a3b03a422|key:199e2f91fd431d51"
- },
- "158": {
- "id": 158,
- "name": "cryptsetup-libs",
- "version": "2.2.0-2.el8",
- "source": {
- "id": 157,
- "name": "cryptsetup",
- "version": "2.2.0-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:1c825bf15c54f09ee3aeb7174eb09bda8a82735e8ae5decc7c303fe41af6324a|key:199e2f91fd431d51"
- },
- "16": {
- "id": 16,
- "name": "glibc-common",
- "version": "2.28-72.el8",
- "source": {
- "id": 15,
- "name": "glibc",
- "version": "2.28-72.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0b00c886b9033e46146393b2d97af30f544cbf02c71c9499df6a6d163d3f3b85|key:199e2f91fd431d51"
- },
- "160": {
- "id": 160,
- "name": "elfutils-libs",
- "version": "0.176-5.el8",
- "source": {
- "id": 159,
- "name": "elfutils",
- "version": "0.176-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:80110d9310cae0c1a550327da139cb72880ebfe53d767d875a38ca2d4f75f0d4|key:199e2f91fd431d51"
- },
- "161": {
- "id": 161,
- "name": "systemd",
- "version": "239-18.el8",
- "source": {
- "id": 161,
- "name": "systemd",
- "version": "239-18.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fc718dd58d56d8cc101c75149a2f28fefc0381c182ca1d2576e61453ddbf5961|key:199e2f91fd431d51"
- },
- "164": {
- "id": 164,
- "name": "rpm-build-libs",
- "version": "4.14.2-25.el8",
- "source": {
- "id": 145,
- "name": "rpm",
- "version": "4.14.2-25.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c7d1b30a5a893afd82bfafe1865a9d6cad53339bfbf16eeda940d1797931ede3|key:199e2f91fd431d51"
- },
- "165": {
- "id": 165,
- "name": "dnf",
- "version": "4.2.7-7.el8_1",
- "source": {
- "id": 165,
- "name": "dnf",
- "version": "4.2.7-7.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:24aaf082fbedc3c11932861f629f84bb0b1fcd235f823cbf9782a079944c8141|key:199e2f91fd431d51"
- },
- "166": {
- "id": 166,
- "name": "python3-dnf",
- "version": "4.2.7-7.el8_1",
- "source": {
- "id": 165,
- "name": "dnf",
- "version": "4.2.7-7.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:86e7b6b657e266896e727ec2c4a3e1f88a89668483278c71c387650c67453445|key:199e2f91fd431d51"
- },
- "168": {
- "id": 168,
- "name": "python3-dnf-plugins-core",
- "version": "4.0.8-3.el8",
- "source": {
- "id": 167,
- "name": "dnf-plugins-core",
- "version": "4.0.8-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9395a8616df5853856f8435237b72410874cba2b7095182db233a40a56adeb61|key:199e2f91fd431d51"
- },
- "17": {
- "id": 17,
- "name": "bash",
- "version": "4.4.19-10.el8",
- "source": {
- "id": 17,
- "name": "bash",
- "version": "4.4.19-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:59f8b6bafdad309734bdc6f0bd658f7ffa02e7ba07454115ecd628ac529bb4a8|key:199e2f91fd431d51"
- },
- "170": {
- "id": 170,
- "name": "python3-subscription-manager-rhsm",
- "version": "1.25.17-1.el8",
- "source": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fdd19b25771b8841c786ad3ac48d921942936f6f5fafb84a2f6b184f185cea70|key:199e2f91fd431d51"
- },
- "172": {
- "id": 172,
- "name": "yum",
- "version": "4.2.7-7.el8_1",
- "source": {
- "id": 165,
- "name": "dnf",
- "version": "4.2.7-7.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9aba66b31077e1ee0563ade8072f3c79d2ef2f72a36e642c513cceb8641a08d5|key:199e2f91fd431d51"
- },
- "174": {
- "id": 174,
- "name": "tar",
- "version": "2:1.30-4.el8",
- "source": {
- "id": 173,
- "name": "tar",
- "version": "1.30-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6e75f20d5d04e6ff7388f50d6fc3b3e462d22fcf911c44b82c054cfd6c48ef89|key:199e2f91fd431d51"
- },
- "176": {
- "id": 176,
- "name": "findutils",
- "version": "1:4.6.0-20.el8",
- "source": {
- "id": 175,
- "name": "findutils",
- "version": "4.6.0-20.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:01a9e4a524cfdb518fd4997204d88b12c455071867d1390cb9185d2c9fe86281|key:199e2f91fd431d51"
- },
- "177": {
- "id": 177,
- "name": "rootfiles",
- "version": "8.1-22.el8",
- "source": {
- "id": 177,
- "name": "rootfiles",
- "version": "8.1-22.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f84afbf5620a6c11f69d7ef2db32648e9cbd8c939d64e1907bf4f83cd9944645|key:199e2f91fd431d51"
- },
- "180": {
- "id": 180,
- "name": "gpg-pubkey",
- "version": "d4082792-5b32db75",
- "source": {
- "id": 179,
- "name": "",
- "version": "",
- "package_db": ""
- },
- "package_db": "var/lib/rpm"
- },
- "182": {
- "id": 182,
- "name": "libgcc",
- "version": "8.3.1-4.5.el8",
- "source": {
- "id": 181,
- "name": "gcc",
- "version": "8.3.1-4.5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b65be2d993c2d37b63b5a44c958677a3fbebb0f36891692994a009e1a40b0b45|key:199e2f91fd431d51"
- },
- "184": {
- "id": 184,
- "name": "python3-setuptools-wheel",
- "version": "39.2.0-5.el8",
- "source": {
- "id": 183,
- "name": "python-setuptools",
- "version": "39.2.0-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b2f9c5eafcc58023a18b657442266217d1eb7844b35552b39d8a0b00f4ec0f43|key:199e2f91fd431d51"
- },
- "186": {
- "id": 186,
- "name": "subscription-manager-rhsm-certificates",
- "version": "1.25.17-1.el8",
- "source": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8b8a516b15cffb52e70f62e336c96d180b41d0316fe3200839f70779eb82ab99|key:199e2f91fd431d51"
- },
- "187": {
- "id": 187,
- "name": "setup",
- "version": "2.12.2-2.el8",
- "source": {
- "id": 187,
- "name": "setup",
- "version": "2.12.2-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a42bf3d805bcda6b493b7b137aa48d3b78c395479e9d8e1a78083f85d185c141|key:199e2f91fd431d51"
- },
- "189": {
- "id": 189,
- "name": "basesystem",
- "version": "11-5.el8",
- "source": {
- "id": 189,
- "name": "basesystem",
- "version": "11-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fa127960f98c176c3e57432cbd96a74767f5fa803db325c0eacae18b47d52105|key:199e2f91fd431d51"
- },
- "19": {
- "id": 19,
- "name": "zlib",
- "version": "1.2.11-10.el8",
- "source": {
- "id": 19,
- "name": "zlib",
- "version": "1.2.11-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c6caa92ad17cd4fd3361a223ec3daeb382dc9f7c508bd7359412c64e9d9a783d|key:199e2f91fd431d51"
- },
- "192": {
- "id": 192,
- "name": "ncurses-base",
- "version": "6.1-7.20180224.el8",
- "source": {
- "id": 13,
- "name": "ncurses",
- "version": "6.1-7.20180224.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c93bf0fe44dc760ae9061d4509578b9e2c3a869da1176b1cbdc7f43be41964b1|key:199e2f91fd431d51"
- },
- "193": {
- "id": 193,
- "name": "libselinux",
- "version": "2.9-2.1.el8",
- "source": {
- "id": 193,
- "name": "libselinux",
- "version": "2.9-2.1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:d6b200131978292c506339f3a29855a47d47d48e969892288b21513d34e3b629|key:199e2f91fd431d51"
- },
- "196": {
- "id": 196,
- "name": "glibc-minimal-langpack",
- "version": "2.28-72.el8",
- "source": {
- "id": 15,
- "name": "glibc",
- "version": "2.28-72.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fa127960f98c176c3e57432cbd96a74767f5fa803db325c0eacae18b47d52105|key:199e2f91fd431d51"
- },
- "199": {
- "id": 199,
- "name": "libsepol",
- "version": "2.9-1.el8",
- "source": {
- "id": 199,
- "name": "libsepol",
- "version": "2.9-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:d2cbd4ab79a0f3bddea942907a3421ec9d454300a4a5045caafdda7394a93406|key:199e2f91fd431d51"
- },
- "202": {
- "id": 202,
- "name": "xz-libs",
- "version": "5.2.4-3.el8",
- "source": {
- "id": 201,
- "name": "xz",
- "version": "5.2.4-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:202b048d78fd55aad1521eb5677a7ae3f8d392d7af0058f3cf02c5d5aa9beb4d|key:199e2f91fd431d51"
- },
- "203": {
- "id": 203,
- "name": "libgpg-error",
- "version": "1.31-1.el8",
- "source": {
- "id": 203,
- "name": "libgpg-error",
- "version": "1.31-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ea9aad258b86267435cfdc8dcf9d77489d544b32d94f166f7572c3a13e911ac3|key:199e2f91fd431d51"
- },
- "206": {
- "id": 206,
- "name": "info",
- "version": "6.5-4.el8",
- "source": {
- "id": 205,
- "name": "texinfo",
- "version": "6.5-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:e43fe006a346f15ffa5f4d3f64f67b777c7be42123065ab4397d8c8cc1ed09bc|key:199e2f91fd431d51"
- },
- "207": {
- "id": 207,
- "name": "libxcrypt",
- "version": "4.1.1-4.el8",
- "source": {
- "id": 207,
- "name": "libxcrypt",
- "version": "4.1.1-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:5c072e87e8b1e6a484a5c368e8f14c6448728cbc1b0ef9ce861259485e36755e|key:199e2f91fd431d51"
- },
- "210": {
- "id": 210,
- "name": "elfutils-libelf",
- "version": "0.176-5.el8",
- "source": {
- "id": 159,
- "name": "elfutils",
- "version": "0.176-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:7fe5525acbd6b89ecf8265751abd0b83736539ca7ba92a10d38484ac16c9d48f|key:199e2f91fd431d51"
- },
- "211": {
- "id": 211,
- "name": "expat",
- "version": "2.2.5-3.el8",
- "source": {
- "id": 211,
- "name": "expat",
- "version": "2.2.5-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c7cc7b6df36b966b69fe833803d00cb6511cb4d7c87f4935864af23682010598|key:199e2f91fd431d51"
- },
- "213": {
- "id": 213,
- "name": "json-c",
- "version": "0.13.1-0.2.el8",
- "source": {
- "id": 213,
- "name": "json-c",
- "version": "0.13.1-0.2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6c3b8fe0dc69f44b228a1f89c212da6369524b8ece342e28e8d3aeccb4dfcc3e|key:199e2f91fd431d51"
- },
- "216": {
- "id": 216,
- "name": "libuuid",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:94d680d32594b144776e8e80b3e4c35e399565a753800a29c860004602bfffee|key:199e2f91fd431d51"
- },
- "218": {
- "id": 218,
- "name": "gmp",
- "version": "1:6.1.2-10.el8",
- "source": {
- "id": 217,
- "name": "gmp",
- "version": "6.1.2-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6664e2a8f1f2859f7f889f1b164c6b7eeb7e78399e95e56a5683048498c9561a|key:199e2f91fd431d51"
- },
- "219": {
- "id": 219,
- "name": "acl",
- "version": "2.2.53-1.el8",
- "source": {
- "id": 219,
- "name": "acl",
- "version": "2.2.53-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b429a84e16ca6976e27b076a8472573b1cea6855f980a4b76457936f18d0dee3|key:199e2f91fd431d51"
- },
- "22": {
- "id": 22,
- "name": "bzip2-libs",
- "version": "1.0.6-26.el8",
- "source": {
- "id": 21,
- "name": "bzip2",
- "version": "1.0.6-26.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:eeaf4fb9b4500e5687eb4e8e4ef21d1ee1a07956cb9d9a7e027e131fa655a2c8|key:199e2f91fd431d51"
- },
- "220": {
- "id": 220,
- "name": "libacl",
- "version": "2.2.53-1.el8",
- "source": {
- "id": 219,
- "name": "acl",
- "version": "2.2.53-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6d4c5c5c5b71445fe5914c02121651c02bf488dbf85ef19a6a6c3dd7fbe56d6a|key:199e2f91fd431d51"
- },
- "222": {
- "id": 222,
- "name": "libblkid",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2e789ca9de323196c95a043d420f9ee5f33d2eb19cece26b59b217705bc5e038|key:199e2f91fd431d51"
- },
- "223": {
- "id": 223,
- "name": "sed",
- "version": "4.5-1.el8",
- "source": {
- "id": 223,
- "name": "sed",
- "version": "4.5-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:004e33f726fcce4414791ba89032007e82ad821d84bfa1c850482eaec4d703ca|key:199e2f91fd431d51"
- },
- "226": {
- "id": 226,
- "name": "libstdc++",
- "version": "8.3.1-4.5.el8",
- "source": {
- "id": 181,
- "name": "gcc",
- "version": "8.3.1-4.5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b912485633fb731ac57a3e4abc7e25af58286c261b744de9f8f901aa106cbca3|key:199e2f91fd431d51"
- },
- "229": {
- "id": 229,
- "name": "libunistring",
- "version": "0.9.9-3.el8",
- "source": {
- "id": 229,
- "name": "libunistring",
- "version": "0.9.9-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:13385191248b50c22e0f2aa9fc4dd8d5d3fef33d6db2aad6f3491bd37ce60e16|key:199e2f91fd431d51"
- },
- "23": {
- "id": 23,
- "name": "libxml2",
- "version": "2.9.7-5.el8",
- "source": {
- "id": 23,
- "name": "libxml2",
- "version": "2.9.7-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fb1c363250c27152d7ead6f24128fecb45d6aed77d53319fd9735a80be4ca113|key:199e2f91fd431d51"
- },
- "231": {
- "id": 231,
- "name": "libgcrypt",
- "version": "1.8.3-4.el8",
- "source": {
- "id": 231,
- "name": "libgcrypt",
- "version": "1.8.3-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0c8c49b5ed77dc13e06a78dee386a17414b4172001f61aecfcd9f23c6a2d10ab|key:199e2f91fd431d51"
- },
- "234": {
- "id": 234,
- "name": "audit-libs",
- "version": "3.0-0.13.20190507gitf58ec40.el8",
- "source": {
- "id": 233,
- "name": "audit",
- "version": "3.0-0.13.20190507gitf58ec40.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c8417bce115ae93ebbb6c89b1335d59c30b87307e3c1900e677bf5f99654f60f|key:199e2f91fd431d51"
- },
- "235": {
- "id": 235,
- "name": "libassuan",
- "version": "2.5.1-3.el8",
- "source": {
- "id": 235,
- "name": "libassuan",
- "version": "2.5.1-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2e824459fde06f915fe3f8de1df184ea0a294def3e9c1024f506dd1c6846b4e3|key:199e2f91fd431d51"
- },
- "238": {
- "id": 238,
- "name": "gdbm-libs",
- "version": "1:1.18-1.el8",
- "source": {
- "id": 237,
- "name": "gdbm",
- "version": "1.18-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b83618340595ebcc14427318e72154a5ee1d32cf6056a1335cbb0560387b5b06|key:199e2f91fd431d51"
- },
- "239": {
- "id": 239,
- "name": "libtasn1",
- "version": "4.13-3.el8",
- "source": {
- "id": 239,
- "name": "libtasn1",
- "version": "4.13-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:bb9f472fe857ce3bf7d44766888fefefe55208426eb0838ee95c506ac5218d5b|key:199e2f91fd431d51"
- },
- "241": {
- "id": 241,
- "name": "pcre",
- "version": "8.42-4.el8",
- "source": {
- "id": 241,
- "name": "pcre",
- "version": "8.42-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:82870dc9caee3ec39d16c69e4923a992b8f75df4a2f7301db9925e316efb3855|key:199e2f91fd431d51"
- },
- "244": {
- "id": 244,
- "name": "systemd-libs",
- "version": "239-18.el8",
- "source": {
- "id": 161,
- "name": "systemd",
- "version": "239-18.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:e773c80aafd6addfa0246f1dc7a48ae63eae1d6f1f4cbf658a40d77de873afcb|key:199e2f91fd431d51"
- },
- "245": {
- "id": 245,
- "name": "crypto-policies",
- "version": "20190807-1.git9b1477b.el8",
- "source": {
- "id": 245,
- "name": "crypto-policies",
- "version": "20190807-1.git9b1477b.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:24427f3b591e88dfa434089f0a774a70618d2378088059b607dcd017b7b39299|key:199e2f91fd431d51"
- },
- "248": {
- "id": 248,
- "name": "openssl-libs",
- "version": "1:1.1.1c-2.el8",
- "source": {
- "id": 247,
- "name": "openssl",
- "version": "1.1.1c-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a0dd915e9c290215e5f1fd9a9cbc2582fa459f7d88e3376ac329fe4db9c7479e|key:199e2f91fd431d51"
- },
- "249": {
- "id": 249,
- "name": "ima-evm-utils",
- "version": "1.1-5.el8",
- "source": {
- "id": 249,
- "name": "ima-evm-utils",
- "version": "1.1-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:19340ee9241177caa69cd1f991355de808eb292ebc9705bf37b06b9a6120b86a|key:199e2f91fd431d51"
- },
- "25": {
- "id": 25,
- "name": "libcap",
- "version": "2.26-1.el8",
- "source": {
- "id": 25,
- "name": "libcap",
- "version": "2.26-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c9b17ffd392ce2686593292b2eff046ff3de0eec8c02bc5fbcb8abd5bddbdcf5|key:199e2f91fd431d51"
- },
- "252": {
- "id": 252,
- "name": "kmod-libs",
- "version": "25-13.el8",
- "source": {
- "id": 251,
- "name": "kmod",
- "version": "25-13.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c60f519c2995c6712639dc0190b3d0e6f908d7c5549e6b8fae11d52201366512|key:199e2f91fd431d51"
- },
- "254": {
- "id": 254,
- "name": "dbus-tools",
- "version": "1:1.12.8-9.el8",
- "source": {
- "id": 63,
- "name": "dbus",
- "version": "1.12.8-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4584671a233f5080c14691aa76f6e0b9560b694c5470067e6db5dbafdd0202ce|key:199e2f91fd431d51"
- },
- "256": {
- "id": 256,
- "name": "gdbm",
- "version": "1:1.18-1.el8",
- "source": {
- "id": 237,
- "name": "gdbm",
- "version": "1.18-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:e40dad3953acd34fbe1ebee6a6cf6cd9133a3df23ed7b479651ac8c63103266a|key:199e2f91fd431d51"
- },
- "258": {
- "id": 258,
- "name": "shadow-utils",
- "version": "2:4.6-8.el8",
- "source": {
- "id": 257,
- "name": "shadow-utils",
- "version": "4.6-8.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2e2493450f19f7e243f95a69a3be2aff1e3e10f671fd49352e9d47ca836af14f|key:199e2f91fd431d51"
- },
- "259": {
- "id": 259,
- "name": "libpsl",
- "version": "0.20.2-5.el8",
- "source": {
- "id": 259,
- "name": "libpsl",
- "version": "0.20.2-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:298a4874ab3a54cf84105473b2aa6495c546fd8894bf027e97fb5ff6fa785309|key:199e2f91fd431d51"
- },
- "261": {
- "id": 261,
- "name": "gzip",
- "version": "1.9-9.el8",
- "source": {
- "id": 261,
- "name": "gzip",
- "version": "1.9-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0e9f546b5f174c7b8929ad7585fef1341fa70dd68e2e207b557839e0619f2e3e|key:199e2f91fd431d51"
- },
- "265": {
- "id": 265,
- "name": "nettle",
- "version": "3.4.1-1.el8",
- "source": {
- "id": 265,
- "name": "nettle",
- "version": "3.4.1-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:62d906ac3369cfc69bbd14d7ff9f1162c654b5538f5523014d2fb2e1fe11fc92|key:199e2f91fd431d51"
- },
- "267": {
- "id": 267,
- "name": "glib2",
- "version": "2.56.4-7.el8",
- "source": {
- "id": 267,
- "name": "glib2",
- "version": "2.56.4-7.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8b4e63f2b2e27dd133a78f2e4565257bba8e127956ecabcb760b6f7ea44409c9|key:199e2f91fd431d51"
- },
- "269": {
- "id": 269,
- "name": "librhsm",
- "version": "0.0.3-3.el8",
- "source": {
- "id": 269,
- "name": "librhsm",
- "version": "0.0.3-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4ea2bbda285f4ca172581be4b541edf7468a045f3af0028bf4c852e29b93b55f|key:199e2f91fd431d51"
- },
- "27": {
- "id": 27,
- "name": "popt",
- "version": "1.16-14.el8",
- "source": {
- "id": 27,
- "name": "popt",
- "version": "1.16-14.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c15cf3b83334e0de5385c316d54b273354bd1598d028b6e9bee040cc856e696c|key:199e2f91fd431d51"
- },
- "271": {
- "id": 271,
- "name": "gobject-introspection",
- "version": "1.56.1-1.el8",
- "source": {
- "id": 271,
- "name": "gobject-introspection",
- "version": "1.56.1-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:dd2aed0afc809536c4c86f63a9723dd9bbdbab386c52ea3955752c5e5fc3f012|key:199e2f91fd431d51"
- },
- "273": {
- "id": 273,
- "name": "libmetalink",
- "version": "0.1.3-7.el8",
- "source": {
- "id": 273,
- "name": "libmetalink",
- "version": "0.1.3-7.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:84bb002abb49cda7d86a93cee16483d4b0a11bb4956e0b877787208767aa560b|key:199e2f91fd431d51"
- },
- "275": {
- "id": 275,
- "name": "brotli",
- "version": "1.0.6-1.el8",
- "source": {
- "id": 275,
- "name": "brotli",
- "version": "1.0.6-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:299e5745148be6078b287a7e0066edb13b12342fc20a7f83983754d03bbf3b35|key:199e2f91fd431d51"
- },
- "278": {
- "id": 278,
- "name": "libnghttp2",
- "version": "1.33.0-1.el8_0.1",
- "source": {
- "id": 277,
- "name": "nghttp2",
- "version": "1.33.0-1.el8_0.1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8e12aa25a49f719627349bbed450782823c8373156832682f32c285948da9209|key:199e2f91fd431d51"
- },
- "280": {
- "id": 280,
- "name": "libpcap",
- "version": "14:1.9.0-3.el8",
- "source": {
- "id": 279,
- "name": "libpcap",
- "version": "1.9.0-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c7c267d1002a52b25207e12fde5895dc3d3b10dbe5f63d050df47c01359b95d3|key:199e2f91fd431d51"
- },
- "281": {
- "id": 281,
- "name": "libseccomp",
- "version": "2.4.1-1.el8",
- "source": {
- "id": 281,
- "name": "libseccomp",
- "version": "2.4.1-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f89699266855cf477d331e96edf5bf8962312a8c0a212f9f5b9561e868737ce1|key:199e2f91fd431d51"
- },
- "283": {
- "id": 283,
- "name": "gawk",
- "version": "4.2.1-1.el8",
- "source": {
- "id": 283,
- "name": "gawk",
- "version": "4.2.1-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:bf36ce575b2b401e1dba6b99df6d231e3a279a7e828bfeb6efa399020fe1206b|key:199e2f91fd431d51"
- },
- "286": {
- "id": 286,
- "name": "krb5-libs",
- "version": "1.17-9.el8",
- "source": {
- "id": 285,
- "name": "krb5",
- "version": "1.17-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f49fc9626254b356c31649c391951793328718ce83e48aa80df5a25f8810413e|key:199e2f91fd431d51"
- },
- "287": {
- "id": 287,
- "name": "libnsl2",
- "version": "1.2.0-2.20180605git4a062cf.el8",
- "source": {
- "id": 287,
- "name": "libnsl2",
- "version": "1.2.0-2.20180605git4a062cf.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:3640c163b71308136904a53df921d25f16059b42586c908cd930c428fc24dd66|key:199e2f91fd431d51"
- },
- "290": {
- "id": 290,
- "name": "platform-python-setuptools",
- "version": "39.2.0-5.el8",
- "source": {
- "id": 183,
- "name": "python-setuptools",
- "version": "39.2.0-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a15bd915f2212f652e341253c21cc0196b3477ea6c9320a781dfddcbca7505d5|key:199e2f91fd431d51"
- },
- "292": {
- "id": 292,
- "name": "python3-libs",
- "version": "3.6.8-15.1.el8",
- "source": {
- "id": 109,
- "name": "python3",
- "version": "3.6.8-15.1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ac9ef0ba5c471c2a82888a866cee6d56e005b59f2c2fdf58f2613dcca9737a3e|key:199e2f91fd431d51"
- },
- "293": {
- "id": 293,
- "name": "pam",
- "version": "1.3.1-4.el8",
- "source": {
- "id": 293,
- "name": "pam",
- "version": "1.3.1-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:811d8f40723806e9f9bd548d6f56a84f8dc31c4beceffb8e0fa55e63069ee124|key:199e2f91fd431d51"
- },
- "296": {
- "id": 296,
- "name": "python3-six",
- "version": "1.11.0-8.el8",
- "source": {
- "id": 295,
- "name": "python-six",
- "version": "1.11.0-8.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fbb30648f9aaf8c0fb05932e8247a73f01a549357cc27207cd895d77a7bcddd6|key:199e2f91fd431d51"
- },
- "298": {
- "id": 298,
- "name": "python3-iniparse",
- "version": "0.4-31.el8",
- "source": {
- "id": 297,
- "name": "python-iniparse",
- "version": "0.4-31.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c69681ddb5fafbbf476a201c4552e55be5f2a2220a35c02c76f2520c4fd28eab|key:199e2f91fd431d51"
- },
- "30": {
- "id": 30,
- "name": "sqlite-libs",
- "version": "3.26.0-3.el8",
- "source": {
- "id": 29,
- "name": "sqlite",
- "version": "3.26.0-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8598bb375e3cf3b8f4852e9867bd85b390ea42cf6a9751c85595a417e8f2a88f|key:199e2f91fd431d51"
- },
- "300": {
- "id": 300,
- "name": "python3-ethtool",
- "version": "0.14-3.el8",
- "source": {
- "id": 299,
- "name": "python-ethtool",
- "version": "0.14-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:671130e414764fad40332c3bbb356569a1edba40bbda7f5d5192715f2432ed37|key:199e2f91fd431d51"
- },
- "302": {
- "id": 302,
- "name": "python3-libxml2",
- "version": "2.9.7-5.el8",
- "source": {
- "id": 23,
- "name": "libxml2",
- "version": "2.9.7-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4d2c05db90d2a4db45913a6d985aaf667434905489cfabb7dbb943045c055f2d|key:199e2f91fd431d51"
- },
- "304": {
- "id": 304,
- "name": "python3-decorator",
- "version": "4.2.1-2.el8",
- "source": {
- "id": 303,
- "name": "python-decorator",
- "version": "4.2.1-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:189319947b606f3693be51ce879586f4802f70071fbf673199bf491482386710|key:199e2f91fd431d51"
- },
- "306": {
- "id": 306,
- "name": "python3-inotify",
- "version": "0.9.6-13.el8",
- "source": {
- "id": 305,
- "name": "python-inotify",
- "version": "0.9.6-13.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:692629e395599c95f80163c1ca0e0ae20e2082614f8748d47119fec7a0feba8c|key:199e2f91fd431d51"
- },
- "308": {
- "id": 308,
- "name": "cyrus-sasl-lib",
- "version": "2.1.27-1.el8",
- "source": {
- "id": 307,
- "name": "cyrus-sasl",
- "version": "2.1.27-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a1ef21df9bf1c96ca94890807bb56e9053400622f42790a8bea4213074c5e351|key:199e2f91fd431d51"
- },
- "309": {
- "id": 309,
- "name": "libuser",
- "version": "0.62-23.el8",
- "source": {
- "id": 309,
- "name": "libuser",
- "version": "0.62-23.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:53d4624a375e4e0c10d8d1bec08d37599341a7c016d08a9cab0c5168074aa93d|key:199e2f91fd431d51"
- },
- "31": {
- "id": 31,
- "name": "libffi",
- "version": "3.1-21.el8",
- "source": {
- "id": 31,
- "name": "libffi",
- "version": "3.1-21.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a9086bf47159fa7e69788cb7339e9a83f54057df0839029015515fe981abfb26|key:199e2f91fd431d51"
- },
- "311": {
- "id": 311,
- "name": "usermode",
- "version": "1.113-1.el8",
- "source": {
- "id": 311,
- "name": "usermode",
- "version": "1.113-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b67f0fb88295071ca2d2b518acd4e30e8746e92e12d71c4c38bbc525a7eabc66|key:199e2f91fd431d51"
- },
- "314": {
- "id": 314,
- "name": "libmodulemd1",
- "version": "1.8.11-4.el8_1",
- "source": {
- "id": 313,
- "name": "libmodulemd",
- "version": "2.5.0-4.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:128207b48034565422d77d894e95faf80ee11af44fc20a32eee9cd2a8750da81|key:199e2f91fd431d51"
- },
- "315": {
- "id": 315,
- "name": "gnupg2",
- "version": "2.2.9-1.el8",
- "source": {
- "id": 315,
- "name": "gnupg2",
- "version": "2.2.9-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:69775c9418850ec10311f9bdc96cdd2121c9026777aee2ce367025a3ec5f7f9c|key:199e2f91fd431d51"
- },
- "318": {
- "id": 318,
- "name": "python3-gpg",
- "version": "1.10.0-6.el8",
- "source": {
- "id": 135,
- "name": "gpgme",
- "version": "1.10.0-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:e031805e5c8830665abd3b0b46a815d34256eb8990324de9544c38c6ab222bd6|key:199e2f91fd431d51"
- },
- "319": {
- "id": 319,
- "name": "virt-what",
- "version": "1.18-6.el8",
- "source": {
- "id": 319,
- "name": "virt-what",
- "version": "1.18-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:1097e67edb1e5db660dd549e63d328028e2549850d85adf69a293fb821c7ac57|key:199e2f91fd431d51"
- },
- "328": {
- "id": 328,
- "name": "rpm-libs",
- "version": "4.14.2-25.el8",
- "source": {
- "id": 145,
- "name": "rpm",
- "version": "4.14.2-25.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:c0aeab800515d3e95605c4213c623baab5d30b0b9d3d427d2e1b64565a4c1a12|key:199e2f91fd431d51"
- },
- "332": {
- "id": 332,
- "name": "python3-hawkey",
- "version": "0.35.1-9.el8_1",
- "source": {
- "id": 149,
- "name": "libdnf",
- "version": "0.35.1-9.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:8f93c11007dc1b688f764010409489e9ca53d8c6e79f01dd2a92dd479dd2d9e1|key:199e2f91fd431d51"
- },
- "334": {
- "id": 334,
- "name": "dnf-data",
- "version": "4.2.7-7.el8_1",
- "source": {
- "id": 165,
- "name": "dnf",
- "version": "4.2.7-7.el8_1",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:eb9a5907000049f8d3a348c00dd346ec348fd90af666d7752c104b8e2e3dfb5d|key:199e2f91fd431d51"
- },
- "336": {
- "id": 336,
- "name": "dbus-daemon",
- "version": "1:1.12.8-9.el8",
- "source": {
- "id": 63,
- "name": "dbus",
- "version": "1.12.8-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:913ee8579adcddc90e5f34d9c179213f2d448b3a39ff8d4a4b253f9ec82970a3|key:199e2f91fd431d51"
- },
- "338": {
- "id": 338,
- "name": "device-mapper-libs",
- "version": "8:1.02.163-5.el8",
- "source": {
- "id": 155,
- "name": "lvm2",
- "version": "2.03.05-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:0b1fae6c3a50a694cfc59ff276c0176ffbaf4e837f3062c1cf86804baa44bd3c|key:199e2f91fd431d51"
- },
- "34": {
- "id": 34,
- "name": "libcom_err",
- "version": "1.44.6-3.el8",
- "source": {
- "id": 33,
- "name": "e2fsprogs",
- "version": "1.44.6-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a3204324049276f18a8835c36179c8c3015579f7f623c359a02f6da2ed53a843|key:199e2f91fd431d51"
- },
- "340": {
- "id": 340,
- "name": "elfutils-default-yama-scope",
- "version": "0.176-5.el8",
- "source": {
- "id": 159,
- "name": "elfutils",
- "version": "0.176-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:272fd44ad40c662d2b8dbb5cf0374d321cc9b47dc3b35cc2f5cf0285be15cc9d|key:199e2f91fd431d51"
- },
- "342": {
- "id": 342,
- "name": "systemd-pam",
- "version": "239-18.el8",
- "source": {
- "id": 161,
- "name": "systemd",
- "version": "239-18.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:79d454250256848b351f7be104e93388549830244137c2db6be781325419d076|key:199e2f91fd431d51"
- },
- "344": {
- "id": 344,
- "name": "dbus",
- "version": "1:1.12.8-9.el8",
- "source": {
- "id": 63,
- "name": "dbus",
- "version": "1.12.8-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fa127960f98c176c3e57432cbd96a74767f5fa803db325c0eacae18b47d52105|key:199e2f91fd431d51"
- },
- "346": {
- "id": 346,
- "name": "python3-rpm",
- "version": "4.14.2-25.el8",
- "source": {
- "id": 145,
- "name": "rpm",
- "version": "4.14.2-25.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:2fc6c3c2c03d5599ec7259fc9f92602cbb4cfe568ac6cc396d25a4684f4d4515|key:199e2f91fd431d51"
- },
- "35": {
- "id": 35,
- "name": "readline",
- "version": "7.0-10.el8",
- "source": {
- "id": 35,
- "name": "readline",
- "version": "7.0-10.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ce1ead18bc2a6ee85208c004447174464ccaba28be6797861a01a7378d51c2ca|key:199e2f91fd431d51"
- },
- "350": {
- "id": 350,
- "name": "dnf-plugin-subscription-manager",
- "version": "1.25.17-1.el8",
- "source": {
- "id": 125,
- "name": "subscription-manager",
- "version": "1.25.17-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:7d5579434f6a6196901987493538aaba4f7f3b6d89c121f8b78478d8fb8c3224|key:199e2f91fd431d51"
- },
- "354": {
- "id": 354,
- "name": "gdb-gdbserver",
- "version": "8.2-6.el8",
- "source": {
- "id": 353,
- "name": "gdb",
- "version": "8.2-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:10580a3a711c52e8446c5c14640a0a41d207c1ee78764189c5d4aaa667b1fc9d|key:199e2f91fd431d51"
- },
- "356": {
- "id": 356,
- "name": "vim-minimal",
- "version": "2:8.0.1763-13.el8",
- "source": {
- "id": 355,
- "name": "vim",
- "version": "8.0.1763-13.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4ecf508861fa4dde0d7cec79d4be38cf84af74bf6b7527dbb98f0c787c8d8251|key:199e2f91fd431d51"
- },
- "358": {
- "id": 358,
- "name": "langpacks-en",
- "version": "1.0-12.el8",
- "source": {
- "id": 357,
- "name": "langpacks",
- "version": "1.0-12.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ddc811aa1065fc607db7b97e0061d4d487a12fcf561be117e689da3a1eb8254a|key:199e2f91fd431d51"
- },
- "360": {
- "id": 360,
- "name": "gpg-pubkey",
- "version": "fd431d51-4ae0493b",
- "source": {
- "id": 179,
- "name": "",
- "version": "",
- "package_db": ""
- },
- "package_db": "var/lib/rpm"
- },
- "38": {
- "id": 38,
- "name": "libattr",
- "version": "2.4.48-3.el8",
- "source": {
- "id": 37,
- "name": "attr",
- "version": "2.4.48-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:35402bbd39b971aa768048b4432e9c53a7ed4c8ea9efc7fa1ed28b3778d68c21|key:199e2f91fd431d51"
- },
- "4": {
- "id": 4,
- "name": "python3-pip-wheel",
- "version": "9.0.3-15.el8",
- "source": {
- "id": 3,
- "name": "python-pip",
- "version": "9.0.3-15.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:26c0ad809d0310dd30dc444f561e72c7ad3ff5f26a73ce4851f0c9eb3ab9df6d|key:199e2f91fd431d51"
- },
- "40": {
- "id": 40,
- "name": "coreutils-single",
- "version": "8.30-6.el8",
- "source": {
- "id": 39,
- "name": "coreutils",
- "version": "8.30-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4490eae1bcbb6004b0d78a3b3e6d17144ddcffc3af3ad8e67c4db8ef5858fe42|key:199e2f91fd431d51"
- },
- "41": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:1481d800effe956142894b852bcbaae3e57153b7f2b5c7f027cb521b90f3e826|key:199e2f91fd431d51"
- },
- "42": {
- "id": 42,
- "name": "libmount",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:82092f379117272bf58072a9c5332e25fc519c43ad2e226e56f2c3f83c173dc8|key:199e2f91fd431d51"
- },
- "44": {
- "id": 44,
- "name": "libsmartcols",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a8c08177efaa590326158509f4d7bb696d93b34c287de58cdc03aefba512affc|key:199e2f91fd431d51"
- },
- "46": {
- "id": 46,
- "name": "lua-libs",
- "version": "5.3.4-11.el8",
- "source": {
- "id": 45,
- "name": "lua",
- "version": "5.3.4-11.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f23ea5d6426938735d49f6a655d7d37459f689602f2302281a0e5b7158a57de9|key:199e2f91fd431d51"
- },
- "47": {
- "id": 47,
- "name": "chkconfig",
- "version": "1.11-1.el8",
- "source": {
- "id": 47,
- "name": "chkconfig",
- "version": "1.11-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:5b6f06e120109411db279e55b9b683a1d375e370ab55a5220773387498e3e76f|key:199e2f91fd431d51"
- },
- "49": {
- "id": 49,
- "name": "libidn2",
- "version": "2.2.0-1.el8",
- "source": {
- "id": 49,
- "name": "libidn2",
- "version": "2.2.0-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:5b32fd7d01b5e944dbfcf1ea32418596bda5194abdaa5bfdfd6563965b97bec8|key:199e2f91fd431d51"
- },
- "5": {
- "id": 5,
- "name": "redhat-release",
- "version": "8.1-3.3.el8",
- "source": {
- "id": 5,
- "name": "redhat-release",
- "version": "8.1-3.3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:00bcd3b6ff629621b068741983f3c0bf4433b21e62ceac2921bd7840df2ba93b|key:199e2f91fd431d51"
- },
- "51": {
- "id": 51,
- "name": "libcap-ng",
- "version": "0.7.9-4.el8",
- "source": {
- "id": 51,
- "name": "libcap-ng",
- "version": "0.7.9-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:db5d7d4991c43580eb88b068f6965c8e9846b6446d1d819f02c4b2107b657d76|key:199e2f91fd431d51"
- },
- "54": {
- "id": 54,
- "name": "lz4-libs",
- "version": "1.8.1.2-4.el8",
- "source": {
- "id": 53,
- "name": "lz4",
- "version": "1.8.1.2-4.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:cee7e272fd44648939f274a6c7786fbb45fb3e3f4f3ca128f4405b97e15245a4|key:199e2f91fd431d51"
- },
- "56": {
- "id": 56,
- "name": "file-libs",
- "version": "5.33-8.el8",
- "source": {
- "id": 55,
- "name": "file",
- "version": "5.33-8.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:15ec846ead815e7d7740086dafda3d26199d7fbcb86378d97730b694d9b54a1f|key:199e2f91fd431d51"
- },
- "58": {
- "id": 58,
- "name": "keyutils-libs",
- "version": "1.5.10-6.el8",
- "source": {
- "id": 57,
- "name": "keyutils",
- "version": "1.5.10-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:bc1f9c9d41237396354caa77027615980e9770d904735f2416980b88104059e2|key:199e2f91fd431d51"
- },
- "59": {
- "id": 59,
- "name": "p11-kit",
- "version": "0.23.14-5.el8_0",
- "source": {
- "id": 59,
- "name": "p11-kit",
- "version": "0.23.14-5.el8_0",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:264af70c676581f89295b3fee27cc6b6bac23a0ad59ee69c2102dfdf37f72949|key:199e2f91fd431d51"
- },
- "60": {
- "id": 60,
- "name": "p11-kit-trust",
- "version": "0.23.14-5.el8_0",
- "source": {
- "id": 59,
- "name": "p11-kit",
- "version": "0.23.14-5.el8_0",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:6148acd89dc5bf0e258a260174ccbd11ed13b22df4dc3280aca052b653e155a5|key:199e2f91fd431d51"
- },
- "61": {
- "id": 61,
- "name": "grep",
- "version": "3.1-6.el8",
- "source": {
- "id": 61,
- "name": "grep",
- "version": "3.1-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:a2cc4ad40e76581401df286d3ff2101237038499dfc09181a41b1f4ef89fc670|key:199e2f91fd431d51"
- },
- "64": {
- "id": 64,
- "name": "dbus-libs",
- "version": "1:1.12.8-9.el8",
- "source": {
- "id": 63,
- "name": "dbus",
- "version": "1.12.8-9.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9302f05bd7b58bab9ff5da55e81d7d614c1bb5e31431f205a5464efde062b01a|key:199e2f91fd431d51"
- },
- "65": {
- "id": 65,
- "name": "ca-certificates",
- "version": "2018.2.24-6.el8",
- "source": {
- "id": 65,
- "name": "ca-certificates",
- "version": "2018.2.24-6.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:1ba8bd41689082ae4246136573fb119a34af81bddccac969805883e9b33e4947|key:199e2f91fd431d51"
- },
- "67": {
- "id": 67,
- "name": "libdb",
- "version": "5.3.28-37.el8",
- "source": {
- "id": 67,
- "name": "libdb",
- "version": "5.3.28-37.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:7275c034da9ebd8111805b7f90d286bae9f5eeac08d3ce3a318c3240fca8f1bb|key:199e2f91fd431d51"
- },
- "7": {
- "id": 7,
- "name": "filesystem",
- "version": "3.8-2.el8",
- "source": {
- "id": 7,
- "name": "filesystem",
- "version": "3.8-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:47b13c8562ff3ffa36c7db9dbf1bbf7543167b6ac7192b4a21bb7c1c92f20ac1|key:199e2f91fd431d51"
- },
- "70": {
- "id": 70,
- "name": "libdb-utils",
- "version": "5.3.28-37.el8",
- "source": {
- "id": 67,
- "name": "libdb",
- "version": "5.3.28-37.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:4cbdb512b6f04ef52aa96b09d7f0bf6cd95a0ee6e65d99cae869d3cae7d649d9|key:199e2f91fd431d51"
- },
- "71": {
- "id": 71,
- "name": "libarchive",
- "version": "3.3.2-7.el8",
- "source": {
- "id": 71,
- "name": "libarchive",
- "version": "3.3.2-7.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:02087ec7909d9fbb9adb7e86ab9378148d11b5678f509527cf59d11952e7008f|key:199e2f91fd431d51"
- },
- "73": {
- "id": 73,
- "name": "libusbx",
- "version": "1.0.22-1.el8",
- "source": {
- "id": 73,
- "name": "libusbx",
- "version": "1.0.22-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9bfc6b1d77c52808c12b2bffdcaeea8f062f1437cb2739dae44ca4937df7d049|key:199e2f91fd431d51"
- },
- "75": {
- "id": 75,
- "name": "libsemanage",
- "version": "2.9-1.el8",
- "source": {
- "id": 75,
- "name": "libsemanage",
- "version": "2.9-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:96e5701b3ba8d26823be6e2a8ee7dbebfb4a0040696d05ee269ea36ce04781b9|key:199e2f91fd431d51"
- },
- "77": {
- "id": 77,
- "name": "libutempter",
- "version": "1.1.6-14.el8",
- "source": {
- "id": 77,
- "name": "libutempter",
- "version": "1.1.6-14.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f9498c1d315ac36aea58eb90101a2a062ec3e9ec5211e58a7d76482589cc276d|key:199e2f91fd431d51"
- },
- "80": {
- "id": 80,
- "name": "libfdisk",
- "version": "2.32.1-17.el8",
- "source": {
- "id": 41,
- "name": "util-linux",
- "version": "2.32.1-17.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ea7c7550d4857c535fe07a72c5a95d8c368962d95a16e50fe09d10ba3ed1f24b|key:199e2f91fd431d51"
- },
- "81": {
- "id": 81,
- "name": "cracklib",
- "version": "2.9.6-15.el8",
- "source": {
- "id": 81,
- "name": "cracklib",
- "version": "2.9.6-15.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:3be2b1de701bddeec2491d70286afb4fb597dae7c415670ffe01f3795e0b0025|key:199e2f91fd431d51"
- },
- "83": {
- "id": 83,
- "name": "mpfr",
- "version": "3.1.6-1.el8",
- "source": {
- "id": 83,
- "name": "mpfr",
- "version": "3.1.6-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:01cb74dd21f53fc854a6cde798298e925dfd23f86bb5eced54e2cd100049df45|key:199e2f91fd431d51"
- },
- "85": {
- "id": 85,
- "name": "gnutls",
- "version": "3.6.8-8.el8",
- "source": {
- "id": 85,
- "name": "gnutls",
- "version": "3.6.8-8.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:20f33881ce1d0c462859c325b7a72b6c4c693f4c3ec336835e7cf2bfc29f815d|key:199e2f91fd431d51"
- },
- "87": {
- "id": 87,
- "name": "json-glib",
- "version": "1.4.4-1.el8",
- "source": {
- "id": 87,
- "name": "json-glib",
- "version": "1.4.4-1.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:9c20475151a67bf76e92a66410d1270d8eb4869ffe560527bb9bd2f5b66daab0|key:199e2f91fd431d51"
- },
- "89": {
- "id": 89,
- "name": "dbus-glib",
- "version": "0.110-2.el8",
- "source": {
- "id": 89,
- "name": "dbus-glib",
- "version": "0.110-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:ae9f5751b547512763117b9da0153ed2a40eec0013b50fd8a61bdcdba603bcff|key:199e2f91fd431d51"
- },
- "91": {
- "id": 91,
- "name": "libcomps",
- "version": "0.1.11-2.el8",
- "source": {
- "id": 91,
- "name": "libcomps",
- "version": "0.1.11-2.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:b2623ce6bd6597a967df77d21889b7aaa2c38d3dcf405899e5eac2ce98573129|key:199e2f91fd431d51"
- },
- "93": {
- "id": 93,
- "name": "libksba",
- "version": "1.3.5-7.el8",
- "source": {
- "id": 93,
- "name": "libksba",
- "version": "1.3.5-7.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:089dd584edc1bfd3b0b7581e5bc4fb80ed59ade46262e9eaeee15c6c6a3c9544|key:199e2f91fd431d51"
- },
- "96": {
- "id": 96,
- "name": "dmidecode",
- "version": "1:3.2-3.el8",
- "source": {
- "id": 95,
- "name": "dmidecode",
- "version": "3.2-3.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:f61d0bebd557b0f04eb198b8334660f0c59222a81f8ac61b2246f065ce981369|key:199e2f91fd431d51"
- },
- "97": {
- "id": 97,
- "name": "libnl3",
- "version": "3.4.0-5.el8",
- "source": {
- "id": 97,
- "name": "libnl3",
- "version": "3.4.0-5.el8",
- "package_db": ""
- },
- "package_db": "var/lib/rpm",
- "repository_hint": "hash:sha256:fc5c231acd99645b19dba4596f3f52bb65f1f3b6119252fb396027cd5cee29ab|key:199e2f91fd431d51"
- }
- },
- "distributions": {
- "1": {
- "id": 1,
- "did": "rhel",
- "name": "Red Hat Enterprise Linux",
- "version": "8.1 (Ootpa)",
- "version_code_name": "",
- "version_id": "8.1",
- "arch": "",
- "cpe": "cpe:/o:redhat:enterprise_linux:8.1:GA",
- "pretty_name": "Red Hat Enterprise Linux 8.1 (Ootpa)"
- }
- },
- "repository": {},
- "distribution_by_package": {
- "1": 1,
- "10": 1,
- "100": 1,
- "101": 1,
- "103": 1,
- "105": 1,
- "108": 1,
- "11": 1,
- "110": 1,
- "111": 1,
- "116": 1,
- "118": 1,
- "120": 1,
- "122": 1,
- "124": 1,
- "125": 1,
- "126": 1,
- "127": 1,
- "129": 1,
- "131": 1,
- "133": 1,
- "135": 1,
- "137": 1,
- "139": 1,
- "14": 1,
- "140": 1,
- "141": 1,
- "142": 1,
- "143": 1,
- "144": 1,
- "145": 1,
- "147": 1,
- "149": 1,
- "15": 1,
- "150": 1,
- "152": 1,
- "154": 1,
- "156": 1,
- "158": 1,
- "16": 1,
- "160": 1,
- "161": 1,
- "164": 1,
- "165": 1,
- "166": 1,
- "168": 1,
- "17": 1,
- "170": 1,
- "172": 1,
- "174": 1,
- "176": 1,
- "177": 1,
- "180": 1,
- "182": 1,
- "184": 1,
- "186": 1,
- "187": 1,
- "189": 1,
- "19": 1,
- "192": 1,
- "193": 1,
- "196": 1,
- "199": 1,
- "202": 1,
- "203": 1,
- "206": 1,
- "207": 1,
- "210": 1,
- "211": 1,
- "213": 1,
- "216": 1,
- "218": 1,
- "219": 1,
- "22": 1,
- "220": 1,
- "222": 1,
- "223": 1,
- "226": 1,
- "229": 1,
- "23": 1,
- "231": 1,
- "234": 1,
- "235": 1,
- "238": 1,
- "239": 1,
- "241": 1,
- "244": 1,
- "245": 1,
- "248": 1,
- "249": 1,
- "25": 1,
- "252": 1,
- "254": 1,
- "256": 1,
- "258": 1,
- "259": 1,
- "261": 1,
- "265": 1,
- "267": 1,
- "269": 1,
- "27": 1,
- "271": 1,
- "273": 1,
- "275": 1,
- "278": 1,
- "280": 1,
- "281": 1,
- "283": 1,
- "286": 1,
- "287": 1,
- "290": 1,
- "292": 1,
- "293": 1,
- "296": 1,
- "298": 1,
- "30": 1,
- "300": 1,
- "302": 1,
- "304": 1,
- "306": 1,
- "308": 1,
- "309": 1,
- "31": 1,
- "311": 1,
- "314": 1,
- "315": 1,
- "318": 1,
- "319": 1,
- "328": 1,
- "332": 1,
- "334": 1,
- "336": 1,
- "338": 1,
- "34": 1,
- "340": 1,
- "342": 1,
- "344": 1,
- "346": 1,
- "35": 1,
- "350": 1,
- "354": 1,
- "356": 1,
- "358": 1,
- "360": 1,
- "38": 1,
- "4": 1,
- "40": 1,
- "41": 1,
- "42": 1,
- "44": 1,
- "46": 1,
- "47": 1,
- "49": 1,
- "5": 1,
- "51": 1,
- "54": 1,
- "56": 1,
- "58": 1,
- "59": 1,
- "60": 1,
- "61": 1,
- "64": 1,
- "65": 1,
- "67": 1,
- "7": 1,
- "70": 1,
- "71": 1,
- "73": 1,
- "75": 1,
- "77": 1,
- "80": 1,
- "81": 1,
- "83": 1,
- "85": 1,
- "87": 1,
- "89": 1,
- "91": 1,
- "93": 1,
- "96": 1,
- "97": 1
- },
- "repository_by_package": {},
- "package_introduced": {
- "1": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "10": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "100": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "101": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "103": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "105": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "108": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "11": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "110": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "111": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "116": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "118": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "120": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "122": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "124": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "125": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "126": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "127": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "129": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "131": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "133": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "135": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "137": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "139": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "14": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "140": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "141": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "142": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "143": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "144": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "145": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "147": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "149": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "15": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "150": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "152": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "154": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "156": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "158": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "16": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "160": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "161": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "164": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "165": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "166": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "168": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "17": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "170": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "172": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "174": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "176": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "177": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "180": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "182": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "184": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "186": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "187": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "189": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "19": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "192": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "193": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "196": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "199": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "202": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "203": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "206": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "207": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "210": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "211": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "213": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "216": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "218": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "219": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "22": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "220": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "222": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "223": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "226": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "229": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "23": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "231": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "234": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "235": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "238": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "239": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "241": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "244": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "245": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "248": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "249": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "25": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "252": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "254": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "256": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "258": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "259": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "261": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "265": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "267": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "269": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "27": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "271": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "273": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "275": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "278": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "280": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "281": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "283": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "286": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "287": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "290": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "292": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "293": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "296": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "298": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "30": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "300": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "302": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "304": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "306": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "308": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "309": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "31": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "311": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "314": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "315": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "318": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "319": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "328": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "332": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "334": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "336": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "338": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "34": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "340": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "342": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "344": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "346": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "35": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "350": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "354": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "356": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "358": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "360": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "38": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "4": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "40": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "41": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "42": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "44": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "46": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "47": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "49": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "5": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "51": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "54": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "56": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "58": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "59": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "60": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "61": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "64": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "65": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "67": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "7": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "70": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "71": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "73": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "75": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "77": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "80": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "81": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "83": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "85": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "87": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "89": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "91": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "93": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "96": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2",
- "97": "340ff6d7f58c908c438ce89bb845caee3649de828a81569317ed0fe169a97de2"
- },
- "success": true,
- "err": ""
-}
diff --git a/debian/matcher_integration_test.go b/test/debian/matcher_integration_test.go
similarity index 93%
rename from debian/matcher_integration_test.go
rename to test/debian/matcher_integration_test.go
index 3c76056d1..3dadcc0e2 100644
--- a/debian/matcher_integration_test.go
+++ b/test/debian/matcher_integration_test.go
@@ -16,6 +16,7 @@ import (
"github.com/quay/claircore"
"github.com/quay/claircore/datastore/postgres"
+ "github.com/quay/claircore/debian"
"github.com/quay/claircore/internal/matcher"
"github.com/quay/claircore/libvuln/driver"
"github.com/quay/claircore/libvuln/updates"
@@ -51,7 +52,7 @@ func TestMatcherIntegration(t *testing.T) {
fmt.Fprintln(w, `Version: 10.12`)
fmt.Fprintln(w, `Codename: buster`)
case `/`:
- tgt, err := url.Parse(defaultJSON)
+ tgt, err := url.Parse(debian.DefaultJSON)
if err != nil {
t.Error(err)
w.WriteHeader(http.StatusInternalServerError)
@@ -62,7 +63,7 @@ func TestMatcherIntegration(t *testing.T) {
case `/debian/dists/buster/main/source/Sources.gz`,
`/debian/dists/buster/contrib/source/Sources.gz`,
`/debian/dists/buster/non-free/source/Sources.gz`:
- tgt, err := url.Parse(defaultMirror)
+ tgt, err := url.Parse(debian.DefaultMirror)
if err != nil {
t.Error(err)
w.WriteHeader(http.StatusInternalServerError)
@@ -83,14 +84,14 @@ func TestMatcherIntegration(t *testing.T) {
}))
defer srv.Close()
- m := &Matcher{}
+ m := &debian.Matcher{}
locks, err := ctxlock.New(ctx, pool)
if err != nil {
t.Error(err)
}
defer locks.Close(ctx)
- fac, err := NewFactory(ctx)
+ fac, err := debian.NewFactory(ctx)
if err != nil {
t.Fatal(err)
}
@@ -99,7 +100,7 @@ func TestMatcherIntegration(t *testing.T) {
}
cfg := map[string]driver.ConfigUnmarshaler{
"debian": func(v interface{}) error {
- cfg := v.(*FactoryConfig)
+ cfg := v.(*debian.FactoryConfig)
cfg.MirrorURL = srv.URL
cfg.JSONURL = srv.URL
return nil
diff --git a/debian/testdata/indexreport-buster-jackson-databind.json b/test/debian/testdata/indexreport-buster-jackson-databind.json
similarity index 100%
rename from debian/testdata/indexreport-buster-jackson-databind.json
rename to test/debian/testdata/indexreport-buster-jackson-databind.json
diff --git a/test/mock/datastore/mocks.go b/test/mock/datastore/mocks.go
index ec074afcc..6ca3ad5e3 100644
--- a/test/mock/datastore/mocks.go
+++ b/test/mock/datastore/mocks.go
@@ -25,6 +25,7 @@ import (
type MockEnrichment struct {
ctrl *gomock.Controller
recorder *MockEnrichmentMockRecorder
+ isgomock struct{}
}
// MockEnrichmentMockRecorder is the mock recorder for MockEnrichment.
@@ -45,24 +46,25 @@ func (m *MockEnrichment) EXPECT() *MockEnrichmentMockRecorder {
}
// GetEnrichment mocks base method.
-func (m *MockEnrichment) GetEnrichment(arg0 context.Context, arg1 string, arg2 []string) ([]driver.EnrichmentRecord, error) {
+func (m *MockEnrichment) GetEnrichment(ctx context.Context, kind string, tags []string) ([]driver.EnrichmentRecord, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetEnrichment", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "GetEnrichment", ctx, kind, tags)
ret0, _ := ret[0].([]driver.EnrichmentRecord)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetEnrichment indicates an expected call of GetEnrichment.
-func (mr *MockEnrichmentMockRecorder) GetEnrichment(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockEnrichmentMockRecorder) GetEnrichment(ctx, kind, tags any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEnrichment", reflect.TypeOf((*MockEnrichment)(nil).GetEnrichment), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEnrichment", reflect.TypeOf((*MockEnrichment)(nil).GetEnrichment), ctx, kind, tags)
}
// MockEnrichmentUpdater is a mock of EnrichmentUpdater interface.
type MockEnrichmentUpdater struct {
ctrl *gomock.Controller
recorder *MockEnrichmentUpdaterMockRecorder
+ isgomock struct{}
}
// MockEnrichmentUpdaterMockRecorder is the mock recorder for MockEnrichmentUpdater.
@@ -83,39 +85,40 @@ func (m *MockEnrichmentUpdater) EXPECT() *MockEnrichmentUpdaterMockRecorder {
}
// UpdateEnrichments mocks base method.
-func (m *MockEnrichmentUpdater) UpdateEnrichments(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []driver.EnrichmentRecord) (uuid.UUID, error) {
+func (m *MockEnrichmentUpdater) UpdateEnrichments(ctx context.Context, kind string, fingerprint driver.Fingerprint, enrichments []driver.EnrichmentRecord) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichments", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichments", ctx, kind, fingerprint, enrichments)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichments indicates an expected call of UpdateEnrichments.
-func (mr *MockEnrichmentUpdaterMockRecorder) UpdateEnrichments(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockEnrichmentUpdaterMockRecorder) UpdateEnrichments(ctx, kind, fingerprint, enrichments any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockEnrichmentUpdater)(nil).UpdateEnrichments), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockEnrichmentUpdater)(nil).UpdateEnrichments), ctx, kind, fingerprint, enrichments)
}
// UpdateEnrichmentsIter mocks base method.
-func (m *MockEnrichmentUpdater) UpdateEnrichmentsIter(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 datastore.EnrichmentIter) (uuid.UUID, error) {
+func (m *MockEnrichmentUpdater) UpdateEnrichmentsIter(ctx context.Context, kind string, fingerprint driver.Fingerprint, enIter datastore.EnrichmentIter) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", ctx, kind, fingerprint, enIter)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichmentsIter indicates an expected call of UpdateEnrichmentsIter.
-func (mr *MockEnrichmentUpdaterMockRecorder) UpdateEnrichmentsIter(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockEnrichmentUpdaterMockRecorder) UpdateEnrichmentsIter(ctx, kind, fingerprint, enIter any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockEnrichmentUpdater)(nil).UpdateEnrichmentsIter), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockEnrichmentUpdater)(nil).UpdateEnrichmentsIter), ctx, kind, fingerprint, enIter)
}
// MockMatcherStore is a mock of MatcherStore interface.
type MockMatcherStore struct {
ctrl *gomock.Controller
recorder *MockMatcherStoreMockRecorder
+ isgomock struct{}
}
// MockMatcherStoreMockRecorder is the mock recorder for MockMatcherStore.
@@ -156,63 +159,63 @@ func (mr *MockMatcherStoreMockRecorder) DeleteUpdateOperations(arg0 any, arg1 ..
}
// DeltaUpdateVulnerabilities mocks base method.
-func (m *MockMatcherStore) DeltaUpdateVulnerabilities(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []*claircore.Vulnerability, arg4 []string) (uuid.UUID, error) {
+func (m *MockMatcherStore) DeltaUpdateVulnerabilities(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulns []*claircore.Vulnerability, deletedVulns []string) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "DeltaUpdateVulnerabilities", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "DeltaUpdateVulnerabilities", ctx, updater, fingerprint, vulns, deletedVulns)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeltaUpdateVulnerabilities indicates an expected call of DeltaUpdateVulnerabilities.
-func (mr *MockMatcherStoreMockRecorder) DeltaUpdateVulnerabilities(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) DeltaUpdateVulnerabilities(ctx, updater, fingerprint, vulns, deletedVulns any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeltaUpdateVulnerabilities", reflect.TypeOf((*MockMatcherStore)(nil).DeltaUpdateVulnerabilities), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeltaUpdateVulnerabilities", reflect.TypeOf((*MockMatcherStore)(nil).DeltaUpdateVulnerabilities), ctx, updater, fingerprint, vulns, deletedVulns)
}
// GC mocks base method.
-func (m *MockMatcherStore) GC(arg0 context.Context, arg1 int) (int64, error) {
+func (m *MockMatcherStore) GC(ctx context.Context, keep int) (int64, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GC", arg0, arg1)
+ ret := m.ctrl.Call(m, "GC", ctx, keep)
ret0, _ := ret[0].(int64)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GC indicates an expected call of GC.
-func (mr *MockMatcherStoreMockRecorder) GC(arg0, arg1 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) GC(ctx, keep any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GC", reflect.TypeOf((*MockMatcherStore)(nil).GC), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GC", reflect.TypeOf((*MockMatcherStore)(nil).GC), ctx, keep)
}
// Get mocks base method.
-func (m *MockMatcherStore) Get(arg0 context.Context, arg1 []*claircore.IndexRecord, arg2 datastore.GetOpts) (map[string][]*claircore.Vulnerability, error) {
+func (m *MockMatcherStore) Get(ctx context.Context, records []*claircore.IndexRecord, opts datastore.GetOpts) (map[string][]*claircore.Vulnerability, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Get", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "Get", ctx, records, opts)
ret0, _ := ret[0].(map[string][]*claircore.Vulnerability)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Get indicates an expected call of Get.
-func (mr *MockMatcherStoreMockRecorder) Get(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) Get(ctx, records, opts any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockMatcherStore)(nil).Get), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockMatcherStore)(nil).Get), ctx, records, opts)
}
// GetEnrichment mocks base method.
-func (m *MockMatcherStore) GetEnrichment(arg0 context.Context, arg1 string, arg2 []string) ([]driver.EnrichmentRecord, error) {
+func (m *MockMatcherStore) GetEnrichment(ctx context.Context, kind string, tags []string) ([]driver.EnrichmentRecord, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetEnrichment", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "GetEnrichment", ctx, kind, tags)
ret0, _ := ret[0].([]driver.EnrichmentRecord)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetEnrichment indicates an expected call of GetEnrichment.
-func (mr *MockMatcherStoreMockRecorder) GetEnrichment(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) GetEnrichment(ctx, kind, tags any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEnrichment", reflect.TypeOf((*MockMatcherStore)(nil).GetEnrichment), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEnrichment", reflect.TypeOf((*MockMatcherStore)(nil).GetEnrichment), ctx, kind, tags)
}
// GetLatestUpdateRef mocks base method.
@@ -246,18 +249,18 @@ func (mr *MockMatcherStoreMockRecorder) GetLatestUpdateRefs(arg0, arg1 any) *gom
}
// GetUpdateDiff mocks base method.
-func (m *MockMatcherStore) GetUpdateDiff(arg0 context.Context, arg1, arg2 uuid.UUID) (*driver.UpdateDiff, error) {
+func (m *MockMatcherStore) GetUpdateDiff(ctx context.Context, prev, cur uuid.UUID) (*driver.UpdateDiff, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetUpdateDiff", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "GetUpdateDiff", ctx, prev, cur)
ret0, _ := ret[0].(*driver.UpdateDiff)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetUpdateDiff indicates an expected call of GetUpdateDiff.
-func (mr *MockMatcherStoreMockRecorder) GetUpdateDiff(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) GetUpdateDiff(ctx, prev, cur any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUpdateDiff", reflect.TypeOf((*MockMatcherStore)(nil).GetUpdateDiff), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUpdateDiff", reflect.TypeOf((*MockMatcherStore)(nil).GetUpdateDiff), ctx, prev, cur)
}
// GetUpdateOperations mocks base method.
@@ -296,97 +299,98 @@ func (mr *MockMatcherStoreMockRecorder) Initialized(arg0 any) *gomock.Call {
}
// RecordUpdaterSetStatus mocks base method.
-func (m *MockMatcherStore) RecordUpdaterSetStatus(arg0 context.Context, arg1 string, arg2 time.Time) error {
+func (m *MockMatcherStore) RecordUpdaterSetStatus(ctx context.Context, updaterSet string, updateTime time.Time) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RecordUpdaterSetStatus", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "RecordUpdaterSetStatus", ctx, updaterSet, updateTime)
ret0, _ := ret[0].(error)
return ret0
}
// RecordUpdaterSetStatus indicates an expected call of RecordUpdaterSetStatus.
-func (mr *MockMatcherStoreMockRecorder) RecordUpdaterSetStatus(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) RecordUpdaterSetStatus(ctx, updaterSet, updateTime any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterSetStatus", reflect.TypeOf((*MockMatcherStore)(nil).RecordUpdaterSetStatus), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterSetStatus", reflect.TypeOf((*MockMatcherStore)(nil).RecordUpdaterSetStatus), ctx, updaterSet, updateTime)
}
// RecordUpdaterStatus mocks base method.
-func (m *MockMatcherStore) RecordUpdaterStatus(arg0 context.Context, arg1 string, arg2 time.Time, arg3 driver.Fingerprint, arg4 error) error {
+func (m *MockMatcherStore) RecordUpdaterStatus(ctx context.Context, updaterName string, updateTime time.Time, fingerprint driver.Fingerprint, updaterError error) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RecordUpdaterStatus", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "RecordUpdaterStatus", ctx, updaterName, updateTime, fingerprint, updaterError)
ret0, _ := ret[0].(error)
return ret0
}
// RecordUpdaterStatus indicates an expected call of RecordUpdaterStatus.
-func (mr *MockMatcherStoreMockRecorder) RecordUpdaterStatus(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) RecordUpdaterStatus(ctx, updaterName, updateTime, fingerprint, updaterError any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterStatus", reflect.TypeOf((*MockMatcherStore)(nil).RecordUpdaterStatus), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterStatus", reflect.TypeOf((*MockMatcherStore)(nil).RecordUpdaterStatus), ctx, updaterName, updateTime, fingerprint, updaterError)
}
// UpdateEnrichments mocks base method.
-func (m *MockMatcherStore) UpdateEnrichments(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []driver.EnrichmentRecord) (uuid.UUID, error) {
+func (m *MockMatcherStore) UpdateEnrichments(ctx context.Context, kind string, fingerprint driver.Fingerprint, enrichments []driver.EnrichmentRecord) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichments", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichments", ctx, kind, fingerprint, enrichments)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichments indicates an expected call of UpdateEnrichments.
-func (mr *MockMatcherStoreMockRecorder) UpdateEnrichments(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) UpdateEnrichments(ctx, kind, fingerprint, enrichments any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockMatcherStore)(nil).UpdateEnrichments), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockMatcherStore)(nil).UpdateEnrichments), ctx, kind, fingerprint, enrichments)
}
// UpdateEnrichmentsIter mocks base method.
-func (m *MockMatcherStore) UpdateEnrichmentsIter(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 datastore.EnrichmentIter) (uuid.UUID, error) {
+func (m *MockMatcherStore) UpdateEnrichmentsIter(ctx context.Context, kind string, fingerprint driver.Fingerprint, enIter datastore.EnrichmentIter) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", ctx, kind, fingerprint, enIter)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichmentsIter indicates an expected call of UpdateEnrichmentsIter.
-func (mr *MockMatcherStoreMockRecorder) UpdateEnrichmentsIter(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) UpdateEnrichmentsIter(ctx, kind, fingerprint, enIter any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockMatcherStore)(nil).UpdateEnrichmentsIter), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockMatcherStore)(nil).UpdateEnrichmentsIter), ctx, kind, fingerprint, enIter)
}
// UpdateVulnerabilities mocks base method.
-func (m *MockMatcherStore) UpdateVulnerabilities(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []*claircore.Vulnerability) (uuid.UUID, error) {
+func (m *MockMatcherStore) UpdateVulnerabilities(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulns []*claircore.Vulnerability) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateVulnerabilities", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateVulnerabilities", ctx, updater, fingerprint, vulns)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateVulnerabilities indicates an expected call of UpdateVulnerabilities.
-func (mr *MockMatcherStoreMockRecorder) UpdateVulnerabilities(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) UpdateVulnerabilities(ctx, updater, fingerprint, vulns any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockMatcherStore)(nil).UpdateVulnerabilities), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockMatcherStore)(nil).UpdateVulnerabilities), ctx, updater, fingerprint, vulns)
}
// UpdateVulnerabilitiesIter mocks base method.
-func (m *MockMatcherStore) UpdateVulnerabilitiesIter(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 datastore.VulnerabilityIter) (uuid.UUID, error) {
+func (m *MockMatcherStore) UpdateVulnerabilitiesIter(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulnIter datastore.VulnerabilityIter) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateVulnerabilitiesIter", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateVulnerabilitiesIter", ctx, updater, fingerprint, vulnIter)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateVulnerabilitiesIter indicates an expected call of UpdateVulnerabilitiesIter.
-func (mr *MockMatcherStoreMockRecorder) UpdateVulnerabilitiesIter(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockMatcherStoreMockRecorder) UpdateVulnerabilitiesIter(ctx, updater, fingerprint, vulnIter any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilitiesIter", reflect.TypeOf((*MockMatcherStore)(nil).UpdateVulnerabilitiesIter), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilitiesIter", reflect.TypeOf((*MockMatcherStore)(nil).UpdateVulnerabilitiesIter), ctx, updater, fingerprint, vulnIter)
}
// MockUpdater is a mock of Updater interface.
type MockUpdater struct {
ctrl *gomock.Controller
recorder *MockUpdaterMockRecorder
+ isgomock struct{}
}
// MockUpdaterMockRecorder is the mock recorder for MockUpdater.
@@ -427,33 +431,33 @@ func (mr *MockUpdaterMockRecorder) DeleteUpdateOperations(arg0 any, arg1 ...any)
}
// DeltaUpdateVulnerabilities mocks base method.
-func (m *MockUpdater) DeltaUpdateVulnerabilities(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []*claircore.Vulnerability, arg4 []string) (uuid.UUID, error) {
+func (m *MockUpdater) DeltaUpdateVulnerabilities(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulns []*claircore.Vulnerability, deletedVulns []string) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "DeltaUpdateVulnerabilities", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "DeltaUpdateVulnerabilities", ctx, updater, fingerprint, vulns, deletedVulns)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeltaUpdateVulnerabilities indicates an expected call of DeltaUpdateVulnerabilities.
-func (mr *MockUpdaterMockRecorder) DeltaUpdateVulnerabilities(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) DeltaUpdateVulnerabilities(ctx, updater, fingerprint, vulns, deletedVulns any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeltaUpdateVulnerabilities", reflect.TypeOf((*MockUpdater)(nil).DeltaUpdateVulnerabilities), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeltaUpdateVulnerabilities", reflect.TypeOf((*MockUpdater)(nil).DeltaUpdateVulnerabilities), ctx, updater, fingerprint, vulns, deletedVulns)
}
// GC mocks base method.
-func (m *MockUpdater) GC(arg0 context.Context, arg1 int) (int64, error) {
+func (m *MockUpdater) GC(ctx context.Context, keep int) (int64, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GC", arg0, arg1)
+ ret := m.ctrl.Call(m, "GC", ctx, keep)
ret0, _ := ret[0].(int64)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GC indicates an expected call of GC.
-func (mr *MockUpdaterMockRecorder) GC(arg0, arg1 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) GC(ctx, keep any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GC", reflect.TypeOf((*MockUpdater)(nil).GC), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GC", reflect.TypeOf((*MockUpdater)(nil).GC), ctx, keep)
}
// GetLatestUpdateRef mocks base method.
@@ -487,18 +491,18 @@ func (mr *MockUpdaterMockRecorder) GetLatestUpdateRefs(arg0, arg1 any) *gomock.C
}
// GetUpdateDiff mocks base method.
-func (m *MockUpdater) GetUpdateDiff(arg0 context.Context, arg1, arg2 uuid.UUID) (*driver.UpdateDiff, error) {
+func (m *MockUpdater) GetUpdateDiff(ctx context.Context, prev, cur uuid.UUID) (*driver.UpdateDiff, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetUpdateDiff", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "GetUpdateDiff", ctx, prev, cur)
ret0, _ := ret[0].(*driver.UpdateDiff)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetUpdateDiff indicates an expected call of GetUpdateDiff.
-func (mr *MockUpdaterMockRecorder) GetUpdateDiff(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) GetUpdateDiff(ctx, prev, cur any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUpdateDiff", reflect.TypeOf((*MockUpdater)(nil).GetUpdateDiff), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetUpdateDiff", reflect.TypeOf((*MockUpdater)(nil).GetUpdateDiff), ctx, prev, cur)
}
// GetUpdateOperations mocks base method.
@@ -537,97 +541,98 @@ func (mr *MockUpdaterMockRecorder) Initialized(arg0 any) *gomock.Call {
}
// RecordUpdaterSetStatus mocks base method.
-func (m *MockUpdater) RecordUpdaterSetStatus(arg0 context.Context, arg1 string, arg2 time.Time) error {
+func (m *MockUpdater) RecordUpdaterSetStatus(ctx context.Context, updaterSet string, updateTime time.Time) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RecordUpdaterSetStatus", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "RecordUpdaterSetStatus", ctx, updaterSet, updateTime)
ret0, _ := ret[0].(error)
return ret0
}
// RecordUpdaterSetStatus indicates an expected call of RecordUpdaterSetStatus.
-func (mr *MockUpdaterMockRecorder) RecordUpdaterSetStatus(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) RecordUpdaterSetStatus(ctx, updaterSet, updateTime any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterSetStatus", reflect.TypeOf((*MockUpdater)(nil).RecordUpdaterSetStatus), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterSetStatus", reflect.TypeOf((*MockUpdater)(nil).RecordUpdaterSetStatus), ctx, updaterSet, updateTime)
}
// RecordUpdaterStatus mocks base method.
-func (m *MockUpdater) RecordUpdaterStatus(arg0 context.Context, arg1 string, arg2 time.Time, arg3 driver.Fingerprint, arg4 error) error {
+func (m *MockUpdater) RecordUpdaterStatus(ctx context.Context, updaterName string, updateTime time.Time, fingerprint driver.Fingerprint, updaterError error) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RecordUpdaterStatus", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "RecordUpdaterStatus", ctx, updaterName, updateTime, fingerprint, updaterError)
ret0, _ := ret[0].(error)
return ret0
}
// RecordUpdaterStatus indicates an expected call of RecordUpdaterStatus.
-func (mr *MockUpdaterMockRecorder) RecordUpdaterStatus(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) RecordUpdaterStatus(ctx, updaterName, updateTime, fingerprint, updaterError any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterStatus", reflect.TypeOf((*MockUpdater)(nil).RecordUpdaterStatus), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RecordUpdaterStatus", reflect.TypeOf((*MockUpdater)(nil).RecordUpdaterStatus), ctx, updaterName, updateTime, fingerprint, updaterError)
}
// UpdateEnrichments mocks base method.
-func (m *MockUpdater) UpdateEnrichments(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []driver.EnrichmentRecord) (uuid.UUID, error) {
+func (m *MockUpdater) UpdateEnrichments(ctx context.Context, kind string, fingerprint driver.Fingerprint, enrichments []driver.EnrichmentRecord) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichments", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichments", ctx, kind, fingerprint, enrichments)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichments indicates an expected call of UpdateEnrichments.
-func (mr *MockUpdaterMockRecorder) UpdateEnrichments(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) UpdateEnrichments(ctx, kind, fingerprint, enrichments any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockUpdater)(nil).UpdateEnrichments), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockUpdater)(nil).UpdateEnrichments), ctx, kind, fingerprint, enrichments)
}
// UpdateEnrichmentsIter mocks base method.
-func (m *MockUpdater) UpdateEnrichmentsIter(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 datastore.EnrichmentIter) (uuid.UUID, error) {
+func (m *MockUpdater) UpdateEnrichmentsIter(ctx context.Context, kind string, fingerprint driver.Fingerprint, enIter datastore.EnrichmentIter) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateEnrichmentsIter", ctx, kind, fingerprint, enIter)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateEnrichmentsIter indicates an expected call of UpdateEnrichmentsIter.
-func (mr *MockUpdaterMockRecorder) UpdateEnrichmentsIter(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) UpdateEnrichmentsIter(ctx, kind, fingerprint, enIter any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockUpdater)(nil).UpdateEnrichmentsIter), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichmentsIter", reflect.TypeOf((*MockUpdater)(nil).UpdateEnrichmentsIter), ctx, kind, fingerprint, enIter)
}
// UpdateVulnerabilities mocks base method.
-func (m *MockUpdater) UpdateVulnerabilities(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 []*claircore.Vulnerability) (uuid.UUID, error) {
+func (m *MockUpdater) UpdateVulnerabilities(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulns []*claircore.Vulnerability) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateVulnerabilities", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateVulnerabilities", ctx, updater, fingerprint, vulns)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateVulnerabilities indicates an expected call of UpdateVulnerabilities.
-func (mr *MockUpdaterMockRecorder) UpdateVulnerabilities(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) UpdateVulnerabilities(ctx, updater, fingerprint, vulns any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockUpdater)(nil).UpdateVulnerabilities), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockUpdater)(nil).UpdateVulnerabilities), ctx, updater, fingerprint, vulns)
}
// UpdateVulnerabilitiesIter mocks base method.
-func (m *MockUpdater) UpdateVulnerabilitiesIter(arg0 context.Context, arg1 string, arg2 driver.Fingerprint, arg3 datastore.VulnerabilityIter) (uuid.UUID, error) {
+func (m *MockUpdater) UpdateVulnerabilitiesIter(ctx context.Context, updater string, fingerprint driver.Fingerprint, vulnIter datastore.VulnerabilityIter) (uuid.UUID, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateVulnerabilitiesIter", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "UpdateVulnerabilitiesIter", ctx, updater, fingerprint, vulnIter)
ret0, _ := ret[0].(uuid.UUID)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateVulnerabilitiesIter indicates an expected call of UpdateVulnerabilitiesIter.
-func (mr *MockUpdaterMockRecorder) UpdateVulnerabilitiesIter(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockUpdaterMockRecorder) UpdateVulnerabilitiesIter(ctx, updater, fingerprint, vulnIter any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilitiesIter", reflect.TypeOf((*MockUpdater)(nil).UpdateVulnerabilitiesIter), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilitiesIter", reflect.TypeOf((*MockUpdater)(nil).UpdateVulnerabilitiesIter), ctx, updater, fingerprint, vulnIter)
}
// MockVulnerability is a mock of Vulnerability interface.
type MockVulnerability struct {
ctrl *gomock.Controller
recorder *MockVulnerabilityMockRecorder
+ isgomock struct{}
}
// MockVulnerabilityMockRecorder is the mock recorder for MockVulnerability.
@@ -648,16 +653,16 @@ func (m *MockVulnerability) EXPECT() *MockVulnerabilityMockRecorder {
}
// Get mocks base method.
-func (m *MockVulnerability) Get(arg0 context.Context, arg1 []*claircore.IndexRecord, arg2 datastore.GetOpts) (map[string][]*claircore.Vulnerability, error) {
+func (m *MockVulnerability) Get(ctx context.Context, records []*claircore.IndexRecord, opts datastore.GetOpts) (map[string][]*claircore.Vulnerability, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Get", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "Get", ctx, records, opts)
ret0, _ := ret[0].(map[string][]*claircore.Vulnerability)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Get indicates an expected call of Get.
-func (mr *MockVulnerabilityMockRecorder) Get(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockVulnerabilityMockRecorder) Get(ctx, records, opts any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockVulnerability)(nil).Get), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockVulnerability)(nil).Get), ctx, records, opts)
}
diff --git a/test/mock/driver/mocks.go b/test/mock/driver/mocks.go
index 81bc79821..9ed99fcb6 100644
--- a/test/mock/driver/mocks.go
+++ b/test/mock/driver/mocks.go
@@ -22,6 +22,7 @@ import (
type MockMatcher struct {
ctrl *gomock.Controller
recorder *MockMatcherMockRecorder
+ isgomock struct{}
}
// MockMatcherMockRecorder is the mock recorder for MockMatcher.
@@ -42,17 +43,17 @@ func (m *MockMatcher) EXPECT() *MockMatcherMockRecorder {
}
// Filter mocks base method.
-func (m *MockMatcher) Filter(arg0 *claircore.IndexRecord) bool {
+func (m *MockMatcher) Filter(record *claircore.IndexRecord) bool {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Filter", arg0)
+ ret := m.ctrl.Call(m, "Filter", record)
ret0, _ := ret[0].(bool)
return ret0
}
// Filter indicates an expected call of Filter.
-func (mr *MockMatcherMockRecorder) Filter(arg0 any) *gomock.Call {
+func (mr *MockMatcherMockRecorder) Filter(record any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Filter", reflect.TypeOf((*MockMatcher)(nil).Filter), arg0)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Filter", reflect.TypeOf((*MockMatcher)(nil).Filter), record)
}
// Name mocks base method.
@@ -84,16 +85,16 @@ func (mr *MockMatcherMockRecorder) Query() *gomock.Call {
}
// Vulnerable mocks base method.
-func (m *MockMatcher) Vulnerable(arg0 context.Context, arg1 *claircore.IndexRecord, arg2 *claircore.Vulnerability) (bool, error) {
+func (m *MockMatcher) Vulnerable(ctx context.Context, record *claircore.IndexRecord, vuln *claircore.Vulnerability) (bool, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Vulnerable", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "Vulnerable", ctx, record, vuln)
ret0, _ := ret[0].(bool)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Vulnerable indicates an expected call of Vulnerable.
-func (mr *MockMatcherMockRecorder) Vulnerable(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockMatcherMockRecorder) Vulnerable(ctx, record, vuln any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Vulnerable", reflect.TypeOf((*MockMatcher)(nil).Vulnerable), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Vulnerable", reflect.TypeOf((*MockMatcher)(nil).Vulnerable), ctx, record, vuln)
}
diff --git a/test/mock/indexer/mocks.go b/test/mock/indexer/mocks.go
index 59b61f738..de32f4d66 100644
--- a/test/mock/indexer/mocks.go
+++ b/test/mock/indexer/mocks.go
@@ -22,6 +22,7 @@ import (
type MockStore struct {
ctrl *gomock.Controller
recorder *MockStoreMockRecorder
+ isgomock struct{}
}
// MockStoreMockRecorder is the mock recorder for MockStore.
@@ -42,18 +43,18 @@ func (m *MockStore) EXPECT() *MockStoreMockRecorder {
}
// AffectedManifests mocks base method.
-func (m *MockStore) AffectedManifests(arg0 context.Context, arg1 claircore.Vulnerability, arg2 claircore.CheckVulnernableFunc) ([]claircore.Digest, error) {
+func (m *MockStore) AffectedManifests(ctx context.Context, v claircore.Vulnerability) ([]claircore.Digest, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "AffectedManifests", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "AffectedManifests", ctx, v)
ret0, _ := ret[0].([]claircore.Digest)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AffectedManifests indicates an expected call of AffectedManifests.
-func (mr *MockStoreMockRecorder) AffectedManifests(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) AffectedManifests(ctx, v any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AffectedManifests", reflect.TypeOf((*MockStore)(nil).AffectedManifests), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AffectedManifests", reflect.TypeOf((*MockStore)(nil).AffectedManifests), ctx, v)
}
// Close mocks base method.
@@ -91,95 +92,95 @@ func (mr *MockStoreMockRecorder) DeleteManifests(arg0 any, arg1 ...any) *gomock.
}
// DistributionsByLayer mocks base method.
-func (m *MockStore) DistributionsByLayer(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanners) ([]*claircore.Distribution, error) {
+func (m *MockStore) DistributionsByLayer(ctx context.Context, hash claircore.Digest, scnrs indexer.VersionedScanners) ([]*claircore.Distribution, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "DistributionsByLayer", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "DistributionsByLayer", ctx, hash, scnrs)
ret0, _ := ret[0].([]*claircore.Distribution)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DistributionsByLayer indicates an expected call of DistributionsByLayer.
-func (mr *MockStoreMockRecorder) DistributionsByLayer(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) DistributionsByLayer(ctx, hash, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DistributionsByLayer", reflect.TypeOf((*MockStore)(nil).DistributionsByLayer), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DistributionsByLayer", reflect.TypeOf((*MockStore)(nil).DistributionsByLayer), ctx, hash, scnrs)
}
// FilesByLayer mocks base method.
-func (m *MockStore) FilesByLayer(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanners) ([]claircore.File, error) {
+func (m *MockStore) FilesByLayer(ctx context.Context, hash claircore.Digest, scnrs indexer.VersionedScanners) ([]claircore.File, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "FilesByLayer", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "FilesByLayer", ctx, hash, scnrs)
ret0, _ := ret[0].([]claircore.File)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// FilesByLayer indicates an expected call of FilesByLayer.
-func (mr *MockStoreMockRecorder) FilesByLayer(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) FilesByLayer(ctx, hash, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FilesByLayer", reflect.TypeOf((*MockStore)(nil).FilesByLayer), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FilesByLayer", reflect.TypeOf((*MockStore)(nil).FilesByLayer), ctx, hash, scnrs)
}
// IndexDistributions mocks base method.
-func (m *MockStore) IndexDistributions(arg0 context.Context, arg1 []*claircore.Distribution, arg2 *claircore.Layer, arg3 indexer.VersionedScanner) error {
+func (m *MockStore) IndexDistributions(ctx context.Context, dists []*claircore.Distribution, layer *claircore.Layer, scnr indexer.VersionedScanner) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexDistributions", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "IndexDistributions", ctx, dists, layer, scnr)
ret0, _ := ret[0].(error)
return ret0
}
// IndexDistributions indicates an expected call of IndexDistributions.
-func (mr *MockStoreMockRecorder) IndexDistributions(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexDistributions(ctx, dists, layer, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexDistributions", reflect.TypeOf((*MockStore)(nil).IndexDistributions), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexDistributions", reflect.TypeOf((*MockStore)(nil).IndexDistributions), ctx, dists, layer, scnr)
}
// IndexFiles mocks base method.
-func (m *MockStore) IndexFiles(arg0 context.Context, arg1 []claircore.File, arg2 *claircore.Layer, arg3 indexer.VersionedScanner) error {
+func (m *MockStore) IndexFiles(ctx context.Context, files []claircore.File, layer *claircore.Layer, scnr indexer.VersionedScanner) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexFiles", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "IndexFiles", ctx, files, layer, scnr)
ret0, _ := ret[0].(error)
return ret0
}
// IndexFiles indicates an expected call of IndexFiles.
-func (mr *MockStoreMockRecorder) IndexFiles(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexFiles(ctx, files, layer, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexFiles", reflect.TypeOf((*MockStore)(nil).IndexFiles), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexFiles", reflect.TypeOf((*MockStore)(nil).IndexFiles), ctx, files, layer, scnr)
}
// IndexManifest mocks base method.
-func (m *MockStore) IndexManifest(arg0 context.Context, arg1 *claircore.IndexReport) error {
+func (m *MockStore) IndexManifest(ctx context.Context, ir *claircore.IndexReport) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexManifest", arg0, arg1)
+ ret := m.ctrl.Call(m, "IndexManifest", ctx, ir)
ret0, _ := ret[0].(error)
return ret0
}
// IndexManifest indicates an expected call of IndexManifest.
-func (mr *MockStoreMockRecorder) IndexManifest(arg0, arg1 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexManifest(ctx, ir any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexManifest", reflect.TypeOf((*MockStore)(nil).IndexManifest), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexManifest", reflect.TypeOf((*MockStore)(nil).IndexManifest), ctx, ir)
}
// IndexPackages mocks base method.
-func (m *MockStore) IndexPackages(arg0 context.Context, arg1 []*claircore.Package, arg2 *claircore.Layer, arg3 indexer.VersionedScanner) error {
+func (m *MockStore) IndexPackages(ctx context.Context, pkgs []*claircore.Package, layer *claircore.Layer, scnr indexer.VersionedScanner) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexPackages", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "IndexPackages", ctx, pkgs, layer, scnr)
ret0, _ := ret[0].(error)
return ret0
}
// IndexPackages indicates an expected call of IndexPackages.
-func (mr *MockStoreMockRecorder) IndexPackages(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexPackages(ctx, pkgs, layer, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexPackages", reflect.TypeOf((*MockStore)(nil).IndexPackages), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexPackages", reflect.TypeOf((*MockStore)(nil).IndexPackages), ctx, pkgs, layer, scnr)
}
// IndexReport mocks base method.
-func (m *MockStore) IndexReport(arg0 context.Context, arg1 claircore.Digest) (*claircore.IndexReport, bool, error) {
+func (m *MockStore) IndexReport(ctx context.Context, hash claircore.Digest) (*claircore.IndexReport, bool, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexReport", arg0, arg1)
+ ret := m.ctrl.Call(m, "IndexReport", ctx, hash)
ret0, _ := ret[0].(*claircore.IndexReport)
ret1, _ := ret[1].(bool)
ret2, _ := ret[2].(error)
@@ -187,125 +188,125 @@ func (m *MockStore) IndexReport(arg0 context.Context, arg1 claircore.Digest) (*c
}
// IndexReport indicates an expected call of IndexReport.
-func (mr *MockStoreMockRecorder) IndexReport(arg0, arg1 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexReport(ctx, hash any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexReport", reflect.TypeOf((*MockStore)(nil).IndexReport), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexReport", reflect.TypeOf((*MockStore)(nil).IndexReport), ctx, hash)
}
// IndexRepositories mocks base method.
-func (m *MockStore) IndexRepositories(arg0 context.Context, arg1 []*claircore.Repository, arg2 *claircore.Layer, arg3 indexer.VersionedScanner) error {
+func (m *MockStore) IndexRepositories(ctx context.Context, repos []*claircore.Repository, layer *claircore.Layer, scnr indexer.VersionedScanner) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "IndexRepositories", arg0, arg1, arg2, arg3)
+ ret := m.ctrl.Call(m, "IndexRepositories", ctx, repos, layer, scnr)
ret0, _ := ret[0].(error)
return ret0
}
// IndexRepositories indicates an expected call of IndexRepositories.
-func (mr *MockStoreMockRecorder) IndexRepositories(arg0, arg1, arg2, arg3 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) IndexRepositories(ctx, repos, layer, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexRepositories", reflect.TypeOf((*MockStore)(nil).IndexRepositories), arg0, arg1, arg2, arg3)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IndexRepositories", reflect.TypeOf((*MockStore)(nil).IndexRepositories), ctx, repos, layer, scnr)
}
// LayerScanned mocks base method.
-func (m *MockStore) LayerScanned(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanner) (bool, error) {
+func (m *MockStore) LayerScanned(ctx context.Context, hash claircore.Digest, scnr indexer.VersionedScanner) (bool, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "LayerScanned", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "LayerScanned", ctx, hash, scnr)
ret0, _ := ret[0].(bool)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// LayerScanned indicates an expected call of LayerScanned.
-func (mr *MockStoreMockRecorder) LayerScanned(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) LayerScanned(ctx, hash, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LayerScanned", reflect.TypeOf((*MockStore)(nil).LayerScanned), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "LayerScanned", reflect.TypeOf((*MockStore)(nil).LayerScanned), ctx, hash, scnr)
}
// ManifestScanned mocks base method.
-func (m *MockStore) ManifestScanned(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanners) (bool, error) {
+func (m *MockStore) ManifestScanned(ctx context.Context, hash claircore.Digest, scnrs indexer.VersionedScanners) (bool, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "ManifestScanned", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "ManifestScanned", ctx, hash, scnrs)
ret0, _ := ret[0].(bool)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ManifestScanned indicates an expected call of ManifestScanned.
-func (mr *MockStoreMockRecorder) ManifestScanned(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) ManifestScanned(ctx, hash, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ManifestScanned", reflect.TypeOf((*MockStore)(nil).ManifestScanned), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ManifestScanned", reflect.TypeOf((*MockStore)(nil).ManifestScanned), ctx, hash, scnrs)
}
// PackagesByLayer mocks base method.
-func (m *MockStore) PackagesByLayer(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanners) ([]*claircore.Package, error) {
+func (m *MockStore) PackagesByLayer(ctx context.Context, hash claircore.Digest, scnrs indexer.VersionedScanners) ([]*claircore.Package, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "PackagesByLayer", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "PackagesByLayer", ctx, hash, scnrs)
ret0, _ := ret[0].([]*claircore.Package)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// PackagesByLayer indicates an expected call of PackagesByLayer.
-func (mr *MockStoreMockRecorder) PackagesByLayer(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) PackagesByLayer(ctx, hash, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PackagesByLayer", reflect.TypeOf((*MockStore)(nil).PackagesByLayer), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PackagesByLayer", reflect.TypeOf((*MockStore)(nil).PackagesByLayer), ctx, hash, scnrs)
}
// PersistManifest mocks base method.
-func (m *MockStore) PersistManifest(arg0 context.Context, arg1 claircore.Manifest) error {
+func (m *MockStore) PersistManifest(ctx context.Context, manifest claircore.Manifest) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "PersistManifest", arg0, arg1)
+ ret := m.ctrl.Call(m, "PersistManifest", ctx, manifest)
ret0, _ := ret[0].(error)
return ret0
}
// PersistManifest indicates an expected call of PersistManifest.
-func (mr *MockStoreMockRecorder) PersistManifest(arg0, arg1 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) PersistManifest(ctx, manifest any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PersistManifest", reflect.TypeOf((*MockStore)(nil).PersistManifest), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PersistManifest", reflect.TypeOf((*MockStore)(nil).PersistManifest), ctx, manifest)
}
// RegisterScanners mocks base method.
-func (m *MockStore) RegisterScanners(arg0 context.Context, arg1 indexer.VersionedScanners) error {
+func (m *MockStore) RegisterScanners(ctx context.Context, scnrs indexer.VersionedScanners) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RegisterScanners", arg0, arg1)
+ ret := m.ctrl.Call(m, "RegisterScanners", ctx, scnrs)
ret0, _ := ret[0].(error)
return ret0
}
// RegisterScanners indicates an expected call of RegisterScanners.
-func (mr *MockStoreMockRecorder) RegisterScanners(arg0, arg1 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) RegisterScanners(ctx, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterScanners", reflect.TypeOf((*MockStore)(nil).RegisterScanners), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterScanners", reflect.TypeOf((*MockStore)(nil).RegisterScanners), ctx, scnrs)
}
// RepositoriesByLayer mocks base method.
-func (m *MockStore) RepositoriesByLayer(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanners) ([]*claircore.Repository, error) {
+func (m *MockStore) RepositoriesByLayer(ctx context.Context, hash claircore.Digest, scnrs indexer.VersionedScanners) ([]*claircore.Repository, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "RepositoriesByLayer", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "RepositoriesByLayer", ctx, hash, scnrs)
ret0, _ := ret[0].([]*claircore.Repository)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// RepositoriesByLayer indicates an expected call of RepositoriesByLayer.
-func (mr *MockStoreMockRecorder) RepositoriesByLayer(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) RepositoriesByLayer(ctx, hash, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RepositoriesByLayer", reflect.TypeOf((*MockStore)(nil).RepositoriesByLayer), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RepositoriesByLayer", reflect.TypeOf((*MockStore)(nil).RepositoriesByLayer), ctx, hash, scnrs)
}
// SetIndexFinished mocks base method.
-func (m *MockStore) SetIndexFinished(arg0 context.Context, arg1 *claircore.IndexReport, arg2 indexer.VersionedScanners) error {
+func (m *MockStore) SetIndexFinished(ctx context.Context, sr *claircore.IndexReport, scnrs indexer.VersionedScanners) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "SetIndexFinished", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "SetIndexFinished", ctx, sr, scnrs)
ret0, _ := ret[0].(error)
return ret0
}
// SetIndexFinished indicates an expected call of SetIndexFinished.
-func (mr *MockStoreMockRecorder) SetIndexFinished(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) SetIndexFinished(ctx, sr, scnrs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetIndexFinished", reflect.TypeOf((*MockStore)(nil).SetIndexFinished), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetIndexFinished", reflect.TypeOf((*MockStore)(nil).SetIndexFinished), ctx, sr, scnrs)
}
// SetIndexReport mocks base method.
@@ -323,23 +324,24 @@ func (mr *MockStoreMockRecorder) SetIndexReport(arg0, arg1 any) *gomock.Call {
}
// SetLayerScanned mocks base method.
-func (m *MockStore) SetLayerScanned(arg0 context.Context, arg1 claircore.Digest, arg2 indexer.VersionedScanner) error {
+func (m *MockStore) SetLayerScanned(ctx context.Context, hash claircore.Digest, scnr indexer.VersionedScanner) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "SetLayerScanned", arg0, arg1, arg2)
+ ret := m.ctrl.Call(m, "SetLayerScanned", ctx, hash, scnr)
ret0, _ := ret[0].(error)
return ret0
}
// SetLayerScanned indicates an expected call of SetLayerScanned.
-func (mr *MockStoreMockRecorder) SetLayerScanned(arg0, arg1, arg2 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) SetLayerScanned(ctx, hash, scnr any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetLayerScanned", reflect.TypeOf((*MockStore)(nil).SetLayerScanned), arg0, arg1, arg2)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetLayerScanned", reflect.TypeOf((*MockStore)(nil).SetLayerScanned), ctx, hash, scnr)
}
// MockPackageScanner is a mock of PackageScanner interface.
type MockPackageScanner struct {
ctrl *gomock.Controller
recorder *MockPackageScannerMockRecorder
+ isgomock struct{}
}
// MockPackageScannerMockRecorder is the mock recorder for MockPackageScanner.
@@ -420,6 +422,7 @@ func (mr *MockPackageScannerMockRecorder) Version() *gomock.Call {
type MockVersionedScanner struct {
ctrl *gomock.Controller
recorder *MockVersionedScannerMockRecorder
+ isgomock struct{}
}
// MockVersionedScannerMockRecorder is the mock recorder for MockVersionedScanner.
@@ -485,6 +488,7 @@ func (mr *MockVersionedScannerMockRecorder) Version() *gomock.Call {
type MockDistributionScanner struct {
ctrl *gomock.Controller
recorder *MockDistributionScannerMockRecorder
+ isgomock struct{}
}
// MockDistributionScannerMockRecorder is the mock recorder for MockDistributionScanner.
@@ -565,6 +569,7 @@ func (mr *MockDistributionScannerMockRecorder) Version() *gomock.Call {
type MockRepositoryScanner struct {
ctrl *gomock.Controller
recorder *MockRepositoryScannerMockRecorder
+ isgomock struct{}
}
// MockRepositoryScannerMockRecorder is the mock recorder for MockRepositoryScanner.
@@ -645,6 +650,7 @@ func (mr *MockRepositoryScannerMockRecorder) Version() *gomock.Call {
type MockCoalescer struct {
ctrl *gomock.Controller
recorder *MockCoalescerMockRecorder
+ isgomock struct{}
}
// MockCoalescerMockRecorder is the mock recorder for MockCoalescer.
@@ -665,24 +671,25 @@ func (m *MockCoalescer) EXPECT() *MockCoalescerMockRecorder {
}
// Coalesce mocks base method.
-func (m *MockCoalescer) Coalesce(arg0 context.Context, arg1 []*indexer.LayerArtifacts) (*claircore.IndexReport, error) {
+func (m *MockCoalescer) Coalesce(ctx context.Context, artifacts []*indexer.LayerArtifacts) (*claircore.IndexReport, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "Coalesce", arg0, arg1)
+ ret := m.ctrl.Call(m, "Coalesce", ctx, artifacts)
ret0, _ := ret[0].(*claircore.IndexReport)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Coalesce indicates an expected call of Coalesce.
-func (mr *MockCoalescerMockRecorder) Coalesce(arg0, arg1 any) *gomock.Call {
+func (mr *MockCoalescerMockRecorder) Coalesce(ctx, artifacts any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Coalesce", reflect.TypeOf((*MockCoalescer)(nil).Coalesce), arg0, arg1)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Coalesce", reflect.TypeOf((*MockCoalescer)(nil).Coalesce), ctx, artifacts)
}
// MockRealizer is a mock of Realizer interface.
type MockRealizer struct {
ctrl *gomock.Controller
recorder *MockRealizerMockRecorder
+ isgomock struct{}
}
// MockRealizerMockRecorder is the mock recorder for MockRealizer.
@@ -734,6 +741,7 @@ func (mr *MockRealizerMockRecorder) Realize(arg0, arg1 any) *gomock.Call {
type MockFetchArena struct {
ctrl *gomock.Controller
recorder *MockFetchArenaMockRecorder
+ isgomock struct{}
}
// MockFetchArenaMockRecorder is the mock recorder for MockFetchArena.
diff --git a/test/mock/updater/driver/v1/mocks.go b/test/mock/updater/driver/v1/mocks.go
index 8ffa5d5ed..6bd86b418 100644
--- a/test/mock/updater/driver/v1/mocks.go
+++ b/test/mock/updater/driver/v1/mocks.go
@@ -24,6 +24,7 @@ import (
type MockUpdater struct {
ctrl *gomock.Controller
recorder *MockUpdaterMockRecorder
+ isgomock struct{}
}
// MockUpdaterMockRecorder is the mock recorder for MockUpdater.
@@ -76,6 +77,7 @@ func (mr *MockUpdaterMockRecorder) Name() *gomock.Call {
type MockUpdaterFactory struct {
ctrl *gomock.Controller
recorder *MockUpdaterFactoryMockRecorder
+ isgomock struct{}
}
// MockUpdaterFactoryMockRecorder is the mock recorder for MockUpdaterFactory.
@@ -128,6 +130,7 @@ func (mr *MockUpdaterFactoryMockRecorder) Name() *gomock.Call {
type MockVulnerabilityParser struct {
ctrl *gomock.Controller
recorder *MockVulnerabilityParserMockRecorder
+ isgomock struct{}
}
// MockVulnerabilityParserMockRecorder is the mock recorder for MockVulnerabilityParser.
@@ -166,6 +169,7 @@ func (mr *MockVulnerabilityParserMockRecorder) ParseVulnerability(arg0, arg1 any
type MockEnrichmentParser struct {
ctrl *gomock.Controller
recorder *MockEnrichmentParserMockRecorder
+ isgomock struct{}
}
// MockEnrichmentParserMockRecorder is the mock recorder for MockEnrichmentParser.
diff --git a/test/mock/updater/mocks.go b/test/mock/updater/mocks.go
index 592b8e8e5..ffd3f5d4d 100644
--- a/test/mock/updater/mocks.go
+++ b/test/mock/updater/mocks.go
@@ -22,6 +22,7 @@ import (
type MockStore struct {
ctrl *gomock.Controller
recorder *MockStoreMockRecorder
+ isgomock struct{}
}
// MockStoreMockRecorder is the mock recorder for MockStore.
@@ -42,44 +43,44 @@ func (m *MockStore) EXPECT() *MockStoreMockRecorder {
}
// GetLatestUpdateOperations mocks base method.
-func (m *MockStore) GetLatestUpdateOperations(arg0 context.Context) ([]driver.UpdateOperation, error) {
+func (m *MockStore) GetLatestUpdateOperations(ctx context.Context) ([]driver.UpdateOperation, error) {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetLatestUpdateOperations", arg0)
+ ret := m.ctrl.Call(m, "GetLatestUpdateOperations", ctx)
ret0, _ := ret[0].([]driver.UpdateOperation)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetLatestUpdateOperations indicates an expected call of GetLatestUpdateOperations.
-func (mr *MockStoreMockRecorder) GetLatestUpdateOperations(arg0 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) GetLatestUpdateOperations(ctx any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLatestUpdateOperations", reflect.TypeOf((*MockStore)(nil).GetLatestUpdateOperations), arg0)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetLatestUpdateOperations", reflect.TypeOf((*MockStore)(nil).GetLatestUpdateOperations), ctx)
}
// UpdateEnrichments mocks base method.
-func (m *MockStore) UpdateEnrichments(arg0 context.Context, arg1 uuid.UUID, arg2 string, arg3 driver.Fingerprint, arg4 []driver.EnrichmentRecord) error {
+func (m *MockStore) UpdateEnrichments(ctx context.Context, ref uuid.UUID, kind string, fp driver.Fingerprint, es []driver.EnrichmentRecord) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateEnrichments", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "UpdateEnrichments", ctx, ref, kind, fp, es)
ret0, _ := ret[0].(error)
return ret0
}
// UpdateEnrichments indicates an expected call of UpdateEnrichments.
-func (mr *MockStoreMockRecorder) UpdateEnrichments(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) UpdateEnrichments(ctx, ref, kind, fp, es any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockStore)(nil).UpdateEnrichments), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateEnrichments", reflect.TypeOf((*MockStore)(nil).UpdateEnrichments), ctx, ref, kind, fp, es)
}
// UpdateVulnerabilities mocks base method.
-func (m *MockStore) UpdateVulnerabilities(arg0 context.Context, arg1 uuid.UUID, arg2 string, arg3 driver.Fingerprint, arg4 *driver.ParsedVulnerabilities) error {
+func (m *MockStore) UpdateVulnerabilities(ctx context.Context, ref uuid.UUID, updater string, fp driver.Fingerprint, vs *driver.ParsedVulnerabilities) error {
m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "UpdateVulnerabilities", arg0, arg1, arg2, arg3, arg4)
+ ret := m.ctrl.Call(m, "UpdateVulnerabilities", ctx, ref, updater, fp, vs)
ret0, _ := ret[0].(error)
return ret0
}
// UpdateVulnerabilities indicates an expected call of UpdateVulnerabilities.
-func (mr *MockStoreMockRecorder) UpdateVulnerabilities(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call {
+func (mr *MockStoreMockRecorder) UpdateVulnerabilities(ctx, ref, updater, fp, vs any) *gomock.Call {
mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockStore)(nil).UpdateVulnerabilities), arg0, arg1, arg2, arg3, arg4)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateVulnerabilities", reflect.TypeOf((*MockStore)(nil).UpdateVulnerabilities), ctx, ref, updater, fp, vs)
}
diff --git a/test/rhel/matcher_integration_test.go b/test/rhel/matcher_integration_test.go
new file mode 100644
index 000000000..ffe516bc3
--- /dev/null
+++ b/test/rhel/matcher_integration_test.go
@@ -0,0 +1,265 @@
+package rhel
+
+import (
+ "context"
+ "encoding/json"
+ "fmt"
+ "io"
+ "net/http"
+ "net/http/httptest"
+ "os"
+ "path/filepath"
+ "testing"
+
+ "github.com/quay/zlog"
+
+ "github.com/quay/claircore"
+ "github.com/quay/claircore/datastore/postgres"
+ "github.com/quay/claircore/internal/matcher"
+ "github.com/quay/claircore/libvuln/driver"
+ "github.com/quay/claircore/libvuln/updates"
+ "github.com/quay/claircore/pkg/ctxlock"
+ "github.com/quay/claircore/rhel"
+ "github.com/quay/claircore/test/integration"
+ pgtest "github.com/quay/claircore/test/postgres"
+ "github.com/quay/claircore/toolkit/types/cpe"
+)
+
+func TestMain(m *testing.M) {
+ var c int
+ defer func() { os.Exit(c) }()
+ defer integration.DBSetup()()
+ c = m.Run()
+}
+
+func serveOVAL(t *testing.T) (string, *http.Client) {
+ srv := httptest.NewServer(http.FileServer(http.Dir("testdata")))
+ t.Cleanup(srv.Close)
+ return srv.URL, srv.Client()
+}
+
+func TestMatcherIntegration(t *testing.T) {
+ t.Parallel()
+ integration.NeedDB(t)
+ ctx := zlog.Test(context.Background(), t)
+ pool := pgtest.TestMatcherDB(ctx, t)
+ store := postgres.NewMatcherStore(pool)
+ m := &rhel.Matcher{}
+ fs, err := filepath.Glob("testdata/*.xml")
+ if err != nil {
+ t.Error(err)
+ }
+ root, c := serveOVAL(t)
+ locks, err := ctxlock.New(ctx, pool)
+ if err != nil {
+ t.Error(err)
+ return
+ }
+ defer locks.Close(ctx)
+
+ facs := make(map[string]driver.UpdaterSetFactory, len(fs))
+ for _, fn := range fs {
+ u, err := rhel.NewUpdater(
+ fmt.Sprintf("test-updater-%s", filepath.Base(fn)),
+ 1,
+ root+"/"+filepath.Base(fn),
+ false,
+ )
+ if err != nil {
+ t.Error(err)
+ continue
+ }
+ u.Configure(ctx, func(v interface{}) error { return nil }, c)
+ if err != nil {
+ t.Error(err)
+ continue
+ }
+ s := driver.NewUpdaterSet()
+ if err := s.Add(u); err != nil {
+ t.Error(err)
+ continue
+ }
+ facs[u.Name()] = driver.StaticSet(s)
+ }
+ mgr, err := updates.NewManager(ctx, store, locks, c, updates.WithFactories(facs))
+ if err != nil {
+ t.Error(err)
+ }
+ // force update
+ if err := mgr.Run(ctx); err != nil {
+ t.Error(err)
+ }
+
+ f, err := os.Open(filepath.Join("testdata", "rhel-report.json"))
+ if err != nil {
+ t.Fatalf("%v", err)
+ }
+ defer f.Close()
+ var ir claircore.IndexReport
+ if err := json.NewDecoder(f).Decode(&ir); err != nil {
+ t.Fatalf("failed to decode IndexReport: %v", err)
+ }
+ vr, err := matcher.Match(ctx, &ir, []driver.Matcher{m}, store)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if err := json.NewEncoder(io.Discard).Encode(&vr); err != nil {
+ t.Fatalf("failed to marshal VR: %v", err)
+ }
+}
+
+type vulnerableTestCase struct {
+ ir *claircore.IndexRecord
+ v *claircore.Vulnerability
+ name string
+ want bool
+}
+
+func TestVulnerable(t *testing.T) {
+ record := &claircore.IndexRecord{
+ Package: &claircore.Package{
+ Version: "0.33.0-6.el8",
+ },
+ Repository: &claircore.Repository{
+ CPE: cpe.MustUnbind("cpe:/o:redhat:enterprise_linux:8::baseos"),
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ openshiftRecord := &claircore.IndexRecord{
+ Package: &claircore.Package{
+ Version: "0.33.0-6.el8",
+ },
+ Repository: &claircore.Repository{
+ CPE: cpe.MustUnbind("cpe:/a:redhat:openshift:4.13::el8"),
+ Name: "cpe:/a:redhat:openshift:4.13::el8",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ openshift5Record := &claircore.IndexRecord{
+ Package: &claircore.Package{
+ Version: "0.33.0-6.el8",
+ },
+ Repository: &claircore.Repository{
+ CPE: cpe.MustUnbind("cpe:/a:redhat:openshift:5.1::el8"),
+ Name: "cpe:/a:redhat:openshift:5.1::el8",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ fixedVulnPast := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "0.33.0-5.el8",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ fixedVulnCurrent := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "0.33.0-6.el8",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ fixedVulnFuture := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "0.33.0-7.el8",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ unfixedVuln := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ unfixedVulnBadCPE := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cep:o:redhat:enterprise_linux:8::baseos",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ unfixedVulnRepoIsSubset := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ unfixedVulnRepoNotSubset := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cpe:/o:redhat:enterprise_linux:8::appstream",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ unfixedVulnRepoSubstring := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cpe:/a:redhat:openshift:4",
+ Key: "rhel-cpe-repository",
+ },
+ }
+ genericWilcardRepo := &claircore.Vulnerability{
+ Package: &claircore.Package{
+ Version: "",
+ },
+ FixedInVersion: "",
+ Repo: &claircore.Repository{
+ Name: "cpe:/a:redhat:openshift:4.%02::el8",
+ Key: "rhel-cpe-repository",
+ },
+ }
+
+ testCases := []vulnerableTestCase{
+ {ir: record, v: fixedVulnPast, want: false, name: "vuln fixed in past version"},
+ {ir: record, v: fixedVulnCurrent, want: false, name: "vuln fixed in current version"},
+ {ir: record, v: fixedVulnFuture, want: true, name: "outdated package"},
+ {ir: record, v: unfixedVuln, want: true, name: "unfixed vuln"},
+ {ir: record, v: unfixedVulnBadCPE, want: false, name: "unfixed vuln, invalid CPE"},
+ {ir: record, v: unfixedVulnRepoIsSubset, want: true, name: "unfixed vuln, Repo is a subset"},
+ {ir: record, v: unfixedVulnRepoNotSubset, want: false, name: "unfixed vuln, Repo not a subset"},
+ {ir: openshiftRecord, v: unfixedVulnRepoSubstring, want: true, name: "unfixed vuln, Repo is a substring match"},
+ {ir: openshiftRecord, v: genericWilcardRepo, want: true, name: "unfixed vuln, Repo is a superset (with wildcard)"},
+ {ir: openshift5Record, v: genericWilcardRepo, want: false, name: "unfixed vuln, Repo isn't a superset (with wildcard)"},
+ }
+
+ m := &rhel.Matcher{}
+ ctx := context.Background()
+ ctx = zlog.Test(ctx, t)
+ for _, tc := range testCases {
+ got, err := m.Vulnerable(ctx, tc.ir, tc.v)
+ if err != nil {
+ t.Error(err)
+ }
+ if tc.want != got {
+ t.Errorf("%q failed: want %t, got %t", tc.name, tc.want, got)
+ }
+ }
+}
diff --git a/test/rhel/rhcc_matcher_integration_test.go b/test/rhel/rhcc_matcher_integration_test.go
index 84730bd82..5192d2017 100644
--- a/test/rhel/rhcc_matcher_integration_test.go
+++ b/test/rhel/rhcc_matcher_integration_test.go
@@ -23,14 +23,7 @@ import (
testpostgres "github.com/quay/claircore/test/postgres"
)
-func TestMain(m *testing.M) {
- var c int
- defer func() { os.Exit(c) }()
- defer integration.DBSetup()()
- c = m.Run()
-}
-
-func TestMatcherIntegration(t *testing.T) {
+func TestRHCCMatcherIntegration(t *testing.T) {
t.Parallel()
type testcase struct {
diff --git a/rhel/testdata/Red_Hat_Enterprise_Linux_5.xml b/test/rhel/testdata/Red_Hat_Enterprise_Linux_5.xml
similarity index 100%
rename from rhel/testdata/Red_Hat_Enterprise_Linux_5.xml
rename to test/rhel/testdata/Red_Hat_Enterprise_Linux_5.xml
diff --git a/test/rhel/testdata/com.redhat.rhsa-20201980.xml b/test/rhel/testdata/com.redhat.rhsa-20201980.xml
new file mode 100644
index 000000000..02e0198ec
--- /dev/null
+++ b/test/rhel/testdata/com.redhat.rhsa-20201980.xml
@@ -0,0 +1,326 @@
+
+
+
+
+ Red Hat Errata System
+ 5.10.1
+ 2020-04-30T14:16:09
+
+
+
+
+
+ RHSA-2020:1980: git security update (Important)
+
+ Red Hat Enterprise Linux 8
+
+
+
+ Git is a distributed revision control system with a decentralized architecture. As opposed to centralized version control systems with a client-server model, Git ensures that each working copy of a Git repository is an exact copy with complete revision history. This not only allows the user to work on and contribute to projects without the need to have permission to push the changes to their official repositories, but also makes it possible for the user to work with no network connection.
+
+The following packages have been upgraded to a later upstream version: git (2.18.4). (BZ#1826008)
+
+Security Fix(es):
+
+* git: Crafted URL containing new lines, empty host or lacks a scheme can cause credential leak (CVE-2020-11008)
+
+For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
+
+
+ Important
+ Copyright 2020 Red Hat, Inc.
+
+
+ CVE-2020-11008
+
+ CVE-2020-11008 git: Crafted URL containing new lines, empty host or lacks a scheme can cause credential leak
+
+ cpe:/a:redhat:enterprise_linux:8
+ cpe:/a:redhat:enterprise_linux:8::appstream
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ perl-Git-SVN
+
+
+ perl-Git
+
+
+ gitweb
+
+
+ gitk
+
+
+ git-gui
+
+
+ git-email
+
+
+ git-core-doc
+
+
+ git-all
+
+
+ git-debugsource
+
+
+ git-svn
+
+
+ git-subtree
+
+
+ git-instaweb
+
+
+ git-daemon
+
+
+ git-core
+
+
+ git
+
+
+
+
+
+
+
+
+ /etc/redhat-release
+
+
+
+
+
+ 0:2.18.4-2.el8_2
+
+
+ 199e2f91fd431d51
+
+
+ aarch64|ppc64le|s390x|x86_64
+ 0:2.18.4-2.el8_2
+
+
+ ^redhat-release
+ ^8[^\d]
+
+
+ ^redhat-release
+
+
+
+
diff --git a/rhel/testdata/com.redhat.rhsa-RHEL8.xml b/test/rhel/testdata/com.redhat.rhsa-RHEL8.xml
similarity index 100%
rename from rhel/testdata/com.redhat.rhsa-RHEL8.xml
rename to test/rhel/testdata/com.redhat.rhsa-RHEL8.xml
diff --git a/test/rhel/testdata/rhel-8-rpm-unpatched.xml b/test/rhel/testdata/rhel-8-rpm-unpatched.xml
new file mode 100644
index 000000000..b98acd327
--- /dev/null
+++ b/test/rhel/testdata/rhel-8-rpm-unpatched.xml
@@ -0,0 +1,339 @@
+
+
+
+Red Hat OVAL Patch Definition Merger
+3
+5.10
+2022-06-02T08:52:56
+1654159976
+
+
+
+
+ CVE-2021-35937 rpm: TOCTOU race in checks for unsafe symlinks (moderate)
+
+ DOCUMENTATION: A race condition vulnerability was found in rpm. A local unprivileged user could use this flaw to bypass the checks that were introduced in response to CVE-2017-7500 and CVE-2017-7501, potentially gaining root privileges. The highest threat from this vulnerability is to data confidentiality and integrity as well as system availability.
+ STATEMENT: System and service accounts may have the required permissions to exploit this flaw. Conversely, regular user accounts should not be allowed to manipulate RPM artifacts during installation, thus reducing the attack surface and hence the impact of this flaw considerably.
+ MITIGATION: Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.
+
+ Moderate
+
+ CVE-2021-35937
+
+
+ python3-rpm
+ rpm
+ rpm-apidocs
+ rpm-build
+ rpm-build-libs
+ rpm-cron
+ rpm-debugsource
+ rpm-devel
+ rpm-libs
+ rpm-plugin-fapolicyd
+ rpm-plugin-ima
+ rpm-plugin-prioreset
+ rpm-plugin-selinux
+ rpm-plugin-syslog
+ rpm-plugin-systemd-inhibit
+ rpm-sign
+
+
+
+ cpe:/a:redhat:enterprise_linux:8
+ cpe:/a:redhat:enterprise_linux:8::appstream
+ cpe:/a:redhat:enterprise_linux:8::crb
+ cpe:/a:redhat:enterprise_linux:8::highavailability
+ cpe:/a:redhat:enterprise_linux:8::nfv
+ cpe:/a:redhat:enterprise_linux:8::realtime
+ cpe:/a:redhat:enterprise_linux:8::resilientstorage
+ cpe:/a:redhat:enterprise_linux:8::sap
+ cpe:/a:redhat:enterprise_linux:8::sap_hana
+ cpe:/a:redhat:enterprise_linux:8::supplementary
+ cpe:/o:redhat:enterprise_linux:8
+ cpe:/o:redhat:enterprise_linux:8::baseos
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ tar
+
+
+
+
+
+
+
+
+ /etc/redhat-release
+
+
+ rpm-build-libs
+
+
+ rpm-libs
+
+
+ rpm-cron
+
+
+ rpm-devel
+
+
+ rpm-plugin-prioreset
+
+
+ rpm-plugin-syslog
+
+
+ rpm-plugin-ima
+
+
+ rpm-apidocs
+
+
+ rpm-build
+
+
+ python3-rpm
+
+
+ rpm
+
+
+ rpm-debugsource
+
+
+ rpm-plugin-systemd-inhibit
+
+
+ rpm-sign
+
+
+ rpm-plugin-selinux
+
+
+ rpm-plugin-fapolicyd
+
+
+
+
+ None
+
+
+ ^redhat-release
+ ^8[^\d]
+
+
+ ^redhat-release
+
+
+ 199e2f91fd431d51
+
+
+
+
+
+ 1
+
+
+
+
+
diff --git a/rhel/testdata/rhel-report.json b/test/rhel/testdata/rhel-report.json
similarity index 100%
rename from rhel/testdata/rhel-report.json
rename to test/rhel/testdata/rhel-report.json