From 5418e3e2ebe790f694068c162c67f465887cc9b5 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 13:24:13 +0530 Subject: [PATCH 01/10] Support Ubuntu priority scoring system Signed-off-by: Keshav Priyadarshi --- ...dvisoryseverity_scoring_system_and_more.py | 63 +++++++++++++++++++ vulnerabilities/severity_systems.py | 14 +++++ 2 files changed, 77 insertions(+) create mode 100644 vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py diff --git a/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py b/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py new file mode 100644 index 000000000..d01846912 --- /dev/null +++ b/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py @@ -0,0 +1,63 @@ +# Generated by Django 4.2.25 on 2026-02-04 07:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("vulnerabilities", "0111_alter_advisoryseverity_scoring_system_and_more"), + ] + + operations = [ + migrations.AlterField( + model_name="advisoryseverity", + name="scoring_system", + field=models.CharField( + choices=[ + ("cvssv2", "CVSSv2 Base Score"), + ("cvssv3", "CVSSv3 Base Score"), + ("cvssv3.1", "CVSSv3.1 Base Score"), + ("cvssv4", "CVSSv4 Base Score"), + ("rhbs", "RedHat Bugzilla severity"), + ("rhas", "RedHat Aggregate severity"), + ("archlinux", "Archlinux Vulnerability Group Severity"), + ("cvssv3.1_qr", "CVSSv3.1 Qualitative Severity Rating"), + ("generic_textual", "Generic textual severity rating"), + ("apache_httpd", "Apache Httpd Severity"), + ("apache_tomcat", "Apache Tomcat Severity"), + ("epss", "Exploit Prediction Scoring System"), + ("ssvc", "Stakeholder-Specific Vulnerability Categorization"), + ("openssl", "OpenSSL Severity"), + ("ubuntu", "Ubuntu priority"), + ], + help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu: Ubuntu priority ", + max_length=50, + ), + ), + migrations.AlterField( + model_name="vulnerabilityseverity", + name="scoring_system", + field=models.CharField( + choices=[ + ("cvssv2", "CVSSv2 Base Score"), + ("cvssv3", "CVSSv3 Base Score"), + ("cvssv3.1", "CVSSv3.1 Base Score"), + ("cvssv4", "CVSSv4 Base Score"), + ("rhbs", "RedHat Bugzilla severity"), + ("rhas", "RedHat Aggregate severity"), + ("archlinux", "Archlinux Vulnerability Group Severity"), + ("cvssv3.1_qr", "CVSSv3.1 Qualitative Severity Rating"), + ("generic_textual", "Generic textual severity rating"), + ("apache_httpd", "Apache Httpd Severity"), + ("apache_tomcat", "Apache Tomcat Severity"), + ("epss", "Exploit Prediction Scoring System"), + ("ssvc", "Stakeholder-Specific Vulnerability Categorization"), + ("openssl", "OpenSSL Severity"), + ("ubuntu", "Ubuntu priority"), + ], + help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu: Ubuntu priority ", + max_length=50, + ), + ), + ] diff --git a/vulnerabilities/severity_systems.py b/vulnerabilities/severity_systems.py index fbb611ae4..a25079070 100644 --- a/vulnerabilities/severity_systems.py +++ b/vulnerabilities/severity_systems.py @@ -196,6 +196,19 @@ def get(self, scoring_elements: str) -> dict: "Low", ] +UBUNTU = ScoringSystem( + identifier="ubuntu", + name="Ubuntu priority", + url="https://ubuntu.com/security/cves/about#priority", +) +UBUNTU.choices = [ + "Critical", + "High", + "Medium", + "Low", + "Negligible", +] + @dataclasses.dataclass(order=True) class EPSSScoringSystem(ScoringSystem): @@ -239,5 +252,6 @@ def get(self, scoring_elements: str): EPSS, SSVC, OPENSSL, + UBUNTU, ) } From 5172be5bc7cc711bfa7350a48478fe0fba856698 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 13:25:35 +0530 Subject: [PATCH 02/10] Parse and collect all supported scoring systems from osv Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipes/osv_v2.py | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/vulnerabilities/pipes/osv_v2.py b/vulnerabilities/pipes/osv_v2.py index a98523f29..69c60f39a 100644 --- a/vulnerabilities/pipes/osv_v2.py +++ b/vulnerabilities/pipes/osv_v2.py @@ -69,7 +69,7 @@ def parse_advisory_data_v3( aliases = raw_data.get("aliases") or [] date_published = get_published_date(raw_data=raw_data) - severities = list(get_severities(raw_data=raw_data)) + severities = list(get_severities(raw_data=raw_data, url=advisory_url)) references = get_references_v2(raw_data=raw_data) patches = [] @@ -236,24 +236,27 @@ def get_published_date(raw_data): return published and dateparser.parse(date_string=published) -def get_severities(raw_data) -> Iterable[VulnerabilitySeverity]: - """ - Yield VulnerabilitySeverity extracted from a mapping of OSV ``raw_data`` - """ +def get_severities(raw_data, url) -> Iterable[VulnerabilitySeverity]: + """Yield VulnerabilitySeverity extracted from a mapping of OSV ``raw_data``""" try: for severity in raw_data.get("severity") or []: - vector = severity.get("score") - valid_vector = vector[:-1] if vector and vector.endswith("/") else vector + severity_type = severity.get("type") + score = severity.get("score") - if severity.get("type") == "CVSS_V3": + if severity_type == "CVSS_V3": system = SCORING_SYSTEMS["cvssv3.1"] - score = system.compute(valid_vector) - yield VulnerabilitySeverity(system=system, value=score, scoring_elements=vector) + valid_vector = score[:-1] if score and score.endswith("/") else score + value = system.compute(valid_vector) + yield VulnerabilitySeverity(system=system, value=value, scoring_elements=score) - elif severity.get("type") == "CVSS_V4": + elif severity_type == "CVSS_V4": system = SCORING_SYSTEMS["cvssv4"] - score = system.compute(valid_vector) - yield VulnerabilitySeverity(system=system, value=score, scoring_elements=vector) + valid_vector = score[:-1] if score and score.endswith("/") else score + value = system.compute(valid_vector) + yield VulnerabilitySeverity(system=system, value=value, scoring_elements=score) + elif severity_type.lower() in SCORING_SYSTEMS: + system = SCORING_SYSTEMS[severity_type.lower()] + yield VulnerabilitySeverity(system=system, value=score, url=url) else: logger.error( From 5dc83323fdf1d78ae39d925ff4403e414f1d5c4d Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 14:30:39 +0530 Subject: [PATCH 03/10] Do not include version in AffectedPackage base PURL Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipes/osv_v2.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vulnerabilities/pipes/osv_v2.py b/vulnerabilities/pipes/osv_v2.py index 69c60f39a..498fee6e5 100644 --- a/vulnerabilities/pipes/osv_v2.py +++ b/vulnerabilities/pipes/osv_v2.py @@ -305,10 +305,11 @@ def get_affected_purl(affected_pkg, raw_id): data and a ``raw_id``. """ package = affected_pkg.get("package") or {} - purl = package.get("purl") - if purl: + if purl := package.get("purl"): try: - purl = PackageURL.from_string(purl) + purl_dict = PackageURL.from_string(purl).to_dict() + del purl_dict["version"] + purl = PackageURL(**purl_dict) except ValueError: logger.error( f"Invalid PackageURL: {purl!r} for OSV " From b9e2ae1523c32b48e0f970e29b5ea95815b2170a Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 14:35:50 +0530 Subject: [PATCH 04/10] Support Ubuntu ecosystem in osv parser Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipes/osv_v2.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vulnerabilities/pipes/osv_v2.py b/vulnerabilities/pipes/osv_v2.py index 498fee6e5..88d34fedf 100644 --- a/vulnerabilities/pipes/osv_v2.py +++ b/vulnerabilities/pipes/osv_v2.py @@ -318,12 +318,17 @@ def get_affected_purl(affected_pkg, raw_id): else: ecosys = package.get("ecosystem") name = package.get("name") + namespace = "" + if ecosys and name: ecosys = ecosys.lower() purl_type = PURL_TYPE_BY_OSV_ECOSYSTEM.get(ecosys) + if ecosys.startswith("ubuntu"): + purl_type = "deb" + namespace = "ubuntu" + if not purl_type: return - namespace = "" if purl_type == "maven": namespace, _, name = name.partition(":") From c37c8c56f2a63f72a6d047cefb21003fc9dcadb9 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 15:02:05 +0530 Subject: [PATCH 05/10] Create packages in bulk during AdvisoryV2 insertion Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipes/advisory.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vulnerabilities/pipes/advisory.py b/vulnerabilities/pipes/advisory.py index 9bc935d04..175c1bd1e 100644 --- a/vulnerabilities/pipes/advisory.py +++ b/vulnerabilities/pipes/advisory.py @@ -360,14 +360,14 @@ def insert_advisory_v2( affected_package=affected_pkg, logger=logger, ) - affected_packages_v2 = [ - PackageV2.objects.get_or_create_from_purl(purl=purl)[0] - for purl in package_affected_purls - ] - fixed_packages_v2 = [ - PackageV2.objects.get_or_create_from_purl(purl=purl)[0] - for purl in package_fixed_purls - ] + + affected_packages_v2 = PackageV2.objects.bulk_get_or_create_from_purls( + purls=package_affected_purls + ) + fixed_packages_v2 = PackageV2.objects.bulk_get_or_create_from_purls( + purls=package_fixed_purls + ) + impact.affecting_packages.add(*affected_packages_v2) impact.fixed_by_packages.add(*fixed_packages_v2) From 3aeeb06d2534b6b7aa67f09be43d9b7ec9b2bf82 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 15:34:18 +0530 Subject: [PATCH 06/10] Make pipeline progress step configurable Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipelines/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vulnerabilities/pipelines/__init__.py b/vulnerabilities/pipelines/__init__.py index 9efd58c05..fc784e019 100644 --- a/vulnerabilities/pipelines/__init__.py +++ b/vulnerabilities/pipelines/__init__.py @@ -266,6 +266,9 @@ class VulnerableCodeBaseImporterPipelineV2(VulnerableCodePipeline): repo_url = None ignorable_versions = [] + # Control how often progress log is shown (range: 1–100, higher value = less frequent log) + progress_step = 10 + # When set to true pipeline is run only once. # To rerun onetime pipeline reset is_active field to True via migration. run_once = False @@ -301,7 +304,11 @@ def collect_and_store_advisories(self): if estimated_advisory_count > 0: self.log(f"Collecting {estimated_advisory_count:,d} advisories") - progress = LoopProgress(total_iterations=estimated_advisory_count, logger=self.log) + progress = LoopProgress( + total_iterations=estimated_advisory_count, + logger=self.log, + progress_step=self.progress_step, + ) for advisory in progress.iter(self.collect_advisories()): if advisory is None: self.log("Advisory is None, skipping") From 81be12ac4e5fbc87a64a1a5b95c7c32e0d9f4f79 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 17:28:19 +0530 Subject: [PATCH 07/10] Add v2 pipeline to collect Ubuntu OSV advisories Signed-off-by: Keshav Priyadarshi --- .../v2_importers/ubuntu_osv_importer.py | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 vulnerabilities/pipelines/v2_importers/ubuntu_osv_importer.py diff --git a/vulnerabilities/pipelines/v2_importers/ubuntu_osv_importer.py b/vulnerabilities/pipelines/v2_importers/ubuntu_osv_importer.py new file mode 100644 index 000000000..2b4e5527b --- /dev/null +++ b/vulnerabilities/pipelines/v2_importers/ubuntu_osv_importer.py @@ -0,0 +1,79 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# VulnerableCode is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/vulnerablecode for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +from pathlib import Path +from typing import Iterable + +from fetchcode.vcs import fetch_via_vcs + +from vulnerabilities.importer import AdvisoryData +from vulnerabilities.pipelines import VulnerableCodeBaseImporterPipelineV2 +from vulnerabilities.pipes.osv_v2 import parse_advisory_data_v3 +from vulnerabilities.utils import get_advisory_url +from vulnerabilities.utils import load_json + + +class UbuntuOSVImporterPipeline(VulnerableCodeBaseImporterPipelineV2): + """ + Collect Ubuntu OSV format advisories. + + Collect advisories from the GitHub Ubuntu Vulnerability Data repository. + """ + + pipeline_id = "ubuntu_osv_importer_v2" + spdx_license_expression = "CC-BY-4.0" + license_url = "https://github.com/canonical/ubuntu-security-notices/blob/main/LICENSE" + repo_url = "git+https://github.com/canonical/ubuntu-security-notices/" + + progress_step = 1 + + @classmethod + def steps(cls): + return ( + cls.clone, + cls.collect_and_store_advisories, + cls.clean_downloads, + ) + + def clone(self): + self.log(f"Cloning `{self.repo_url}`") + self.vcs_response = fetch_via_vcs(self.repo_url) + self.advisories_path = Path(self.vcs_response.dest_dir) + + def advisories_count(self): + cve_directory = self.advisories_path / "osv" / "cve" + return sum(1 for _ in cve_directory.rglob("*.json")) + + def collect_advisories(self) -> Iterable[AdvisoryData]: + supported_ecosystems = ["deb"] + cve_directory = self.advisories_path / "osv" / "cve" + + for file in cve_directory.rglob("*.json"): + advisory_url = get_advisory_url( + file=file, + base_path=self.advisories_path, + url="https://github.com/canonical/ubuntu-security-notices/blob/main/", + ) + raw_data = load_json(file) + advisory_text = file.read_text() + + yield parse_advisory_data_v3( + raw_data=raw_data, + supported_ecosystems=supported_ecosystems, + advisory_url=advisory_url, + advisory_text=advisory_text, + ) + + def clean_downloads(self): + if self.vcs_response: + self.log("Removing cloned repository") + self.vcs_response.delete() + + def on_failure(self): + self.clean_downloads() From eb62cbb586350fa4af4f442de4401e35a0539024 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 21:55:54 +0530 Subject: [PATCH 08/10] Test v2 ubuntu importer pipeline Signed-off-by: Keshav Priyadarshi --- .../v2_importers/test_ubuntu_osv_importer.py | 43 + .../ubuntu_osv_advisoryv2-expected.json | 6102 ++++ .../osv/cve/2001/UBUNTU-CVE-2001-1593.json | 63 + .../osv/cve/2005/UBUNTU-CVE-2005-1515.json | 189 + .../osv/cve/2010/UBUNTU-CVE-2010-0751.json | 103 + .../osv/cve/2010/UBUNTU-CVE-2010-1824.json | 320 + .../osv/cve/2010/UBUNTU-CVE-2010-2496.json | 325 + .../osv/cve/2015/UBUNTU-CVE-2015-0209.json | 89 + .../osv/cve/2015/UBUNTU-CVE-2015-0222.json | 80 + .../osv/cve/2015/UBUNTU-CVE-2015-0244.json | 174 + .../osv/cve/2015/UBUNTU-CVE-2015-0261.json | 74 + .../osv/cve/2015/UBUNTU-CVE-2015-0295.json | 393 + .../osv/cve/2020/UBUNTU-CVE-2020-0305.json | 8566 +++++ .../osv/cve/2020/UBUNTU-CVE-2020-0556.json | 176 + .../osv/cve/2020/UBUNTU-CVE-2020-1739.json | 223 + .../osv/cve/2020/UBUNTU-CVE-2020-1770.json | 157 + .../osv/cve/2020/UBUNTU-CVE-2020-1944.json | 193 + .../osv/cve/2020/UBUNTU-CVE-2020-2590.json | 581 + .../osv/cve/2020/UBUNTU-CVE-2020-6537.json | 306 + .../osv/cve/2025/UBUNTU-CVE-2025-0245.json | 428 + .../osv/cve/2025/UBUNTU-CVE-2025-0677.json | 839 + .../osv/cve/2025/UBUNTU-CVE-2025-1179.json | 1490 + .../osv/cve/2025/UBUNTU-CVE-2025-14345.json | 220 + .../osv/cve/2025/UBUNTU-CVE-2025-71115.json | 29143 ++++++++++++++++ 24 files changed, 50277 insertions(+) create mode 100644 vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2001/UBUNTU-CVE-2001-1593.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2005/UBUNTU-CVE-2005-1515.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-0751.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0209.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1944.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-14345.json create mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json diff --git a/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py b/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py new file mode 100644 index 000000000..6fa74717f --- /dev/null +++ b/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py @@ -0,0 +1,43 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# VulnerableCode is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/vulnerablecode for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + + +from pathlib import Path +from unittest.mock import patch + +from django.test import TestCase + +from vulnerabilities.models import AdvisoryV2 +from vulnerabilities.pipelines.v2_importers.ubuntu_osv_importer import UbuntuOSVImporterPipeline +from vulnerabilities.tests import util_tests +from vulnerabilities.tests.pipelines import TestLogger + +TEST_DATA = Path(__file__).parent.parent.parent / "test_data" / "ubuntu" + + +class TestUbuntuOSVImporterPipeline(TestCase): + def setUp(self): + self.logger = TestLogger() + + @patch( + "vulnerabilities.pipelines.v2_importers.ubuntu_osv_importer.UbuntuOSVImporterPipeline.clone" + ) + def test_redhat_advisories_v2(self, mock_clone): + mock_clone.__name__ = "clone" + pipeline = UbuntuOSVImporterPipeline() + pipeline.advisories_path = TEST_DATA / "ubuntu_security_notices" + pipeline.vcs_response = None + pipeline.log = self.logger.write + pipeline.execute() + + self.assertEqual(AdvisoryV2.objects.count(), 22) + + expected_file = TEST_DATA / "ubuntu_osv_advisoryv2-expected.json" + result = [adv.to_advisory_data().to_dict() for adv in AdvisoryV2.objects.all()] + util_tests.check_results_against_json(result, expected_file, regen=True) diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json new file mode 100644 index 000000000..840508897 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json @@ -0,0 +1,6102 @@ +[ + { + "advisory_id": "UBUNTU-CVE-2001-1593", + "aliases": [], + "summary": "Jakub Wilk found that a2ps, a tool to convert text and other types of files to PostScript, insecurely used a temporary file in spy_user(). A local attacker could use this flaw to perform a symbolic link attack to modify an arbitrary file accessible to the user running a2ps.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "a2ps", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:4.14-1.1", + "fixed_version_range": "vers:deb/1:4.14-1.2", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2001-1593" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2001-1593" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + } + ], + "date_published": "2014-04-05T21:55:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2001/UBUNTU-CVE-2001-1593.json" + }, + { + "advisory_id": "UBUNTU-CVE-2005-1515", + "aliases": [], + "summary": "Integer signedness error in the qmail_put and substdio_put functions in qmail, when running on 64 bit platforms with a large amount of virtual memory, allows remote attackers to cause a denial of service and possibly execute arbitrary code via a large number of SMTP RCPT TO commands.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "netqmail", + "version": "", + "qualifiers": "arch=source&distro=trusty/esm", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.06-5", + "fixed_version_range": "vers:deb/1.06-6.2~deb10u1build0.14.04.1+esm1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "netqmail", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.06-5", + "fixed_version_range": "vers:deb/1.06-6.2~deb10u1build0.16.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "netqmail", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.06-6", + "fixed_version_range": "vers:deb/1.06-6.2~deb10u1build0.18.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "netqmail", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.06-6.1", + "fixed_version_range": "vers:deb/1.06-6.2~deb10u1build0.20.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2005-1515" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-4556-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-4621-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2005-1515" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.openwall.com/lists/oss-security/2020/05/19/8" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + } + ], + "date_published": "2020-05-24T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2005/UBUNTU-CVE-2005-1515.json" + }, + { + "advisory_id": "UBUNTU-CVE-2010-0751", + "aliases": [], + "summary": "The ip_evictor function in ip_fragment.c in libnids before 1.24, as used in dsniff and possibly other products, allows remote attackers to cause a denial of service (NULL pointer dereference and crash) via crafted fragmented packets.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "libnids", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/<1.23-2", + "fixed_version_range": "vers:deb/1.23-2", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "libnids", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/<1.23-2", + "fixed_version_range": "vers:deb/1.23-2", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2010-0751" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-0751" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + } + ], + "date_published": "2010-04-06T16:30:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-0751.json" + }, + { + "advisory_id": "UBUNTU-CVE-2010-1824", + "aliases": [], + "summary": "Use-after-free vulnerability in WebKit, as used in Apple iTunes before 10.2 on Windows, Apple Safari, and Google Chrome before 6.0.472.59, allows remote attackers to execute arbitrary code or cause a denial of service via vectors related to SVG styles, the DOM tree, and error messages.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "webkitgtk", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.2.1-2ubuntu2|2.3.2-1ubuntu2|2.3.2-1ubuntu3|2.3.2-1ubuntu4|2.3.2-1ubuntu5|2.3.2-1ubuntu6|2.3.4-1ubuntu2|2.3.90-1ubuntu1|2.3.91-0ubuntu1|2.4.0-1ubuntu2|2.4.2-1ubuntu0.1|2.4.3-1ubuntu2|2.4.4-1~ubuntu1|2.4.7-1~ubuntu1", + "fixed_version_range": "vers:deb/2.4.8-1ubuntu1~ubuntu14.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "webkitgtk", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/<2.4.9-2ubuntu2", + "fixed_version_range": "vers:deb/2.4.9-2ubuntu2", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2010-1824" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-1195-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-1824" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + } + ], + "date_published": "2010-09-24T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-1824.json" + }, + { + "advisory_id": "UBUNTU-CVE-2010-2496", + "aliases": [], + "summary": "stonith-ng in pacemaker and cluster-glue passed passwords as commandline parameters, making it possible for local attackers to gain access to passwords of the HA stack and potentially influence its operations. This is fixed in cluster-glue 1.0.6 and newer, and pacemaker 1.1.3 and newer.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "cluster-glue", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.0.12-5ubuntu2|1.0.12-7", + "fixed_version_range": "vers:deb/1.0.12-7build1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "pacemaker", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.1.16-1ubuntu1|1.1.18~rc3-1ubuntu1|1.1.18~rc4-1ubuntu1|1.1.18-0ubuntu1|1.1.18-0ubuntu1.1|1.1.18-0ubuntu1.2", + "fixed_version_range": "vers:deb/1.1.18-0ubuntu1.3", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://bugzilla.suse.com/show_bug.cgi?id=620781" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://github.com/ClusterLabs/cluster-glue/commit/3d7b464439ee0271da76e0ee9480f3dc14005879" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://github.com/ClusterLabs/pacemaker/commit/7901f43c5800374d41ae2287fe122692fe045664" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2010-2496" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-2496" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "5.5", + "scoring_elements": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" + } + ], + "date_published": "2021-10-18T13:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-2496.json" + }, + { + "advisory_id": "UBUNTU-CVE-2015-0209", + "aliases": [], + "summary": "Use-after-free vulnerability in the d2i_ECPrivateKey function in crypto/ec/ec_asn1.c in OpenSSL before 0.9.8zf, 1.0.0 before 1.0.0r, 1.0.1 before 1.0.1m, and 1.0.2 before 1.0.2a might allow remote attackers to cause a denial of service (memory corruption and application crash) or possibly have unspecified other impact via a malformed Elliptic Curve (EC) private-key file that is improperly handled during import.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openssl", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.0.1e-3ubuntu1|1.0.1e-4ubuntu1|1.0.1e-4ubuntu2|1.0.1e-4ubuntu3|1.0.1e-4ubuntu4|1.0.1f-1ubuntu1|1.0.1f-1ubuntu2|1.0.1f-1ubuntu2.1|1.0.1f-1ubuntu2.2|1.0.1f-1ubuntu2.3|1.0.1f-1ubuntu2.4|1.0.1f-1ubuntu2.5|1.0.1f-1ubuntu2.7|1.0.1f-1ubuntu2.8", + "fixed_version_range": "vers:deb/1.0.1f-1ubuntu2.11", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2015-0209" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-2537-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0209" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + } + ], + "date_published": "2015-03-17T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0209.json" + }, + { + "advisory_id": "UBUNTU-CVE-2015-0222", + "aliases": [], + "summary": "ModelMultipleChoiceField in Django 1.6.x before 1.6.10 and 1.7.x before 1.7.3, when show_hidden_initial is set to True, allows remote attackers to cause a denial of service by submitting duplicate values, which triggers a large number of SQL queries.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "python-django", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.5.4-1ubuntu1|1.6-1|1.6.1-1|1.6.1-2|1.6.1-2ubuntu0.1|1.6.1-2ubuntu0.2|1.6.1-2ubuntu0.3|1.6.1-2ubuntu0.4|1.6.1-2ubuntu0.5", + "fixed_version_range": "vers:deb/1.6.1-2ubuntu0.6", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2015-0222" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-2469-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0222" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.djangoproject.com/weblog/2015/jan/13/security/" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + } + ], + "date_published": "2015-01-13T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0222.json" + }, + { + "advisory_id": "UBUNTU-CVE-2015-0244", + "aliases": [], + "summary": "PostgreSQL before 9.0.19, 9.1.x before 9.1.15, 9.2.x before 9.2.10, 9.3.x before 9.3.6, and 9.4.x before 9.4.1 does not properly handle errors while reading a protocol message, which allows remote attackers to conduct SQL injection attacks via crafted binary data in a parameter and causing an error, which triggers the loss of synchronization and part of the protocol message to be treated as a new message, as demonstrated by causing a timeout or query cancellation.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "postgresql-9.1", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/9.1.10-1|9.1.10-1bzr1|9.1.11-1|9.1.11-2|9.1.12-1|9.1.13-1|9.1.14-0ubuntu0.14.04", + "fixed_version_range": "vers:deb/9.1.15-0ubuntu0.14.04", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "postgresql-9.3", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/9.3.1-1|9.3.2-1|9.3.2-1ubuntu1|9.3.2-1ubuntu2|9.3.3-1|9.3.3-1bzr1|9.3.3-1bzr2|9.3.4-1|9.3.5-0ubuntu0.14.04.1", + "fixed_version_range": "vers:deb/9.3.6-0ubuntu0.14.04", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2015-0244" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-2499-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0244" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "9.8", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" + } + ], + "date_published": "2015-02-06T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0244.json" + }, + { + "advisory_id": "UBUNTU-CVE-2015-0261", + "aliases": [], + "summary": "Integer signedness error in the mobility_opt_print function in the IPv6 mobility printer in tcpdump before 4.7.2 allows remote attackers to cause a denial of service (out-of-bounds read and crash) or possibly execute arbitrary code via a negative length value.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "tcpdump", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1ubuntu1|4.5.1-2ubuntu1|4.5.1-2ubuntu1.1", + "fixed_version_range": "vers:deb/4.5.1-2ubuntu1.2", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "http://seclists.org/bugtraq/2015/Mar/33" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2015-0261" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-2580-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0261" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + } + ], + "date_published": "2015-03-24T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0261.json" + }, + { + "advisory_id": "UBUNTU-CVE-2015-0295", + "aliases": [], + "summary": "The BMP decoder in QtGui in QT before 5.5 does not properly calculate the masks used to extract the color components, which allows remote attackers to cause a denial of service (divide-by-zero and crash) via a crafted BMP file.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "qt4-x11", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/4:4.8.4+dfsg-0ubuntu18|4:4.8.4+dfsg-0ubuntu19|4:4.8.4+dfsg-0ubuntu20|4:4.8.4+dfsg-0ubuntu21|4:4.8.4+dfsg-0ubuntu22|4:4.8.5+git192-g085f851+dfsg-2ubuntu3|4:4.8.5+git192-g085f851+dfsg-2ubuntu4", + "fixed_version_range": "vers:deb/4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "qtbase-opensource-src", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.2+dfsg1-7ubuntu11|5.0.2+dfsg1-7ubuntu12|5.0.2+dfsg1-7ubuntu13|5.0.2+dfsg1-7ubuntu14|5.0.2+dfsg1-7ubuntu15|5.0.2+dfsg1-7ubuntu16|5.0.2+dfsg1-7ubuntu17|5.0.2+dfsg1-7ubuntu18|5.2.1+dfsg-1ubuntu7|5.2.1+dfsg-1ubuntu8|5.2.1+dfsg-1ubuntu9|5.2.1+dfsg-1ubuntu10|5.2.1+dfsg-1ubuntu11|5.2.1+dfsg-1ubuntu13|5.2.1+dfsg-1ubuntu14|5.2.1+dfsg-1ubuntu14.2", + "fixed_version_range": "vers:deb/5.2.1+dfsg-1ubuntu14.3", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "http://lists.qt-project.org/pipermail/announce/2015-February/000059.html" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2015-0295" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-2626-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0295" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + } + ], + "date_published": "2015-03-25T00:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0295.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-0305", + "aliases": [], + "summary": "In cdev_get of char_dev.c, there is a possible use-after-free due to a race condition. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-153467744", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-snapdragon", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1077.82|4.4.0-1078.83|4.4.0-1079.84|4.4.0-1081.86|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1055.59|4.15.0-1057.62|4.15.0-1058.64|4.15.0-1060.66|4.15.0-1062.69|4.15.0-1064.71|4.15.0-1065.72|4.15.0-1066.73|4.15.0-1067.74|4.15.0-1069.76|4.15.0-1070.77|4.15.0-1071.78|4.15.0-1072.79", + "fixed_version_range": "vers:deb/4.15.0-1074.81", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.0", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1021.24~18.04.1|5.0.0-1022.25~18.04.1|5.0.0-1023.26~18.04.1|5.0.0-1024.27~18.04.1|5.0.0-1025.28|5.0.0-1027.30", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=trusty/esm", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1002.2|4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1009.9|4.4.0-1010.10|4.4.0-1011.11|4.4.0-1012.12|4.4.0-1014.14|4.4.0-1016.16|4.4.0-1017.17|4.4.0-1019.19|4.4.0-1022.22|4.4.0-1023.23|4.4.0-1024.25|4.4.0-1025.26|4.4.0-1027.30|4.4.0-1028.31|4.4.0-1029.32|4.4.0-1031.34|4.4.0-1032.35|4.4.0-1034.37|4.4.0-1036.39|4.4.0-1037.40|4.4.0-1038.41|4.4.0-1039.42|4.4.0-1040.43|4.4.0-1042.45|4.4.0-1044.47|4.4.0-1045.48|4.4.0-1046.50|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1052.56|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1056.60|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1060.64|4.4.0-1061.65", + "fixed_version_range": "vers:deb/4.4.0-1062.66", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=trusty/esm", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1023.24~14.04.1|4.15.0-1030.31~14.04.1|4.15.0-1031.32~14.04.1|4.15.0-1032.33~14.04.2|4.15.0-1035.36~14.04.2|4.15.0-1036.38~14.04.2|4.15.0-1037.39~14.04.2|4.15.0-1039.41~14.04.2|4.15.0-1040.44~14.04.1|4.15.0-1041.45~14.04.1|4.15.0-1042.46~14.04.1|4.15.0-1045.49~14.04.1|4.15.0-1046.50~14.04.1|4.15.0-1047.51~14.04.1|4.15.0-1049.54~14.04.1|4.15.0-1050.55~14.04.1|4.15.0-1051.56~14.04.1|4.15.0-1052.57~14.04.1|4.15.0-1055.60~14.04.1|4.15.0-1056.61~14.04.1|4.15.0-1057.62~14.04.1|4.15.0-1059.64~14.04.1|4.15.0-1060.65~14.04.1|4.15.0-1061.66~14.04.1|4.15.0-1063.68~14.04.1|4.15.0-1064.69~14.04.1|4.15.0-1066.71~14.04.1|4.15.0-1067.72~14.04.1|4.15.0-1069.74~14.04.1|4.15.0-1071.76~14.04.1", + "fixed_version_range": "vers:deb/4.15.0-1074.79~14.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lts-xenial", + "version": "", + "qualifiers": "arch=source&distro=trusty/esm", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-13.29~14.04.1|4.4.0-14.30~14.04.2|4.4.0-15.31~14.04.1|4.4.0-18.34~14.04.1|4.4.0-21.37~14.04.1|4.4.0-22.39~14.04.1|4.4.0-22.40~14.04.1|4.4.0-24.43~14.04.1|4.4.0-28.47~14.04.1|4.4.0-31.50~14.04.1|4.4.0-34.53~14.04.1|4.4.0-36.55~14.04.1|4.4.0-38.57~14.04.1|4.4.0-42.62~14.04.1|4.4.0-45.66~14.04.1|4.4.0-47.68~14.04.1|4.4.0-51.72~14.04.1|4.4.0-53.74~14.04.1|4.4.0-57.78~14.04.1|4.4.0-59.80~14.04.1|4.4.0-62.83~14.04.1|4.4.0-63.84~14.04.2|4.4.0-64.85~14.04.1|4.4.0-66.87~14.04.1|4.4.0-67.88~14.04.1|4.4.0-70.91~14.04.1|4.4.0-71.92~14.04.1|4.4.0-72.93~14.04.1|4.4.0-75.96~14.04.1|4.4.0-78.99~14.04.2|4.4.0-79.100~14.04.1|4.4.0-81.104~14.04.1|4.4.0-83.106~14.04.1|4.4.0-87.110~14.04.1|4.4.0-89.112~14.04.1|4.4.0-91.114~14.04.1|4.4.0-92.115~14.04.1|4.4.0-93.116~14.04.1|4.4.0-96.119~14.04.1|4.4.0-97.120~14.04.1|4.4.0-98.121~14.04.1|4.4.0-101.124~14.04.1|4.4.0-103.126~14.04.1|4.4.0-104.127~14.04.1|4.4.0-108.131~14.04.1|4.4.0-109.132~14.04.1|4.4.0-111.134~14.04.1|4.4.0-112.135~14.04.1|4.4.0-116.140~14.04.1|4.4.0-119.143~14.04.1|4.4.0-121.145~14.04.1|4.4.0-124.148~14.04.1|4.4.0-127.153~14.04.1|4.4.0-128.154~14.04.1|4.4.0-130.156~14.04.1|4.4.0-131.157~14.04.1|4.4.0-133.159~14.04.1|4.4.0-134.160~14.04.1|4.4.0-135.161~14.04.1|4.4.0-137.163~14.04.1|4.4.0-138.164~14.04.1|4.4.0-139.165~14.04.1|4.4.0-140.166~14.04.1|4.4.0-141.167~14.04.1|4.4.0-142.168~14.04.1|4.4.0-143.169~14.04.2|4.4.0-144.170~14.04.1|4.4.0-146.172~14.04.1|4.4.0-148.174~14.04.1|4.4.0-150.176~14.04.1|4.4.0-151.178~14.04.1|4.4.0-154.181~14.04.1|4.4.0-157.185~14.04.1|4.4.0-159.187~14.04.1|4.4.0-161.189~14.04.1|4.4.0-164.192~14.04.1|4.4.0-165.193~14.04.1|4.4.0-166.195~14.04.1|4.4.0-168.197~14.04.1|4.4.0-169.198~14.04.1|4.4.0-170.199~14.04.1|4.4.0-171.200~14.04.1|4.4.0-173.203~14.04.1", + "fixed_version_range": "vers:deb/4.4.0-174.204~14.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/3.11.0-12.19|3.12.0-1.3|3.12.0-2.5|3.12.0-2.7|3.12.0-3.8|3.12.0-3.9|3.12.0-4.10|3.12.0-4.12|3.12.0-5.13|3.12.0-7.15|3.13.0-1.16|3.13.0-2.17|3.13.0-3.18|3.13.0-4.19|3.13.0-5.20|3.13.0-6.23|3.13.0-7.25|3.13.0-7.26|3.13.0-8.27|3.13.0-8.28|3.13.0-10.30|3.13.0-11.31|3.13.0-12.32|3.13.0-13.33|3.13.0-14.34|3.13.0-15.35|3.13.0-16.36|3.13.0-17.37|3.13.0-18.38|3.13.0-19.39|3.13.0-19.40|3.13.0-20.42|3.13.0-21.43|3.13.0-22.44|3.13.0-23.45|3.13.0-24.46|3.13.0-24.47|3.13.0-27.50|3.13.0-29.53|3.13.0-30.54|3.13.0-30.55|3.13.0-32.57|3.13.0-33.58|3.13.0-34.60|3.13.0-35.62|3.13.0-36.63|3.13.0-37.64|3.13.0-39.66|3.13.0-40.69|3.13.0-41.70|3.13.0-43.72|3.13.0-44.73|3.13.0-45.74|3.13.0-46.75|3.13.0-46.76|3.13.0-46.77|3.13.0-46.79|3.13.0-48.80|3.13.0-49.81|3.13.0-49.83|3.13.0-51.84|3.13.0-52.85|3.13.0-52.86|3.13.0-53.88|3.13.0-53.89|3.13.0-54.91|3.13.0-55.92|3.13.0-55.94|3.13.0-57.95|3.13.0-58.97|3.13.0-59.98|3.13.0-61.100|3.13.0-62.102|3.13.0-63.103|3.13.0-65.105|3.13.0-65.106|3.13.0-66.108|3.13.0-67.110|3.13.0-68.111|3.13.0-70.113|3.13.0-71.114|3.13.0-73.116|3.13.0-74.118|3.13.0-76.120|3.13.0-77.121|3.13.0-79.123|3.13.0-83.127|3.13.0-85.129|3.13.0-86.130|3.13.0-86.131|3.13.0-87.133|3.13.0-88.135|3.13.0-91.138|3.13.0-92.139|3.13.0-93.140|3.13.0-95.142|3.13.0-96.143|3.13.0-98.145|3.13.0-100.147|3.13.0-101.148|3.13.0-103.150|3.13.0-105.152|3.13.0-106.153|3.13.0-107.154|3.13.0-108.155|3.13.0-109.156|3.13.0-110.157|3.13.0-111.158|3.13.0-112.159|3.13.0-113.160|3.13.0-115.162|3.13.0-116.163|3.13.0-117.164|3.13.0-119.166|3.13.0-121.170|3.13.0-123.172|3.13.0-125.174|3.13.0-126.175|3.13.0-128.177|3.13.0-129.178|3.13.0-132.181|3.13.0-133.182|3.13.0-135.184|3.13.0-137.186|3.13.0-139.188|3.13.0-141.190|3.13.0-142.191|3.13.0-143.192|3.13.0-144.193|3.13.0-145.194|3.13.0-147.196|3.13.0-149.199|3.13.0-151.201|3.13.0-153.203|3.13.0-155.205|3.13.0-156.206|3.13.0-157.207|3.13.0-158.208|3.13.0-160.210|3.13.0-161.211|3.13.0-162.212|3.13.0-163.213|3.13.0-164.214|3.13.0-165.215|3.13.0-166.216|3.13.0-167.217|3.13.0-168.218|3.13.0-169.219|3.13.0-170.220|3.13.0-171.222|3.13.0-172.223|3.13.0-173.224|3.13.0-174.225|3.13.0-175.226|3.13.0-176.227|3.13.0-180.231|3.13.0-181.232|3.13.0-182.233|3.13.0-183.234|3.13.0-184.235|3.13.0-185.236|3.13.0-186.237|3.13.0-187.238|3.13.0-188.239|3.13.0-189.240|3.13.0-190.241|3.13.0-191.242|3.13.0-192.243|3.13.0-193.244|3.13.0-194.245|3.13.0-195.246|3.13.0-196.247|3.13.0-197.248|3.13.0-198.249|3.13.0-199.250|3.13.0-200.251|3.13.0-201.252|3.13.0-202.253|3.13.0-203.254|3.13.0-204.255|3.13.0-205.256|3.13.0-206.257|3.13.0-207.258|3.13.0-208.259|3.13.0-209.260|3.13.0-210.261", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi2", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.2.0-1013.19|4.2.0-1014.21|4.3.0-1006.6|4.4.0-1003.4|4.4.0-1004.5|4.4.0-1009.10|4.4.0-1010.12|4.4.0-1010.13|4.4.0-1012.16|4.4.0-1016.22|4.4.0-1017.23|4.4.0-1019.25|4.4.0-1021.27|4.4.0-1023.29|4.4.0-1027.33|4.4.0-1029.36|4.4.0-1034.41|4.4.0-1038.45|4.4.0-1040.47|4.4.0-1042.49|4.4.0-1044.51|4.4.0-1046.53|4.4.0-1048.55|4.4.0-1050.57|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1055.62|4.4.0-1057.64|4.4.0-1059.67|4.4.0-1061.69|4.4.0-1065.73|4.4.0-1067.75|4.4.0-1069.77|4.4.0-1070.78|4.4.0-1071.79|4.4.0-1074.82|4.4.0-1075.83|4.4.0-1076.84|4.4.0-1077.85|4.4.0-1079.87|4.4.0-1080.88|4.4.0-1082.90|4.4.0-1085.93|4.4.0-1086.94|4.4.0-1087.95|4.4.0-1089.97|4.4.0-1090.98|4.4.0-1091.99|4.4.0-1092.100|4.4.0-1094.102|4.4.0-1095.103|4.4.0-1096.104|4.4.0-1098.106|4.4.0-1099.107|4.4.0-1100.108|4.4.0-1101.109|4.4.0-1102.110|4.4.0-1103.111|4.4.0-1104.112|4.4.0-1106.114|4.4.0-1107.115|4.4.0-1109.117|4.4.0-1110.118|4.4.0-1111.120|4.4.0-1114.123|4.4.0-1117.126|4.4.0-1118.127|4.4.0-1120.129|4.4.0-1122.131|4.4.0-1123.132|4.4.0-1124.133|4.4.0-1125.134|4.4.0-1126.135|4.4.0-1127.136|4.4.0-1128.137", + "fixed_version_range": "vers:deb/4.4.0-1129.138", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.2.0-16.19|4.2.0-17.21|4.2.0-19.23|4.3.0-1.10|4.3.0-2.11|4.3.0-5.16|4.3.0-6.17|4.3.0-7.18|4.4.0-2.16|4.4.0-4.19|4.4.0-6.21|4.4.0-7.22|4.4.0-8.23|4.4.0-9.24|4.4.0-10.25|4.4.0-11.26|4.4.0-12.28|4.4.0-13.29|4.4.0-14.30|4.4.0-15.31|4.4.0-16.32|4.4.0-17.33|4.4.0-18.34|4.4.0-21.37|4.4.0-22.39|4.4.0-22.40|4.4.0-24.43|4.4.0-28.47|4.4.0-31.50|4.4.0-34.53|4.4.0-36.55|4.4.0-38.57|4.4.0-42.62|4.4.0-43.63|4.4.0-45.66|4.4.0-47.68|4.4.0-51.72|4.4.0-53.74|4.4.0-57.78|4.4.0-59.80|4.4.0-62.83|4.4.0-63.84|4.4.0-64.85|4.4.0-65.86|4.4.0-66.87|4.4.0-67.88|4.4.0-70.91|4.4.0-71.92|4.4.0-72.93|4.4.0-75.96|4.4.0-77.98|4.4.0-78.99|4.4.0-79.100|4.4.0-81.104|4.4.0-83.106|4.4.0-87.110|4.4.0-89.112|4.4.0-91.114|4.4.0-92.115|4.4.0-93.116|4.4.0-96.119|4.4.0-97.120|4.4.0-98.121|4.4.0-101.124|4.4.0-103.126|4.4.0-104.127|4.4.0-108.131|4.4.0-109.132|4.4.0-112.135|4.4.0-116.140|4.4.0-119.143|4.4.0-121.145|4.4.0-122.146|4.4.0-124.148|4.4.0-127.153|4.4.0-128.154|4.4.0-130.156|4.4.0-131.157|4.4.0-133.159|4.4.0-134.160|4.4.0-135.161|4.4.0-137.163|4.4.0-138.164|4.4.0-139.165|4.4.0-140.166|4.4.0-141.167|4.4.0-142.168|4.4.0-143.169|4.4.0-145.171|4.4.0-146.172|4.4.0-148.174|4.4.0-150.176|4.4.0-151.178|4.4.0-154.181|4.4.0-157.185|4.4.0-159.187|4.4.0-161.189|4.4.0-164.192|4.4.0-165.193|4.4.0-166.195|4.4.0-168.197|4.4.0-169.198|4.4.0-170.199|4.4.0-171.200|4.4.0-173.203", + "fixed_version_range": "vers:deb/4.4.0-174.204", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1001.10|4.4.0-1003.12|4.4.0-1004.13|4.4.0-1007.16|4.4.0-1009.18|4.4.0-1011.20|4.4.0-1012.21|4.4.0-1013.22|4.4.0-1016.25|4.4.0-1017.26|4.4.0-1018.27|4.4.0-1020.29|4.4.0-1022.31|4.4.0-1026.35|4.4.0-1028.37|4.4.0-1030.39|4.4.0-1031.40|4.4.0-1032.41|4.4.0-1035.44|4.4.0-1037.46|4.4.0-1038.47|4.4.0-1039.48|4.4.0-1041.50|4.4.0-1043.52|4.4.0-1044.53|4.4.0-1047.56|4.4.0-1048.57|4.4.0-1049.58|4.4.0-1050.59|4.4.0-1052.61|4.4.0-1054.63|4.4.0-1055.64|4.4.0-1057.66|4.4.0-1060.69|4.4.0-1061.70|4.4.0-1062.71|4.4.0-1063.72|4.4.0-1065.75|4.4.0-1066.76|4.4.0-1067.77|4.4.0-1069.79|4.4.0-1070.80|4.4.0-1072.82|4.4.0-1073.83|4.4.0-1074.84|4.4.0-1075.85|4.4.0-1077.87|4.4.0-1079.89|4.4.0-1081.91|4.4.0-1083.93|4.4.0-1084.94|4.4.0-1085.96|4.4.0-1087.98|4.4.0-1088.99|4.4.0-1090.101|4.4.0-1092.103|4.4.0-1094.105|4.4.0-1095.106|4.4.0-1096.107|4.4.0-1098.109|4.4.0-1099.110|4.4.0-1100.111|4.4.0-1101.112", + "fixed_version_range": "vers:deb/4.4.0-1102.113", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-hwe", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1030.31~16.04.1|4.15.0-1031.33~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1035.37~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1039.41~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43~16.04.1|4.15.0-1043.45~16.04.1|4.15.0-1044.46~16.04.1|4.15.0-1045.47~16.04.1|4.15.0-1047.49~16.04.1|4.15.0-1048.50~16.04.1|4.15.0-1050.52~16.04.1|4.15.0-1051.53~16.04.1|4.15.0-1052.54~16.04.1|4.15.0-1054.56~16.04.1|4.15.0-1056.58~16.04.1|4.15.0-1057.59~16.04.1|4.15.0-1058.60~16.04.1|4.15.0-1060.62~16.04.1", + "fixed_version_range": "vers:deb/4.15.0-1063.67~16.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.11.0-1009.9|4.11.0-1011.11|4.11.0-1013.13|4.11.0-1014.14|4.11.0-1015.15|4.11.0-1016.16|4.13.0-1005.7|4.13.0-1006.8|4.13.0-1007.9|4.13.0-1009.12|4.13.0-1011.14|4.13.0-1012.15|4.13.0-1014.17|4.13.0-1016.19|4.13.0-1018.21|4.15.0-1013.13~16.04.2|4.15.0-1014.14~16.04.1|4.15.0-1018.18~16.04.1|4.15.0-1019.19~16.04.1|4.15.0-1021.21~16.04.1|4.15.0-1022.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1025.26~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1030.31~16.04.1|4.15.0-1031.32~16.04.1|4.15.0-1032.33~16.04.1|4.15.0-1035.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1039.43|4.15.0-1040.44|4.15.0-1041.45|4.15.0-1042.46|4.15.0-1045.49|4.15.0-1046.50|4.15.0-1047.51|4.15.0-1049.54|4.15.0-1050.55|4.15.0-1051.56|4.15.0-1052.57|4.15.0-1055.60|4.15.0-1056.61|4.15.0-1057.62|4.15.0-1059.64|4.15.0-1060.65|4.15.0-1061.66|4.15.0-1063.68|4.15.0-1064.69|4.15.0-1066.71|4.15.0-1067.72|4.15.0-1069.74|4.15.0-1071.76", + "fixed_version_range": "vers:deb/4.15.0-1075.80", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.10.0-1004.4|4.10.0-1006.6|4.10.0-1007.7|4.10.0-1008.8|4.10.0-1009.9|4.13.0-1002.5|4.13.0-1006.9|4.13.0-1007.10|4.13.0-1008.11|4.13.0-1011.15|4.13.0-1012.16|4.13.0-1013.17|4.13.0-1015.19|4.13.0-1017.21|4.13.0-1019.23|4.15.0-1014.14~16.04.1|4.15.0-1015.15~16.04.1|4.15.0-1017.18~16.04.1|4.15.0-1018.19~16.04.2|4.15.0-1019.20~16.04.1|4.15.0-1021.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1024.25~16.04.2|4.15.0-1025.26~16.04.1|4.15.0-1026.27~16.04.1|4.15.0-1027.28~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1029.31~16.04.1|4.15.0-1030.32~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1034.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1046.49|4.15.0-1047.50|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.56|4.15.0-1055.59", + "fixed_version_range": "vers:deb/4.15.0-1058.62", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.8.0-36.36~16.04.1|4.8.0-39.42~16.04.1|4.8.0-41.44~16.04.1|4.8.0-42.45~16.04.1|4.8.0-44.47~16.04.1|4.8.0-45.48~16.04.1|4.8.0-46.49~16.04.1|4.8.0-49.52~16.04.1|4.8.0-51.54~16.04.1|4.8.0-52.55~16.04.1|4.8.0-53.56~16.04.1|4.8.0-54.57~16.04.1|4.8.0-56.61~16.04.1|4.8.0-58.63~16.04.1|4.10.0-27.30~16.04.2|4.10.0-28.32~16.04.2|4.10.0-30.34~16.04.1|4.10.0-32.36~16.04.1|4.10.0-33.37~16.04.1|4.10.0-35.39~16.04.1|4.10.0-37.41~16.04.1|4.10.0-38.42~16.04.1|4.10.0-40.44~16.04.1|4.10.0-42.46~16.04.1|4.13.0-26.29~16.04.2|4.13.0-31.34~16.04.1|4.13.0-32.35~16.04.1|4.13.0-36.40~16.04.1|4.13.0-37.42~16.04.1|4.13.0-38.43~16.04.1|4.13.0-39.44~16.04.1|4.13.0-41.46~16.04.1|4.13.0-43.48~16.04.1|4.13.0-45.50~16.04.1|4.15.0-24.26~16.04.1|4.15.0-29.31~16.04.1|4.15.0-30.32~16.04.1|4.15.0-32.35~16.04.1|4.15.0-33.36~16.04.1|4.15.0-34.37~16.04.1|4.15.0-36.39~16.04.1|4.15.0-38.41~16.04.1|4.15.0-39.42~16.04.1|4.15.0-42.45~16.04.1|4.15.0-43.46~16.04.1|4.15.0-45.48~16.04.1|4.15.0-46.49~16.04.1|4.15.0-47.50~16.04.1|4.15.0-48.51~16.04.1|4.15.0-50.54~16.04.1|4.15.0-51.55~16.04.1|4.15.0-52.56~16.04.1|4.15.0-54.58~16.04.1|4.15.0-55.60~16.04.2|4.15.0-58.64~16.04.1|4.15.0-60.67~16.04.1|4.15.0-62.69~16.04.1|4.15.0-64.73~16.04.1|4.15.0-65.74~16.04.1|4.15.0-66.75~16.04.1|4.15.0-69.78~16.04.1|4.15.0-70.79~16.04.1|4.15.0-72.81~16.04.1|4.15.0-74.83~16.04.1|4.15.0-76.86~16.04.1|4.15.0-88.88~16.04.1", + "fixed_version_range": "vers:deb/4.15.0-91.92~16.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1004.9|4.4.0-1007.12|4.4.0-1008.13|4.4.0-1009.14|4.4.0-1010.15|4.4.0-1012.17|4.4.0-1013.18|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1020.25|4.4.0-1021.26|4.4.0-1023.28|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1029.34|4.4.0-1031.37|4.4.0-1032.38|4.4.0-1033.39|4.4.0-1035.41|4.4.0-1036.42|4.4.0-1037.43|4.4.0-1038.44|4.4.0-1039.45|4.4.0-1040.46|4.4.0-1041.47|4.4.0-1043.49|4.4.0-1044.50|4.4.0-1046.52|4.4.0-1047.53|4.4.0-1048.55|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1056.63|4.4.0-1058.65|4.4.0-1059.66|4.4.0-1060.67|4.4.0-1062.69|4.4.0-1063.70|4.4.0-1064.71|4.4.0-1065.72", + "fixed_version_range": "vers:deb/4.4.0-1066.73", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1007.9~16.04.1|4.15.0-1008.10~16.04.1|4.15.0-1009.11~16.04.1|4.15.0-1010.12~16.04.1|4.15.0-1011.13~16.04.1|4.15.0-1013.15~16.04.1|4.15.0-1014.16~16.04.1|4.15.0-1015.17~16.04.1|4.15.0-1017.19~16.04.2|4.15.0-1018.20~16.04.1|4.15.0-1021.23~16.04.1|4.15.0-1022.25~16.04.1|4.15.0-1023.26~16.04.1|4.15.0-1025.28~16.04.1|4.15.0-1026.29~16.04.1|4.15.0-1027.30~16.04.1|4.15.0-1029.32~16.04.1|4.15.0-1030.33~16.04.1|4.15.0-1031.34~16.04.1|4.15.0-1033.36~16.04.1", + "fixed_version_range": "vers:deb/4.15.0-1035.38~16.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-snapdragon", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1012.12|4.4.0-1013.14|4.4.0-1013.15|4.4.0-1015.18|4.4.0-1019.22|4.4.0-1020.23|4.4.0-1022.25|4.4.0-1024.27|4.4.0-1026.29|4.4.0-1030.33|4.4.0-1032.36|4.4.0-1035.39|4.4.0-1039.43|4.4.0-1042.46|4.4.0-1044.48|4.4.0-1046.50|4.4.0-1047.51|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1051.55|4.4.0-1053.57|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1057.61|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1061.66|4.4.0-1063.68|4.4.0-1067.72|4.4.0-1069.74|4.4.0-1071.76|4.4.0-1072.77|4.4.0-1073.78|4.4.0-1076.81|4.4.0-1077.82|4.4.0-1078.83|4.4.0-1079.84|4.4.0-1081.86|4.4.0-1082.87|4.4.0-1084.89|4.4.0-1087.92|4.4.0-1088.93|4.4.0-1090.95|4.4.0-1092.97|4.4.0-1093.98|4.4.0-1094.99|4.4.0-1095.100|4.4.0-1096.101|4.4.0-1098.103|4.4.0-1099.104|4.4.0-1100.105|4.4.0-1102.107|4.4.0-1103.108|4.4.0-1104.109|4.4.0-1105.110|4.4.0-1106.111|4.4.0-1107.112|4.4.0-1108.113|4.4.0-1110.115|4.4.0-1111.116|4.4.0-1113.118|4.4.0-1114.119|4.4.0-1115.121|4.4.0-1118.124|4.4.0-1121.127|4.4.0-1122.128|4.4.0-1124.130|4.4.0-1126.132|4.4.0-1127.135|4.4.0-1128.136|4.4.0-1129.137|4.4.0-1130.138|4.4.0-1131.139|4.4.0-1132.140", + "fixed_version_range": "vers:deb/4.4.0-1133.141", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-edge", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.8.0-28.30~16.04.1|4.8.0-30.32~16.04.1|4.8.0-32.34~16.04.1|4.8.0-34.36~16.04.1|4.10.0-14.16~16.04.1|4.10.0-19.21~16.04.1|4.10.0-20.22~16.04.1|4.10.0-21.23~16.04.1|4.10.0-22.24~16.04.1|4.10.0-24.28~16.04.1|4.10.0-26.30~16.04.1|4.11.0-13.19~16.04.1|4.11.0-14.20~16.04.1|4.13.0-16.19~16.04.3|4.13.0-17.20~16.04.1|4.13.0-19.22~16.04.1|4.13.0-21.24~16.04.1|4.13.0-25.29~16.04.2|4.15.0-13.14~16.04.1|4.15.0-15.16~16.04.1|4.15.0-20.21~16.04.1|4.15.0-22.24~16.04.1|4.15.0-23.25~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1008.10|4.4.0-1010.13|4.4.0-1011.14|4.4.0-1012.16|4.4.0-1013.17|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1021.26|4.4.0-1022.27|4.4.0-1023.28|4.4.0-1025.30|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1028.33", + "fixed_version_range": "vers:deb/4.4.0-1029.34", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1001.1|4.4.0-1002.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.13.0-16.19|4.13.0-17.20|4.13.0-25.29|4.13.0-32.35|4.15.0-10.11|4.15.0-12.13|4.15.0-13.14|4.15.0-15.16|4.15.0-19.20|4.15.0-20.21|4.15.0-22.24|4.15.0-23.25|4.15.0-24.26|4.15.0-29.31|4.15.0-30.32|4.15.0-32.35|4.15.0-33.36|4.15.0-34.37|4.15.0-36.39|4.15.0-38.41|4.15.0-39.42|4.15.0-42.45|4.15.0-43.46|4.15.0-44.47|4.15.0-45.48|4.15.0-46.49|4.15.0-47.50|4.15.0-48.51|4.15.0-50.54|4.15.0-51.55|4.15.0-52.56|4.15.0-54.58|4.15.0-55.60|4.15.0-58.64|4.15.0-60.67|4.15.0-62.69|4.15.0-64.73|4.15.0-65.74|4.15.0-66.75|4.15.0-69.78|4.15.0-70.79|4.15.0-72.81|4.15.0-74.84|4.15.0-76.86|4.15.0-88.88", + "fixed_version_range": "vers:deb/4.15.0-91.92", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1007.7|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1027.27|4.15.0-1029.30|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1035.37|4.15.0-1037.39|4.15.0-1039.41|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1043.45|4.15.0-1044.46|4.15.0-1045.47|4.15.0-1047.49|4.15.0-1048.50|4.15.0-1050.52|4.15.0-1051.53|4.15.0-1052.54|4.15.0-1054.56|4.15.0-1056.58|4.15.0-1057.59|4.15.0-1058.60|4.15.0-1060.62", + "fixed_version_range": "vers:deb/4.15.0-1063.67", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-4.15", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1045.48|4.15.0-1046.49|4.15.0-1048.51|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.55", + "fixed_version_range": "vers:deb/4.15.0-1055.58", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-5.0", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1011.11~18.04.1|5.0.0-1013.13~18.04.1|5.0.0-1015.15~18.04.1|5.0.0-1017.17~18.04.1|5.0.0-1020.20~18.04.1|5.0.0-1022.22~18.04.3|5.0.0-1023.23~18.04.2|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.2|5.0.0-1027.28~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1030.31", + "fixed_version_range": "vers:deb/5.0.0-1032.33", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1012.13~18.04.1", + "fixed_version_range": "vers:deb/5.3.0-1014.15~18.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1012.12|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1026.26|4.15.0-1027.27|4.15.0-1028.28|4.15.0-1029.29|4.15.0-1030.30|4.15.0-1031.31|4.15.0-1032.32|4.15.0-1034.34|4.15.0-1035.35|4.15.0-1036.36|4.15.0-1038.38|4.15.0-1039.39|4.15.0-1042.42|4.15.0-1043.43|4.15.0-1044.44|4.15.0-1046.46|4.15.0-1047.47|4.15.0-1048.48|4.15.0-1050.50|4.15.0-1051.51|4.15.0-1052.52|4.15.0-1053.53", + "fixed_version_range": "vers:deb/4.15.0-1056.57", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.3|4.15.0-1004.5|4.15.0-1006.9|4.15.0-1008.11|4.15.0-1009.12|4.15.0-1012.15|4.15.0-1013.16|4.15.0-1015.18|4.15.0-1017.20|4.15.0-1018.21|4.15.0-1021.24|4.15.0-1024.29|4.15.0-1026.31|4.15.0-1028.33|4.15.0-1030.35|4.15.0-1033.38|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1036.41|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1043.48|4.15.0-1045.50|4.15.0-1050.57|4.15.0-1056.65|4.15.0-1057.66|4.15.0-1059.68|4.15.0-1063.72|4.15.0-1064.73|4.15.0-1065.75|4.15.0-1066.76|4.15.0-1067.77|4.15.0-1069.79|4.15.0-1073.83", + "fixed_version_range": "vers:deb/4.15.0-1076.86", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-osp1", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1010.11|5.0.0-1012.13|5.0.0-1015.16|5.0.0-1018.20|5.0.0-1020.22|5.0.0-1022.24|5.0.0-1024.27|5.0.0-1025.28|5.0.0-1027.31|5.0.0-1028.32|5.0.0-1030.34|5.0.0-1033.38|5.0.0-1037.42|5.0.0-1039.44|5.0.0-1040.45", + "fixed_version_range": "vers:deb/5.0.0-1043.48", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1007.9|4.15.0-1008.10|4.15.0-1009.11|4.15.0-1010.12|4.15.0-1011.13|4.15.0-1013.15|4.15.0-1014.16|4.15.0-1015.17|4.15.0-1017.19|4.15.0-1018.20|4.15.0-1021.23|4.15.0-1022.25|4.15.0-1023.26|4.15.0-1025.28|4.15.0-1026.29|4.15.0-1027.30|4.15.0-1029.32|4.15.0-1030.33|4.15.0-1031.34|4.15.0-1033.36", + "fixed_version_range": "vers:deb/4.15.0-1035.39", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi2", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.13.0-1005.5|4.13.0-1006.6|4.13.0-1008.8|4.15.0-1006.7|4.15.0-1009.10|4.15.0-1010.11|4.15.0-1011.12|4.15.0-1012.13|4.15.0-1013.14|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1020.22|4.15.0-1021.23|4.15.0-1022.24|4.15.0-1024.26|4.15.0-1026.28|4.15.0-1027.29|4.15.0-1028.30|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1038.40|4.15.0-1040.43|4.15.0-1041.44|4.15.0-1043.46|4.15.0-1044.47|4.15.0-1045.49|4.15.0-1047.51|4.15.0-1048.52|4.15.0-1049.53|4.15.0-1050.54|4.15.0-1052.56|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1055.59", + "fixed_version_range": "vers:deb/4.15.0-1057.61", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi2-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1017.19~18.04.1|5.3.0-1018.20~18.04.1", + "fixed_version_range": "vers:deb/5.3.0-1019.21~18.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1019.21~18.04.1|5.3.0-1023.25~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.2|5.3.0-1033.35|5.3.0-1034.36|5.3.0-1035.37", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1012.12|4.15.0-1013.13|4.15.0-1014.14|4.15.0-1018.18|4.15.0-1019.19|4.15.0-1021.21|4.15.0-1022.23|4.15.0-1023.24|4.15.0-1025.26|4.15.0-1028.29|4.15.0-1030.31|4.15.0-1031.32|4.15.0-1032.33|4.15.0-1035.36|4.15.0-1036.38|4.15.0-1037.39|4.18.0-1011.11~18.04.1|4.18.0-1013.13~18.04.1|4.18.0-1014.14~18.04.1|4.18.0-1018.18~18.04.1|4.18.0-1019.19~18.04.1|4.18.0-1020.20~18.04.1|4.18.0-1023.24~18.04.1|4.18.0-1024.25~18.04.1|4.18.0-1025.27~18.04.1|5.0.0-1014.14~18.04.1|5.0.0-1016.17~18.04.1|5.0.0-1018.19~18.04.1|5.0.0-1020.21~18.04.1|5.0.0-1022.23~18.04.1|5.0.0-1023.24~18.04.1|5.0.0-1025.27~18.04.1|5.0.0-1027.29~18.04.1|5.0.0-1028.30~18.04.1|5.0.0-1029.31~18.04.1|5.0.0-1031.33|5.0.0-1032.34|5.0.0-1035.37|5.0.0-1036.38", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1007.8~18.04.1|5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1019.20~18.04.1|5.3.0-1020.21~18.04.1|5.3.0-1022.23~18.04.1|5.3.0-1028.29~18.04.1|5.3.0-1031.32~18.04.1|5.3.0-1032.33~18.04.1|5.3.0-1034.35~18.04.1|5.3.0-1035.36", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-edge", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.18.0-1006.6~18.04.1|4.18.0-1007.7~18.04.1|4.18.0-1008.8~18.04.1|5.0.0-1012.12~18.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1014.14|4.15.0-1015.15|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1019.20|4.15.0-1021.22|4.15.0-1023.24|4.15.0-1024.25|4.15.0-1025.26|4.15.0-1026.27|4.15.0-1027.28|4.15.0-1028.29|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1042.45|4.15.0-1044.70|5.0.0-1020.20~18.04.1|5.0.0-1021.21~18.04.1|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.1|5.0.0-1028.29~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1031.32|5.0.0-1033.34|5.0.0-1034.35", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1020.22~18.04.1|5.3.0-1026.28~18.04.1|5.3.0-1029.31~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-edge", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.18.0-1004.5~18.04.1|4.18.0-1005.6~18.04.1|4.18.0-1006.7~18.04.1|4.18.0-1007.8~18.04.1|4.18.0-1008.9~18.04.1|4.18.0-1009.10~18.04.1|4.18.0-1011.12~18.04.1|4.18.0-1012.13~18.04.1|4.18.0-1013.14~18.04.1|4.18.0-1015.16~18.04.1|5.0.0-1011.11~18.04.1|5.0.0-1013.13~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.18.0-13.14~18.04.1|4.18.0-14.15~18.04.1|4.18.0-15.16~18.04.1|4.18.0-16.17~18.04.1|4.18.0-17.18~18.04.1|4.18.0-18.19~18.04.1|4.18.0-20.21~18.04.1|4.18.0-21.22~18.04.1|4.18.0-22.23~18.04.1|4.18.0-24.25~18.04.1|4.18.0-25.26~18.04.1|5.0.0-23.24~18.04.1|5.0.0-25.26~18.04.1|5.0.0-27.28~18.04.1|5.0.0-29.31~18.04.1|5.0.0-31.33~18.04.1|5.0.0-32.34~18.04.2|5.0.0-35.38~18.04.1|5.0.0-36.39~18.04.1|5.0.0-37.40~18.04.1|5.3.0-26.28~18.04.1|5.3.0-28.30~18.04.1|5.3.0-40.32~18.04.1|5.3.0-42.34~18.04.1|5.3.0-45.37~18.04.1|5.3.0-46.38~18.04.1|5.3.0-51.44~18.04.2|5.3.0-53.47~18.04.1|5.3.0-59.53~18.04.1|5.3.0-61.55~18.04.1|5.3.0-62.56~18.04.1|5.3.0-64.58~18.04.1|5.3.0-65.59|5.3.0-66.60|5.3.0-67.61|5.3.0-68.63|5.3.0-69.65|5.3.0-70.66|5.3.0-72.68|5.3.0-73.69|5.3.0-74.70|5.3.0-75.71|5.3.0-76.72", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-edge", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-15.16~18.04.1|5.0.0-16.17~18.04.1|5.0.0-17.18~18.04.1|5.0.0-19.20~18.04.1|5.0.0-20.21~18.04.1|5.3.0-19.20~18.04.2|5.3.0-22.24~18.04.1|5.3.0-23.25~18.04.1|5.3.0-23.25~18.04.2|5.3.0-24.26~18.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.0", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1007.12~18.04.1|5.0.0-1008.13~18.04.1|5.0.0-1009.14~18.04.1|5.0.0-1010.15~18.04.1|5.0.0-1011.16|5.0.0-1013.18|5.0.0-1014.19", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.18~18.04.1|5.3.0-1018.20~18.04.1|5.3.0-1024.26~18.04.1|5.3.0-1027.29~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-2000.4", + "fixed_version_range": "vers:deb/4.15.0-2018.18", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2", + "fixed_version_range": "vers:deb/4.15.0-2006.7", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-2000.4", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1063.66+cvm2.2|5.4.0-1063.66+cvm3.2|5.4.0-1064.67+cvm1.1|5.4.0-1065.68+cvm2.1|5.4.0-1067.70+cvm1.1|5.4.0-1068.71+cvm1.1|5.4.0-1069.72+cvm1.1|5.4.0-1070.73+cvm1.1|5.4.0-1072.75+cvm1.1|5.4.0-1073.76+cvm1.1|5.4.0-1074.77+cvm1.1|5.4.0-1076.79+cvm1.1|5.4.0-1078.81+cvm1.1|5.4.0-1080.83+cvm1.1|5.4.0-1083.87+cvm1.1|5.4.0-1085.90+cvm1.1|5.4.0-1085.90+cvm2.1|5.4.0-1086.91+cvm1.1|5.4.0-1089.94+cvm1.2|5.4.0-1090.95+cvm1.1|5.4.0-1091.96+cvm1.1|5.4.0-1092.97+cvm1.1|5.4.0-1095.101+cvm1.1|5.4.0-1098.104+cvm1.1|5.4.0-1100.106+cvm1.1|5.4.0-1103.109+cvm1.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1019.24~20.04.1.1|5.15.0-1020.25~20.04.1.1|5.15.0-1021.26~20.04.1.1|5.15.0-1029.36~20.04.1.1|5.15.0-1030.37~20.04.1.1|5.15.0-1031.38~20.04.1.1|5.15.0-1033.40~20.04.1.1|5.15.0-1034.41~20.04.1.2|5.15.0-1035.42~20.04.1.1|5.15.0-1036.43~20.04.1.1|5.15.0-1037.44~20.04.1.1|5.15.0-1038.45~20.04.1.1|5.15.0-1039.46~20.04.1.1|5.15.0-1040.47~20.04.1.1|5.15.0-1041.48~20.04.1.1|5.15.0-1042.49~20.04.1.1|5.15.0-1043.50~20.04.1.1|5.15.0-1046.53~20.04.1.1|5.15.0-1047.54~20.04.1.1|5.15.0-1049.56~20.04.1.1|5.15.0-1050.57~20.04.1.1|5.15.0-1051.59~20.04.1.1|5.15.0-1052.60~20.04.1.1|5.15.0-1053.61~20.04.1.1|5.15.0-1054.62~20.04.1.1|5.15.0-1056.64~20.04.1.1|5.15.0-1057.65~20.04.1.1|5.15.0-1058.66~20.04.2.1|5.15.0-1059.67~20.04.1.1|5.15.0-1060.69~20.04.1.1|5.15.0-1061.70~20.04.1.1|5.15.0-1063.72~20.04.1.1|5.15.0-1064.73~20.04.1.1|5.15.0-1065.74~20.04.1.1|5.15.0-1067.76~20.04.1.1|5.15.0-1068.77~20.04.1.1|5.15.0-1070.79~20.04.1.1|5.15.0-1071.80~20.04.1.1|5.15.0-1072.81~20.04.1.1|5.15.0-1073.82~20.04.1.1|5.15.0-1074.83~20.04.1.1|5.15.0-1076.85~20.04.1.1|5.15.0-1078.87~20.04.1.1|5.15.0-1081.90~20.04.1.1|5.15.0-1082.91~20.04.1.1|5.15.0-1086.95~20.04.1.1|5.15.0-1087.96~20.04.1.1|5.15.0-1088.97~20.04.1.1|5.15.0-1089.98~20.04.1.1|5.15.0-1091.100~20.04.1.1|5.15.0-1094.103~20.04.1.1|5.15.0-1096.105~20.04.1.1|5.15.0-1097.106~20.04.1.1|5.15.0-1098.107~20.04.1.1|5.15.0-1102.111~20.04.1.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1033.35|5.4.0-1035.37|5.4.0-1036.38|5.4.0-1037.39|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1042.44|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1074.79|5.4.0-1076.82|5.4.0-1078.84|5.4.0-1080.86|5.4.0-1081.87|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1100.107|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi2", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1007.8|5.3.0-1014.16|5.3.0-1015.17|5.3.0-1017.19|5.4.0-1004.4|5.4.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-iot-realtime", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1073.75", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1032.35", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1011.12|5.15.0-1012.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.21|5.15.0-1019.22|5.15.0-1020.23|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi-realtime", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-2019.20", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://git.kernel.org/linus/68faa679b8be1a74e6663c21c3a9d25d32f1c079" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-0305" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-0305" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "6.4", + "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" + } + ], + "date_published": "2020-07-17T20:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-0305.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-0556", + "aliases": [], + "summary": "Improper access control in subsystem for BlueZ before version 5.54 may allow an unauthenticated user to potentially enable escalation of privilege and denial of service via adjacent access", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "bluez", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.35-0ubuntu2|5.36-0ubuntu1|5.37-0ubuntu5|5.37-0ubuntu5.1", + "fixed_version_range": "vers:deb/5.37-0ubuntu5.3", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "bluez", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.46-0ubuntu3|5.46-0ubuntu4|5.48-0ubuntu3|5.48-0ubuntu3.1|5.48-0ubuntu3.2|5.48-0ubuntu3.3", + "fixed_version_range": "vers:deb/5.48-0ubuntu3.4", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-0556" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-4311-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-0556" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00352.html" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.openwall.com/lists/oss-security/2020/03/12/4" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "7.1", + "scoring_elements": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L" + } + ], + "date_published": "2020-03-12T21:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-0556.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-1739", + "aliases": [], + "summary": "A flaw was found in Ansible 2.7.16 and prior, 2.8.8 and prior, and 2.9.5 and prior when a password is set with the argument \"password\" of svn module, it is used on svn command line, disclosing to other users within the same node. An attacker could take advantage by reading the cmdline file from that particular PID on the procfs.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "ansible", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.1+dfsg-1|1.3.4+dfsg-1|1.4.0+dfsg-1|1.4.1+dfsg-1|1.4.3+dfsg-1|1.4.4+dfsg-1|1.5.4+dfsg-1|1.5.4+dfsg-1ubuntu0.1~esm1|1.5.4+dfsg-1ubuntu0.1~esm2", + "fixed_version_range": "vers:deb/1.5.4+dfsg-1ubuntu0.1~esm3", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "ansible", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.9.2+dfsg-2|1.9.4-1|2.0.0.2-2|2.0.0.2-2ubuntu1|2.0.0.2-2ubuntu1.1|2.0.0.2-2ubuntu1.2|2.0.0.2-2ubuntu1.3|2.0.0.2-2ubuntu1.3+esm1|2.0.0.2-2ubuntu1.3+esm2|2.0.0.2-2ubuntu1.3+esm3|2.0.0.2-2ubuntu1.3+esm4", + "fixed_version_range": "vers:deb/2.0.0.2-2ubuntu1.3+esm5", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "ansible", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.3.1.0+dfsg-2|2.5.0+dfsg-1|2.5.1+dfsg-1|2.5.1+dfsg-1ubuntu0.1|2.5.1+dfsg-1ubuntu0.1+esm1|2.5.1+dfsg-1ubuntu0.1+esm2|2.5.1+dfsg-1ubuntu0.1+esm3|2.5.1+dfsg-1ubuntu0.1+esm4", + "fixed_version_range": "vers:deb/2.5.1+dfsg-1ubuntu0.1+esm5", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "ansible", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.8.3+dfsg-1|2.8.6+dfsg-1|2.9.2+dfsg-1|2.9.4+dfsg-1|2.9.6+dfsg-1|2.9.6+dfsg-1ubuntu0.1~esm1|2.9.6+dfsg-1ubuntu0.1~esm2", + "fixed_version_range": "vers:deb/2.9.6+dfsg-1ubuntu0.1~esm3", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802178" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-1739" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-7330-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1739" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "3.9", + "scoring_elements": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" + } + ], + "date_published": "2020-03-12T18:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1739.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-1770", + "aliases": [], + "summary": "Support bundle generated files could contain sensitive information that might be unwanted to be disclosed. This issue affects: ((OTRS)) Community Edition: 5.0.41 and prior versions, 6.0.26 and prior versions. OTRS: 7.0.15 and prior versions.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "otrs2", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.0.10-1|5.0.1-1|5.0.1-2|5.0.2-1|5.0.3-1|5.0.5-1|5.0.6-1|5.0.7-1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "otrs2", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.23-1|5.0.24-1|6.0.1-1|6.0.2-1|6.0.3-1|6.0.4-1|6.0.5-1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "otrs2", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.0.20-1|6.0.23-2|6.0.24-1|6.0.25-1|6.0.25-2|6.0.25-3|6.0.26-1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://otrs.com/release-notes/otrs-security-advisory-2020-07/" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-1770" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1770" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "2.4", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:N/A:N" + }, + { + "system": "cvssv3.1", + "value": "4.3", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" + } + ], + "date_published": "2020-03-27T13:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1770.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-1944", + "aliases": [], + "summary": "There is a vulnerability in Apache Traffic Server 6.0.0 to 6.2.3, 7.0.0 to 7.1.8, and 8.0.0 to 8.0.5 with a smuggling attack and Transfer-Encoding and Content length headers. Upgrade to versions 7.1.9 and 8.0.6 or later versions.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "trafficserver", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-2ubuntu1|5.3.0-2ubuntu2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "trafficserver", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/7.0.0-5|7.1.2+ds-2|7.1.2+ds-2build1|7.1.2+ds-3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "trafficserver", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/8.0.5+ds-1|8.0.5+ds-2|8.0.5+ds-2build1|8.0.5+ds-2ubuntu1|8.0.5+ds-3|8.0.5+ds-3ubuntu0.1~esm1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "trafficserver", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/8.1.1+ds-1.1|9.1.1+ds-2build1|9.1.1+ds-2ubuntu0.1~esm1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://lists.apache.org/thread.html/r99d18d0bc4daa05e7d0e5a63e0e22701a421b2ef5a8f4f7694c43869%40%3Cannounce.trafficserver.apache.org%3E" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-1944" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1944" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "9.8", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" + } + ], + "date_published": "2020-03-23T22:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1944.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-2590", + "aliases": [], + "summary": "Vulnerability in the Java SE, Java SE Embedded product of Oracle Java SE (component: Security). Supported versions that are affected are Java SE: 7u241, 8u231, 11.0.5 and 13.0.1; Java SE Embedded: 8u231. Difficult to exploit vulnerability allows unauthenticated attacker with network access via Kerberos to compromise Java SE, Java SE Embedded. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Java SE, Java SE Embedded accessible data. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets (in Java SE 8), that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability can also be exploited by using APIs in the specified Component, e.g., through a web service which supplies data to the APIs. CVSS 3.0 Base Score 3.7 (Integrity impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N).", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openjdk-8", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/8u66-b01-5|8u72-b05-1ubuntu1|8u72-b05-5|8u72-b05-6|8u72-b15-1|8u72-b15-2ubuntu1|8u72-b15-2ubuntu3|8u72-b15-3ubuntu1|8u77-b03-1ubuntu2|8u77-b03-3ubuntu1|8u77-b03-3ubuntu2|8u77-b03-3ubuntu3|8u91-b14-0ubuntu4~16.04.1|8u91-b14-3ubuntu1~16.04.1|8u111-b14-2ubuntu0.16.04.2|8u121-b13-0ubuntu1.16.04.2|8u131-b11-0ubuntu1.16.04.2|8u131-b11-2ubuntu1.16.04.2|8u131-b11-2ubuntu1.16.04.3|8u151-b12-0ubuntu0.16.04.2|8u162-b12-0ubuntu0.16.04.2|8u171-b11-0ubuntu0.16.04.1|8u181-b13-0ubuntu0.16.04.1|8u181-b13-1ubuntu0.16.04.1|8u191-b12-0ubuntu0.16.04.1|8u191-b12-2ubuntu0.16.04.1|8u212-b03-0ubuntu1.16.04.1|8u222-b10-1ubuntu1~16.04.1|8u232-b09-0ubuntu1~16.04.1", + "fixed_version_range": "vers:deb/8u242-b08-0ubuntu3~16.04", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.5.2-1ubuntu2|1.5.3-0ubuntu1|1.6.1-1ubuntu2|1.6.1-3ubuntu1|1.6.1-4ubuntu1|1.6.2-1ubuntu1|1.6.2-2ubuntu1|1.6.2-3ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openjdk-9", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/9~b88-1|9~b101-2ubuntu2|9~b102-1|9~b113-0ubuntu1|9~b114-0ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openjdk-8", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/8u144-b01-2|8u151-b12-1|8u162-b12-1|8u171-b11-0ubuntu0.18.04.1|8u181-b13-0ubuntu0.18.04.1|8u181-b13-1ubuntu0.18.04.1|8u191-b12-0ubuntu0.18.04.1|8u191-b12-2ubuntu0.18.04.1|8u212-b03-0ubuntu1.18.04.1|8u222-b10-1ubuntu1~18.04.1|8u232-b09-0ubuntu1~18.04.1", + "fixed_version_range": "vers:deb/8u242-b08-0ubuntu3~18.04", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openjdk-lts", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/9.0.4+12-2ubuntu4|9.0.4+12-4ubuntu1|10~46-4ubuntu1|10~46-5ubuntu1|10.0.1+10-1ubuntu2|10.0.1+10-3ubuntu1|10.0.2+13-1ubuntu0.18.04.1|10.0.2+13-1ubuntu0.18.04.2|10.0.2+13-1ubuntu0.18.04.3|10.0.2+13-1ubuntu0.18.04.4|11.0.2+9-3ubuntu1~18.04.3|11.0.3+7-1ubuntu2~18.04.1|11.0.4+11-1ubuntu2~18.04.3|11.0.5+10-0ubuntu1.1~18.04", + "fixed_version_range": "vers:deb/11.0.6+10-1ubuntu1~18.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.6.2-3.1ubuntu3|1.8-0ubuntu8~18.04", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "openjdk-lts", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/11.0.5+10-0ubuntu1|11.0.5+10-2ubuntu1", + "fixed_version_range": "vers:deb/11.0.6+10-1ubuntu1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.8-0ubuntu8", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.8.4-1build1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.8.8-2|1.8.8-2ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "icedtea-web", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.8.8-3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-2590" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/notices/USN-4257-1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-2590" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.oracle.com/security-alerts/cpujan2020.html" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "low", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "3.7", + "scoring_elements": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" + }, + { + "system": "cvssv3.1", + "value": "3.7", + "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" + } + ], + "date_published": "2020-01-15T17:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-2590.json" + }, + { + "advisory_id": "UBUNTU-CVE-2020-6537", + "aliases": [], + "summary": "Type confusion in V8 in Google Chrome prior to 84.0.4147.105 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "libv8-3.14", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/3.14.5.8-5ubuntu2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "chromium-browser", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/45.0.2454.101-0ubuntu1.1201|47.0.2526.73-0ubuntu1.1218|47.0.2526.106-0ubuntu1.1221|48.0.2564.82-0ubuntu1.1222|48.0.2564.116-0ubuntu1.1229|49.0.2623.87-0ubuntu1.1232|49.0.2623.108-0ubuntu1.1233|50.0.2661.102-0ubuntu0.16.04.1.1237|51.0.2704.79-0ubuntu0.16.04.1.1242|52.0.2743.116-0ubuntu0.16.04.1.1250|53.0.2785.143-0ubuntu0.16.04.1.1254|53.0.2785.143-0ubuntu0.16.04.1.1257|55.0.2883.87-0ubuntu0.16.04.1263|56.0.2924.76-0ubuntu0.16.04.1268|57.0.2987.98-0ubuntu0.16.04.1276|58.0.3029.81-0ubuntu0.16.04.1277|58.0.3029.96-0ubuntu0.16.04.1279|58.0.3029.110-0ubuntu0.16.04.1281|59.0.3071.109-0ubuntu0.16.04.1289|59.0.3071.109-0ubuntu0.16.04.1291|60.0.3112.78-0ubuntu0.16.04.1293|60.0.3112.113-0ubuntu0.16.04.1298|61.0.3163.79-0ubuntu0.16.04.1300|61.0.3163.100-0ubuntu0.16.04.1306|62.0.3202.62-0ubuntu0.16.04.1308|62.0.3202.75-0ubuntu0.16.04.1313|62.0.3202.89-0ubuntu0.16.04.1315|62.0.3202.94-0ubuntu0.16.04.1317|63.0.3239.84-0ubuntu0.16.04.1|63.0.3239.132-0ubuntu0.16.04.1|64.0.3282.119-0ubuntu0.16.04.1|64.0.3282.140-0ubuntu0.16.04.1|64.0.3282.167-0ubuntu0.16.04.1|65.0.3325.181-0ubuntu0.16.04.1|66.0.3359.139-0ubuntu0.16.04.3|66.0.3359.181-0ubuntu0.16.04.1|67.0.3396.99-0ubuntu0.16.04.2|68.0.3440.75-0ubuntu0.16.04.1|68.0.3440.106-0ubuntu0.16.04.1|69.0.3497.81-0ubuntu0.16.04.1|70.0.3538.67-0ubuntu0.16.04.1|70.0.3538.77-0ubuntu0.16.04.1|70.0.3538.110-0ubuntu0.16.04.1|71.0.3578.80-0ubuntu0.16.04.1|71.0.3578.98-0ubuntu0.16.04.1|72.0.3626.119-0ubuntu0.16.04.1|72.0.3626.121-0ubuntu0.16.04.1|73.0.3683.75-0ubuntu0.16.04.1|73.0.3683.86-0ubuntu0.16.04.1|74.0.3729.169-0ubuntu0.16.04.1|76.0.3809.87-0ubuntu0.16.04.1|76.0.3809.100-0ubuntu0.16.04.1|77.0.3865.90-0ubuntu0.16.04.1|78.0.3904.70-0ubuntu0.16.04.2|78.0.3904.97-0ubuntu0.16.04.1|78.0.3904.108-0ubuntu0.16.04.1|79.0.3945.79-0ubuntu0.16.04.1|79.0.3945.130-0ubuntu0.16.04.1|80.0.3987.87-0ubuntu0.16.04.1|80.0.3987.149-0ubuntu0.16.04.1|80.0.3987.163-0ubuntu0.16.04.1|81.0.4044.122-0ubuntu0.16.04.1|81.0.4044.138-0ubuntu0.16.04.1", + "fixed_version_range": "vers:deb/84.0.4147.105-0ubuntu0.16.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "chromium-browser", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/61.0.3163.100-0ubuntu1.1378|62.0.3202.62-0ubuntu0.17.10.1380|62.0.3202.89-0ubuntu1.1386|62.0.3202.94-0ubuntu1.1388|63.0.3239.84-0ubuntu1|63.0.3239.108-0ubuntu1|64.0.3282.119-0ubuntu1|64.0.3282.140-0ubuntu1|64.0.3282.167-0ubuntu1|65.0.3325.146-0ubuntu1|65.0.3325.181-0ubuntu1|66.0.3359.139-0ubuntu0.18.04.3|66.0.3359.181-0ubuntu0.18.04.1|67.0.3396.99-0ubuntu0.18.04.1|68.0.3440.75-0ubuntu0.18.04.1|68.0.3440.106-0ubuntu0.18.04.1|69.0.3497.81-0ubuntu0.18.04.1|70.0.3538.67-0ubuntu0.18.04.1|70.0.3538.77-0ubuntu0.18.04.1|70.0.3538.110-0ubuntu0.18.04.1|71.0.3578.80-0ubuntu0.18.04.1|71.0.3578.98-0ubuntu0.18.04.1|72.0.3626.119-0ubuntu0.18.04.1|72.0.3626.121-0ubuntu0.18.04.1|73.0.3683.75-0ubuntu0.18.04.1|73.0.3683.86-0ubuntu0.18.04.1|74.0.3729.169-0ubuntu0.18.04.1|75.0.3770.90-0ubuntu0.18.04.1|75.0.3770.142-0ubuntu0.18.04.1|76.0.3809.87-0ubuntu0.18.04.1|76.0.3809.100-0ubuntu0.18.04.1|77.0.3865.90-0ubuntu0.18.04.1|78.0.3904.70-0ubuntu0.18.04.2|78.0.3904.97-0ubuntu0.18.04.1|78.0.3904.108-0ubuntu0.18.04.1|79.0.3945.79-0ubuntu0.18.04.1|79.0.3945.130-0ubuntu0.18.04.1|80.0.3987.87-0ubuntu0.18.04.1|80.0.3987.149-0ubuntu0.18.04.1|80.0.3987.163-0ubuntu0.18.04.1|81.0.4044.122-0ubuntu0.18.04.1|81.0.4044.138-0ubuntu0.18.04.1|83.0.4103.61-0ubuntu0.18.04.1", + "fixed_version_range": "vers:deb/84.0.4147.105-0ubuntu0.18.04.1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "libv8-3.14", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/3.14.5.8-11ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2020-6537" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-6537" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "8.8", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" + } + ], + "date_published": "2020-09-21T20:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-6537.json" + }, + { + "advisory_id": "UBUNTU-CVE-2025-0245", + "aliases": [], + "summary": "Under certain circumstances, a user opt-in setting that Focus should require authentication before use could have been be bypassed. This vulnerability affects Firefox < 134.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs52", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/52.3.1-0ubuntu3|52.3.1-7fakesync1|52.8.1-0ubuntu0.18.04.1|52.9.1-0ubuntu0.18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs38", + "version": "", + "qualifiers": "arch=source&distro=esm-apps/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/38.8.0~repack1-0ubuntu1|38.8.0~repack1-0ubuntu3|38.8.0~repack1-0ubuntu4", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs52", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/52.9.1-1build1|52.9.1-1ubuntu3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs68", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/68.5.0-1~fakesync|68.5.0-2~fakesync|68.6.0-1|68.6.0-1ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "thunderbird", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:68.1.2+build1-0ubuntu1|1:68.1.2+build1-0ubuntu2|1:68.2.1+build1-0ubuntu1|1:68.2.2+build1-0ubuntu1|1:68.3.0+build2-0ubuntu1|1:68.3.1+build1-0ubuntu2|1:68.4.1+build1-0ubuntu1|1:68.4.2+build2-0ubuntu1|1:68.5.0+build1-0ubuntu1|1:68.6.0+build2-0ubuntu1|1:68.7.0+build1-0ubuntu1|1:68.7.0+build1-0ubuntu2|1:68.8.0+build2-0ubuntu0.20.04.2|1:68.10.0+build1-0ubuntu0.20.04.1|1:78.7.1+build1-0ubuntu0.20.04.1|1:78.8.1+build1-0ubuntu0.20.04.1|1:78.11.0+build1-0ubuntu0.20.04.2|1:78.13.0+build1-0ubuntu0.20.04.2|1:78.14.0+build1-0ubuntu0.20.04.1|1:78.14.0+build1-0ubuntu0.20.04.2|1:91.5.0+build1-0ubuntu0.20.04.1|1:91.7.0+build2-0ubuntu0.20.04.1|1:91.8.1+build1-0ubuntu0.20.04.1|1:91.9.1+build1-0ubuntu0.20.04.1|1:91.11.0+build2-0ubuntu0.20.04.1|1:102.2.2+build1-0ubuntu0.20.04.1|1:102.4.2+build2-0ubuntu0.20.04.1|1:102.7.1+build2-0ubuntu0.20.04.1|1:102.8.0+build2-0ubuntu0.20.04.1|1:102.9.0+build1-0ubuntu0.20.04.1|1:102.10.0+build2-0ubuntu0.20.04.1|1:102.11.0+build1-0ubuntu0.20.04.1|1:102.13.0+build1-0ubuntu0.20.04.1|1:102.15.0+build1-0ubuntu0.20.04.1|1:102.15.1+build1-0ubuntu0.20.04.1|1:115.3.1+build1-0ubuntu0.20.04.1|1:115.4.1+build1-0ubuntu0.20.04.1|1:115.5.0+build1-0ubuntu0.20.04.1|1:115.6.0+build2-0ubuntu0.20.04.1|1:115.8.1+build1-0ubuntu0.20.04.1|1:115.9.0+build1-0ubuntu0.20.04.1|1:115.10.1+build1-0ubuntu0.20.04.1|1:115.11.0+build2-0ubuntu0.20.04.1|1:115.12.0+build3-0ubuntu0.20.04.1|1:115.13.0+build5-0ubuntu0.20.04.1|1:115.15.0+build1-0ubuntu0.20.04.1|1:115.16.0+build2-0ubuntu0.20.04.1|1:115.18.0+build1-0ubuntu0.20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs102", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/102.11.0-0ubuntu0.22.04.1|102.12.0-0ubuntu0.22.04.1|102.13.0-0ubuntu0.22.04.1|102.15.1-0ubuntu0.22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs78", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/78.13.0-1|78.15.0-2|78.15.0-4ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs91", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/91.5.1-0ubuntu1|91.6.0-1|91.6.0-2|91.7.0-2|91.10.0-0ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "thunderbird", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:91.1.2+build1-0ubuntu1|1:91.3.0+build2-0ubuntu1|1:91.3.1+build1-0ubuntu1|1:91.3.2+build1-0ubuntu1|1:91.4.0+build1.1-0ubuntu1|1:91.4.0+build2-0ubuntu1|1:91.5.0+build1-0ubuntu1|1:91.5.1+build1-0ubuntu1|1:91.6.1+build1-0ubuntu1|1:91.7.0+build1-0ubuntu1|1:91.7.0+build2-0ubuntu1|1:91.8.0+build2-0ubuntu1|1:91.9.1+build1-0ubuntu0.22.04.1|1:91.11.0+build2-0ubuntu0.22.04.1|1:102.2.2+build1-0ubuntu0.22.04.1|1:102.4.2+build2-0ubuntu0.22.04.1|1:102.7.1+build2-0ubuntu0.22.04.1|1:102.8.0+build2-0ubuntu0.22.04.1|1:102.9.0+build1-0ubuntu0.22.04.1|1:102.10.0+build2-0ubuntu0.22.04.1|1:102.11.0+build1-0ubuntu0.22.04.1|1:102.13.0+build1-0ubuntu0.22.04.1|1:102.15.0+build1-0ubuntu0.22.04.1|1:102.15.1+build1-0ubuntu0.22.04.1|1:115.3.1+build1-0ubuntu0.22.04.2|1:115.4.1+build1-0ubuntu0.22.04.1|1:115.5.0+build1-0ubuntu0.22.04.1|1:115.6.0+build2-0ubuntu0.22.04.1|1:115.8.1+build1-0ubuntu0.22.04.1|1:115.9.0+build1-0ubuntu0.22.04.1|1:115.10.1+build1-0ubuntu0.22.04.1|1:115.11.0+build2-0ubuntu0.22.04.1|1:115.12.0+build3-0ubuntu0.22.04.1|1:115.13.0+build5-0ubuntu0.22.04.1|1:115.15.0+build1-0ubuntu0.22.04.1|1:115.16.0+build2-0ubuntu0.22.04.1|1:115.18.0+build1-0ubuntu0.22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs115", + "version": "", + "qualifiers": "arch=source&distro=oracular", + "subpath": "" + }, + "affected_version_range": "vers:deb/115.10.0-1|115.11.0-1|115.12.0-1|115.12.0-1build1|115.13.0-1|115.14.0-1|115.16.0-1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs102", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/102.15.1-1|102.15.1-3ubuntu2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mozjs115", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/115.3.0-0ubuntu1|115.4.0-2|115.5.0-1|115.6.0-1|115.7.0-4|115.8.0-1|115.9.0-1|115.9.0-1build1|115.10.0-1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1895342" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2025-0245" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-0245" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.mozilla.org/en-US/security/advisories/mfsa2025-01/#CVE-2025-0245" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.mozilla.org/security/advisories/mfsa2025-01/" + } + ], + "patches": [], + "severities": [], + "date_published": "2025-01-07T16:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-0245.json" + }, + { + "advisory_id": "UBUNTU-CVE-2025-0677", + "aliases": [], + "summary": "A flaw was found in grub2. When performing a symlink lookup, the grub's UFS module checks the inode's data size to allocate the internal buffer to read the file content, however, it fails to check if the symlink data size has overflown. When this occurs, grub_malloc() may be called with a smaller value than needed. When further reading the data from the disk into the buffer, the grub_ufs_lookup_symlink() function will write past the end of the allocated size. An attack can leverage this by crafting a malicious filesystem, and as a result, it will corrupt data stored in the heap, allowing for arbitrary code execution used to by-pass secure boot mechanisms.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.00-19ubuntu2|2.00-19ubuntu3|2.00-19ubuntu4|2.00-20|2.00-21|2.00-22|2.02~beta2-5|2.02~beta2-6|2.02~beta2-7|2.02~beta2-8|2.02~beta2-9|2.02~beta2-9ubuntu1|2.02~beta2-9ubuntu1.1|2.02~beta2-9ubuntu1.2|2.02~beta2-9ubuntu1.3|2.02~beta2-9ubuntu1.4|2.02~beta2-9ubuntu1.5|2.02~beta2-9ubuntu1.6|2.02~beta2-9ubuntu1.7|2.02~beta2-9ubuntu1.8|2.02~beta2-9ubuntu1.11|2.02~beta2-9ubuntu1.12|2.02~beta2-9ubuntu1.14|2.02~beta2-9ubuntu1.15|2.02~beta2-9ubuntu1.16|2.02~beta2-9ubuntu1.17|2.02~beta2-9ubuntu1.20|2.02~beta2-9ubuntu1.21", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.22|1.23|1.24|1.25|1.26|1.27|1.30|1.31|1.32|1.33|1.34|1.34.1|1.34.2|1.34.3|1.34.4|1.34.5|1.34.6|1.34.7|1.34.8|1.34.9|1.34.13|1.34.14|1.34.16|1.34.17|1.34.18|1.34.20|1.34.22|1.34.24", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.55|1.56|1.57|1.58|1.59|1.61|1.62|1.63|1.64|1.65|1.66|1.66.1|1.66.2|1.66.6|1.66.7|1.66.8|1.66.9|1.66.11|1.66.12|1.66.14|1.66.15|1.66.16|1.66.17|1.66.18|1.66.19|1.66.20|1.66.21|1.66.22|1.66.23|1.66.26|1.66.27|1.66.28|1.66.29|1.167~16.04.1|1.167~16.04.2|1.167~16.04.4|1.167~16.04.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.1|2.04-1ubuntu44.1.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.85|1.86|1.87|1.89|1.91|1.92|1.93|1.93.1|1.93.2|1.93.3|1.93.4|1.93.5|1.93.7|1.93.8|1.93.10|1.93.11|1.93.13|1.93.14|1.93.15|1.93.16|1.93.18|1.93.19|1.93.20|1.93.21|1.93.22|1.93.24|1.167~18.04.1|1.167~18.04.3|1.167~18.04.5|1.173.2~18.04.1|1.187.2~18.04.1|1.187.3~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.1|2.04-1ubuntu44.1.2|2.04-1ubuntu47.4|2.06-2ubuntu14|2.06-2ubuntu14.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.128|1.129|1.130|1.131|1.133|1.134|1.135|1.136|1.137|1.138|1.139|1.140|1.141|1.142|1.142.1|1.142.3|1.142.4|1.142.5|1.142.6|1.142.8|1.142.9|1.142.10|1.142.11|1.167|1.167.2|1.173.2~20.04.1|1.173.4|1.187.2~20.04.2|1.187.3~20.04.1|1.187.4~20.04.1|1.187.6~20.04.1|1.187.12~20.04", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.2|2.04-1ubuntu47.4|2.04-1ubuntu47.5|2.06-2ubuntu14|2.06-2ubuntu14.1|2.06-2ubuntu14.2|2.06-2ubuntu14.4|2.06-2ubuntu14.8", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.173|1.174|1.176|1.177|1.178|1.179|1.180|1.182~22.04.1|1.187.2|1.187.3~22.04.1|1.187.4~22.04.1|1.187.6|1.187.12", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.04-1ubuntu47|2.04-1ubuntu48|2.06-2ubuntu3|2.06-2ubuntu4|2.06-2ubuntu5|2.06-2ubuntu6|2.06-2ubuntu7|2.06-2ubuntu10|2.06-2ubuntu14|2.06-2ubuntu14.1|2.06-2ubuntu14.2|2.06-2ubuntu14.4|2.06-2ubuntu14.8", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.197|1.199|1.201|1.202|1.202.2|1.202.5", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.12~rc1-10ubuntu4|2.12~rc1-12ubuntu2|2.12-1ubuntu1|2.12-1ubuntu7|2.12-1ubuntu7.1|2.12-1ubuntu7.3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-signed", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/1.212|1.213|1.214", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "grub2-unsigned", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.12-5ubuntu11|2.14~git20250718.0e36779-1ubuntu1|2.14~git20250718.0e36779-1ubuntu4", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2025-0677" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-0677" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "6.4", + "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" + } + ], + "date_published": "2025-02-18T18:00:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-0677.json" + }, + { + "advisory_id": "UBUNTU-CVE-2025-1179", + "aliases": [], + "summary": "A vulnerability was found in GNU Binutils 2.43. It has been rated as critical. Affected by this issue is the function bfd_putl64 of the file bfd/libbfd.c of the component ld. The manipulation leads to memory corruption. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. Upgrading to version 2.44 is able to address this issue. It is recommended to upgrade the affected component. The code maintainer explains, that \"[t]his bug has been fixed at some point between the 2.43 and 2.44 releases\".", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "binutils", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.25.1-6ubuntu1|2.25.51.20151022-0ubuntu2|2.25.51.20151022-0ubuntu3|2.25.51.20151027-0ubuntu1|2.25.51.20151028-0ubuntu1|2.25.51.20151106-0ubuntu1|2.25.51.20151113-1ubuntu1|2.25.51.20151113-2ubuntu1|2.25.90.20151125-1ubuntu1|2.25.90.20151125-2ubuntu1|2.25.90.20151211-0ubuntu1|2.25.90.20151211-0ubuntu2|2.25.90.20160101-1ubuntu1|2.25.90.20160101-1ubuntu2|2.26-2ubuntu1|2.26-3ubuntu1|2.26-4ubuntu1|2.26-5ubuntu1|2.26-6ubuntu1|2.26-7ubuntu2|2.26-8ubuntu1|2.26-8ubuntu2|2.26-8ubuntu2.1|2.26.1-1ubuntu1~16.04|2.26.1-1ubuntu1~16.04.1|2.26.1-1ubuntu1~16.04.3|2.26.1-1ubuntu1~16.04.4|2.26.1-1ubuntu1~16.04.5|2.26.1-1ubuntu1~16.04.6|2.26.1-1ubuntu1~16.04.7|2.26.1-1ubuntu1~16.04.8|2.26.1-1ubuntu1~16.04.8+esm1|2.26.1-1ubuntu1~16.04.8+esm3|2.26.1-1ubuntu1~16.04.8+esm4|2.26.1-1ubuntu1~16.04.8+esm5|2.26.1-1ubuntu1~16.04.8+esm6|2.26.1-1ubuntu1~16.04.8+esm7|2.26.1-1ubuntu1~16.04.8+esm9", + "fixed_version_range": "vers:deb/2.26.1-1ubuntu1~16.04.8+esm11", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "binutils", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.29.1-4ubuntu1|2.29.1-6ubuntu1|2.29.1-7ubuntu1|2.29.1-8ubuntu1|2.29.1-10ubuntu1|2.29.1-12ubuntu1|2.30-4ubuntu1|2.30-5ubuntu1|2.30-7ubuntu1|2.30-8ubuntu1|2.30-9ubuntu1|2.30-10ubuntu1|2.30-11ubuntu1|2.30-14ubuntu2|2.30-15ubuntu1|2.30-20ubuntu2~18.04|2.30-21ubuntu1~18.04|2.30-21ubuntu1~18.04.1|2.30-21ubuntu1~18.04.2|2.30-21ubuntu1~18.04.3|2.30-21ubuntu1~18.04.4|2.30-21ubuntu1~18.04.5|2.30-21ubuntu1~18.04.7|2.30-21ubuntu1~18.04.8|2.30-21ubuntu1~18.04.9|2.30-21ubuntu1~18.04.9+esm1|2.30-21ubuntu1~18.04.9+esm3", + "fixed_version_range": "vers:deb/2.30-21ubuntu1~18.04.9+esm4", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "binutils", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.37-7ubuntu1|2.37-9ubuntu1|2.37-10ubuntu1|2.37.50.20220106-2ubuntu1|2.37.90.20220126-0ubuntu1|2.37.90.20220130-0ubuntu2|2.38-1ubuntu1|2.38-2ubuntu1|2.38-3ubuntu1|2.38-4ubuntu2|2.38-4ubuntu2.1|2.38-4ubuntu2.2|2.38-4ubuntu2.3|2.38-4ubuntu2.4|2.38-4ubuntu2.5|2.38-4ubuntu2.6|2.38-4ubuntu2.7", + "fixed_version_range": "vers:deb/2.38-4ubuntu2.8", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "binutils", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.41-5ubuntu1|2.41-6ubuntu1|2.41.50.20231206-1ubuntu1|2.41.50.20231214-1ubuntu1|2.41.50.20231227-1ubuntu1|2.41.90.20240122-1ubuntu1|2.42-2ubuntu1|2.42-3ubuntu1|2.42-4ubuntu1|2.42-4ubuntu2|2.42-4ubuntu2.3|2.42-4ubuntu2.4", + "fixed_version_range": "vers:deb/2.42-4ubuntu2.5", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "binutils", + "version": "", + "qualifiers": "arch=source&distro=plucky", + "subpath": "" + }, + "affected_version_range": "vers:deb/2.43.1-4ubuntu1|2.43.50.20241126-3ubuntu1|2.43.50.20241204-2ubuntu1|2.43.50.20241210-1ubuntu2|2.43.50.20241215-1ubuntu1|2.43.50.20241221-1ubuntu1|2.43.50.20241230-1ubuntu1|2.43.50.20250108-1ubuntu1|2.44-1ubuntu1|2.44-2ubuntu1", + "fixed_version_range": "vers:deb/2.44-3ubuntu1", + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://sourceware.org/bugzilla/attachment.cgi?id=15915" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640#c1" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2025-1179" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://vuldb.com/?ctiid.295082" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://vuldb.com/?id.295082" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://vuldb.com/?submit.495376" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-1179" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.gnu.org/" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "5.0", + "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L" + }, + { + "system": "cvssv3.1", + "value": "7.5", + "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H" + }, + { + "system": "cvssv4", + "value": "2.3", + "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N" + } + ], + "date_published": "2025-02-11T07:15:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-1179.json" + }, + { + "advisory_id": "UBUNTU-CVE-2025-14345", + "aliases": [], + "summary": "A post-authentication\u00a0flaw in the network two-phase commit protocol used for cross-shard transactions in MongoDB Server may lead to logical data inconsistencies under specific conditions which are not predictable and exist for a very short period of time. This error can cause the transaction coordination logic to misinterpret the transaction as committed, resulting in inconsistent state on those shards. This may lead to low integrity and availability impact. This issue impacts MongoDB Server v8.0 versions prior to 8.0.16, MongoDB Server v7.0 versions prior to 7.0.26 and MongoDB server v8.2 versions prior to 8.2.2.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mongodb", + "version": "", + "qualifiers": "arch=source&distro=trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:2.4.6-0ubuntu5|1:2.4.6-0ubuntu6|1:2.4.8-1ubuntu1|1:2.4.8-2|1:2.4.9-1|1:2.4.9-1ubuntu1|1:2.4.9-1ubuntu2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mongodb", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:2.6.10-0ubuntu1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mongodb", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:3.4.7-1|1:3.4.7-1ubuntu1|1:3.4.7-1ubuntu2|1:3.4.7-1ubuntu4|1:3.4.14-3ubuntu1|1:3.4.14-3ubuntu2|1:3.6.3-0ubuntu1|1:3.6.3-0ubuntu1.1|1:3.6.3-0ubuntu1.3|1:3.6.3-0ubuntu1.4", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "mongodb", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://jira.mongodb.org/browse/SERVER-106075" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2025-14345" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-14345" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "4.2", + "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N" + }, + { + "system": "cvssv3.1", + "value": "5.4", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L" + }, + { + "system": "cvssv4", + "value": "2.3", + "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N" + } + ], + "date_published": "2025-12-09T16:17:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-14345.json" + }, + { + "advisory_id": "UBUNTU-CVE-2025-71115", + "aliases": [], + "summary": "In the Linux kernel, the following vulnerability has been resolved: um: init cpu_tasks[] earlier This is currently done in uml_finishsetup(), but e.g. with KCOV enabled we'll crash because some init code can call into e.g. memparse(), which has coverage annotations, and then the checks in check_kcov_mode() crash because current is NULL. Simply initialize the cpu_tasks[] array statically, which fixes the crash. For the later SMP work, it seems to have not really caused any problems yet, but initialize all of the entries anyway.", + "affected_packages": [ + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/3.11.0-12.19|3.12.0-1.3|3.12.0-2.5|3.12.0-2.7|3.12.0-3.8|3.12.0-3.9|3.12.0-4.10|3.12.0-4.12|3.12.0-5.13|3.12.0-7.15|3.13.0-1.16|3.13.0-2.17|3.13.0-3.18|3.13.0-4.19|3.13.0-5.20|3.13.0-6.23|3.13.0-7.25|3.13.0-7.26|3.13.0-8.27|3.13.0-8.28|3.13.0-10.30|3.13.0-11.31|3.13.0-12.32|3.13.0-13.33|3.13.0-14.34|3.13.0-15.35|3.13.0-16.36|3.13.0-17.37|3.13.0-18.38|3.13.0-19.39|3.13.0-19.40|3.13.0-20.42|3.13.0-21.43|3.13.0-22.44|3.13.0-23.45|3.13.0-24.46|3.13.0-24.47|3.13.0-27.50|3.13.0-29.53|3.13.0-30.54|3.13.0-30.55|3.13.0-32.57|3.13.0-33.58|3.13.0-34.60|3.13.0-35.62|3.13.0-36.63|3.13.0-37.64|3.13.0-39.66|3.13.0-40.69|3.13.0-41.70|3.13.0-43.72|3.13.0-44.73|3.13.0-45.74|3.13.0-46.75|3.13.0-46.76|3.13.0-46.77|3.13.0-46.79|3.13.0-48.80|3.13.0-49.81|3.13.0-49.83|3.13.0-51.84|3.13.0-52.85|3.13.0-52.86|3.13.0-53.88|3.13.0-53.89|3.13.0-54.91|3.13.0-55.92|3.13.0-55.94|3.13.0-57.95|3.13.0-58.97|3.13.0-59.98|3.13.0-61.100|3.13.0-62.102|3.13.0-63.103|3.13.0-65.105|3.13.0-65.106|3.13.0-66.108|3.13.0-67.110|3.13.0-68.111|3.13.0-70.113|3.13.0-71.114|3.13.0-73.116|3.13.0-74.118|3.13.0-76.120|3.13.0-77.121|3.13.0-79.123|3.13.0-83.127|3.13.0-85.129|3.13.0-86.130|3.13.0-86.131|3.13.0-87.133|3.13.0-88.135|3.13.0-91.138|3.13.0-92.139|3.13.0-93.140|3.13.0-95.142|3.13.0-96.143|3.13.0-98.145|3.13.0-100.147|3.13.0-101.148|3.13.0-103.150|3.13.0-105.152|3.13.0-106.153|3.13.0-107.154|3.13.0-108.155|3.13.0-109.156|3.13.0-110.157|3.13.0-111.158|3.13.0-112.159|3.13.0-113.160|3.13.0-115.162|3.13.0-116.163|3.13.0-117.164|3.13.0-119.166|3.13.0-121.170|3.13.0-123.172|3.13.0-125.174|3.13.0-126.175|3.13.0-128.177|3.13.0-129.178|3.13.0-132.181|3.13.0-133.182|3.13.0-135.184|3.13.0-137.186|3.13.0-139.188|3.13.0-141.190|3.13.0-142.191|3.13.0-143.192|3.13.0-144.193|3.13.0-145.194|3.13.0-147.196|3.13.0-149.199|3.13.0-151.201|3.13.0-153.203|3.13.0-155.205|3.13.0-156.206|3.13.0-157.207|3.13.0-158.208|3.13.0-160.210|3.13.0-161.211|3.13.0-162.212|3.13.0-163.213|3.13.0-164.214|3.13.0-165.215|3.13.0-166.216|3.13.0-167.217|3.13.0-168.218|3.13.0-169.219|3.13.0-170.220|3.13.0-171.222|3.13.0-172.223|3.13.0-173.224|3.13.0-174.225|3.13.0-175.226|3.13.0-176.227|3.13.0-180.231|3.13.0-181.232|3.13.0-182.233|3.13.0-183.234|3.13.0-184.235|3.13.0-185.236|3.13.0-186.237|3.13.0-187.238|3.13.0-188.239|3.13.0-189.240|3.13.0-190.241|3.13.0-191.242|3.13.0-192.243|3.13.0-193.244|3.13.0-194.245|3.13.0-195.246|3.13.0-196.247|3.13.0-197.248|3.13.0-198.249|3.13.0-199.250|3.13.0-200.251|3.13.0-201.252|3.13.0-202.253|3.13.0-203.254|3.13.0-204.255|3.13.0-205.256|3.13.0-206.257|3.13.0-207.258|3.13.0-208.259|3.13.0-209.260|3.13.0-210.261", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1002.2|4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1009.9|4.4.0-1010.10|4.4.0-1011.11|4.4.0-1012.12|4.4.0-1014.14|4.4.0-1016.16|4.4.0-1017.17|4.4.0-1019.19|4.4.0-1022.22|4.4.0-1023.23|4.4.0-1024.25|4.4.0-1025.26|4.4.0-1027.30|4.4.0-1028.31|4.4.0-1029.32|4.4.0-1031.34|4.4.0-1032.35|4.4.0-1034.37|4.4.0-1036.39|4.4.0-1037.40|4.4.0-1038.41|4.4.0-1039.42|4.4.0-1040.43|4.4.0-1042.45|4.4.0-1044.47|4.4.0-1045.48|4.4.0-1046.50|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1052.56|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1056.60|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1060.64|4.4.0-1061.65|4.4.0-1062.66|4.4.0-1064.68|4.4.0-1065.69|4.4.0-1066.70|4.4.0-1067.71|4.4.0-1073.77|4.4.0-1074.78|4.4.0-1075.79|4.4.0-1076.80|4.4.0-1077.81|4.4.0-1078.82|4.4.0-1081.85|4.4.0-1082.86|4.4.0-1083.87|4.4.0-1085.89|4.4.0-1086.90|4.4.0-1087.91|4.4.0-1088.92|4.4.0-1090.94|4.4.0-1091.95|4.4.0-1092.96|4.4.0-1093.97|4.4.0-1094.99|4.4.0-1095.100|4.4.0-1096.101|4.4.0-1097.102|4.4.0-1098.103|4.4.0-1099.104|4.4.0-1101.106|4.4.0-1102.107|4.4.0-1103.108|4.4.0-1104.109|4.4.0-1107.113|4.4.0-1109.115|4.4.0-1110.116|4.4.0-1111.117|4.4.0-1112.118|4.4.0-1113.119|4.4.0-1114.120|4.4.0-1115.121|4.4.0-1116.122|4.4.0-1117.123|4.4.0-1118.124|4.4.0-1119.125|4.4.0-1120.126|4.4.0-1121.127|4.4.0-1122.128|4.4.0-1123.129|4.4.0-1124.130|4.4.0-1125.131|4.4.0-1127.133|4.4.0-1128.134|4.4.0-1129.135|4.4.0-1130.136|4.4.0-1131.137|4.4.0-1133.139|4.4.0-1134.140|4.4.0-1135.141|4.4.0-1136.142|4.4.0-1137.143|4.4.0-1138.144|4.4.0-1139.145|4.4.0-1140.146|4.4.0-1141.147|4.4.0-1142.148|4.4.0-1143.149|4.4.0-1144.150|4.4.0-1145.151|4.4.0-1146.152|4.4.0-1147.153|4.4.0-1148.154|4.4.0-1149.155|4.4.0-1150.156|4.4.0-1151.157", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1014.14|4.15.0-1015.15|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1019.20|4.15.0-1021.22|4.15.0-1023.24|4.15.0-1024.25|4.15.0-1025.26|4.15.0-1026.27|4.15.0-1027.28|4.15.0-1028.29|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1042.45|4.15.0-1044.70|5.0.0-1020.20~18.04.1|5.0.0-1021.21~18.04.1|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.1|5.0.0-1028.29~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1031.32|5.0.0-1033.34|5.0.0-1034.35", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1023.24~14.04.1|4.15.0-1030.31~14.04.1|4.15.0-1031.32~14.04.1|4.15.0-1032.33~14.04.2|4.15.0-1035.36~14.04.2|4.15.0-1036.38~14.04.2|4.15.0-1037.39~14.04.2|4.15.0-1039.41~14.04.2|4.15.0-1040.44~14.04.1|4.15.0-1041.45~14.04.1|4.15.0-1042.46~14.04.1|4.15.0-1045.49~14.04.1|4.15.0-1046.50~14.04.1|4.15.0-1047.51~14.04.1|4.15.0-1049.54~14.04.1|4.15.0-1050.55~14.04.1|4.15.0-1051.56~14.04.1|4.15.0-1052.57~14.04.1|4.15.0-1055.60~14.04.1|4.15.0-1056.61~14.04.1|4.15.0-1057.62~14.04.1|4.15.0-1059.64~14.04.1|4.15.0-1060.65~14.04.1|4.15.0-1061.66~14.04.1|4.15.0-1063.68~14.04.1|4.15.0-1064.69~14.04.1|4.15.0-1066.71~14.04.1|4.15.0-1067.72~14.04.1|4.15.0-1069.74~14.04.1|4.15.0-1071.76~14.04.1|4.15.0-1074.79~14.04.1|4.15.0-1077.82~14.04.1|4.15.0-1082.92~14.04.1|4.15.0-1083.93~14.04.1|4.15.0-1089.99~14.04.1|4.15.0-1091.101~14.04.1|4.15.0-1092.102~14.04.1|4.15.0-1093.103~14.04.1|4.15.0-1095.105~14.04.1|4.15.0-1096.106~14.04.1|4.15.0-1098.109~14.04.1|4.15.0-1100.111~14.04.1|4.15.0-1102.113~14.04.1|4.15.0-1103.114~14.04.1|4.15.0-1106.118~14.04.1|4.15.0-1108.120~14.04.1|4.15.0-1109.121~14.04.1|4.15.0-1110.122~14.04.1|4.15.0-1111.123~14.04.1|4.15.0-1112.124~14.04.1|4.15.0-1113.126~14.04.1|4.15.0-1114.127~14.04.1|4.15.0-1115.128~14.04.1|4.15.0-1118.131~14.04.1|4.15.0-1121.134~14.04.1|4.15.0-1122.135~14.04.1|4.15.0-1123.136~14.04.1|4.15.0-1124.137~14.04.1|4.15.0-1125.138~14.04.1|4.15.0-1126.139~14.04.1|4.15.0-1127.140~14.04.1|4.15.0-1129.142~14.04.1|4.15.0-1130.143~14.04.1|4.15.0-1131.144~14.04.1|4.15.0-1133.146~14.04.1|4.15.0-1134.147~14.04.1|4.15.0-1136.149~14.04.1|4.15.0-1137.150~14.04.1|4.15.0-1138.151~14.04.1|4.15.0-1139.152~14.04.1|4.15.0-1142.156~14.04.1|4.15.0-1145.160~14.04.1|4.15.0-1146.161~14.04.1|4.15.0-1149.164~14.04.1|4.15.0-1150.165~14.04.1|4.15.0-1151.166~14.04.1|4.15.0-1153.168~14.04.1|4.15.0-1157.172~14.04.2|4.15.0-1158.173~14.04.1|4.15.0-1159.174~14.04.1|4.15.0-1162.177~14.04.1|4.15.0-1163.178~14.04.1|4.15.0-1164.179~14.04.1|4.15.0-1165.180~14.04.1|4.15.0-1166.181~14.04.1|4.15.0-1167.182~14.04.1|4.15.0-1168.183~14.04.1|4.15.0-1169.184~14.04.1|4.15.0-1170.185~14.04.1|4.15.0-1171.186~14.04.1|4.15.0-1172.187~14.04.1|4.15.0-1173.188~14.04.1|4.15.0-1174.189~14.04.1|4.15.0-1175.190~14.04.1|4.15.0-1176.191~14.04.1|4.15.0-1177.192~14.04.1|4.15.0-1178.193~14.04.1|4.15.0-1179.194~14.04.1|4.15.0-1180.195~14.04.1|4.15.0-1181.196~14.04.1|4.15.0-1182.197~14.04.1|4.15.0-1183.198~14.04.1|4.15.0-1184.199~14.04.1|4.15.0-1185.200~14.04.1|4.15.0-1186.201~14.04.1|4.15.0-1187.202~14.04.1|4.15.0-1188.203~14.04.1|4.15.0-1189.204~14.04.1|4.15.0-1190.205~14.04.1|4.15.0-1191.206~14.04.1|4.15.0-1192.207~14.04.1|4.15.0-1193.208~14.04.1|4.15.0-1194.209~14.04.1|4.15.0-1195.210~14.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lts-xenial", + "version": "", + "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-13.29~14.04.1|4.4.0-14.30~14.04.2|4.4.0-15.31~14.04.1|4.4.0-18.34~14.04.1|4.4.0-21.37~14.04.1|4.4.0-22.39~14.04.1|4.4.0-22.40~14.04.1|4.4.0-24.43~14.04.1|4.4.0-28.47~14.04.1|4.4.0-31.50~14.04.1|4.4.0-34.53~14.04.1|4.4.0-36.55~14.04.1|4.4.0-38.57~14.04.1|4.4.0-42.62~14.04.1|4.4.0-45.66~14.04.1|4.4.0-47.68~14.04.1|4.4.0-51.72~14.04.1|4.4.0-53.74~14.04.1|4.4.0-57.78~14.04.1|4.4.0-59.80~14.04.1|4.4.0-62.83~14.04.1|4.4.0-63.84~14.04.2|4.4.0-64.85~14.04.1|4.4.0-66.87~14.04.1|4.4.0-67.88~14.04.1|4.4.0-70.91~14.04.1|4.4.0-71.92~14.04.1|4.4.0-72.93~14.04.1|4.4.0-75.96~14.04.1|4.4.0-78.99~14.04.2|4.4.0-79.100~14.04.1|4.4.0-81.104~14.04.1|4.4.0-83.106~14.04.1|4.4.0-87.110~14.04.1|4.4.0-89.112~14.04.1|4.4.0-91.114~14.04.1|4.4.0-92.115~14.04.1|4.4.0-93.116~14.04.1|4.4.0-96.119~14.04.1|4.4.0-97.120~14.04.1|4.4.0-98.121~14.04.1|4.4.0-101.124~14.04.1|4.4.0-103.126~14.04.1|4.4.0-104.127~14.04.1|4.4.0-108.131~14.04.1|4.4.0-109.132~14.04.1|4.4.0-111.134~14.04.1|4.4.0-112.135~14.04.1|4.4.0-116.140~14.04.1|4.4.0-119.143~14.04.1|4.4.0-121.145~14.04.1|4.4.0-124.148~14.04.1|4.4.0-127.153~14.04.1|4.4.0-128.154~14.04.1|4.4.0-130.156~14.04.1|4.4.0-131.157~14.04.1|4.4.0-133.159~14.04.1|4.4.0-134.160~14.04.1|4.4.0-135.161~14.04.1|4.4.0-137.163~14.04.1|4.4.0-138.164~14.04.1|4.4.0-139.165~14.04.1|4.4.0-140.166~14.04.1|4.4.0-141.167~14.04.1|4.4.0-142.168~14.04.1|4.4.0-143.169~14.04.2|4.4.0-144.170~14.04.1|4.4.0-146.172~14.04.1|4.4.0-148.174~14.04.1|4.4.0-150.176~14.04.1|4.4.0-151.178~14.04.1|4.4.0-154.181~14.04.1|4.4.0-157.185~14.04.1|4.4.0-159.187~14.04.1|4.4.0-161.189~14.04.1|4.4.0-164.192~14.04.1|4.4.0-165.193~14.04.1|4.4.0-166.195~14.04.1|4.4.0-168.197~14.04.1|4.4.0-169.198~14.04.1|4.4.0-170.199~14.04.1|4.4.0-171.200~14.04.1|4.4.0-173.203~14.04.1|4.4.0-174.204~14.04.1|4.4.0-176.206~14.04.1|4.4.0-177.207~14.04.1|4.4.0-178.208~14.04.1|4.4.0-179.209~14.04.1|4.4.0-184.214~14.04.1|4.4.0-185.215~14.04.1|4.4.0-186.216~14.04.1|4.4.0-187.217~14.04.1|4.4.0-189.219~14.04.1|4.4.0-190.220~14.04.1|4.4.0-193.224~14.04.1|4.4.0-194.226~14.04.1|4.4.0-197.229~14.04.1|4.4.0-198.230~14.04.1|4.4.0-200.232~14.04.1|4.4.0-201.233~14.04.1|4.4.0-203.235~14.04.1|4.4.0-204.236~14.04.1|4.4.0-206.238~14.04.1|4.4.0-208.240~14.04.1|4.4.0-209.241~14.04.1|4.4.0-210.242~14.04.1|4.4.0-211.243~14.04.1|4.4.0-212.244~14.04.1|4.4.0-213.245~14.04.1|4.4.0-214.246~14.04.1|4.4.0-215.247~14.04.1|4.4.0-218.251~14.04.1|4.4.0-219.252~14.04.1|4.4.0-221.254~14.04.1|4.4.0-222.255~14.04.1|4.4.0-223.256~14.04.1|4.4.0-224.257~14.04.1|4.4.0-227.261~14.04.1|4.4.0-229.263~14.04.1|4.4.0-230.264~14.04.1|4.4.0-231.265~14.04.1|4.4.0-233.267~14.04.1|4.4.0-234.268~14.04.1|4.4.0-235.269~14.04.1|4.4.0-236.270~14.04.1|4.4.0-237.271~14.04.1|4.4.0-239.273~14.04.1|4.4.0-240.274~14.04.1|4.4.0-241.275~14.04.1|4.4.0-242.276~14.04.1|4.4.0-243.277~14.04.1|4.4.0-244.278~14.04.1|4.4.0-245.279~14.04.1|4.4.0-246.280~14.04.1|4.4.0-248.282~14.04.1|4.4.0-250.284~14.04.1|4.4.0-251.285~14.04.1|4.4.0-252.286~14.04.1|4.4.0-253.287~14.04.1|4.4.0-254.288~14.04.1|4.4.0-256.290~14.04.1|4.4.0-257.291~14.04.1|4.4.0-258.292~14.04.2|4.4.0-259.293~14.04.1|4.4.0-260.294~14.04.1|4.4.0-261.295~14.04.1|4.4.0-262.296~14.04.1|4.4.0-263.297~14.04.1|4.4.0-264.298~14.04.1|4.4.0-266.300~14.04.1|4.4.0-267.301~14.04.1|4.4.0-268.302~14.04.1|4.4.0-269.303~14.04.1|4.4.0-270.304~14.04.1|4.4.0-271.305~14.04.1|4.4.0-272.306~14.04.1|4.4.0-273.307~14.04.1|4.4.0-274.308~14.04.1|4.4.0-276.310~14.04.1|4.4.0-277.311~14.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.2.0-16.19|4.2.0-17.21|4.2.0-19.23|4.3.0-1.10|4.3.0-2.11|4.3.0-5.16|4.3.0-6.17|4.3.0-7.18|4.4.0-2.16|4.4.0-4.19|4.4.0-6.21|4.4.0-7.22|4.4.0-8.23|4.4.0-9.24|4.4.0-10.25|4.4.0-11.26|4.4.0-12.28|4.4.0-13.29|4.4.0-14.30|4.4.0-15.31|4.4.0-16.32|4.4.0-17.33|4.4.0-18.34|4.4.0-21.37|4.4.0-22.39|4.4.0-22.40|4.4.0-24.43|4.4.0-28.47|4.4.0-31.50|4.4.0-34.53|4.4.0-36.55|4.4.0-38.57|4.4.0-42.62|4.4.0-43.63|4.4.0-45.66|4.4.0-47.68|4.4.0-51.72|4.4.0-53.74|4.4.0-57.78|4.4.0-59.80|4.4.0-62.83|4.4.0-63.84|4.4.0-64.85|4.4.0-65.86|4.4.0-66.87|4.4.0-67.88|4.4.0-70.91|4.4.0-71.92|4.4.0-72.93|4.4.0-75.96|4.4.0-77.98|4.4.0-78.99|4.4.0-79.100|4.4.0-81.104|4.4.0-83.106|4.4.0-87.110|4.4.0-89.112|4.4.0-91.114|4.4.0-92.115|4.4.0-93.116|4.4.0-96.119|4.4.0-97.120|4.4.0-98.121|4.4.0-101.124|4.4.0-103.126|4.4.0-104.127|4.4.0-108.131|4.4.0-109.132|4.4.0-112.135|4.4.0-116.140|4.4.0-119.143|4.4.0-121.145|4.4.0-122.146|4.4.0-124.148|4.4.0-127.153|4.4.0-128.154|4.4.0-130.156|4.4.0-131.157|4.4.0-133.159|4.4.0-134.160|4.4.0-135.161|4.4.0-137.163|4.4.0-138.164|4.4.0-139.165|4.4.0-140.166|4.4.0-141.167|4.4.0-142.168|4.4.0-143.169|4.4.0-145.171|4.4.0-146.172|4.4.0-148.174|4.4.0-150.176|4.4.0-151.178|4.4.0-154.181|4.4.0-157.185|4.4.0-159.187|4.4.0-161.189|4.4.0-164.192|4.4.0-165.193|4.4.0-166.195|4.4.0-168.197|4.4.0-169.198|4.4.0-170.199|4.4.0-171.200|4.4.0-173.203|4.4.0-174.204|4.4.0-176.206|4.4.0-177.207|4.4.0-178.208|4.4.0-179.209|4.4.0-184.214|4.4.0-185.215|4.4.0-186.216|4.4.0-187.217|4.4.0-189.219|4.4.0-190.220|4.4.0-193.224|4.4.0-194.226|4.4.0-197.229|4.4.0-198.230|4.4.0-200.232|4.4.0-201.233|4.4.0-203.235|4.4.0-204.236|4.4.0-206.238|4.4.0-208.240|4.4.0-209.241|4.4.0-210.242|4.4.0-211.243|4.4.0-212.244|4.4.0-213.245|4.4.0-214.246|4.4.0-216.249|4.4.0-217.250|4.4.0-218.251|4.4.0-219.252|4.4.0-221.254|4.4.0-222.255|4.4.0-223.256|4.4.0-224.257|4.4.0-227.261|4.4.0-229.263|4.4.0-230.264|4.4.0-231.265|4.4.0-233.267|4.4.0-234.268|4.4.0-235.269|4.4.0-236.270|4.4.0-237.271|4.4.0-239.273|4.4.0-240.274|4.4.0-241.275|4.4.0-242.276|4.4.0-243.277|4.4.0-244.278|4.4.0-245.279|4.4.0-246.280|4.4.0-248.282|4.4.0-250.284|4.4.0-251.285|4.4.0-252.286|4.4.0-253.287|4.4.0-254.288|4.4.0-256.290|4.4.0-257.291|4.4.0-258.292|4.4.0-259.293|4.4.0-260.294|4.4.0-261.295|4.4.0-262.296|4.4.0-263.297|4.4.0-264.298|4.4.0-266.300|4.4.0-267.301|4.4.0-268.302|4.4.0-269.303|4.4.0-270.304|4.4.0-271.305|4.4.0-272.306|4.4.0-273.307|4.4.0-274.308|4.4.0-276.310|4.4.0-277.311", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1001.10|4.4.0-1003.12|4.4.0-1004.13|4.4.0-1007.16|4.4.0-1009.18|4.4.0-1011.20|4.4.0-1012.21|4.4.0-1013.22|4.4.0-1016.25|4.4.0-1017.26|4.4.0-1018.27|4.4.0-1020.29|4.4.0-1022.31|4.4.0-1026.35|4.4.0-1028.37|4.4.0-1030.39|4.4.0-1031.40|4.4.0-1032.41|4.4.0-1035.44|4.4.0-1037.46|4.4.0-1038.47|4.4.0-1039.48|4.4.0-1041.50|4.4.0-1043.52|4.4.0-1044.53|4.4.0-1047.56|4.4.0-1048.57|4.4.0-1049.58|4.4.0-1050.59|4.4.0-1052.61|4.4.0-1054.63|4.4.0-1055.64|4.4.0-1057.66|4.4.0-1060.69|4.4.0-1061.70|4.4.0-1062.71|4.4.0-1063.72|4.4.0-1065.75|4.4.0-1066.76|4.4.0-1067.77|4.4.0-1069.79|4.4.0-1070.80|4.4.0-1072.82|4.4.0-1073.83|4.4.0-1074.84|4.4.0-1075.85|4.4.0-1077.87|4.4.0-1079.89|4.4.0-1081.91|4.4.0-1083.93|4.4.0-1084.94|4.4.0-1085.96|4.4.0-1087.98|4.4.0-1088.99|4.4.0-1090.101|4.4.0-1092.103|4.4.0-1094.105|4.4.0-1095.106|4.4.0-1096.107|4.4.0-1098.109|4.4.0-1099.110|4.4.0-1100.111|4.4.0-1101.112|4.4.0-1102.113|4.4.0-1104.115|4.4.0-1105.116|4.4.0-1106.117|4.4.0-1107.118|4.4.0-1109.120|4.4.0-1110.121|4.4.0-1111.123|4.4.0-1112.124|4.4.0-1113.126|4.4.0-1114.127|4.4.0-1117.131|4.4.0-1118.132|4.4.0-1119.133|4.4.0-1121.135|4.4.0-1122.136|4.4.0-1123.137|4.4.0-1124.138|4.4.0-1126.140|4.4.0-1127.141|4.4.0-1128.142|4.4.0-1129.143|4.4.0-1130.144|4.4.0-1131.145|4.4.0-1132.146|4.4.0-1133.147|4.4.0-1134.148|4.4.0-1135.149|4.4.0-1137.151|4.4.0-1138.152|4.4.0-1139.153|4.4.0-1140.154|4.4.0-1143.158|4.4.0-1145.160|4.4.0-1146.161|4.4.0-1147.162|4.4.0-1148.163|4.4.0-1150.165|4.4.0-1151.166|4.4.0-1152.167|4.4.0-1153.168|4.4.0-1154.169|4.4.0-1155.170|4.4.0-1156.171|4.4.0-1157.172|4.4.0-1158.173|4.4.0-1159.174|4.4.0-1160.175|4.4.0-1161.176|4.4.0-1162.177|4.4.0-1163.178|4.4.0-1164.179|4.4.0-1165.180|4.4.0-1166.181|4.4.0-1167.182|4.4.0-1168.183|4.4.0-1169.184|4.4.0-1171.186|4.4.0-1172.187|4.4.0-1173.188|4.4.0-1174.189|4.4.0-1175.190|4.4.0-1176.191|4.4.0-1177.192|4.4.0-1178.193|4.4.0-1179.194|4.4.0-1180.195|4.4.0-1181.196|4.4.0-1182.197|4.4.0-1183.198|4.4.0-1184.199|4.4.0-1185.200|4.4.0-1186.201|4.4.0-1187.202|4.4.0-1188.203|4.4.0-1189.204", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-hwe", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1030.31~16.04.1|4.15.0-1031.33~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1035.37~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1039.41~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43~16.04.1|4.15.0-1043.45~16.04.1|4.15.0-1044.46~16.04.1|4.15.0-1045.47~16.04.1|4.15.0-1047.49~16.04.1|4.15.0-1048.50~16.04.1|4.15.0-1050.52~16.04.1|4.15.0-1051.53~16.04.1|4.15.0-1052.54~16.04.1|4.15.0-1054.56~16.04.1|4.15.0-1056.58~16.04.1|4.15.0-1057.59~16.04.1|4.15.0-1058.60~16.04.1|4.15.0-1060.62~16.04.1|4.15.0-1063.67~16.04.1|4.15.0-1065.69~16.04.1|4.15.0-1066.70~16.04.1|4.15.0-1067.71~16.04.1|4.15.0-1073.77~16.04.1|4.15.0-1074.78~16.04.1|4.15.0-1079.83~16.04.1|4.15.0-1080.84~16.04.1|4.15.0-1082.86~16.04.1|4.15.0-1083.87~16.04.1|4.15.0-1085.90~16.04.1|4.15.0-1088.93~16.04.1|4.15.0-1090.95~16.04.1|4.15.0-1091.96~16.04.1|4.15.0-1093.99~16.04.1|4.15.0-1094.101~16.04.1|4.15.0-1095.102~16.04.1|4.15.0-1096.103~16.04.1|4.15.0-1097.104~16.04.1|4.15.0-1098.105~16.04.1|4.15.0-1099.106~16.04.1|4.15.0-1102.109~16.04.1|4.15.0-1103.110~16.04.1|4.15.0-1106.113~16.04.1|4.15.0-1109.116~16.04.1|4.15.0-1110.117~16.04.1|4.15.0-1111.118~16.04.1|4.15.0-1112.119~16.04.1|4.15.0-1113.120~16.04.1|4.15.0-1115.122~16.04.1|4.15.0-1116.123~16.04.1|4.15.0-1118.125~16.04.1|4.15.0-1119.126~16.04.2|4.15.0-1120.128~16.04.1|4.15.0-1123.132~16.04.1|4.15.0-1124.133~16.04.1|4.15.0-1126.135~16.04.2|4.15.0-1127.136~16.04.1|4.15.0-1128.137~16.04.1|4.15.0-1130.139~16.04.1|4.15.0-1133.143~16.04.1|4.15.0-1136.147~16.04.1|4.15.0-1137.148~16.04.1|4.15.0-1139.150~16.04.1|4.15.0-1140.151~16.04.1|4.15.0-1141.152~16.04.1|4.15.0-1142.154~16.04.1|4.15.0-1143.155~16.04.1|4.15.0-1146.158~16.04.2|4.15.0-1147.159~16.04.1|4.15.0-1148.160~16.04.1|4.15.0-1151.164~16.04.1|4.15.0-1153.166~16.04.1|4.15.0-1154.167~16.04.1|4.15.0-1155.168~16.04.1|4.15.0-1156.169~16.04.1|4.15.0-1157.170~16.04.1|4.15.0-1158.171~16.04.1|4.15.0-1159.172~16.04.1|4.15.0-1160.173~16.04.1|4.15.0-1161.174~16.04.1|4.15.0-1162.175~16.04.1|4.15.0-1163.176~16.04.1|4.15.0-1164.177~16.04.1|4.15.0-1165.178~16.04.1|4.15.0-1166.179~16.04.1|4.15.0-1167.180~16.04.1|4.15.0-1168.181~16.04.1|4.15.0-1169.182~16.04.1|4.15.0-1170.183~16.04.1|4.15.0-1172.185~16.04.1|4.15.0-1173.186~16.04.1|4.15.0-1174.187~16.04.1|4.15.0-1175.188~16.04.1|4.15.0-1176.189~16.04.1|4.15.0-1177.190~16.04.1|4.15.0-1178.191~16.04.1|4.15.0-1179.192~16.04.1|4.15.0-1180.193~16.04.1|4.15.0-1181.194~16.04.1|4.15.0-1182.195~16.04.1|4.15.0-1183.196~16.04.1|4.15.0-1184.197~16.04.1|4.15.0-1185.198~16.04.1|4.15.0-1186.199~16.04.1|4.15.0-1187.200~16.04.1|4.15.0-1188.201~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.11.0-1009.9|4.11.0-1011.11|4.11.0-1013.13|4.11.0-1014.14|4.11.0-1015.15|4.11.0-1016.16|4.13.0-1005.7|4.13.0-1006.8|4.13.0-1007.9|4.13.0-1009.12|4.13.0-1011.14|4.13.0-1012.15|4.13.0-1014.17|4.13.0-1016.19|4.13.0-1018.21|4.15.0-1013.13~16.04.2|4.15.0-1014.14~16.04.1|4.15.0-1018.18~16.04.1|4.15.0-1019.19~16.04.1|4.15.0-1021.21~16.04.1|4.15.0-1022.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1025.26~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1030.31~16.04.1|4.15.0-1031.32~16.04.1|4.15.0-1032.33~16.04.1|4.15.0-1035.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1039.43|4.15.0-1040.44|4.15.0-1041.45|4.15.0-1042.46|4.15.0-1045.49|4.15.0-1046.50|4.15.0-1047.51|4.15.0-1049.54|4.15.0-1050.55|4.15.0-1051.56|4.15.0-1052.57|4.15.0-1055.60|4.15.0-1056.61|4.15.0-1057.62|4.15.0-1059.64|4.15.0-1060.65|4.15.0-1061.66|4.15.0-1063.68|4.15.0-1064.69|4.15.0-1066.71|4.15.0-1067.72|4.15.0-1069.74|4.15.0-1071.76|4.15.0-1075.80|4.15.0-1077.82|4.15.0-1082.92~16.04.1|4.15.0-1083.93~16.04.1|4.15.0-1089.99~16.04.1|4.15.0-1091.101~16.04.1|4.15.0-1092.102~16.04.1|4.15.0-1093.103~16.04.1|4.15.0-1095.105~16.04.1|4.15.0-1096.106~16.04.1|4.15.0-1098.109~16.04.1|4.15.0-1100.111~16.04.1|4.15.0-1102.113~16.04.1|4.15.0-1103.114~16.04.1|4.15.0-1106.118~16.04.1|4.15.0-1108.120~16.04.1|4.15.0-1109.121~16.04.1|4.15.0-1110.122~16.04.1|4.15.0-1111.123~16.04.1|4.15.0-1112.124~16.04.1|4.15.0-1113.126~16.04.1|4.15.0-1114.127~16.04.1|4.15.0-1115.128~16.04.1|4.15.0-1118.131~16.04.1|4.15.0-1121.134~16.04.1|4.15.0-1122.135~16.04.1|4.15.0-1123.136~16.04.1|4.15.0-1124.137~16.04.1|4.15.0-1125.138~16.04.1|4.15.0-1126.139~16.04.1|4.15.0-1127.140~16.04.1|4.15.0-1129.142~16.04.1|4.15.0-1130.143~16.04.1|4.15.0-1131.144~16.04.1|4.15.0-1133.146~16.04.1|4.15.0-1134.147~16.04.1|4.15.0-1136.149~16.04.1|4.15.0-1137.150~16.04.1|4.15.0-1138.151~16.04.1|4.15.0-1139.152~16.04.1|4.15.0-1142.156~16.04.1|4.15.0-1145.160~16.04.1|4.15.0-1146.161~16.04.1|4.15.0-1149.164~16.04.1|4.15.0-1150.165~16.04.1|4.15.0-1151.166~16.04.1|4.15.0-1153.168~16.04.1|4.15.0-1159.174~16.04.1|4.15.0-1162.177~16.04.1|4.15.0-1163.178~16.04.1|4.15.0-1164.179~16.04.1|4.15.0-1165.180~16.04.1|4.15.0-1166.181~16.04.1|4.15.0-1167.182~16.04.1|4.15.0-1168.183~16.04.1|4.15.0-1169.184~16.04.1|4.15.0-1170.185~16.04.1|4.15.0-1171.186~16.04.1|4.15.0-1172.187~16.04.1|4.15.0-1173.188~16.04.1|4.15.0-1174.189~16.04.1|4.15.0-1175.190~16.04.1|4.15.0-1176.191~16.04.1|4.15.0-1177.192~16.04.1|4.15.0-1178.193~16.04.1|4.15.0-1179.194~16.04.1|4.15.0-1180.195~16.04.1|4.15.0-1181.196~16.04.1|4.15.0-1182.197~16.04.1|4.15.0-1183.198~16.04.1|4.15.0-1184.199~16.04.1|4.15.0-1185.200~16.04.1|4.15.0-1186.201~16.04.1|4.15.0-1187.202~16.04.1|4.15.0-1188.203~16.04.1|4.15.0-1189.204~16.04.1|4.15.0-1190.205~16.04.1|4.15.0-1191.206~16.04.1|4.15.0-1192.207~16.04.1|4.15.0-1193.208~16.04.1|4.15.0-1194.209~16.04.1|4.15.0-1195.210~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-23.24~20.04.1|5.8.0-25.26~20.04.1|5.8.0-28.30~20.04.1|5.8.0-29.31~20.04.1|5.8.0-31.33~20.04.1|5.8.0-33.36~20.04.1|5.8.0-34.37~20.04.2|5.8.0-36.40~20.04.1|5.8.0-38.43~20.04.1|5.8.0-40.45~20.04.1|5.8.0-41.46~20.04.1|5.8.0-43.49~20.04.1|5.8.0-44.50~20.04.1|5.8.0-45.51~20.04.1|5.8.0-48.54~20.04.1|5.8.0-49.55~20.04.1|5.8.0-50.56~20.04.1|5.8.0-53.60~20.04.1|5.8.0-55.62~20.04.1|5.8.0-59.66~20.04.1|5.8.0-63.71~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1005.5|6.14.0-1007.7+25.10.2|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.10.0-1004.4|4.10.0-1006.6|4.10.0-1007.7|4.10.0-1008.8|4.10.0-1009.9|4.13.0-1002.5|4.13.0-1006.9|4.13.0-1007.10|4.13.0-1008.11|4.13.0-1011.15|4.13.0-1012.16|4.13.0-1013.17|4.13.0-1015.19|4.13.0-1017.21|4.13.0-1019.23|4.15.0-1014.14~16.04.1|4.15.0-1015.15~16.04.1|4.15.0-1017.18~16.04.1|4.15.0-1018.19~16.04.2|4.15.0-1019.20~16.04.1|4.15.0-1021.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1024.25~16.04.2|4.15.0-1025.26~16.04.1|4.15.0-1026.27~16.04.1|4.15.0-1027.28~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1029.31~16.04.1|4.15.0-1030.32~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1034.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1046.49|4.15.0-1047.50|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.56|4.15.0-1055.59|4.15.0-1058.62|4.15.0-1060.64|4.15.0-1061.65|4.15.0-1071.81~16.04.1|4.15.0-1077.87~16.04.1|4.15.0-1078.88~16.04.1|4.15.0-1080.90~16.04.1|4.15.0-1081.92~16.04.1|4.15.0-1083.94~16.04.1|4.15.0-1084.95~16.04.1|4.15.0-1086.98~16.04.1|4.15.0-1087.100~16.04.1|4.15.0-1088.101~16.04.1|4.15.0-1090.103~16.04.1|4.15.0-1091.104~16.04.1|4.15.0-1092.105~16.04.1|4.15.0-1093.106~16.04.1|4.15.0-1094.107~16.04.1|4.15.0-1095.108~16.04.1|4.15.0-1096.109~16.04.1|4.15.0-1097.110~16.04.1|4.15.0-1098.111~16.04.1|4.15.0-1099.112~16.04.1|4.15.0-1100.113~16.04.1|4.15.0-1103.116~16.04.1|4.15.0-1106.120~16.04.1|4.15.0-1107.121~16.04.1|4.15.0-1108.122~16.04.1|4.15.0-1109.123~16.04.1|4.15.0-1110.124~16.04.1|4.15.0-1111.125~16.04.1|4.15.0-1112.126~16.04.1|4.15.0-1114.128~16.04.1|4.15.0-1115.129~16.04.1|4.15.0-1116.130~16.04.1|4.15.0-1118.132~16.04.1|4.15.0-1119.133~16.04.1|4.15.0-1120.134~16.04.1|4.15.0-1121.135~16.04.1|4.15.0-1122.136~16.04.1|4.15.0-1124.138~16.04.1|4.15.0-1127.142~16.04.1|4.15.0-1130.146~16.04.1|4.15.0-1131.147~16.04.1|4.15.0-1134.150~16.04.2|4.15.0-1135.151~16.04.2|4.15.0-1136.152~16.04.1|4.15.0-1137.153~16.04.1|4.15.0-1138.154~16.04.1|4.15.0-1141.157~16.04.2|4.15.0-1142.158~16.04.1|4.15.0-1143.159~16.04.1|4.15.0-1146.162~16.04.1|4.15.0-1147.163~16.04.1|4.15.0-1148.164~16.04.1|4.15.0-1149.165~16.04.1|4.15.0-1150.166~16.04.1|4.15.0-1151.167~16.04.1|4.15.0-1152.168~16.04.1|4.15.0-1153.170~16.04.1|4.15.0-1154.171~16.04.1|4.15.0-1155.172~16.04.1|4.15.0-1156.173~16.04.1|4.15.0-1157.174~16.04.1|4.15.0-1158.175~16.04.1|4.15.0-1159.176~16.04.1|4.15.0-1160.177~16.04.1|4.15.0-1161.178~16.04.1|4.15.0-1162.179~16.04.1|4.15.0-1163.180~16.04.1|4.15.0-1164.181~16.04.1|4.15.0-1165.182~16.04.1|4.15.0-1166.183~16.04.1|4.15.0-1167.184~16.04.2|4.15.0-1168.185~16.04.1|4.15.0-1169.186~16.04.1|4.15.0-1170.187~16.04.1|4.15.0-1171.188~16.04.1|4.15.0-1172.189~16.04.1|4.15.0-1173.190~16.04.1|4.15.0-1174.191~16.04.1|4.15.0-1175.192~16.04.1|4.15.0-1176.193~16.04.1|4.15.0-1177.194~16.04.1|4.15.0-1178.195~16.04.1|4.15.0-1179.196~16.04.1|4.15.0-1180.197~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.8.0-36.36~16.04.1|4.8.0-39.42~16.04.1|4.8.0-41.44~16.04.1|4.8.0-42.45~16.04.1|4.8.0-44.47~16.04.1|4.8.0-45.48~16.04.1|4.8.0-46.49~16.04.1|4.8.0-49.52~16.04.1|4.8.0-51.54~16.04.1|4.8.0-52.55~16.04.1|4.8.0-53.56~16.04.1|4.8.0-54.57~16.04.1|4.8.0-56.61~16.04.1|4.8.0-58.63~16.04.1|4.10.0-27.30~16.04.2|4.10.0-28.32~16.04.2|4.10.0-30.34~16.04.1|4.10.0-32.36~16.04.1|4.10.0-33.37~16.04.1|4.10.0-35.39~16.04.1|4.10.0-37.41~16.04.1|4.10.0-38.42~16.04.1|4.10.0-40.44~16.04.1|4.10.0-42.46~16.04.1|4.13.0-26.29~16.04.2|4.13.0-31.34~16.04.1|4.13.0-32.35~16.04.1|4.13.0-36.40~16.04.1|4.13.0-37.42~16.04.1|4.13.0-38.43~16.04.1|4.13.0-39.44~16.04.1|4.13.0-41.46~16.04.1|4.13.0-43.48~16.04.1|4.13.0-45.50~16.04.1|4.15.0-24.26~16.04.1|4.15.0-29.31~16.04.1|4.15.0-30.32~16.04.1|4.15.0-32.35~16.04.1|4.15.0-33.36~16.04.1|4.15.0-34.37~16.04.1|4.15.0-36.39~16.04.1|4.15.0-38.41~16.04.1|4.15.0-39.42~16.04.1|4.15.0-42.45~16.04.1|4.15.0-43.46~16.04.1|4.15.0-45.48~16.04.1|4.15.0-46.49~16.04.1|4.15.0-47.50~16.04.1|4.15.0-48.51~16.04.1|4.15.0-50.54~16.04.1|4.15.0-51.55~16.04.1|4.15.0-52.56~16.04.1|4.15.0-54.58~16.04.1|4.15.0-55.60~16.04.2|4.15.0-58.64~16.04.1|4.15.0-60.67~16.04.1|4.15.0-62.69~16.04.1|4.15.0-64.73~16.04.1|4.15.0-65.74~16.04.1|4.15.0-66.75~16.04.1|4.15.0-69.78~16.04.1|4.15.0-70.79~16.04.1|4.15.0-72.81~16.04.1|4.15.0-74.83~16.04.1|4.15.0-76.86~16.04.1|4.15.0-88.88~16.04.1|4.15.0-91.92~16.04.1|4.15.0-96.97~16.04.1|4.15.0-99.100~16.04.1|4.15.0-101.102~16.04.1|4.15.0-106.107~16.04.1|4.15.0-107.108~16.04.1|4.15.0-112.113~16.04.1|4.15.0-115.116~16.04.1|4.15.0-117.118~16.04.1|4.15.0-118.119~16.04.1|4.15.0-120.122~16.04.1|4.15.0-122.124~16.04.1|4.15.0-123.126~16.04.1|4.15.0-126.129~16.04.1|4.15.0-128.131~16.04.1|4.15.0-129.132~16.04.1|4.15.0-132.136~16.04.1|4.15.0-133.137~16.04.1|4.15.0-136.140~16.04.1|4.15.0-137.141~16.04.1|4.15.0-139.143~16.04.1|4.15.0-140.144~16.04.1|4.15.0-142.146~16.04.1|4.15.0-143.147~16.04.3|4.15.0-144.148~16.04.1|4.15.0-147.151~16.04.1|4.15.0-151.157~16.04.1|4.15.0-153.160~16.04.1|4.15.0-154.161~16.04.1|4.15.0-156.163~16.04.1|4.15.0-158.166~16.04.1|4.15.0-159.167~16.04.1|4.15.0-161.169~16.04.1|4.15.0-162.170~16.04.1|4.15.0-163.171~16.04.1|4.15.0-166.174~16.04.1|4.15.0-167.175~16.04.1|4.15.0-169.177~16.04.1|4.15.0-171.180~16.04.1|4.15.0-173.182~16.04.1|4.15.0-175.184~16.04.1|4.15.0-176.185~16.04.1|4.15.0-177.186~16.04.1|4.15.0-180.189~16.04.1|4.15.0-184.194~16.04.1|4.15.0-187.198~16.04.1|4.15.0-188.199~16.04.1|4.15.0-189.200~16.04.1|4.15.0-191.202~16.04.1|4.15.0-192.203~16.04.1|4.15.0-193.204~16.04.1|4.15.0-194.205~16.04.1|4.15.0-196.207~16.04.1|4.15.0-197.208~16.04.1|4.15.0-200.211~16.04.2|4.15.0-201.212~16.04.1|4.15.0-202.213~16.04.1|4.15.0-206.217~16.04.1|4.15.0-208.219~16.04.1|4.15.0-209.220~16.04.1|4.15.0-210.221~16.04.1|4.15.0-211.222~16.04.1|4.15.0-212.223~16.04.1|4.15.0-213.224~16.04.1|4.15.0-214.225~16.04.1|4.15.0-216.227~16.04.1|4.15.0-218.229~16.04.1|4.15.0-219.230~16.04.1|4.15.0-220.231~16.04.1|4.15.0-221.232~16.04.1|4.15.0-222.233~16.04.1|4.15.0-223.235~16.04.1|4.15.0-224.236~16.04.1|4.15.0-225.237~16.04.1|4.15.0-226.238~16.04.1|4.15.0-227.239~16.04.1|4.15.0-228.240~16.04.1|4.15.0-229.241~16.04.1|4.15.0-230.242~16.04.1|4.15.0-231.243~16.04.1|4.15.0-232.244~16.04.1|4.15.0-233.245~16.04.1|4.15.0-234.246~16.04.1|4.15.0-235.247~16.04.1|4.15.0-236.248~16.04.1|4.15.0-237.249~16.04.1|4.15.0-238.250~16.04.1|4.15.0-239.251~16.04.1|4.15.0-240.252~16.04.1|4.15.0-241.253~16.04.1|4.15.0-242.254~16.04.1|4.15.0-243.255~16.04.1|4.15.0-245.257~16.04.1|4.15.0-246.258~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-edge", + "version": "", + "qualifiers": "arch=source&distro=xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.8.0-28.30~16.04.1|4.8.0-30.32~16.04.1|4.8.0-32.34~16.04.1|4.8.0-34.36~16.04.1|4.10.0-14.16~16.04.1|4.10.0-19.21~16.04.1|4.10.0-20.22~16.04.1|4.10.0-21.23~16.04.1|4.10.0-22.24~16.04.1|4.10.0-24.28~16.04.1|4.10.0-26.30~16.04.1|4.11.0-13.19~16.04.1|4.11.0-14.20~16.04.1|4.13.0-16.19~16.04.3|4.13.0-17.20~16.04.1|4.13.0-19.22~16.04.1|4.13.0-21.24~16.04.1|4.13.0-25.29~16.04.2|4.15.0-13.14~16.04.1|4.15.0-15.16~16.04.1|4.15.0-20.21~16.04.1|4.15.0-22.24~16.04.1|4.15.0-23.25~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1004.9|4.4.0-1007.12|4.4.0-1008.13|4.4.0-1009.14|4.4.0-1010.15|4.4.0-1012.17|4.4.0-1013.18|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1020.25|4.4.0-1021.26|4.4.0-1023.28|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1029.34|4.4.0-1031.37|4.4.0-1032.38|4.4.0-1033.39|4.4.0-1035.41|4.4.0-1036.42|4.4.0-1037.43|4.4.0-1038.44|4.4.0-1039.45|4.4.0-1040.46|4.4.0-1041.47|4.4.0-1043.49|4.4.0-1044.50|4.4.0-1046.52|4.4.0-1047.53|4.4.0-1048.55|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1056.63|4.4.0-1058.65|4.4.0-1059.66|4.4.0-1060.67|4.4.0-1062.69|4.4.0-1063.70|4.4.0-1064.71|4.4.0-1065.72|4.4.0-1066.73|4.4.0-1068.75|4.4.0-1069.76|4.4.0-1070.77|4.4.0-1071.78|4.4.0-1075.82|4.4.0-1076.83|4.4.0-1077.84|4.4.0-1078.85|4.4.0-1079.86|4.4.0-1080.87|4.4.0-1082.91|4.4.0-1084.93|4.4.0-1085.94|4.4.0-1087.96|4.4.0-1088.97|4.4.0-1089.98|4.4.0-1090.99|4.4.0-1091.100|4.4.0-1092.101|4.4.0-1093.102|4.4.0-1094.103|4.4.0-1095.104|4.4.0-1096.105|4.4.0-1097.106|4.4.0-1098.107|4.4.0-1099.108|4.4.0-1100.109|4.4.0-1102.111|4.4.0-1103.112|4.4.0-1104.113|4.4.0-1105.114|4.4.0-1108.118|4.4.0-1110.120|4.4.0-1111.121|4.4.0-1112.122|4.4.0-1113.123|4.4.0-1114.124|4.4.0-1115.125|4.4.0-1116.126|4.4.0-1117.127|4.4.0-1118.128|4.4.0-1119.129|4.4.0-1120.130|4.4.0-1121.131|4.4.0-1122.132|4.4.0-1123.133|4.4.0-1124.134|4.4.0-1125.135|4.4.0-1126.136|4.4.0-1128.138|4.4.0-1129.139|4.4.0-1130.140|4.4.0-1131.141|4.4.0-1132.142|4.4.0-1134.144|4.4.0-1135.145|4.4.0-1136.146|4.4.0-1137.147|4.4.0-1138.148|4.4.0-1139.149|4.4.0-1140.151|4.4.0-1141.152|4.4.0-1142.153|4.4.0-1143.154|4.4.0-1144.155|4.4.0-1145.156|4.4.0-1146.157|4.4.0-1147.158|4.4.0-1148.159|4.4.0-1149.160|4.4.0-1150.161|4.4.0-1151.162|4.4.0-1152.163", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1007.9~16.04.1|4.15.0-1008.10~16.04.1|4.15.0-1009.11~16.04.1|4.15.0-1010.12~16.04.1|4.15.0-1011.13~16.04.1|4.15.0-1013.15~16.04.1|4.15.0-1014.16~16.04.1|4.15.0-1015.17~16.04.1|4.15.0-1017.19~16.04.2|4.15.0-1018.20~16.04.1|4.15.0-1021.23~16.04.1|4.15.0-1022.25~16.04.1|4.15.0-1023.26~16.04.1|4.15.0-1025.28~16.04.1|4.15.0-1026.29~16.04.1|4.15.0-1027.30~16.04.1|4.15.0-1029.32~16.04.1|4.15.0-1030.33~16.04.1|4.15.0-1031.34~16.04.1|4.15.0-1033.36~16.04.1|4.15.0-1035.38~16.04.1|4.15.0-1037.41~16.04.1|4.15.0-1038.42~16.04.1|4.15.0-1039.43~16.04.1|4.15.0-1045.49~16.04.1|4.15.0-1046.50~16.04.1|4.15.0-1050.54~16.04.1|4.15.0-1051.55~16.04.1|4.15.0-1053.57~16.04.1|4.15.0-1054.58~16.04.1|4.15.0-1056.61~16.04.1|4.15.0-1058.64~16.04.1|4.15.0-1059.65~16.04.1|4.15.0-1061.67~16.04.1|4.15.0-1062.68~16.04.1|4.15.0-1064.71~16.04.1|4.15.0-1065.73~16.04.1|4.15.0-1066.74~16.04.1|4.15.0-1067.75~16.04.1|4.15.0-1068.76~16.04.1|4.15.0-1069.77~16.04.1|4.15.0-1070.78~16.04.1|4.15.0-1071.79~16.04.1|4.15.0-1072.80~16.04.1|4.15.0-1075.83~16.04.1|4.15.0-1078.86~16.04.1|4.15.0-1079.87~16.04.1|4.15.0-1080.88~16.04.1|4.15.0-1081.89~16.04.1|4.15.0-1082.90~16.04.1|4.15.0-1083.91~16.04.1|4.15.0-1084.92~16.04.1|4.15.0-1085.93~16.04.1|4.15.0-1086.94~16.04.1|4.15.0-1087.95~16.04.1|4.15.0-1089.98~16.04.1|4.15.0-1090.99~16.04.1|4.15.0-1091.100~16.04.1|4.15.0-1092.101~16.04.1|4.15.0-1093.102~16.04.1|4.15.0-1095.104~16.04.1|4.15.0-1098.108~16.04.1|4.15.0-1101.112~16.04.1|4.15.0-1102.113~16.04.1|4.15.0-1104.115~16.04.1|4.15.0-1105.116~16.04.1|4.15.0-1106.117~16.04.1|4.15.0-1107.118~16.04.1|4.15.0-1108.119~16.04.1|4.15.0-1111.122~16.04.2|4.15.0-1112.123~16.04.1|4.15.0-1113.124~16.04.1|4.15.0-1115.126~16.04.1|4.15.0-1116.127~16.04.1|4.15.0-1117.128~16.04.1|4.15.0-1118.129~16.04.1|4.15.0-1119.130~16.04.1|4.15.0-1120.131~16.04.1|4.15.0-1121.132~16.04.1|4.15.0-1122.133~16.04.1|4.15.0-1123.134~16.04.1|4.15.0-1124.135~16.04.1|4.15.0-1125.136~16.04.1|4.15.0-1126.137~16.04.1|4.15.0-1127.138~16.04.1|4.15.0-1128.139~16.04.1|4.15.0-1129.140~16.04.1|4.15.0-1130.141~16.04.1|4.15.0-1131.142~16.04.1|4.15.0-1132.143~16.04.1|4.15.0-1133.144~16.04.1|4.15.0-1134.145~16.04.1|4.15.0-1135.146~16.04.1|4.15.0-1136.147~16.04.1|4.15.0-1137.148~16.04.1|4.15.0-1138.149~16.04.1|4.15.0-1139.150~16.04.1|4.15.0-1140.151~16.04.1|4.15.0-1141.152~16.04.1|4.15.0-1142.153~16.04.1|4.15.0-1143.154~16.04.1|4.15.0-1144.155~16.04.1|4.15.0-1145.156~16.04.1|4.15.0-1148.159~16.04.1|4.15.0-1149.160~16.04.1|4.15.0-1150.161~16.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1008.10|4.4.0-1010.13|4.4.0-1011.14|4.4.0-1012.16|4.4.0-1013.17|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1021.26|4.4.0-1022.27|4.4.0-1023.28|4.4.0-1025.30|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1028.33|4.4.0-1029.34|4.4.0-1031.36|4.4.0-1032.37|4.4.0-1033.38|4.4.0-1034.39|4.4.0-1041.46|4.4.0-1042.47|4.4.0-1043.48|4.4.0-1044.49|4.4.0-1045.50|4.4.0-1046.51|4.4.0-1048.53|4.4.0-1049.55|4.4.0-1051.57|4.4.0-1052.58|4.4.0-1054.60|4.4.0-1055.61|4.4.0-1056.62|4.4.0-1057.63|4.4.0-1058.64|4.4.0-1060.66|4.4.0-1061.67|4.4.0-1062.68|4.4.0-1063.69|4.4.0-1064.70|4.4.0-1065.71|4.4.0-1066.72|4.4.0-1067.73|4.4.0-1068.74|4.4.0-1069.75|4.4.0-1071.77|4.4.0-1072.78|4.4.0-1073.79|4.4.0-1074.80|4.4.0-1077.84|4.4.0-1079.86|4.4.0-1080.87|4.4.0-1081.88|4.4.0-1082.89|4.4.0-1083.90|4.4.0-1084.91|4.4.0-1085.92|4.4.0-1086.93|4.4.0-1088.95|4.4.0-1089.96|4.4.0-1090.97|4.4.0-1091.98|4.4.0-1092.99|4.4.0-1093.100|4.4.0-1094.101|4.4.0-1095.102|4.4.0-1097.104|4.4.0-1099.106|4.4.0-1100.107|4.4.0-1101.108|4.4.0-1102.109|4.4.0-1103.110|4.4.0-1104.111|4.4.0-1105.112|4.4.0-1106.113|4.4.0-1107.114|4.4.0-1108.115|4.4.0-1109.116|4.4.0-1110.117|4.4.0-1111.118|4.4.0-1112.119|4.4.0-1113.120|4.4.0-1114.121|4.4.0-1115.122|4.4.0-1116.123|4.4.0-1117.124|4.4.0-1119.126|4.4.0-1120.127|4.4.0-1121.128", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/xenial", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.4.0-1001.1|4.4.0-1002.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-allwinner-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1007.7~22.04.1|5.19.0-1009.9~22.04.1|5.19.0-1010.10~22.04.1|5.19.0-1011.11~22.04.1|5.19.0-1012.12~22.04.1|5.19.0-1013.13~22.04.1|5.19.0-1014.14~22.04.1|5.19.0-1015.15~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1004.4|6.14.0-1007.7+25.10.1|6.16.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.13.0-16.19|4.13.0-17.20|4.13.0-25.29|4.13.0-32.35|4.15.0-10.11|4.15.0-12.13|4.15.0-13.14|4.15.0-15.16|4.15.0-19.20|4.15.0-20.21|4.15.0-22.24|4.15.0-23.25|4.15.0-24.26|4.15.0-29.31|4.15.0-30.32|4.15.0-32.35|4.15.0-33.36|4.15.0-34.37|4.15.0-36.39|4.15.0-38.41|4.15.0-39.42|4.15.0-42.45|4.15.0-43.46|4.15.0-44.47|4.15.0-45.48|4.15.0-46.49|4.15.0-47.50|4.15.0-48.51|4.15.0-50.54|4.15.0-51.55|4.15.0-52.56|4.15.0-54.58|4.15.0-55.60|4.15.0-58.64|4.15.0-60.67|4.15.0-62.69|4.15.0-64.73|4.15.0-65.74|4.15.0-66.75|4.15.0-69.78|4.15.0-70.79|4.15.0-72.81|4.15.0-74.84|4.15.0-76.86|4.15.0-88.88|4.15.0-91.92|4.15.0-96.97|4.15.0-99.100|4.15.0-101.102|4.15.0-106.107|4.15.0-108.109|4.15.0-109.110|4.15.0-111.112|4.15.0-112.113|4.15.0-115.116|4.15.0-117.118|4.15.0-118.119|4.15.0-121.123|4.15.0-122.124|4.15.0-123.126|4.15.0-124.127|4.15.0-126.129|4.15.0-128.131|4.15.0-129.132|4.15.0-130.134|4.15.0-132.136|4.15.0-134.138|4.15.0-135.139|4.15.0-136.140|4.15.0-137.141|4.15.0-139.143|4.15.0-140.144|4.15.0-141.145|4.15.0-142.146|4.15.0-143.147|4.15.0-144.148|4.15.0-147.151|4.15.0-151.157|4.15.0-153.160|4.15.0-154.161|4.15.0-156.163|4.15.0-158.166|4.15.0-159.167|4.15.0-161.169|4.15.0-162.170|4.15.0-163.171|4.15.0-166.174|4.15.0-167.175|4.15.0-169.177|4.15.0-171.180|4.15.0-173.182|4.15.0-175.184|4.15.0-176.185|4.15.0-177.186|4.15.0-180.189|4.15.0-184.194|4.15.0-187.198|4.15.0-188.199|4.15.0-189.200|4.15.0-191.202|4.15.0-192.203|4.15.0-193.204|4.15.0-194.205|4.15.0-196.207|4.15.0-197.208|4.15.0-200.211|4.15.0-201.212|4.15.0-202.213|4.15.0-204.215|4.15.0-206.217|4.15.0-208.220|4.15.0-209.220|4.15.0-210.221|4.15.0-211.222|4.15.0-212.223|4.15.0-213.224|4.15.0-214.225|4.15.0-216.227|4.15.0-218.229|4.15.0-219.230|4.15.0-220.231|4.15.0-221.232|4.15.0-222.233|4.15.0-223.235|4.15.0-224.236|4.15.0-225.237|4.15.0-226.238|4.15.0-227.239|4.15.0-228.240|4.15.0-229.241|4.15.0-230.242|4.15.0-231.243|4.15.0-232.244|4.15.0-233.245|4.15.0-234.246|4.15.0-235.247|4.15.0-236.248|4.15.0-237.249|4.15.0-238.250|4.15.0-239.251|4.15.0-240.252|4.15.0-241.253|4.15.0-242.254|4.15.0-243.255|4.15.0-245.257|4.15.0-246.258", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1007.7|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1027.27|4.15.0-1029.30|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1035.37|4.15.0-1037.39|4.15.0-1039.41|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1043.45|4.15.0-1044.46|4.15.0-1045.47|4.15.0-1047.49|4.15.0-1048.50|4.15.0-1050.52|4.15.0-1051.53|4.15.0-1052.54|4.15.0-1054.56|4.15.0-1056.58|4.15.0-1057.59|4.15.0-1058.60|4.15.0-1060.62|4.15.0-1063.67|4.15.0-1065.69|4.15.0-1066.70|4.15.0-1067.71|4.15.0-1073.77|4.15.0-1076.80|4.15.0-1077.81|4.15.0-1079.83|4.15.0-1080.84|4.15.0-1082.86|4.15.0-1083.87|4.15.0-1086.91|4.15.0-1087.92|4.15.0-1088.93|4.15.0-1090.95|4.15.0-1091.96|4.15.0-1092.98|4.15.0-1093.99|4.15.0-1094.101|4.15.0-1095.102|4.15.0-1096.103|4.15.0-1097.104|4.15.0-1098.105|4.15.0-1099.106|4.15.0-1101.108|4.15.0-1102.109|4.15.0-1103.110|4.15.0-1106.113|4.15.0-1109.116|4.15.0-1110.117|4.15.0-1111.118|4.15.0-1112.119|4.15.0-1114.121|4.15.0-1115.122|4.15.0-1116.123|4.15.0-1118.125|4.15.0-1119.127|4.15.0-1121.129|4.15.0-1123.132|4.15.0-1124.133|4.15.0-1126.135|4.15.0-1127.136|4.15.0-1128.137|4.15.0-1130.139|4.15.0-1133.143|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.152|4.15.0-1142.154|4.15.0-1143.155|4.15.0-1144.156|4.15.0-1146.158|4.15.0-1147.159|4.15.0-1148.160|4.15.0-1150.163|4.15.0-1151.164|4.15.0-1153.166|4.15.0-1154.167|4.15.0-1155.168|4.15.0-1156.169|4.15.0-1157.170|4.15.0-1158.171|4.15.0-1159.172|4.15.0-1160.173|4.15.0-1161.174|4.15.0-1162.175|4.15.0-1163.176|4.15.0-1164.177|4.15.0-1165.178|4.15.0-1166.179|4.15.0-1167.180|4.15.0-1168.181|4.15.0-1169.182|4.15.0-1170.183|4.15.0-1172.185|4.15.0-1173.186|4.15.0-1174.187|4.15.0-1175.188|4.15.0-1176.189|4.15.0-1177.190|4.15.0-1178.191|4.15.0-1179.192|4.15.0-1180.193|4.15.0-1181.194|4.15.0-1182.195|4.15.0-1183.196|4.15.0-1184.197|4.15.0-1185.198|4.15.0-1186.199|4.15.0-1187.200|4.15.0-1188.201", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.0", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1021.24~18.04.1|5.0.0-1022.25~18.04.1|5.0.0-1023.26~18.04.1|5.0.0-1024.27~18.04.1|5.0.0-1025.28|5.0.0-1027.30", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1019.21~18.04.1|5.3.0-1023.25~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.2|5.3.0-1033.35|5.3.0-1034.36|5.3.0-1035.37", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1018.18~18.04.1|5.4.0-1020.20~18.04.2|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.30~18.04.1|5.4.0-1030.31~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1035.37~18.04.1|5.4.0-1037.39~18.04.1|5.4.0-1038.40~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1041.43~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1045.47~18.04.1|5.4.0-1047.49~18.04.1|5.4.0-1048.50~18.04.1|5.4.0-1049.51~18.04.1|5.4.0-1051.53~18.04.1|5.4.0-1054.57~18.04.1|5.4.0-1055.58~18.04.1|5.4.0-1056.59~18.04.1|5.4.0-1057.60~18.04.1|5.4.0-1058.61~18.04.3|5.4.0-1059.62~18.04.1|5.4.0-1060.63~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1064.67~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1066.69~18.04.1|5.4.0-1068.72~18.04.1|5.4.0-1069.73~18.04.1|5.4.0-1071.76~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.87~18.04.1|5.4.0-1081.88~18.04.1|5.4.0-1083.90~18.04.1|5.4.0-1084.91~18.04.1|5.4.0-1085.92~18.04.1|5.4.0-1086.93~18.04.1|5.4.0-1088.96~18.04.1|5.4.0-1089.97~18.04.1|5.4.0-1090.98~18.04.1|5.4.0-1092.100~18.04.2|5.4.0-1093.102~18.04.2|5.4.0-1094.102~18.04.1|5.4.0-1096.104~18.04.1|5.4.0-1097.105~18.04.1|5.4.0-1099.107~18.04.1|5.4.0-1100.108~18.04.1|5.4.0-1101.109~18.04.1|5.4.0-1103.111~18.04.1|5.4.0-1104.112~18.04.1|5.4.0-1105.113~18.04.1|5.4.0-1106.114~18.04.1|5.4.0-1107.115~18.04.1|5.4.0-1108.116~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.2|5.4.0-1113.123~18.04.1|5.4.0-1114.124~18.04.1|5.4.0-1116.126~18.04.1|5.4.0-1117.127~18.04.1|5.4.0-1118.128~18.04.1|5.4.0-1119.129~18.04.1|5.4.0-1120.130~18.04.1|5.4.0-1121.131~18.04.1|5.4.0-1122.132~18.04.1|5.4.0-1123.133~18.04.1|5.4.0-1124.134~18.04.1|5.4.0-1125.135~18.04.1|5.4.0-1126.136~18.04.1|5.4.0-1127.137~18.04.2|5.4.0-1128.138~18.04.1|5.4.0-1129.139~18.04.1|5.4.0-1130.140~18.04.1|5.4.0-1131.141~18.04.1|5.4.0-1132.142~18.04.1|5.4.0-1133.143~18.04.1|5.4.0-1134.144~18.04.1|5.4.0-1135.145~18.04.1|5.4.0-1136.146~18.04.1|5.4.0-1137.147~18.04.1|5.4.0-1139.149~18.04.1|5.4.0-1142.152~18.04.1|5.4.0-1144.154~18.04.1|5.4.0-1145.155~18.04.1|5.4.0-1146.156~18.04.1|5.4.0-1147.157~18.04.1|5.4.0-1148.158~18.04.1|5.4.0-1149.159~18.04.1|5.4.0-1150.160~18.04.1|5.4.0-1151.161~18.04.1|5.4.0-1152.162~18.04.1|5.4.0-1153.163~18.04.1|5.4.0-1154.164~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1012.12|4.15.0-1013.13|4.15.0-1014.14|4.15.0-1018.18|4.15.0-1019.19|4.15.0-1021.21|4.15.0-1022.23|4.15.0-1023.24|4.15.0-1025.26|4.15.0-1028.29|4.15.0-1030.31|4.15.0-1031.32|4.15.0-1032.33|4.15.0-1035.36|4.15.0-1036.38|4.15.0-1037.39|4.18.0-1011.11~18.04.1|4.18.0-1013.13~18.04.1|4.18.0-1014.14~18.04.1|4.18.0-1018.18~18.04.1|4.18.0-1019.19~18.04.1|4.18.0-1020.20~18.04.1|4.18.0-1023.24~18.04.1|4.18.0-1024.25~18.04.1|4.18.0-1025.27~18.04.1|5.0.0-1014.14~18.04.1|5.0.0-1016.17~18.04.1|5.0.0-1018.19~18.04.1|5.0.0-1020.21~18.04.1|5.0.0-1022.23~18.04.1|5.0.0-1023.24~18.04.1|5.0.0-1025.27~18.04.1|5.0.0-1027.29~18.04.1|5.0.0-1028.30~18.04.1|5.0.0-1029.31~18.04.1|5.0.0-1031.33|5.0.0-1032.34|5.0.0-1035.37|5.0.0-1036.38", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-4.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1082.92|4.15.0-1083.93|4.15.0-1089.99|4.15.0-1091.101|4.15.0-1092.102|4.15.0-1093.103|4.15.0-1095.105|4.15.0-1096.106|4.15.0-1099.110|4.15.0-1100.111|4.15.0-1102.113|4.15.0-1103.114|4.15.0-1104.116|4.15.0-1106.118|4.15.0-1108.120|4.15.0-1109.121|4.15.0-1110.122|4.15.0-1111.123|4.15.0-1112.125|4.15.0-1113.126|4.15.0-1114.127|4.15.0-1115.128|4.15.0-1118.131|4.15.0-1121.134|4.15.0-1122.135|4.15.0-1123.136|4.15.0-1124.137|4.15.0-1125.138|4.15.0-1126.139|4.15.0-1127.140|4.15.0-1129.142|4.15.0-1130.143|4.15.0-1131.144|4.15.0-1133.146|4.15.0-1134.147|4.15.0-1136.149|4.15.0-1137.150|4.15.0-1138.151|4.15.0-1139.152|4.15.0-1142.156|4.15.0-1145.160|4.15.0-1146.161|4.15.0-1149.164|4.15.0-1150.165|4.15.0-1151.166|4.15.0-1153.168|4.15.0-1157.172|4.15.0-1158.173|4.15.0-1159.174|4.15.0-1161.176|4.15.0-1162.177|4.15.0-1163.178|4.15.0-1164.179|4.15.0-1165.180|4.15.0-1166.181|4.15.0-1167.182|4.15.0-1168.183|4.15.0-1169.184|4.15.0-1170.185|4.15.0-1171.186|4.15.0-1172.187|4.15.0-1173.188|4.15.0-1174.189|4.15.0-1175.190|4.15.0-1176.191|4.15.0-1177.192|4.15.0-1178.193|4.15.0-1179.194|4.15.0-1180.195|4.15.0-1181.196|4.15.0-1182.197|4.15.0-1183.198|4.15.0-1184.199|4.15.0-1185.200|4.15.0-1186.201|4.15.0-1187.202|4.15.0-1188.203|4.15.0-1189.204|4.15.0-1190.205|4.15.0-1191.206|4.15.0-1192.207|4.15.0-1193.208|4.15.0-1194.209|4.15.0-1195.210", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1007.8~18.04.1|5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1019.20~18.04.1|5.3.0-1020.21~18.04.1|5.3.0-1022.23~18.04.1|5.3.0-1028.29~18.04.1|5.3.0-1031.32~18.04.1|5.3.0-1032.33~18.04.1|5.3.0-1034.35~18.04.1|5.3.0-1035.36", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1020.20~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1023.23~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1026.26~18.04.1|5.4.0-1031.32~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1035.36~18.04.1|5.4.0-1036.38~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1040.42~18.04.1|5.4.0-1041.43~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1044.46~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1047.49~18.04.1|5.4.0-1048.50~18.04.1|5.4.0-1049.51~18.04.1|5.4.0-1051.53~18.04.1|5.4.0-1055.57~18.04.1|5.4.0-1056.58~18.04.1|5.4.0-1058.60~18.04.1|5.4.0-1059.62~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1062.65~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1064.67~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1067.70~18.04.1|5.4.0-1068.71~18.04.1|5.4.0-1069.72~18.04.1|5.4.0-1070.73~18.04.1|5.4.0-1072.75~18.04.1|5.4.0-1073.76~18.04.1|5.4.0-1074.77~18.04.1|5.4.0-1077.80~18.04.1|5.4.0-1078.81~18.04.1|5.4.0-1080.83~18.04.2|5.4.0-1083.87~18.04.1|5.4.0-1085.90~18.04.1|5.4.0-1086.91~18.04.1|5.4.0-1089.94~18.04.1|5.4.0-1090.95~18.04.1|5.4.0-1091.96~18.04.1|5.4.0-1094.100~18.04.1|5.4.0-1095.101~18.04.1|5.4.0-1098.104~18.04.2|5.4.0-1100.106~18.04.1|5.4.0-1101.107~18.04.1|5.4.0-1103.109~18.04.1|5.4.0-1104.110~18.04.1|5.4.0-1105.111~18.04.1|5.4.0-1106.112~18.04.1|5.4.0-1107.113~18.04.1|5.4.0-1108.114~18.04.1|5.4.0-1109.115~18.04.1|5.4.0-1110.116~18.04.1|5.4.0-1111.117~18.04.1|5.4.0-1112.118~18.04.1|5.4.0-1113.119~18.04.1|5.4.0-1115.122~18.04.1|5.4.0-1116.123~18.04.1|5.4.0-1117.124~18.04.1|5.4.0-1118.125~18.04.1|5.4.0-1119.126~18.04.2|5.4.0-1120.127~18.04.1|5.4.0-1121.128~18.04.1|5.4.0-1122.129~18.04.1|5.4.0-1123.130~18.04.1|5.4.0-1124.131~18.04.1|5.4.0-1126.133~18.04.1|5.4.0-1127.134~18.04.1|5.4.0-1128.135~18.04.1|5.4.0-1129.136~18.04.1|5.4.0-1130.137~18.04.1|5.4.0-1131.138~18.04.1|5.4.0-1132.139~18.04.1|5.4.0-1133.140~18.04.1|5.4.0-1134.141~18.04.1|5.4.0-1135.142~18.04.1|5.4.0-1136.143~18.04.1|5.4.0-1137.144~18.04.1|5.4.0-1138.145~18.04.1|5.4.0-1139.146~18.04.1|5.4.0-1140.147~18.04.1|5.4.0-1142.149~18.04.1|5.4.0-1143.150~18.04.1|5.4.0-1145.152~18.04.1|5.4.0-1147.154~18.04.1|5.4.0-1148.155~18.04.1|5.4.0-1149.156~18.04.1|5.4.0-1150.157~18.04.1|5.4.0-1151.158~18.04.1|5.4.0-1152.159~18.04.1|5.4.0-1153.160~18.04.1|5.4.0-1154.161~18.04.1|5.4.0-1156.163~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-edge", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.18.0-1006.6~18.04.1|4.18.0-1007.7~18.04.1|4.18.0-1008.8~18.04.1|5.0.0-1012.12~18.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.0", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.0.0-1006.6|6.0.0-1007.7|6.0.0-1008.8|6.0.0-1009.9|6.0.0-1010.10|6.0.0-1011.11|6.0.0-1012.12|6.0.0-1013.13|6.0.0-1014.14|6.0.0-1015.15|6.0.0-1016.16|6.0.0-1017.17|6.0.0-1018.18|6.0.0-1019.19|6.0.0-1020.20|6.0.0-1021.21", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-4.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1071.81|4.15.0-1077.87|4.15.0-1078.88|4.15.0-1080.90|4.15.0-1081.92|4.15.0-1083.94|4.15.0-1084.95|4.15.0-1086.98|4.15.0-1087.100|4.15.0-1088.101|4.15.0-1090.103|4.15.0-1091.104|4.15.0-1092.105|4.15.0-1093.106|4.15.0-1094.107|4.15.0-1095.108|4.15.0-1096.109|4.15.0-1097.110|4.15.0-1098.111|4.15.0-1099.112|4.15.0-1100.113|4.15.0-1103.116|4.15.0-1106.120|4.15.0-1107.121|4.15.0-1108.122|4.15.0-1109.123|4.15.0-1110.124|4.15.0-1111.125|4.15.0-1112.126|4.15.0-1114.128|4.15.0-1115.129|4.15.0-1116.130|4.15.0-1118.132|4.15.0-1119.133|4.15.0-1120.134|4.15.0-1121.135|4.15.0-1122.136|4.15.0-1124.138|4.15.0-1127.142|4.15.0-1130.146|4.15.0-1131.147|4.15.0-1134.150|4.15.0-1135.151|4.15.0-1136.152|4.15.0-1137.153|4.15.0-1138.154|4.15.0-1141.157|4.15.0-1142.158|4.15.0-1143.159|4.15.0-1145.161|4.15.0-1146.162|4.15.0-1147.163|4.15.0-1148.164|4.15.0-1149.165|4.15.0-1150.166|4.15.0-1151.167|4.15.0-1152.168|4.15.0-1153.170|4.15.0-1154.171|4.15.0-1155.172|4.15.0-1156.173|4.15.0-1157.174|4.15.0-1158.175|4.15.0-1159.176|4.15.0-1160.177|4.15.0-1161.178|4.15.0-1162.179|4.15.0-1163.180|4.15.0-1164.181|4.15.0-1165.182|4.15.0-1166.183|4.15.0-1167.184|4.15.0-1168.185|4.15.0-1169.186|4.15.0-1170.187|4.15.0-1171.188|4.15.0-1172.189|4.15.0-1173.190|4.15.0-1174.191|4.15.0-1175.192|4.15.0-1176.193|4.15.0-1177.194|4.15.0-1178.195|4.15.0-1179.196|4.15.0-1180.197", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1020.22~18.04.1|5.3.0-1026.28~18.04.1|5.3.0-1029.31~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1019.19~18.04.2|5.4.0-1021.21~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1032.34~18.04.1|5.4.0-1033.35~18.04.1|5.4.0-1034.37~18.04.1|5.4.0-1036.39~18.04.1|5.4.0-1037.40~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1040.43~18.04.1|5.4.0-1041.44~18.04.1|5.4.0-1042.45~18.04.1|5.4.0-1043.46~18.04.1|5.4.0-1044.47~18.04.2|5.4.0-1046.49~18.04.1|5.4.0-1049.53~18.04.1|5.4.0-1051.55~18.04.1|5.4.0-1052.56~18.04.1|5.4.0-1053.57~18.04.1|5.4.0-1055.59~18.04.1|5.4.0-1056.60~18.04.1|5.4.0-1057.61~18.04.1|5.4.0-1058.62~18.04.1|5.4.0-1059.63~18.04.1|5.4.0-1060.64~18.04.1|5.4.0-1062.66~18.04.1|5.4.0-1063.67~18.04.1|5.4.0-1064.68~18.04.1|5.4.0-1065.69~18.04.1|5.4.0-1067.71~18.04.1|5.4.0-1068.72~18.04.1|5.4.0-1069.73~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1073.78~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.87~18.04.1|5.4.0-1083.91~18.04.1|5.4.0-1084.92~18.04.1|5.4.0-1086.94~18.04.1|5.4.0-1087.95~18.04.1|5.4.0-1089.97~18.04.1|5.4.0-1092.101~18.04.1|5.4.0-1093.102~18.04.1|5.4.0-1096.105~18.04.2|5.4.0-1097.106~18.04.1|5.4.0-1098.107~18.04.1|5.4.0-1100.109~18.04.1|5.4.0-1101.110~18.04.1|5.4.0-1102.111~18.04.2|5.4.0-1103.112~18.04.1|5.4.0-1104.113~18.04.1|5.4.0-1105.114~18.04.1|5.4.0-1106.115~18.04.1|5.4.0-1107.116~18.04.1|5.4.0-1108.117~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.1|5.4.0-1113.122~18.04.1|5.4.0-1115.124~18.04.1|5.4.0-1116.125~18.04.1|5.4.0-1117.126~18.04.1|5.4.0-1118.127~18.04.1|5.4.0-1120.129~18.04.1|5.4.0-1121.130~18.04.1|5.4.0-1122.131~18.04.1|5.4.0-1123.132~18.04.1|5.4.0-1124.133~18.04.1|5.4.0-1125.134~18.04.1|5.4.0-1126.135~18.04.1|5.4.0-1127.136~18.04.1|5.4.0-1128.137~18.04.1|5.4.0-1129.138~18.04.1|5.4.0-1130.139~18.04.1|5.4.0-1132.141~18.04.1|5.4.0-1133.142~18.04.1|5.4.0-1134.143~18.04.1|5.4.0-1135.144~18.04.1|5.4.0-1136.145~18.04.1|5.4.0-1137.146~18.04.1|5.4.0-1138.147~18.04.1|5.4.0-1139.148~18.04.1|5.4.0-1140.149~18.04.1|5.4.0-1141.150~18.04.1|5.4.0-1142.151~18.04.1|5.4.0-1143.152~18.04.1|5.4.0-1145.154~18.04.1|5.4.0-1147.156~18.04.1|5.4.0-1148.157~18.04.1|5.4.0-1149.158~18.04.1|5.4.0-1150.159~18.04.1|5.4.0-1151.160~18.04.1|5.4.0-1152.161~18.04.1|5.4.0-1153.162~18.04.1|5.4.0-1154.163~18.04.1|5.4.0-1155.164~18.04.1|5.4.0-1156.165~18.04.1|5.4.0-1157.166~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-4.15", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1045.48|4.15.0-1046.49|4.15.0-1048.51|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.55|4.15.0-1055.58|4.15.0-1057.60|4.15.0-1058.61|4.15.0-1059.62|4.15.0-1063.66|4.15.0-1064.67|4.15.0-1066.69|4.15.0-1067.70|4.15.0-1069.72|4.15.0-1070.73|4.15.0-1072.76|4.15.0-1073.78|4.15.0-1074.79|4.15.0-1076.81|4.15.0-1077.82|4.15.0-1078.83|4.15.0-1079.84", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-5.4", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1025.25~18.04.1|5.4.0-1027.28~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1032.34~18.04.1|5.4.0-1033.35~18.04.1|5.4.0-1035.37~18.04.1|5.4.0-1036.38~18.04.1|5.4.0-1037.39~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1040.42~18.04.1|5.4.0-1042.44~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1044.46~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1049.52~18.04.1|5.4.0-1051.54~18.04.1|5.4.0-1052.55~18.04.1|5.4.0-1053.56~18.04.1|5.4.0-1054.57~18.04.1|5.4.0-1055.58~18.04.1|5.4.0-1056.59~18.04.1|5.4.0-1057.60~18.04.1|5.4.0-1059.62~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1062.65~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1066.69~18.04.1|5.4.0-1067.70~18.04.1|5.4.0-1068.71~18.04.1|5.4.0-1071.76~18.04.3|5.4.0-1072.77~18.04.1|5.4.0-1074.79~18.04.1|5.4.0-1076.82~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.86~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gkeop-5.4", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1001.1|5.4.0-1003.3|5.4.0-1004.5|5.4.0-1005.6|5.4.0-1007.8~18.04.1|5.4.0-1008.9~18.04.1|5.4.0-1009.10~18.04.1|5.4.0-1010.11~18.04.1|5.4.0-1011.12~18.04.2|5.4.0-1012.13~18.04.1|5.4.0-1013.14~18.04.1|5.4.0-1014.15~18.04.1|5.4.0-1015.16~18.04.1|5.4.0-1016.17~18.04.1|5.4.0-1018.19~18.04.1|5.4.0-1021.22~18.04.1|5.4.0-1022.23~18.04.1|5.4.0-1023.24~18.04.1|5.4.0-1024.25~18.04.1|5.4.0-1025.26~18.04.1|5.4.0-1026.27~18.04.1|5.4.0-1027.28~18.04.1|5.4.0-1029.30~18.04.2|5.4.0-1031.32~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1033.34~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1036.37~18.04.1|5.4.0-1037.38~18.04.1|5.4.0-1038.39~18.04.1|5.4.0-1039.40~18.04.1|5.4.0-1040.41~18.04.1|5.4.0-1043.44~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1048.51~18.04.1|5.4.0-1049.52~18.04.1|5.4.0-1051.54~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.18.0-13.14~18.04.1|4.18.0-14.15~18.04.1|4.18.0-15.16~18.04.1|4.18.0-16.17~18.04.1|4.18.0-17.18~18.04.1|4.18.0-18.19~18.04.1|4.18.0-20.21~18.04.1|4.18.0-21.22~18.04.1|4.18.0-22.23~18.04.1|4.18.0-24.25~18.04.1|4.18.0-25.26~18.04.1|5.0.0-23.24~18.04.1|5.0.0-25.26~18.04.1|5.0.0-27.28~18.04.1|5.0.0-29.31~18.04.1|5.0.0-31.33~18.04.1|5.0.0-32.34~18.04.2|5.0.0-35.38~18.04.1|5.0.0-36.39~18.04.1|5.0.0-37.40~18.04.1|5.3.0-26.28~18.04.1|5.3.0-28.30~18.04.1|5.3.0-40.32~18.04.1|5.3.0-42.34~18.04.1|5.3.0-45.37~18.04.1|5.3.0-46.38~18.04.1|5.3.0-51.44~18.04.2|5.3.0-53.47~18.04.1|5.3.0-59.53~18.04.1|5.3.0-61.55~18.04.1|5.3.0-62.56~18.04.1|5.3.0-64.58~18.04.1|5.3.0-65.59|5.3.0-66.60|5.3.0-67.61|5.3.0-68.63|5.3.0-69.65|5.3.0-70.66|5.3.0-72.68|5.3.0-73.69|5.3.0-74.70|5.3.0-75.71|5.3.0-76.72", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-37.41~18.04.1|5.4.0-39.43~18.04.1|5.4.0-40.44~18.04.1|5.4.0-42.46~18.04.1|5.4.0-45.49~18.04.2|5.4.0-47.51~18.04.1|5.4.0-48.52~18.04.1|5.4.0-51.56~18.04.1|5.4.0-52.57~18.04.1|5.4.0-53.59~18.04.1|5.4.0-54.60~18.04.1|5.4.0-56.62~18.04.1|5.4.0-58.64~18.04.1|5.4.0-59.65~18.04.1|5.4.0-60.67~18.04.1|5.4.0-62.70~18.04.1|5.4.0-64.72~18.04.1|5.4.0-65.73~18.04.1|5.4.0-66.74~18.04.2|5.4.0-67.75~18.04.1|5.4.0-70.78~18.04.1|5.4.0-71.79~18.04.1|5.4.0-72.80~18.04.1|5.4.0-73.82~18.04.1|5.4.0-74.83~18.04.1|5.4.0-77.86~18.04.1|5.4.0-80.90~18.04.1|5.4.0-81.91~18.04.1|5.4.0-84.94~18.04.1|5.4.0-86.97~18.04.1|5.4.0-87.98~18.04.1|5.4.0-89.100~18.04.1|5.4.0-90.101~18.04.1|5.4.0-91.102~18.04.1|5.4.0-92.103~18.04.2|5.4.0-94.106~18.04.1|5.4.0-96.109~18.04.1|5.4.0-97.110~18.04.1|5.4.0-99.112~18.04.1|5.4.0-100.113~18.04.1|5.4.0-104.118~18.04.1|5.4.0-105.119~18.04.1|5.4.0-107.121~18.04.1|5.4.0-109.123~18.04.1|5.4.0-110.124~18.04.1|5.4.0-113.127~18.04.1|5.4.0-117.132~18.04.1|5.4.0-120.136~18.04.1|5.4.0-121.137~18.04.1|5.4.0-122.138~18.04.1|5.4.0-124.140~18.04.1|5.4.0-125.141~18.04.1|5.4.0-126.142~18.04.1|5.4.0-128.144~18.04.1|5.4.0-131.147~18.04.1|5.4.0-132.148~18.04.1|5.4.0-133.149~18.04.1|5.4.0-135.152~18.04.2|5.4.0-136.153~18.04.1|5.4.0-137.154~18.04.1|5.4.0-139.156~18.04.1|5.4.0-144.161~18.04.1|5.4.0-146.163~18.04.1|5.4.0-147.164~18.04.1|5.4.0-148.165~18.04.1|5.4.0-149.166~18.04.1|5.4.0-150.167~18.04.1|5.4.0-152.169~18.04.1|5.4.0-153.170~18.04.1|5.4.0-155.172~18.04.1|5.4.0-156.173~18.04.1|5.4.0-159.176~18.04.1|5.4.0-162.179~18.04.1|5.4.0-163.180~18.04.1|5.4.0-164.181~18.04.1|5.4.0-165.182~18.04.1|5.4.0-166.183~18.04.2|5.4.0-167.184~18.04.1|5.4.0-169.187~18.04.1|5.4.0-170.188~18.04.1|5.4.0-171.189~18.04.1|5.4.0-172.190~18.04.1|5.4.0-173.191~18.04.1|5.4.0-174.193~18.04.1|5.4.0-175.195~18.04.1|5.4.0-177.197~18.04.1|5.4.0-181.201~18.04.1|5.4.0-182.202~18.04.1|5.4.0-186.206~18.04.1|5.4.0-187.207~18.04.1|5.4.0-189.209~18.04.1|5.4.0-190.210~18.04.1|5.4.0-192.212~18.04.1|5.4.0-193.213~18.04.1|5.4.0-195.215~18.04.1|5.4.0-196.216~18.04.1|5.4.0-198.218~18.04.1|5.4.0-200.220~18.04.1|5.4.0-202.222~18.04.1|5.4.0-204.224~18.04.1|5.4.0-205.225~18.04.1|5.4.0-208.228~18.04.1|5.4.0-211.231~18.04.1|5.4.0-212.232~18.04.1|5.4.0-214.234~18.04.1|5.4.0-215.235~18.04.1|5.4.0-216.236~18.04.1|5.4.0-218.238~18.04.1|5.4.0-219.239~18.04.1|5.4.0-220.240~18.04.1|5.4.0-221.241~18.04.1|5.4.0-222.242~18.04.1|5.4.0-223.243~18.04.1|5.4.0-224.244~18.04.1|5.4.0-225.245~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-edge", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-15.16~18.04.1|5.0.0-16.17~18.04.1|5.0.0-17.18~18.04.1|5.0.0-19.20~18.04.1|5.0.0-20.21~18.04.1|5.3.0-19.20~18.04.2|5.3.0-22.24~18.04.1|5.3.0-23.25~18.04.1|5.3.0-23.25~18.04.2|5.3.0-24.26~18.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.1", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.1.0-1004.4|6.1.0-1006.6|6.1.0-1007.7|6.1.0-1008.8|6.1.0-1009.9|6.1.0-1010.10|6.1.0-1012.12|6.1.0-1013.13|6.1.0-1014.14|6.1.0-1015.15|6.1.0-1016.16|6.1.0-1017.17|6.1.0-1019.19|6.1.0-1020.20|6.1.0-1021.21|6.1.0-1022.22|6.1.0-1023.23|6.1.0-1024.24|6.1.0-1025.25|6.1.0-1026.26|6.1.0-1027.27|6.1.0-1028.28|6.1.0-1029.29|6.1.0-1033.33|6.1.0-1034.34|6.1.0-1035.35|6.1.0-1036.36", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1010.11~18.04.2|5.4.0-1012.13~18.04.1|5.4.0-1014.15~18.04.1|5.4.0-1015.16~18.04.1|5.4.0-1017.19~18.04.1|5.4.0-1018.20~18.04.1|5.4.0-1019.21~18.04.1|5.4.0-1020.22~18.04.1|5.4.0-1021.23~18.04.1|5.4.0-1023.25~18.04.1|5.4.0-1026.29~18.04.1|5.4.0-1028.32~18.04.1|5.4.0-1029.33~18.04.1|5.4.0-1031.35~18.04.1|5.4.0-1032.36~18.04.1|5.4.0-1033.37~18.04.1|5.4.0-1034.38~18.04.1|5.4.0-1036.41~18.04.1|5.4.0-1037.42~18.04.1|5.4.0-1040.45~18.04.2|5.4.0-1041.46~18.04.1|5.4.0-1042.47~18.04.1|5.4.0-1044.49~18.04.1|5.4.0-1045.50~18.04.1|5.4.0-1046.51~18.04.1|5.4.0-1047.52~18.04.1|5.4.0-1048.53~18.04.1|5.4.0-1049.54~18.04.1|5.4.0-1050.55~18.04.1|5.4.0-1051.56~18.04.1|5.4.0-1052.57~18.04.1|5.4.0-1053.58~18.04.1|5.4.0-1054.59~18.04.1|5.4.0-1056.61~18.04.1|5.4.0-1057.62~18.04.1|5.4.0-1058.63~18.04.1|5.4.0-1059.64~18.04.1|5.4.0-1060.65~18.04.1|5.4.0-1061.66~18.04.1|5.4.0-1063.68~18.04.1|5.4.0-1064.69~18.04.1|5.4.0-1065.70~18.04.1|5.4.0-1066.71~18.04.1|5.4.0-1067.72~18.04.1|5.4.0-1068.73~18.04.1|5.4.0-1069.74~18.04.1|5.4.0-1070.75~18.04.1|5.4.0-1071.76~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1073.78~18.04.1|5.4.0-1074.79~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1076.81~18.04.1|5.4.0-1077.82~18.04.1|5.4.0-1078.83~18.04.1|5.4.0-1079.84~18.04.1|5.4.0-1080.85~18.04.1|5.4.0-1081.86~18.04.1|5.4.0-1082.87~18.04.1|5.4.0-1083.88~18.04.1|5.4.0-1084.89~18.04.1|5.4.0-1085.90~18.04.1|5.4.0-1086.91~18.04.1|5.4.0-1090.95~18.04.1|5.4.0-1092.97~18.04.1|5.4.0-1093.98~18.04.1|5.4.0-1094.99~18.04.1|5.4.0-1095.100~18.04.1|5.4.0-1096.101~18.04.1|5.4.0-1097.102~18.04.1|5.4.0-1098.103~18.04.1|5.4.0-1099.104~18.04.1|5.4.0-1100.105~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1012.12|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1026.26|4.15.0-1027.27|4.15.0-1028.28|4.15.0-1029.29|4.15.0-1030.30|4.15.0-1031.31|4.15.0-1032.32|4.15.0-1034.34|4.15.0-1035.35|4.15.0-1036.36|4.15.0-1038.38|4.15.0-1039.39|4.15.0-1042.42|4.15.0-1043.43|4.15.0-1044.44|4.15.0-1046.46|4.15.0-1047.47|4.15.0-1048.48|4.15.0-1050.50|4.15.0-1051.51|4.15.0-1052.52|4.15.0-1053.53|4.15.0-1056.57|4.15.0-1058.59|4.15.0-1059.60|4.15.0-1060.61|4.15.0-1067.68|4.15.0-1069.70|4.15.0-1071.72|4.15.0-1072.73|4.15.0-1074.75|4.15.0-1075.76|4.15.0-1077.79|4.15.0-1079.81|4.15.0-1081.83|4.15.0-1082.84|4.15.0-1084.86|4.15.0-1085.87|4.15.0-1086.88|4.15.0-1087.89|4.15.0-1088.90|4.15.0-1089.91|4.15.0-1090.92|4.15.0-1091.93|4.15.0-1092.94|4.15.0-1094.96|4.15.0-1097.99|4.15.0-1098.100|4.15.0-1099.101|4.15.0-1100.102|4.15.0-1101.103|4.15.0-1102.104|4.15.0-1103.105|4.15.0-1105.107|4.15.0-1106.108|4.15.0-1107.109|4.15.0-1109.112|4.15.0-1110.113|4.15.0-1112.115|4.15.0-1113.116|4.15.0-1114.117|4.15.0-1116.119|4.15.0-1119.123|4.15.0-1122.127|4.15.0-1123.128|4.15.0-1125.130|4.15.0-1126.131|4.15.0-1127.132|4.15.0-1128.133|4.15.0-1129.134|4.15.0-1132.137|4.15.0-1133.138|4.15.0-1134.139|4.15.0-1135.140|4.15.0-1136.141|4.15.0-1137.142|4.15.0-1138.143|4.15.0-1139.144|4.15.0-1140.145|4.15.0-1141.146|4.15.0-1142.147|4.15.0-1143.148|4.15.0-1144.149|4.15.0-1145.150|4.15.0-1146.151|4.15.0-1147.152|4.15.0-1148.153|4.15.0-1149.154|4.15.0-1150.155|4.15.0-1151.156|4.15.0-1152.157|4.15.0-1153.158|4.15.0-1154.159|4.15.0-1155.160|4.15.0-1156.161|4.15.0-1157.162|4.15.0-1158.163|4.15.0-1159.164|4.15.0-1160.165|4.15.0-1161.166|4.15.0-1162.167|4.15.0-1163.168|4.15.0-1164.169|4.15.0-1165.170|4.15.0-1166.171|4.15.0-1167.172|4.15.0-1168.173|4.15.0-1169.174|4.15.0-1170.175", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.3|4.15.0-1004.5|4.15.0-1006.9|4.15.0-1008.11|4.15.0-1009.12|4.15.0-1012.15|4.15.0-1013.16|4.15.0-1015.18|4.15.0-1017.20|4.15.0-1018.21|4.15.0-1021.24|4.15.0-1024.29|4.15.0-1026.31|4.15.0-1028.33|4.15.0-1030.35|4.15.0-1033.38|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1036.41|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1043.48|4.15.0-1045.50|4.15.0-1050.57|4.15.0-1056.65|4.15.0-1057.66|4.15.0-1059.68|4.15.0-1063.72|4.15.0-1064.73|4.15.0-1065.75|4.15.0-1066.76|4.15.0-1067.77|4.15.0-1069.79|4.15.0-1073.83|4.15.0-1076.86|4.15.0-1079.89|4.15.0-1080.90|4.15.0-1081.91|4.15.0-1087.97|4.15.0-1090.100|4.15.0-1091.101|4.15.0-1093.103|4.15.0-1094.104|4.15.0-1096.106|4.15.0-1097.107|4.15.0-1099.109|4.15.0-1100.110|4.15.0-1101.112|4.15.0-1102.113|4.15.0-1103.114", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1007.9|4.15.0-1008.10|4.15.0-1009.11|4.15.0-1010.12|4.15.0-1011.13|4.15.0-1013.15|4.15.0-1014.16|4.15.0-1015.17|4.15.0-1017.19|4.15.0-1018.20|4.15.0-1021.23|4.15.0-1022.25|4.15.0-1023.26|4.15.0-1025.28|4.15.0-1026.29|4.15.0-1027.30|4.15.0-1029.32|4.15.0-1030.33|4.15.0-1031.34|4.15.0-1033.36|4.15.0-1035.39|4.15.0-1037.41|4.15.0-1038.42|4.15.0-1039.43|4.15.0-1045.49|4.15.0-1047.51|4.15.0-1048.52|4.15.0-1050.54|4.15.0-1051.55|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1057.62|4.15.0-1058.64|4.15.0-1059.65|4.15.0-1061.67|4.15.0-1062.68|4.15.0-1063.70|4.15.0-1064.71|4.15.0-1065.73|4.15.0-1066.74|4.15.0-1067.75|4.15.0-1068.76|4.15.0-1069.77|4.15.0-1070.78|4.15.0-1071.79|4.15.0-1072.80|4.15.0-1075.83|4.15.0-1078.86|4.15.0-1079.87|4.15.0-1080.88|4.15.0-1081.89|4.15.0-1082.90|4.15.0-1083.91|4.15.0-1084.92|4.15.0-1085.93|4.15.0-1086.94|4.15.0-1087.95|4.15.0-1089.98|4.15.0-1090.99|4.15.0-1091.100|4.15.0-1092.101|4.15.0-1093.102|4.15.0-1095.104|4.15.0-1098.108|4.15.0-1101.112|4.15.0-1102.113|4.15.0-1104.115|4.15.0-1105.116|4.15.0-1106.117|4.15.0-1107.118|4.15.0-1108.119|4.15.0-1111.122|4.15.0-1112.123|4.15.0-1113.124|4.15.0-1114.125|4.15.0-1115.126|4.15.0-1116.127|4.15.0-1117.128|4.15.0-1118.129|4.15.0-1119.130|4.15.0-1120.131|4.15.0-1121.132|4.15.0-1122.133|4.15.0-1123.134|4.15.0-1124.135|4.15.0-1125.136|4.15.0-1126.137|4.15.0-1127.138|4.15.0-1128.139|4.15.0-1129.140|4.15.0-1130.141|4.15.0-1131.142|4.15.0-1132.143|4.15.0-1133.144|4.15.0-1134.145|4.15.0-1135.146|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1138.149|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.152|4.15.0-1142.153|4.15.0-1143.154|4.15.0-1144.155|4.15.0-1145.156|4.15.0-1146.157|4.15.0-1147.158|4.15.0-1148.159|4.15.0-1149.160|4.15.0-1150.161", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.0", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.0.0-1007.12~18.04.1|5.0.0-1008.13~18.04.1|5.0.0-1009.14~18.04.1|5.0.0-1010.15~18.04.1|5.0.0-1011.16|5.0.0-1013.18|5.0.0-1014.19", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.3", + "version": "", + "qualifiers": "arch=source&distro=bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.18~18.04.1|5.3.0-1018.20~18.04.1|5.3.0-1024.26~18.04.1|5.3.0-1027.29~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1019.19~18.04.1|5.4.0-1021.21~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1033.35|5.4.0-1034.36~18.04.1|5.4.0-1035.38~18.04.1|5.4.0-1037.40~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1039.42~18.04.1|5.4.0-1041.44~18.04.1|5.4.0-1042.45~18.04.1|5.4.0-1043.46~18.04.1|5.4.0-1044.47~18.04.1|5.4.0-1046.50~18.04.2|5.4.0-1048.52~18.04.1|5.4.0-1049.53~18.04.1|5.4.0-1052.56~18.04.1|5.4.0-1053.57~18.04.1|5.4.0-1054.58~18.04.1|5.4.0-1055.59~18.04.1|5.4.0-1056.60~18.04.1|5.4.0-1057.61~18.04.1|5.4.0-1058.62~18.04.1|5.4.0-1059.63~18.04.1|5.4.0-1061.65~18.04.1|5.4.0-1062.66~18.04.1|5.4.0-1063.67~18.04.1|5.4.0-1064.68~18.04.1|5.4.0-1066.71~18.04.1|5.4.0-1067.72~18.04.1|5.4.0-1069.75~18.04.1|5.4.0-1070.76~18.04.1|5.4.0-1071.77~18.04.1|5.4.0-1073.79~18.04.1|5.4.0-1076.83~18.04.1|5.4.0-1078.86~18.04.1|5.4.0-1079.87~18.04.1|5.4.0-1081.89~18.04.1|5.4.0-1082.90~18.04.1|5.4.0-1083.91~18.04.1|5.4.0-1084.92~18.04.1|5.4.0-1086.95~18.04.1|5.4.0-1087.96~18.04.1|5.4.0-1090.99~18.04.2|5.4.0-1091.100~18.04.1|5.4.0-1092.101~18.04.1|5.4.0-1093.102~18.04.1|5.4.0-1094.103~18.04.1|5.4.0-1098.107~18.04.1|5.4.0-1099.108~18.04.1|5.4.0-1100.109~18.04.1|5.4.0-1101.110~18.04.1|5.4.0-1102.111~18.04.1|5.4.0-1103.112~18.04.1|5.4.0-1104.113~18.04.1|5.4.0-1105.114~18.04.1|5.4.0-1106.115~18.04.1|5.4.0-1107.116~18.04.1|5.4.0-1108.117~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.4|5.4.0-1113.122~18.04.1|5.4.0-1115.124~18.04.1|5.4.0-1116.125~18.04.1|5.4.0-1117.126~18.04.1|5.4.0-1118.127~18.04.1|5.4.0-1119.128~18.04.1|5.4.0-1120.129~18.04.1|5.4.0-1121.130~18.04.1|5.4.0-1122.131~18.04.1|5.4.0-1123.132~18.04.1|5.4.0-1124.133~18.04.1|5.4.0-1125.134~18.04.1|5.4.0-1126.135~18.04.1|5.4.0-1127.136~18.04.1|5.4.0-1129.138~18.04.1|5.4.0-1130.139~18.04.1|5.4.0-1131.140~18.04.1|5.4.0-1132.141~18.04.1|5.4.0-1133.142~18.04.1|5.4.0-1134.143~18.04.1|5.4.0-1135.144~18.04.1|5.4.0-1136.145~18.04.1|5.4.0-1137.146~18.04.1|5.4.0-1138.147~18.04.1|5.4.0-1140.149~18.04.1|5.4.0-1141.151~18.04.1|5.4.0-1142.152~18.04.1|5.4.0-1143.153~18.04.1|5.4.0-1144.154~18.04.1|5.4.0-1145.155~18.04.1|5.4.0-1146.156~18.04.1|5.4.0-1148.158~18.04.1|5.4.0-1149.159~18.04.1|5.4.0-1150.160~18.04.1|5.4.0-1151.161~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi-5.4", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1013.13~18.04.1|5.4.0-1015.15~18.04.1|5.4.0-1016.17~18.04.1|5.4.0-1018.20~18.04.1|5.4.0-1019.21~18.04.1|5.4.0-1021.24~18.04.1|5.4.0-1022.25~18.04.1|5.4.0-1023.26~18.04.1|5.4.0-1025.28~18.04.1|5.4.0-1026.29~18.04.1|5.4.0-1028.31~18.04.1|5.4.0-1029.32~18.04.1|5.4.0-1030.33~18.04.1|5.4.0-1032.35~18.04.1|5.4.0-1033.36~18.04.1|5.4.0-1034.37~18.04.1|5.4.0-1035.38~18.04.1|5.4.0-1036.39~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1041.45~18.04.1|5.4.0-1042.46~18.04.3|5.4.0-1043.47~18.04.1|5.4.0-1044.48~18.04.1|5.4.0-1045.49~18.04.1|5.4.0-1046.50~18.04.1|5.4.0-1047.52~18.04.1|5.4.0-1048.53~18.04.1|5.4.0-1050.56~18.04.1|5.4.0-1052.58~18.04.1|5.4.0-1053.60~18.04.1|5.4.0-1055.62~18.04.1|5.4.0-1056.63~18.04.1|5.4.0-1058.65~18.04.1|5.4.0-1059.66~18.04.1|5.4.0-1060.68~18.04.1|5.4.0-1062.70~18.04.1|5.4.0-1065.75~18.04.1|5.4.0-1066.76~18.04.1|5.4.0-1068.78~18.04.1|5.4.0-1069.79~18.04.1|5.4.0-1070.80~18.04.1|5.4.0-1071.81~18.04.1|5.4.0-1073.84~18.04.1|5.4.0-1074.85~18.04.1|5.4.0-1077.88~18.04.2|5.4.0-1078.89~18.04.1|5.4.0-1079.90~18.04.1|5.4.0-1080.91~18.04.1|5.4.0-1081.92~18.04.1|5.4.0-1082.93~18.04.1|5.4.0-1083.94~18.04.1|5.4.0-1084.95~18.04.1|5.4.0-1085.96~18.04.1|5.4.0-1086.97~18.04.1|5.4.0-1088.99~18.04.1|5.4.0-1089.100~18.04.1|5.4.0-1090.101~18.04.1|5.4.0-1091.102~18.04.1|5.4.0-1092.103~18.04.1|5.4.0-1093.104~18.04.1|5.4.0-1094.105~18.04.1|5.4.0-1095.106~18.04.1|5.4.0-1096.107~18.04.1|5.4.0-1097.109~18.04.2|5.4.0-1098.110~18.04.2|5.4.0-1100.112~18.04.1|5.4.0-1101.113~18.04.1|5.4.0-1102.114~18.04.1|5.4.0-1103.115~18.04.1|5.4.0-1104.116~18.04.1|5.4.0-1105.117~18.04.1|5.4.0-1106.118~18.04.1|5.4.0-1107.119~18.04.1|5.4.0-1108.120~18.04.1|5.4.0-1109.121~18.04.1|5.4.0-1110.122~18.04.1|5.4.0-1111.123~18.04.1|5.4.0-1112.124~18.04.1|5.4.0-1114.126~18.04.1|5.4.0-1115.127~18.04.1|5.4.0-1116.128~18.04.1|5.4.0-1117.129~18.04.1|5.4.0-1118.130~18.04.1|5.4.0-1119.131~18.04.1|5.4.0-1120.132~18.04.1|5.4.0-1121.133~18.04.1|5.4.0-1122.134~18.04.1|5.4.0-1129.142~18.04.1|5.4.0-1130.143~18.04.1|5.4.0-1131.144~18.04.1|5.4.0-1132.145~18.04.1|5.4.0-1133.146~18.04.1|5.4.0-1134.147~18.04.1|5.4.0-1135.148~18.04.1|5.4.0-1136.149~18.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.17.0-1003.3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-2000.4|4.15.0-2018.18|4.15.0-2021.21|4.15.0-2022.22|4.15.0-2024.24|4.15.0-2025.25|4.15.0-2026.26|4.15.0-2027.27|4.15.0-2030.31|4.15.0-2031.32|4.15.0-2033.34|4.15.0-2034.35|4.15.0-2035.37|4.15.0-2036.38|4.15.0-2037.39|4.15.0-2038.40|4.15.0-2039.41|4.15.0-2040.42|4.15.0-2041.43|4.15.0-2042.44|4.15.0-2044.46|4.15.0-2045.47|4.15.0-2048.50|4.15.0-2051.53|4.15.0-2052.54|4.15.0-2053.55|4.15.0-2054.56|4.15.0-2055.57|4.15.0-2056.58|4.15.0-2057.59|4.15.0-2059.61|4.15.0-2060.62|4.15.0-2061.63|4.15.0-2063.66|4.15.0-2064.67|4.15.0-2065.68|4.15.0-2066.69|4.15.0-2067.70|4.15.0-2069.72|4.15.0-2072.76|4.15.0-2075.80|4.15.0-2076.81|4.15.0-2078.83|4.15.0-2079.84|4.15.0-2080.85|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2083.89|4.15.0-2085.91|4.15.0-2087.93|4.15.0-2089.95|4.15.0-2090.96|4.15.0-2092.98|4.15.0-2093.99|4.15.0-2094.100|4.15.0-2095.101|4.15.0-2096.102|4.15.0-2097.103|4.15.0-2098.104|4.15.0-2099.105|4.15.0-2100.106|4.15.0-2101.107|4.15.0-2102.108|4.15.0-2103.109|4.15.0-2104.110|4.15.0-2105.111|4.15.0-2106.112|4.15.0-2107.113|4.15.0-2108.114|4.15.0-2109.115|4.15.0-2110.116|4.15.0-2111.117|4.15.0-2112.118|4.15.0-2113.119|4.15.0-2114.120|4.15.0-2115.121|4.15.0-2116.122|4.15.0-2117.123|4.15.0-2118.124|4.15.0-2119.125|4.15.0-2120.126|4.15.0-2121.127|4.15.0-2122.128|4.15.0-2123.129|4.15.0-2124.130|4.15.0-2125.131|4.15.0-2126.132", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-2006.7|4.15.0-2007.8|4.15.0-2008.9|4.15.0-2009.10|4.15.0-2012.14|4.15.0-2013.15|4.15.0-2015.17|4.15.0-2016.18|4.15.0-2017.20|4.15.0-2018.21|4.15.0-2020.23|4.15.0-2021.24|4.15.0-2022.25|4.15.0-2023.26|4.15.0-2024.27|4.15.0-2025.28|4.15.0-2026.29|4.15.0-2027.30|4.15.0-2030.33|4.15.0-2033.37|4.15.0-2034.38|4.15.0-2035.39|4.15.0-2036.40|4.15.0-2037.41|4.15.0-2038.42|4.15.0-2039.43|4.15.0-2041.45|4.15.0-2042.46|4.15.0-2043.47|4.15.0-2045.49|4.15.0-2046.50|4.15.0-2047.51|4.15.0-2048.52|4.15.0-2049.53|4.15.0-2050.54|4.15.0-2053.58|4.15.0-2056.62|4.15.0-2057.63|4.15.0-2059.65|4.15.0-2060.66|4.15.0-2062.68|4.15.0-2066.72|4.15.0-2067.73|4.15.0-2068.74|4.15.0-2070.76|4.15.0-2071.77|4.15.0-2072.78|4.15.0-2073.79|4.15.0-2074.80|4.15.0-2075.81|4.15.0-2076.82|4.15.0-2077.83|4.15.0-2078.84|4.15.0-2079.85|4.15.0-2080.86|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2084.90|4.15.0-2085.91|4.15.0-2086.92|4.15.0-2087.93|4.15.0-2088.94|4.15.0-2089.95|4.15.0-2090.96|4.15.0-2091.97|4.15.0-2092.98|4.15.0-2093.99|4.15.0-2094.100|4.15.0-2095.101|4.15.0-2096.102|4.15.0-2097.103|4.15.0-2098.104|4.15.0-2099.105|4.15.0-2100.106|4.15.0-2101.107|4.15.0-2102.108|4.15.0-2104.110", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1027.32|4.15.0-1029.34|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1037.42|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1040.45|4.15.0-1041.46|4.15.0-1044.50|4.15.0-1045.52|4.15.0-1046.53|4.15.0-1048.55|4.15.0-1049.56|4.15.0-1050.58|4.15.0-1051.59|4.15.0-1052.60|4.15.0-1053.61|4.15.0-1054.62|4.15.0-1055.63|4.15.0-1056.64|4.15.0-1057.65|4.15.0-1058.66|4.15.0-1059.67|4.15.0-1060.68|4.15.0-1063.71|4.15.0-1066.75|4.15.0-1067.76|4.15.0-1068.77|4.15.0-1069.78|4.15.0-1070.79|4.15.0-1071.80|4.15.0-1072.81|4.15.0-1073.82|4.15.0-1075.84|4.15.0-1076.85|4.15.0-1078.87|4.15.0-1080.89|4.15.0-1081.90|4.15.0-1083.92|4.15.0-1084.93|4.15.0-1085.94|4.15.0-1087.96|4.15.0-1090.100|4.15.0-1093.104|4.15.0-1094.105|4.15.0-1096.107|4.15.0-1097.108|4.15.0-1098.109|4.15.0-1099.110|4.15.0-1100.111|4.15.0-1103.114|4.15.0-1104.115|4.15.0-1105.116|4.15.0-1107.118|4.15.0-1108.119|4.15.0-1109.120|4.15.0-1110.121|4.15.0-1111.122|4.15.0-1112.123|4.15.0-1113.124|4.15.0-1114.125|4.15.0-1115.126|4.15.0-1116.127|4.15.0-1117.128|4.15.0-1118.129|4.15.0-1119.130|4.15.0-1121.132|4.15.0-1122.133|4.15.0-1123.134|4.15.0-1124.135|4.15.0-1125.136|4.15.0-1126.137|4.15.0-1127.138|4.15.0-1128.139|4.15.0-1129.140|4.15.0-1130.141|4.15.0-1131.142|4.15.0-1132.143|4.15.0-1133.144|4.15.0-1134.145|4.15.0-1135.146|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1138.149|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.153|4.15.0-1142.154|4.15.0-1143.155", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-2013.14|4.15.0-2016.18|4.15.0-2017.19|4.15.0-2018.20|4.15.0-2019.21|4.15.0-2020.22|4.15.0-2021.23|4.15.0-2022.24|4.15.0-2024.26|4.15.0-2025.27|4.15.0-2026.28|4.15.0-2028.31|4.15.0-2029.32|4.15.0-2030.33|4.15.0-2031.34|4.15.0-2032.35|4.15.0-2034.37|4.15.0-2037.41|4.15.0-2040.45|4.15.0-2041.46|4.15.0-2043.48|4.15.0-2044.49|4.15.0-2045.50|4.15.0-2047.52|4.15.0-2050.55|4.15.0-2052.57|4.15.0-2054.59|4.15.0-2055.60|4.15.0-2056.61|4.15.0-2057.62|4.15.0-2058.63|4.15.0-2059.64|4.15.0-2060.65|4.15.0-2061.66|4.15.0-2062.67|4.15.0-2063.68|4.15.0-2064.69|4.15.0-2065.70|4.15.0-2066.71|4.15.0-2067.72|4.15.0-2068.73|4.15.0-2069.74|4.15.0-2070.75|4.15.0-2071.76|4.15.0-2072.77|4.15.0-2073.78|4.15.0-2074.79|4.15.0-2075.80|4.15.0-2076.81|4.15.0-2077.83|4.15.0-2078.84|4.15.0-2079.85|4.15.0-2080.86|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2083.89|4.15.0-2084.90|4.15.0-2085.91|4.15.0-2086.92|4.15.0-2087.93|4.15.0-2088.94", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-2000.4", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1002.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1011.12", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/bionic", + "subpath": "" + }, + "affected_version_range": "vers:deb/4.15.0-1001.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-18.19|5.3.0-24.26|5.4.0-9.12|5.4.0-18.22|5.4.0-21.25|5.4.0-24.28|5.4.0-25.29|5.4.0-26.30|5.4.0-28.32|5.4.0-29.33|5.4.0-31.35|5.4.0-33.37|5.4.0-37.41|5.4.0-39.43|5.4.0-40.44|5.4.0-42.46|5.4.0-45.49|5.4.0-47.51|5.4.0-48.52|5.4.0-51.56|5.4.0-52.57|5.4.0-53.59|5.4.0-54.60|5.4.0-56.62|5.4.0-58.64|5.4.0-59.65|5.4.0-60.67|5.4.0-62.70|5.4.0-64.72|5.4.0-65.73|5.4.0-66.74|5.4.0-67.75|5.4.0-70.78|5.4.0-71.79|5.4.0-72.80|5.4.0-73.82|5.4.0-74.83|5.4.0-77.86|5.4.0-80.90|5.4.0-81.91|5.4.0-84.94|5.4.0-86.97|5.4.0-88.99|5.4.0-89.100|5.4.0-90.101|5.4.0-91.102|5.4.0-92.103|5.4.0-94.106|5.4.0-96.109|5.4.0-97.110|5.4.0-99.112|5.4.0-100.113|5.4.0-104.118|5.4.0-105.119|5.4.0-107.121|5.4.0-109.123|5.4.0-110.124|5.4.0-113.127|5.4.0-117.132|5.4.0-120.136|5.4.0-121.137|5.4.0-122.138|5.4.0-124.140|5.4.0-125.141|5.4.0-126.142|5.4.0-128.144|5.4.0-131.147|5.4.0-132.148|5.4.0-135.152|5.4.0-136.153|5.4.0-137.154|5.4.0-139.156|5.4.0-144.161|5.4.0-146.163|5.4.0-147.164|5.4.0-148.165|5.4.0-149.166|5.4.0-150.167|5.4.0-152.169|5.4.0-153.170|5.4.0-155.172|5.4.0-156.173|5.4.0-159.176|5.4.0-162.179|5.4.0-163.180|5.4.0-164.181|5.4.0-165.182|5.4.0-166.183|5.4.0-167.184|5.4.0-169.187|5.4.0-170.188|5.4.0-171.189|5.4.0-172.190|5.4.0-173.191|5.4.0-174.193|5.4.0-176.196|5.4.0-177.197|5.4.0-181.201|5.4.0-182.202|5.4.0-186.206|5.4.0-187.207|5.4.0-189.209|5.4.0-190.210|5.4.0-192.212|5.4.0-193.213|5.4.0-195.215|5.4.0-196.216|5.4.0-198.218|5.4.0-200.220|5.4.0-202.222|5.4.0-204.224|5.4.0-205.225|5.4.0-208.228|5.4.0-211.231|5.4.0-212.232|5.4.0-214.234|5.4.0-215.235|5.4.0-216.236|5.4.0-218.238|5.4.0-219.239|5.4.0-220.240|5.4.0-221.241|5.4.0-222.242|5.4.0-223.243|5.4.0-224.244|5.4.0-225.245", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1003.3|6.5.0-1004.4|6.5.0-1006.6|6.5.0-1007.7|6.5.0-1008.8|6.5.0-1009.10|6.5.0-1011.12|6.5.0-1013.14|6.5.0-1014.15|6.5.0-1015.16|6.5.0-1016.17|6.5.0-1018.19|6.5.0-1019.20|6.5.0-1020.21|6.5.0-1022.23|6.5.0-1023.24|6.5.0-1024.25|6.5.0-1025.26|6.5.0-1027.28", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.3.0-1010.11|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1017.17|5.4.0-1018.18|5.4.0-1020.20|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.30|5.4.0-1030.31|5.4.0-1032.33|5.4.0-1034.35|5.4.0-1035.37|5.4.0-1037.39|5.4.0-1038.40|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1043.45|5.4.0-1045.47|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1051.53|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1058.61|5.4.0-1059.62|5.4.0-1060.63|5.4.0-1061.64|5.4.0-1063.66|5.4.0-1064.67|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1075.80|5.4.0-1078.84|5.4.0-1080.87|5.4.0-1081.88|5.4.0-1083.90|5.4.0-1084.91|5.4.0-1085.92|5.4.0-1086.93|5.4.0-1088.96|5.4.0-1089.97|5.4.0-1092.100|5.4.0-1093.101|5.4.0-1094.102|5.4.0-1096.104|5.4.0-1097.105|5.4.0-1099.107|5.4.0-1100.108|5.4.0-1101.109|5.4.0-1102.110|5.4.0-1103.111|5.4.0-1104.112|5.4.0-1105.113|5.4.0-1106.114|5.4.0-1107.115|5.4.0-1108.116|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.123|5.4.0-1114.124|5.4.0-1116.126|5.4.0-1117.127|5.4.0-1118.128|5.4.0-1119.129|5.4.0-1120.130|5.4.0-1121.131|5.4.0-1122.132|5.4.0-1123.133|5.4.0-1124.134|5.4.0-1125.135|5.4.0-1126.136|5.4.0-1127.137|5.4.0-1128.138|5.4.0-1129.139|5.4.0-1130.140|5.4.0-1131.141|5.4.0-1132.142|5.4.0-1133.143|5.4.0-1134.144|5.4.0-1135.145|5.4.0-1136.146|5.4.0-1137.147|5.4.0-1139.149|5.4.0-1140.150|5.4.0-1142.152|5.4.0-1144.154|5.4.0-1145.155|5.4.0-1146.156|5.4.0-1147.157|5.4.0-1148.158|5.4.0-1149.159|5.4.0-1150.160|5.4.0-1151.161|5.4.0-1152.162|5.4.0-1153.163|5.4.0-1154.164", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-1009.9~20.04.2|5.11.0-1014.15~20.04.1|5.11.0-1016.17~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.2|5.11.0-1021.22~20.04.2|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1008.9~20.04.2|5.13.0-1011.12~20.04.1|5.13.0-1012.13~20.04.1|5.13.0-1014.15~20.04.1|5.13.0-1017.19~20.04.1|5.13.0-1019.21~20.04.1|5.13.0-1021.23~20.04.2|5.13.0-1022.24~20.04.1|5.13.0-1023.25~20.04.1|5.13.0-1025.27~20.04.1|5.13.0-1028.31~20.04.1|5.13.0-1029.32~20.04.1|5.13.0-1031.35~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1014.18~20.04.1|5.15.0-1015.19~20.04.1|5.15.0-1017.21~20.04.1|5.15.0-1019.23~20.04.1|5.15.0-1020.24~20.04.1|5.15.0-1021.25~20.04.1|5.15.0-1022.26~20.04.1|5.15.0-1023.27~20.04.1|5.15.0-1026.30~20.04.2|5.15.0-1027.31~20.04.1|5.15.0-1028.32~20.04.1|5.15.0-1030.34~20.04.1|5.15.0-1031.35~20.04.1|5.15.0-1033.37~20.04.1|5.15.0-1034.38~20.04.1|5.15.0-1035.39~20.04.1|5.15.0-1036.40~20.04.1|5.15.0-1037.41~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1039.44~20.04.1|5.15.0-1040.45~20.04.1|5.15.0-1041.46~20.04.1|5.15.0-1043.48~20.04.1|5.15.0-1044.49~20.04.1|5.15.0-1045.50~20.04.1|5.15.0-1047.52~20.04.1|5.15.0-1048.53~20.04.1|5.15.0-1049.54~20.04.1|5.15.0-1050.55~20.04.1|5.15.0-1051.56~20.04.1|5.15.0-1052.57~20.04.1|5.15.0-1053.58~20.04.1|5.15.0-1055.60~20.04.1|5.15.0-1056.61~20.04.1|5.15.0-1057.63~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1064.70~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1068.74~20.04.1|5.15.0-1069.75~20.04.1|5.15.0-1070.76~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.1|5.15.0-1075.82~20.04.1|5.15.0-1077.84~20.04.1|5.15.0-1080.87~20.04.1|5.15.0-1081.88~20.04.1|5.15.0-1082.89~20.04.1|5.15.0-1083.90~20.04.1|5.15.0-1084.91~20.04.1|5.15.0-1086.93~20.04.1|5.15.0-1087.94~20.04.1|5.15.0-1088.95~20.04.1|5.15.0-1089.96~20.04.1|5.15.0-1090.97~20.04.1|5.15.0-1091.98~20.04.1|5.15.0-1092.99~20.04.1|5.15.0-1093.100~20.04.1|5.15.0-1095.102~20.04.1|5.15.0-1096.103~20.04.1|5.15.0-1097.104~20.04.1|5.15.0-1098.105~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-1035.37~20.04.1|5.8.0-1038.40~20.04.1|5.8.0-1041.43~20.04.1|5.8.0-1042.44~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.4.0-1006.6|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1010.10|5.4.0-1012.12|5.4.0-1016.16|5.4.0-1019.19|5.4.0-1020.20|5.4.0-1022.22|5.4.0-1023.23|5.4.0-1025.25|5.4.0-1026.26|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1034.35|5.4.0-1035.36|5.4.0-1036.38|5.4.0-1039.41|5.4.0-1040.42|5.4.0-1041.43|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1051.53|5.4.0-1055.57|5.4.0-1056.58|5.4.0-1058.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1064.67|5.4.0-1065.68|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1069.72|5.4.0-1070.73|5.4.0-1072.75|5.4.0-1073.76|5.4.0-1074.77|5.4.0-1077.80|5.4.0-1078.81|5.4.0-1080.83|5.4.0-1083.87|5.4.0-1085.90|5.4.0-1086.91|5.4.0-1089.94|5.4.0-1090.95|5.4.0-1091.96|5.4.0-1094.100|5.4.0-1095.101|5.4.0-1098.104|5.4.0-1100.106|5.4.0-1101.107|5.4.0-1103.109|5.4.0-1104.110|5.4.0-1105.111|5.4.0-1106.112|5.4.0-1107.113|5.4.0-1108.114|5.4.0-1109.115|5.4.0-1110.116|5.4.0-1111.117|5.4.0-1112.118|5.4.0-1113.119|5.4.0-1114.120|5.4.0-1115.122|5.4.0-1116.123|5.4.0-1117.124|5.4.0-1118.125|5.4.0-1119.126|5.4.0-1120.127|5.4.0-1121.128|5.4.0-1122.129|5.4.0-1123.130|5.4.0-1124.131|5.4.0-1126.133|5.4.0-1127.134|5.4.0-1128.135|5.4.0-1129.136|5.4.0-1130.137|5.4.0-1131.138|5.4.0-1132.139|5.4.0-1133.140|5.4.0-1134.141|5.4.0-1135.142|5.4.0-1136.143|5.4.0-1137.144|5.4.0-1138.145|5.4.0-1139.146|5.4.0-1140.147|5.4.0-1142.149|5.4.0-1143.150|5.4.0-1145.152|5.4.0-1147.154|5.4.0-1148.155|5.4.0-1149.156|5.4.0-1150.157|5.4.0-1151.158|5.4.0-1152.159|5.4.0-1153.160|5.4.0-1154.161|5.4.0-1156.163", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-1007.7~20.04.2|5.11.0-1012.13~20.04.1|5.11.0-1013.14~20.04.1|5.11.0-1015.16~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1009.10~20.04.2|5.13.0-1012.14~20.04.1|5.13.0-1013.15~20.04.1|5.13.0-1014.16~20.04.1|5.13.0-1017.19~20.04.1|5.13.0-1021.24~20.04.1|5.13.0-1022.26~20.04.1|5.13.0-1023.27~20.04.1|5.13.0-1025.29~20.04.1|5.13.0-1028.33~20.04.1|5.13.0-1029.34~20.04.1|5.13.0-1031.37~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1009.9~22.04.2|6.8.0-1010.10~22.04.2|6.8.0-1011.12~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.15~22.04.1|6.8.0-1015.16~22.04.1|6.8.0-1016.17~22.04.2|6.8.0-1017.18~22.04.1|6.8.0-1018.19~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1023.25~22.04.1|6.8.0-1024.26~22.04.1|6.8.0-1027.29~22.04.1|6.8.0-1028.30~22.04.1|6.8.0-1029.31~22.04.1|6.8.0-1030.32~22.04.1|6.8.0-1031.33~22.04.1|6.8.0-1032.34~22.04.1|6.8.0-1033.35~22.04.1|6.8.0-1035.37~22.04.1|6.8.0-1036.38~22.04.1|6.8.0-1039.41~22.04.1|6.8.0-1040.42~22.04.1|6.8.0-1041.43~22.04.1|6.8.0-1042.44~22.04.1|6.8.0-1043.45~22.04.1|6.8.0-1044.46~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-preview/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1042.47+fips1|5.15.0-1051.56+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-preview/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1053.61+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1007.8~20.04.1|5.15.0-1008.9~20.04.1|5.15.0-1013.16~20.04.1|5.15.0-1014.17~20.04.1|5.15.0-1017.20~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1022.27~20.04.1|5.15.0-1023.29~20.04.1|5.15.0-1029.36~20.04.1|5.15.0-1030.37~20.04.1|5.15.0-1031.38~20.04.1|5.15.0-1033.40~20.04.1|5.15.0-1034.41~20.04.1|5.15.0-1035.42~20.04.1|5.15.0-1036.43~20.04.1|5.15.0-1037.44~20.04.1|5.15.0-1038.45~20.04.1|5.15.0-1039.46~20.04.1|5.15.0-1040.47~20.04.1|5.15.0-1041.48~20.04.1|5.15.0-1042.49~20.04.1|5.15.0-1043.50~20.04.1|5.15.0-1045.52~20.04.1|5.15.0-1046.53~20.04.1|5.15.0-1047.54~20.04.1|5.15.0-1049.56~20.04.1|5.15.0-1050.57~20.04.1|5.15.0-1051.59~20.04.1|5.15.0-1052.60~20.04.1|5.15.0-1053.61~20.04.1|5.15.0-1054.62~20.04.1|5.15.0-1056.64~20.04.1|5.15.0-1057.65~20.04.1|5.15.0-1058.66~20.04.2|5.15.0-1059.67~20.04.1|5.15.0-1060.69~20.04.1|5.15.0-1061.70~20.04.1|5.15.0-1063.72~20.04.1|5.15.0-1064.73~20.04.1|5.15.0-1065.74~20.04.1|5.15.0-1067.76~20.04.1|5.15.0-1068.77~20.04.1|5.15.0-1070.79~20.04.1|5.15.0-1071.80~20.04.1|5.15.0-1072.81~20.04.1|5.15.0-1073.82~20.04.1|5.15.0-1074.83~20.04.1|5.15.0-1075.84~20.04.1|5.15.0-1078.87~20.04.1|5.15.0-1079.88~20.04.1|5.15.0-1081.90~20.04.1|5.15.0-1082.91~20.04.1|5.15.0-1086.95~20.04.1|5.15.0-1087.96~20.04.1|5.15.0-1088.97~20.04.1|5.15.0-1089.98~20.04.1|5.15.0-1091.100~20.04.1|5.15.0-1094.103~20.04.1|5.15.0-1095.104~20.04.1|5.15.0-1096.105~20.04.1|5.15.0-1097.106~20.04.1|5.15.0-1098.107~20.04.1|5.15.0-1102.111~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-1033.35~20.04.1|5.8.0-1036.38~20.04.1|5.8.0-1039.42~20.04.1|5.8.0-1040.43~20.04.1|5.8.0-1041.44~20.04.1|5.8.0-1042.45~20.04.1|5.8.0-1043.46~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1063.66+cvm2.2|5.4.0-1063.66+cvm3.2|5.4.0-1064.67+cvm1.1|5.4.0-1065.68+cvm2.1|5.4.0-1067.70+cvm1.1|5.4.0-1068.71+cvm1.1|5.4.0-1069.72+cvm1.1|5.4.0-1070.73+cvm1.1|5.4.0-1072.75+cvm1.1|5.4.0-1073.76+cvm1.1|5.4.0-1074.77+cvm1.1|5.4.0-1076.79+cvm1.1|5.4.0-1078.81+cvm1.1|5.4.0-1080.83+cvm1.1|5.4.0-1083.87+cvm1.1|5.4.0-1085.90+cvm1.1|5.4.0-1085.90+cvm2.1|5.4.0-1086.91+cvm1.1|5.4.0-1089.94+cvm1.2|5.4.0-1090.95+cvm1.1|5.4.0-1091.96+cvm1.1|5.4.0-1092.97+cvm1.1|5.4.0-1095.101+cvm1.1|5.4.0-1098.104+cvm1.1|5.4.0-1100.106+cvm1.1|5.4.0-1103.109+cvm1.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1019.24~20.04.1.1|5.15.0-1020.25~20.04.1.1|5.15.0-1021.26~20.04.1.1|5.15.0-1029.36~20.04.1.1|5.15.0-1030.37~20.04.1.1|5.15.0-1031.38~20.04.1.1|5.15.0-1033.40~20.04.1.1|5.15.0-1034.41~20.04.1.2|5.15.0-1035.42~20.04.1.1|5.15.0-1036.43~20.04.1.1|5.15.0-1037.44~20.04.1.1|5.15.0-1038.45~20.04.1.1|5.15.0-1039.46~20.04.1.1|5.15.0-1040.47~20.04.1.1|5.15.0-1041.48~20.04.1.1|5.15.0-1042.49~20.04.1.1|5.15.0-1043.50~20.04.1.1|5.15.0-1046.53~20.04.1.1|5.15.0-1047.54~20.04.1.1|5.15.0-1049.56~20.04.1.1|5.15.0-1050.57~20.04.1.1|5.15.0-1051.59~20.04.1.1|5.15.0-1052.60~20.04.1.1|5.15.0-1053.61~20.04.1.1|5.15.0-1054.62~20.04.1.1|5.15.0-1056.64~20.04.1.1|5.15.0-1057.65~20.04.1.1|5.15.0-1058.66~20.04.2.1|5.15.0-1059.67~20.04.1.1|5.15.0-1060.69~20.04.1.1|5.15.0-1061.70~20.04.1.1|5.15.0-1063.72~20.04.1.1|5.15.0-1064.73~20.04.1.1|5.15.0-1065.74~20.04.1.1|5.15.0-1067.76~20.04.1.1|5.15.0-1068.77~20.04.1.1|5.15.0-1070.79~20.04.1.1|5.15.0-1071.80~20.04.1.1|5.15.0-1072.81~20.04.1.1|5.15.0-1073.82~20.04.1.1|5.15.0-1074.83~20.04.1.1|5.15.0-1076.85~20.04.1.1|5.15.0-1078.87~20.04.1.1|5.15.0-1081.90~20.04.1.1|5.15.0-1082.91~20.04.1.1|5.15.0-1086.95~20.04.1.1|5.15.0-1087.96~20.04.1.1|5.15.0-1088.97~20.04.1.1|5.15.0-1089.98~20.04.1.1|5.15.0-1091.100~20.04.1.1|5.15.0-1094.103~20.04.1.1|5.15.0-1096.105~20.04.1.1|5.15.0-1097.106~20.04.1.1|5.15.0-1098.107~20.04.1.1|5.15.0-1102.111~20.04.1.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-bluefield", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1007.10|5.4.0-1011.14|5.4.0-1012.15|5.4.0-1013.16|5.4.0-1016.19|5.4.0-1019.22|5.4.0-1020.23|5.4.0-1021.24|5.4.0-1022.25|5.4.0-1023.26|5.4.0-1025.28|5.4.0-1026.29|5.4.0-1028.31|5.4.0-1030.33|5.4.0-1032.35|5.4.0-1035.38|5.4.0-1036.39|5.4.0-1040.44|5.4.0-1042.47|5.4.0-1044.49|5.4.0-1045.50|5.4.0-1046.51|5.4.0-1047.52|5.4.0-1049.55|5.4.0-1050.56|5.4.0-1054.60|5.4.0-1058.64|5.4.0-1059.65|5.4.0-1060.66|5.4.0-1062.68|5.4.0-1064.70|5.4.0-1065.71|5.4.0-1066.72|5.4.0-1068.74|5.4.0-1070.76|5.4.0-1071.77|5.4.0-1072.78|5.4.0-1073.79|5.4.0-1074.80|5.4.0-1075.81|5.4.0-1076.82|5.4.0-1077.83|5.4.0-1078.84|5.4.0-1079.85|5.4.0-1080.87|5.4.0-1081.88|5.4.0-1082.89|5.4.0-1083.90|5.4.0-1084.91|5.4.0-1085.92|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1088.95|5.4.0-1089.96|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1092.99|5.4.0-1093.100|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1105.112|5.4.0-1106.113|5.4.0-1107.114|5.4.0-1108.115|5.4.0-1109.116|5.4.0-1110.117|5.4.0-1111.118|5.4.0-1112.119", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1004.4|5.3.0-1009.10|5.3.0-1011.12|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1019.19|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.31|5.4.0-1030.32|5.4.0-1032.34|5.4.0-1033.35|5.4.0-1034.37|5.4.0-1036.39|5.4.0-1037.40|5.4.0-1038.41|5.4.0-1040.43|5.4.0-1041.44|5.4.0-1042.45|5.4.0-1043.46|5.4.0-1044.47|5.4.0-1046.49|5.4.0-1049.53|5.4.0-1051.55|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1058.62|5.4.0-1059.63|5.4.0-1060.64|5.4.0-1062.66|5.4.0-1063.67|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1075.80|5.4.0-1078.84|5.4.0-1080.87|5.4.0-1083.91|5.4.0-1084.92|5.4.0-1086.94|5.4.0-1087.95|5.4.0-1089.97|5.4.0-1090.98|5.4.0-1092.101|5.4.0-1093.102|5.4.0-1096.105|5.4.0-1097.106|5.4.0-1098.107|5.4.0-1100.109|5.4.0-1101.110|5.4.0-1102.111|5.4.0-1103.112|5.4.0-1104.113|5.4.0-1105.114|5.4.0-1106.115|5.4.0-1107.116|5.4.0-1108.117|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.122|5.4.0-1115.124|5.4.0-1116.125|5.4.0-1117.126|5.4.0-1118.127|5.4.0-1120.129|5.4.0-1121.130|5.4.0-1122.131|5.4.0-1123.132|5.4.0-1124.133|5.4.0-1125.134|5.4.0-1126.135|5.4.0-1127.136|5.4.0-1128.137|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1139.148|5.4.0-1140.149|5.4.0-1141.150|5.4.0-1142.151|5.4.0-1143.152|5.4.0-1145.154|5.4.0-1146.155|5.4.0-1147.156|5.4.0-1148.157|5.4.0-1149.158|5.4.0-1150.159|5.4.0-1151.160|5.4.0-1152.161|5.4.0-1153.162|5.4.0-1154.163|5.4.0-1155.164|5.4.0-1156.165|5.4.0-1157.166", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-1009.10~20.04.1|5.11.0-1014.16~20.04.1|5.11.0-1017.19~20.04.1|5.11.0-1018.20~20.04.2|5.11.0-1020.22~20.04.1|5.11.0-1021.23~20.04.1|5.11.0-1022.24~20.04.1|5.11.0-1023.25~20.04.1|5.11.0-1024.26~20.04.1|5.11.0-1026.29~20.04.1|5.11.0-1028.32~20.04.1|5.11.0-1029.33~20.04.3", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1008.9~20.04.3|5.13.0-1012.15~20.04.1|5.13.0-1013.16~20.04.1|5.13.0-1015.18~20.04.1|5.13.0-1019.23~20.04.1|5.13.0-1021.25~20.04.1|5.13.0-1023.28~20.04.1|5.13.0-1024.29~20.04.1|5.13.0-1025.30~20.04.1|5.13.0-1027.32~20.04.1|5.13.0-1030.36~20.04.1|5.13.0-1031.37~20.04.1|5.13.0-1033.40~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-preview/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-73.80+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1006.9~20.04.1|5.15.0-1012.17~20.04.1|5.15.0-1013.18~20.04.1|5.15.0-1016.21~20.04.1|5.15.0-1017.23~20.04.2|5.15.0-1018.24~20.04.1|5.15.0-1021.28~20.04.1|5.15.0-1022.29~20.04.1|5.15.0-1025.32~20.04.2|5.15.0-1026.33~20.04.1|5.15.0-1027.34~20.04.1|5.15.0-1029.36~20.04.1|5.15.0-1030.37~20.04.1|5.15.0-1031.38~20.04.1|5.15.0-1032.40~20.04.1|5.15.0-1033.41~20.04.1|5.15.0-1034.42~20.04.1|5.15.0-1035.43~20.04.1|5.15.0-1036.44~20.04.1|5.15.0-1037.45~20.04.1|5.15.0-1038.46~20.04.1|5.15.0-1039.47~20.04.1|5.15.0-1040.48~20.04.1|5.15.0-1041.49~20.04.1|5.15.0-1042.50~20.04.1|5.15.0-1044.52~20.04.1|5.15.0-1045.53~20.04.2|5.15.0-1046.54~20.04.1|5.15.0-1047.55~20.04.1|5.15.0-1048.56~20.04.1|5.15.0-1049.57~20.04.1|5.15.0-1051.59~20.04.1|5.15.0-1052.60~20.04.1|5.15.0-1053.61~20.04.1|5.15.0-1054.62~20.04.1|5.15.0-1055.63~20.04.1|5.15.0-1058.66~20.04.1|5.15.0-1059.67~20.04.1|5.15.0-1060.68~20.04.1|5.15.0-1062.70~20.04.1|5.15.0-1065.73~20.04.1|5.15.0-1066.74~20.04.1|5.15.0-1067.75~20.04.1|5.15.0-1068.76~20.04.1|5.15.0-1069.77~20.04.1|5.15.0-1070.78~20.04.1|5.15.0-1071.79~20.04.1|5.15.0-1072.80~20.04.1|5.15.0-1073.81~20.04.1|5.15.0-1074.83~20.04.1|5.15.0-1075.84~20.04.1|5.15.0-1077.86~20.04.1|5.15.0-1078.87~20.04.1|5.15.0-1081.90~20.04.1|5.15.0-1083.92~20.04.1|5.15.0-1085.94~20.04.1|5.15.0-1086.95~20.04.1|5.15.0-1087.96~20.04.2|5.15.0-1088.97~20.04.1|5.15.0-1090.99~20.04.1|5.15.0-1091.100~20.04.1|5.15.0-1092.101~20.04.1|5.15.0-1093.102~20.04.1|5.15.0-1095.104~20.04.1|5.15.0-1096.105~20.04.1|5.15.0-1097.106~20.04.1|5.15.0-1098.107~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-1032.34~20.04.1|5.8.0-1035.37~20.04.1|5.8.0-1038.40~20.04.1|5.8.0-1039.41", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1033.35|5.4.0-1035.37|5.4.0-1036.38|5.4.0-1037.39|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1042.44|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1074.79|5.4.0-1076.82|5.4.0-1078.84|5.4.0-1080.86|5.4.0-1081.87|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1100.107|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke-5.15", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1011.14~20.04.1|5.15.0-1014.17~20.04.1|5.15.0-1015.18~20.04.1|5.15.0-1016.19~20.04.1|5.15.0-1019.23~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1023.28~20.04.2|5.15.0-1027.32~20.04.1|5.15.0-1028.33~20.04.1|5.15.0-1029.34~20.04.1|5.15.0-1031.36~20.04.1|5.15.0-1032.37~20.04.1|5.15.0-1033.38~20.04.1|5.15.0-1034.39~20.04.1|5.15.0-1036.41~20.04.1|5.15.0-1037.42~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1039.44~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gkeop", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1008.9|5.4.0-1009.10|5.4.0-1010.11|5.4.0-1011.12|5.4.0-1012.13|5.4.0-1013.14|5.4.0-1014.15|5.4.0-1015.16|5.4.0-1016.17|5.4.0-1018.19|5.4.0-1021.22|5.4.0-1022.23|5.4.0-1023.24|5.4.0-1024.25|5.4.0-1025.26|5.4.0-1026.27|5.4.0-1027.28|5.4.0-1029.30|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1043.44|5.4.0-1046.48|5.4.0-1048.51|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1060.64|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1066.70|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1070.74|5.4.0-1071.75|5.4.0-1072.76|5.4.0-1073.77|5.4.0-1074.78|5.4.0-1075.79|5.4.0-1076.80|5.4.0-1077.81|5.4.0-1078.82|5.4.0-1079.83|5.4.0-1080.84|5.4.0-1081.85|5.4.0-1083.87|5.4.0-1084.88|5.4.0-1085.89|5.4.0-1086.90|5.4.0-1087.91|5.4.0-1088.92|5.4.0-1089.93|5.4.0-1090.94|5.4.0-1091.95|5.4.0-1092.96|5.4.0-1093.97|5.4.0-1094.98|5.4.0-1095.99|5.4.0-1096.100|5.4.0-1097.101|5.4.0-1098.102|5.4.0-1099.103|5.4.0-1100.104|5.4.0-1101.105|5.4.0-1102.106", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gkeop-5.15", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1003.5~20.04.2|5.15.0-1005.7~20.04.1|5.15.0-1007.10~20.04.1|5.15.0-1008.12~20.04.1|5.15.0-1011.15~20.04.2|5.15.0-1012.16~20.04.1|5.15.0-1013.17~20.04.1|5.15.0-1015.19~20.04.1|5.15.0-1016.21~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1022.27~20.04.1|5.15.0-1023.28~20.04.1|5.15.0-1024.29~20.04.1|5.15.0-1025.30~20.04.1|5.15.0-1026.31~20.04.1|5.15.0-1027.32~20.04.1|5.15.0-1028.33~20.04.1|5.15.0-1030.35~20.04.1|5.15.0-1031.37~20.04.1|5.15.0-1032.38~20.04.1|5.15.0-1033.39~20.04.1|5.15.0-1034.40~20.04.1|5.15.0-1035.41~20.04.1|5.15.0-1036.42~20.04.1|5.15.0-1037.43~20.04.1|5.15.0-1038.44~20.04.1|5.15.0-1039.45~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1043.50~20.04.1|5.15.0-1044.51~20.04.1|5.15.0-1045.52~20.04.1|5.15.0-1046.53~20.04.1|5.15.0-1047.54~20.04.1|5.15.0-1048.55~20.04.1|5.15.0-1049.56~20.04.1|5.15.0-1050.57~20.04.1|5.15.0-1051.58~20.04.1|5.15.0-1052.59~20.04.1|5.15.0-1053.60~20.04.1|5.15.0-1054.61~20.04.1|5.15.0-1055.62~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-22.23~20.04.1|5.11.0-25.27~20.04.1|5.11.0-27.29~20.04.1|5.11.0-34.36~20.04.1|5.11.0-36.40~20.04.1|5.11.0-37.41~20.04.2|5.11.0-38.42~20.04.1|5.11.0-40.44~20.04.2|5.11.0-41.45~20.04.1|5.11.0-43.47~20.04.2|5.11.0-44.48~20.04.2|5.11.0-46.51~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-21.21~20.04.1|5.13.0-22.22~20.04.1|5.13.0-23.23~20.04.2|5.13.0-25.26~20.04.1|5.13.0-27.29~20.04.1|5.13.0-28.31~20.04.1|5.13.0-30.33~20.04.1|5.13.0-35.40~20.04.1|5.13.0-37.42~20.04.1|5.13.0-39.44~20.04.1|5.13.0-40.45~20.04.1|5.13.0-41.46~20.04.1|5.13.0-44.49~20.04.1|5.13.0-48.54~20.04.1|5.13.0-51.58~20.04.1|5.13.0-52.59~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-33.34~20.04.1|5.15.0-41.44~20.04.1|5.15.0-43.46~20.04.1|5.15.0-46.49~20.04.1|5.15.0-48.54~20.04.1|5.15.0-50.56~20.04.1|5.15.0-52.58~20.04.1|5.15.0-53.59~20.04.1|5.15.0-56.62~20.04.1|5.15.0-57.63~20.04.1|5.15.0-58.64~20.04.1|5.15.0-60.66~20.04.1|5.15.0-67.74~20.04.1|5.15.0-69.76~20.04.1|5.15.0-70.77~20.04.1|5.15.0-71.78~20.04.1|5.15.0-72.79~20.04.1|5.15.0-73.80~20.04.1|5.15.0-75.82~20.04.1|5.15.0-76.83~20.04.1|5.15.0-78.85~20.04.1|5.15.0-79.86~20.04.2|5.15.0-82.91~20.04.1|5.15.0-83.92~20.04.1|5.15.0-84.93~20.04.1|5.15.0-86.96~20.04.1|5.15.0-87.97~20.04.1|5.15.0-88.98~20.04.1|5.15.0-89.99~20.04.1|5.15.0-91.101~20.04.1|5.15.0-92.102~20.04.1|5.15.0-94.104~20.04.1|5.15.0-97.107~20.04.1|5.15.0-100.110~20.04.1|5.15.0-101.111~20.04.1|5.15.0-102.112~20.04.1|5.15.0-105.115~20.04.1|5.15.0-106.116~20.04.1|5.15.0-107.117~20.04.1|5.15.0-113.123~20.04.1|5.15.0-116.126~20.04.1|5.15.0-117.127~20.04.1|5.15.0-118.128~20.04.1|5.15.0-119.129~20.04.1|5.15.0-121.131~20.04.1|5.15.0-122.132~20.04.1|5.15.0-124.134~20.04.1|5.15.0-125.135~20.04.1|5.15.0-126.136~20.04.1|5.15.0-127.137~20.04.1|5.15.0-130.140~20.04.1|5.15.0-131.141~20.04.1|5.15.0-134.145~20.04.1|5.15.0-136.147~20.04.1|5.15.0-138.148~20.04.1|5.15.0-139.149~20.04.1|5.15.0-142.152~20.04.1|5.15.0-143.153~20.04.1|5.15.0-144.157~20.04.1|5.15.0-145.158~20.04.1|5.15.0-151.161~20.04.1|5.15.0-152.162~20.04.1|5.15.0-153.163~20.04.1|5.15.0-156.166~20.04.1|5.15.0-157.167~20.04.1|5.15.0-160.170~20.04.1|5.15.0-161.171~20.04.1|5.15.0-163.173~20.04.1|5.15.0-164.174~20.04.1|5.15.0-168.178~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1003.4|5.4.0-1004.5|5.4.0-1005.6|5.4.0-1006.7|5.4.0-1007.8|5.4.0-1008.9|5.4.0-1010.11|5.4.0-1012.13|5.4.0-1013.14|5.4.0-1014.15|5.4.0-1015.16|5.4.0-1017.19|5.4.0-1018.20|5.4.0-1019.21|5.4.0-1020.22|5.4.0-1021.23|5.4.0-1023.25|5.4.0-1026.29|5.4.0-1028.32|5.4.0-1029.33|5.4.0-1031.35|5.4.0-1032.36|5.4.0-1033.37|5.4.0-1034.38|5.4.0-1036.41|5.4.0-1037.42|5.4.0-1040.45|5.4.0-1041.46|5.4.0-1042.47|5.4.0-1044.49|5.4.0-1045.50|5.4.0-1046.51|5.4.0-1047.52|5.4.0-1048.53|5.4.0-1049.54|5.4.0-1050.55|5.4.0-1051.56|5.4.0-1052.57|5.4.0-1053.58|5.4.0-1054.59|5.4.0-1056.61|5.4.0-1057.62|5.4.0-1058.63|5.4.0-1059.64|5.4.0-1060.65|5.4.0-1061.66|5.4.0-1063.68|5.4.0-1064.69|5.4.0-1065.70|5.4.0-1066.71|5.4.0-1067.72|5.4.0-1068.73|5.4.0-1069.74|5.4.0-1070.75|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1074.79|5.4.0-1075.80|5.4.0-1076.81|5.4.0-1077.82|5.4.0-1078.83|5.4.0-1079.84|5.4.0-1080.85|5.4.0-1081.86|5.4.0-1082.87|5.4.0-1083.88|5.4.0-1084.89|5.4.0-1085.90|5.4.0-1086.91|5.4.0-1088.93|5.4.0-1089.94|5.4.0-1090.95|5.4.0-1091.96|5.4.0-1092.97|5.4.0-1093.98|5.4.0-1094.99|5.4.0-1095.100|5.4.0-1096.101|5.4.0-1097.102|5.4.0-1098.103|5.4.0-1099.104|5.4.0-1100.105", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1033.36~20.04.1|5.15.0-1034.37~20.04.1|5.15.0-1035.38~20.04.1|5.15.0-1036.39~20.04.1|5.15.0-1037.40~20.04.1|5.15.0-1038.41~20.04.1|5.15.0-1040.43~20.04.1|5.15.0-1041.44~20.04.1|5.15.0-1042.45~20.04.1|5.15.0-1043.46~20.04.1|5.15.0-1044.47~20.04.1|5.15.0-1045.48~20.04.1|5.15.0-1046.49~20.04.1|5.15.0-1047.50~20.04.1|5.15.0-1048.51~20.04.1|5.15.0-1049.52~20.04.1|5.15.0-1050.53~20.04.1|5.15.0-1053.56~20.04.1|5.15.0-1054.57~20.04.1|5.15.0-1055.58~20.04.1|5.15.0-1057.60~20.04.1|5.15.0-1058.61~20.04.1|5.15.0-1059.62~20.04.1|5.15.0-1060.63~20.04.1|5.15.0-1061.64~20.04.1|5.15.0-1062.65~20.04.1|5.15.0-1063.66~20.04.1|5.15.0-1064.67~20.04.1|5.15.0-1065.68~20.04.1|5.15.0-1066.69~20.04.1|5.15.0-1067.70~20.04.1|5.15.0-1068.71~20.04.1|5.15.0-1069.72~20.04.1|5.15.0-1074.77~20.04.1|5.15.0-1075.78~20.04.1|5.15.0-1076.79~20.04.1|5.15.0-1078.81~20.04.1|5.15.0-1079.82~20.04.1|5.15.0-1080.83~20.04.1|5.15.0-1081.84~20.04.1|5.15.0-1083.86~20.04.1|5.15.0-1085.88~20.04.1|5.15.0-1086.89~20.04.1|5.15.0-1087.90~20.04.1|5.15.0-1089.92~20.04.1|5.15.0-1090.93~20.04.1|5.15.0-1091.94~20.04.1|5.15.0-1092.95~20.04.1|5.15.0-1093.96~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1007.7|5.13.0-1008.8|5.13.0-1009.9|5.13.0-1010.10|5.13.0-1011.11|5.13.0-1014.15|5.13.0-1017.19", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-iotg-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1003.5~20.04.1|5.15.0-1008.11~20.04.1|5.15.0-1010.14~20.04.1|5.15.0-1015.20~20.04.2|5.15.0-1016.21~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1023.28~20.04.1|5.15.0-1025.30~20.04.1|5.15.0-1026.31~20.04.1|5.15.0-1027.32~20.04.1|5.15.0-1030.35~20.04.1|5.15.0-1031.36~20.04.1|5.15.0-1033.38~20.04.1|5.15.0-1034.39~20.04.1|5.15.0-1036.41~20.04.1|5.15.0-1037.42~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1043.49~20.04.1|5.15.0-1045.51~20.04.1|5.15.0-1046.52~20.04.1|5.15.0-1048.54~20.04.1|5.15.0-1049.55~20.04.1|5.15.0-1050.56~20.04.1|5.15.0-1051.57~20.04.1|5.15.0-1052.58~20.04.1|5.15.0-1055.61~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1059.65~20.04.1|5.15.0-1060.66~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1064.70~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.2|5.15.0-1074.80~20.04.1|5.15.0-1077.83~20.04.1|5.15.0-1078.84~20.04.1|5.15.0-1079.85~20.04.1|5.15.0-1083.89~20.04.1|5.15.0-1084.90~20.04.1|5.15.0-1085.91~20.04.1|5.15.0-1086.92~20.04.1|5.15.0-1087.93~20.04.1|5.15.0-1088.94~20.04.1|5.15.0-1090.96~20.04.1|5.15.0-1091.97~20.04.1|5.15.0-1092.98~20.04.1|5.15.0-1093.99~20.04.1|5.15.0-1094.100~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-iot", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1001.3|5.4.0-1004.6|5.4.0-1005.7|5.4.0-1006.8|5.4.0-1009.11|5.4.0-1010.12|5.4.0-1011.13|5.4.0-1012.14|5.4.0-1013.15|5.4.0-1014.16|5.4.0-1017.18|5.4.0-1018.19|5.4.0-1019.20|5.4.0-1021.22|5.4.0-1022.23|5.4.0-1023.24|5.4.0-1024.25|5.4.0-1025.26|5.4.0-1026.27|5.4.0-1028.29|5.4.0-1029.30|5.4.0-1030.31|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1035.36|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1041.42|5.4.0-1042.43|5.4.0-1043.44|5.4.0-1044.45|5.4.0-1045.46|5.4.0-1048.51|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1058.61", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.4.0-1004.4|5.4.0-1006.6|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1020.20|5.4.0-1021.21|5.4.0-1023.23|5.4.0-1024.24|5.4.0-1026.27|5.4.0-1028.29|5.4.0-1030.31|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1041.42|5.4.0-1044.46|5.4.0-1045.47|5.4.0-1046.48|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1050.52|5.4.0-1051.53|5.4.0-1053.55|5.4.0-1054.56|5.4.0-1055.57|5.4.0-1056.58|5.4.0-1058.61|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1068.72|5.4.0-1070.75|5.4.0-1071.76|5.4.0-1073.78|5.4.0-1074.79|5.4.0-1075.80|5.4.0-1076.81|5.4.0-1078.84|5.4.0-1079.85|5.4.0-1082.88|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.92|5.4.0-1087.93|5.4.0-1088.94|5.4.0-1089.95|5.4.0-1090.96|5.4.0-1091.97|5.4.0-1092.98|5.4.0-1093.99|5.4.0-1094.100|5.4.0-1095.101|5.4.0-1096.102|5.4.0-1097.103|5.4.0-1098.104|5.4.0-1099.105|5.4.0-1100.106|5.4.0-1101.107|5.4.0-1102.108|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112|5.4.0-1106.113|5.4.0-1107.114|5.4.0-1108.115|5.4.0-1109.116|5.4.0-1110.117|5.4.0-1111.118|5.4.0-1112.119|5.4.0-1113.120|5.4.0-1114.121|5.4.0-1115.122|5.4.0-1116.123|5.4.0-1117.124|5.4.0-1118.125|5.4.0-1119.127|5.4.0-1120.128|5.4.0-1121.129|5.4.0-1122.130|5.4.0-1123.131|5.4.0-1124.132|5.4.0-1125.133|5.4.0-1126.134|5.4.0-1127.136|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1139.148|5.4.0-1140.149|5.4.0-1141.150", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1005.6|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1004.6|5.15.0-1005.7|5.15.0-1008.10|5.15.0-1009.11|5.15.0-1011.14|5.15.0-1013.17|5.15.0-1014.18|5.15.0-1015.19|5.15.0-1017.21|5.15.0-1019.23|5.15.0-1020.24|5.15.0-1021.25|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32|5.15.0-1030.34|5.15.0-1031.35|5.15.0-1033.37|5.15.0-1034.38|5.15.0-1035.39|5.15.0-1036.40|5.15.0-1037.41|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1042.47|5.15.0-1043.48|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1055.60|5.15.0-1056.61|5.15.0-1057.63|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1076.83|5.15.0-1078.85|5.15.0-1079.86|5.15.0-1080.87|5.15.0-1081.88|5.15.0-1082.89|5.15.0-1083.90|5.15.0-1084.91|5.15.0-1085.92|5.15.0-1086.93|5.15.0-1087.94|5.15.0-1088.95|5.15.0-1089.96|5.15.0-1090.97|5.15.0-1091.98|5.15.0-1092.99|5.15.0-1093.100|5.15.0-1095.102|5.15.0-1096.103|5.15.0-1097.104|5.15.0-1098.105|5.15.0-1099.106", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-33.34~20.04.1|5.15.0-42.45~20.04.1|5.15.0-43.46~20.04.1|5.15.0-46.49~20.04.1|5.15.0-48.54~20.04.1|5.15.0-50.56~20.04.1|5.15.0-52.58~20.04.1|5.15.0-53.59~20.04.1|5.15.0-56.62~20.04.1|5.15.0-58.64~20.04.1|5.15.0-60.66~20.04.1|5.15.0-67.74~20.04.1|5.15.0-69.76~20.04.1|5.15.0-70.77~20.04.1|5.15.0-71.78~20.04.1|5.15.0-72.79~20.04.1|5.15.0-73.80~20.04.1|5.15.0-75.82~20.04.1|5.15.0-76.83~20.04.1|5.15.0-78.85~20.04.1|5.15.0-79.88~20.04.1|5.15.0-82.91~20.04.1|5.15.0-83.92~20.04.1|5.15.0-84.93~20.04.1|5.15.0-86.95~20.04.1|5.15.0-87.96~20.04.1|5.15.0-88.98~20.04.1|5.15.0-89.99~20.04.1|5.15.0-91.101~20.04.1|5.15.0-92.102~20.04.1|5.15.0-94.104~20.04.1|5.15.0-97.107~20.04.1|5.15.0-100.110~20.04.1|5.15.0-101.111~20.04.1|5.15.0-102.112~20.04.1|5.15.0-105.115~20.04.1|5.15.0-106.116~20.04.1|5.15.0-107.117~20.04.1|5.15.0-110.120~20.04.1|5.15.0-113.123~20.04.1|5.15.0-116.126~20.04.1|5.15.0-117.127~20.04.1|5.15.0-118.128~20.04.1|5.15.0-119.129~20.04.1|5.15.0-121.131~20.04.1|5.15.0-122.132~20.04.1|5.15.0-124.134~20.04.1|5.15.0-125.135~20.04.1|5.15.0-126.136~20.04.1|5.15.0-127.137~20.04.1|5.15.0-128.138~20.04.1|5.15.0-129.139~20.04.1|5.15.0-131.141~20.04.1|5.15.0-133.143~20.04.1|5.15.0-134.145~20.04.1|5.15.0-135.146~20.04.1|5.15.0-136.147~20.04.1|5.15.0-138.148~20.04.1|5.15.0-139.149~20.04.1|5.15.0-140.150~20.04.1|5.15.0-142.152~20.04.1|5.15.0-143.153~20.04.1|5.15.0-144.157~20.04.1|5.15.0-145.158~20.04.1|5.15.0-152.162~20.04.1|5.15.0-153.163~20.04.1|5.15.0-156.166~20.04.1|5.15.0-157.167~20.04.1|5.15.0-160.170~20.04.1|5.15.0-161.171~20.04.1|5.15.0-163.173~20.04.1|5.15.0-164.174~20.04.1|5.15.0-168.178~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-tegra-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1009.9~20.04.1|5.15.0-1010.10~20.04.1|5.15.0-1012.12~20.04.1|5.15.0-1014.14~20.04.1|5.15.0-1015.15~20.04.1|5.15.0-1016.16~20.04.1|5.15.0-1017.17~20.04.1|5.15.0-1018.18~20.04.1|5.15.0-1019.19~20.04.1|5.15.0-1020.20~20.04.1|5.15.0-1022.22~20.04.1|5.15.0-1025.25~20.04.1|5.15.0-1027.27~20.04.1|5.15.0-1030.30~20.04.1|5.15.0-1032.32~20.04.1|5.15.0-1039.39~20.04.1|5.15.0-1040.40~20.04.1|5.15.0-1041.41~20.04.1|5.15.0-1042.42~20.04.1|5.15.0-1043.43~20.04.1|5.15.0-1044.44~20.04.1|5.15.0-1045.45~20.04.1|5.15.0-1046.46~20.04.1|5.15.0-1047.47~20.04.1|5.15.0-1048.48~20.04.1|5.15.0-1049.49~20.04.1|5.15.0-1050.50~20.04.1|5.15.0-1051.51~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-5.10", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.10.0-1008.9|5.10.0-1011.12|5.10.0-1013.14|5.10.0-1014.15|5.10.0-1016.17|5.10.0-1017.18|5.10.0-1019.20|5.10.0-1021.22|5.10.0-1022.23|5.10.0-1023.24|5.10.0-1025.26|5.10.0-1026.27|5.10.0-1029.30|5.10.0-1032.33|5.10.0-1033.34|5.10.0-1034.35|5.10.0-1038.40|5.10.0-1044.46|5.10.0-1045.47|5.10.0-1049.51|5.10.0-1050.52|5.10.0-1051.53|5.10.0-1052.54|5.10.0-1053.55|5.10.0-1055.58|5.10.0-1057.61", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1009.10|5.13.0-1010.11|5.13.0-1012.16|5.13.0-1014.18|5.13.0-1017.21|5.13.0-1019.23|5.13.0-1020.24|5.13.0-1021.25|5.13.0-1022.26|5.13.0-1026.32|5.13.0-1028.35|5.13.0-1029.36", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-5.14", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.14.0-1004.4|5.14.0-1005.5|5.14.0-1007.7|5.14.0-1008.8|5.14.0-1010.10|5.14.0-1011.11|5.14.0-1013.13|5.14.0-1018.19|5.14.0-1020.22|5.14.0-1022.24|5.14.0-1024.26|5.14.0-1027.30|5.14.0-1029.32|5.14.0-1031.34|5.14.0-1032.35|5.14.0-1033.36|5.14.0-1034.37|5.14.0-1036.40|5.14.0-1038.42|5.14.0-1042.47|5.14.0-1044.49|5.14.0-1045.51|5.14.0-1046.53|5.14.0-1047.54|5.14.0-1048.55|5.14.0-1049.56|5.14.0-1050.57|5.14.0-1051.58|5.14.0-1052.59|5.14.0-1054.61|5.14.0-1055.62|5.14.0-1056.63|5.14.0-1057.64|5.14.0-1058.66|5.14.0-1059.67", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-5.6", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.6.0-1007.7|5.6.0-1008.8|5.6.0-1010.10|5.6.0-1011.11|5.6.0-1013.13|5.6.0-1017.17|5.6.0-1018.18|5.6.0-1020.20|5.6.0-1021.21|5.6.0-1023.23|5.6.0-1026.26|5.6.0-1027.27|5.6.0-1028.28|5.6.0-1031.32|5.6.0-1032.33|5.6.0-1033.35|5.6.0-1034.36|5.6.0-1035.37|5.6.0-1036.39|5.6.0-1039.43|5.6.0-1042.46|5.6.0-1047.51|5.6.0-1048.52|5.6.0-1050.54|5.6.0-1052.56|5.6.0-1053.57|5.6.0-1054.58|5.6.0-1055.59|5.6.0-1056.60", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1002.2|5.3.0-1007.8|5.3.0-1008.9|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1019.19|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.31|5.4.0-1030.32|5.4.0-1032.34|5.4.0-1034.36|5.4.0-1035.38|5.4.0-1037.40|5.4.0-1038.41|5.4.0-1039.42|5.4.0-1041.44|5.4.0-1042.45|5.4.0-1043.46|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1048.52|5.4.0-1049.53|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1054.58|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1058.62|5.4.0-1059.63|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1063.67|5.4.0-1064.68|5.4.0-1066.71|5.4.0-1067.72|5.4.0-1069.75|5.4.0-1070.76|5.4.0-1071.77|5.4.0-1073.79|5.4.0-1076.83|5.4.0-1078.86|5.4.0-1079.87|5.4.0-1081.89|5.4.0-1082.90|5.4.0-1083.91|5.4.0-1084.92|5.4.0-1086.95|5.4.0-1087.96|5.4.0-1090.99|5.4.0-1091.100|5.4.0-1092.101|5.4.0-1093.102|5.4.0-1094.103|5.4.0-1097.106|5.4.0-1098.107|5.4.0-1099.108|5.4.0-1100.109|5.4.0-1101.110|5.4.0-1102.111|5.4.0-1103.112|5.4.0-1104.113|5.4.0-1105.114|5.4.0-1106.115|5.4.0-1107.116|5.4.0-1108.117|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.122|5.4.0-1115.124|5.4.0-1116.125|5.4.0-1117.126|5.4.0-1118.127|5.4.0-1119.128|5.4.0-1120.129|5.4.0-1121.130|5.4.0-1122.131|5.4.0-1123.132|5.4.0-1124.133|5.4.0-1125.134|5.4.0-1126.135|5.4.0-1127.136|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1140.150|5.4.0-1141.151|5.4.0-1142.152|5.4.0-1143.153|5.4.0-1144.154|5.4.0-1145.155|5.4.0-1146.156|5.4.0-1147.157|5.4.0-1149.159|5.4.0-1150.160|5.4.0-1151.161", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-1008.8~20.04.1|5.11.0-1013.14~20.04.1|5.11.0-1016.17~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.13", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1011.13~20.04.2|5.13.0-1015.19~20.04.1|5.13.0-1016.20~20.04.1|5.13.0-1018.22~20.04.1|5.13.0-1021.26~20.04.1|5.13.0-1025.30~20.04.1|5.13.0-1027.32~20.04.1|5.13.0-1028.33~20.04.1|5.13.0-1030.35~20.04.1|5.13.0-1033.39~20.04.1|5.13.0-1034.40~20.04.1|5.13.0-1036.43~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1019.20~22.04.1|5.19.0-1020.21~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1024.25~22.04.1|5.19.0-1025.26~22.04.1|5.19.0-1026.27~22.04.1|5.19.0-1027.28~22.04.1|5.19.0-1028.29~22.04.1|5.19.0-1029.30~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1005.5~22.04.1|6.2.0-1006.6~22.04.1|6.2.0-1007.7~22.04.1|6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.3|6.2.0-1010.10~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-preview/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1048.56+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1007.9~20.04.1|5.15.0-1013.17~20.04.1|5.15.0-1016.20~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1021.27~20.04.1|5.15.0-1022.28~20.04.1|5.15.0-1025.31~20.04.2|5.15.0-1027.33~20.04.1|5.15.0-1029.35~20.04.1|5.15.0-1030.36~20.04.1|5.15.0-1032.38~20.04.1|5.15.0-1033.39~20.04.1|5.15.0-1034.40~20.04.1|5.15.0-1035.41~20.04.1|5.15.0-1036.42~20.04.1|5.15.0-1037.43~20.04.1|5.15.0-1038.44~20.04.1|5.15.0-1039.45~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1041.47~20.04.1|5.15.0-1042.48~20.04.1|5.15.0-1044.50~20.04.1|5.15.0-1045.51~20.04.1|5.15.0-1046.52~20.04.1|5.15.0-1047.53~20.04.1|5.15.0-1048.54~20.04.1|5.15.0-1049.55~20.04.1|5.15.0-1050.56~20.04.1|5.15.0-1051.57~20.04.1|5.15.0-1052.58~20.04.1|5.15.0-1053.59~20.04.1|5.15.0-1054.60~20.04.1|5.15.0-1055.61~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1059.65~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1068.74~20.04.1|5.15.0-1069.75~20.04.1|5.15.0-1070.76~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.1|5.15.0-1074.80~20.04.1|5.15.0-1075.81~20.04.1|5.15.0-1076.82~20.04.1|5.15.0-1077.83~20.04.1|5.15.0-1078.84~20.04.1|5.15.0-1079.85~20.04.1|5.15.0-1080.86~20.04.1|5.15.0-1081.87~20.04.1|5.15.0-1083.89~20.04.1|5.15.0-1084.90~20.04.1|5.15.0-1085.91~20.04.3|5.15.0-1086.92~20.04.1|5.15.0-1088.94~20.04.1|5.15.0-1090.96~20.04.1|5.15.0-1091.97~20.04.1|5.15.0-1092.98~20.04.1|5.15.0-1093.99~20.04.1|5.15.0-1094.100~20.04.1|5.15.0-1095.101~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-1031.32~20.04.2|5.8.0-1033.34~20.04.1|5.8.0-1034.35~20.04.2|5.8.0-1037.38~20.04.1|5.8.0-1038.39~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1007.7|5.4.0-1008.8|5.4.0-1011.11|5.4.0-1012.12|5.4.0-1013.13|5.4.0-1015.15|5.4.0-1016.17|5.4.0-1018.20|5.4.0-1019.21|5.4.0-1021.24|5.4.0-1022.25|5.4.0-1023.26|5.4.0-1025.28|5.4.0-1026.29|5.4.0-1028.31|5.4.0-1029.32|5.4.0-1030.33|5.4.0-1032.35|5.4.0-1033.36|5.4.0-1034.37|5.4.0-1035.38|5.4.0-1036.39|5.4.0-1038.41|5.4.0-1041.45|5.4.0-1042.46|5.4.0-1043.47|5.4.0-1044.48|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1047.52|5.4.0-1048.53|5.4.0-1050.56|5.4.0-1052.58|5.4.0-1053.60|5.4.0-1055.62|5.4.0-1056.63|5.4.0-1058.65|5.4.0-1059.67|5.4.0-1060.68|5.4.0-1062.70|5.4.0-1065.75|5.4.0-1066.76|5.4.0-1068.78|5.4.0-1069.79|5.4.0-1070.80|5.4.0-1071.81|5.4.0-1073.84|5.4.0-1074.85|5.4.0-1077.88|5.4.0-1078.89|5.4.0-1079.90|5.4.0-1080.91|5.4.0-1081.92|5.4.0-1082.93|5.4.0-1083.94|5.4.0-1084.95|5.4.0-1085.96|5.4.0-1086.97|5.4.0-1088.99|5.4.0-1089.100|5.4.0-1090.101|5.4.0-1091.102|5.4.0-1092.103|5.4.0-1093.104|5.4.0-1094.105|5.4.0-1095.106|5.4.0-1096.107|5.4.0-1097.109|5.4.0-1098.110|5.4.0-1100.112|5.4.0-1101.113|5.4.0-1102.114|5.4.0-1103.115|5.4.0-1104.116|5.4.0-1105.117|5.4.0-1106.118|5.4.0-1107.119|5.4.0-1108.120|5.4.0-1109.121|5.4.0-1110.122|5.4.0-1111.123|5.4.0-1112.124|5.4.0-1113.125|5.4.0-1114.126|5.4.0-1115.127|5.4.0-1116.128|5.4.0-1117.129|5.4.0-1118.130|5.4.0-1119.131|5.4.0-1120.132|5.4.0-1121.133|5.4.0-1122.134|5.4.0-1129.142|5.4.0-1130.143|5.4.0-1131.144|5.4.0-1132.145|5.4.0-1133.146|5.4.0-1134.147|5.4.0-1135.148|5.4.0-1136.149", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi2", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.3.0-1007.8|5.3.0-1014.16|5.3.0-1015.17|5.3.0-1017.19|5.4.0-1004.4|5.4.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-24.28|5.4.0-26.30|5.4.0-27.31|5.4.0-28.32|5.4.0-30.34|5.4.0-31.35|5.4.0-33.37|5.4.0-34.38|5.4.0-36.41|5.4.0-37.42|5.4.0-39.44|5.4.0-40.45", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-5.11", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.11.0-1015.16~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1018.19~20.04.2|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1024.25~20.04.1|5.11.0-1026.28~20.04.1|5.11.0-1028.31~20.04.1|5.11.0-1029.32~20.04.1|5.11.0-1030.34|5.11.0-1031.35", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-5.15", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1015.17~20.04.1|5.15.0-1017.19~20.04.1|5.15.0-1018.21~20.04.1|5.15.0-1019.22~20.04.1|5.15.0-1022.26~20.04.1|5.15.0-1023.27~20.04.1|5.15.0-1026.30~20.04.2|5.15.0-1027.31~20.04.1|5.15.0-1028.32~20.04.1|5.15.0-1029.33~20.04.1|5.15.0-1030.34~20.04.1|5.15.0-1031.35~20.04.1|5.15.0-1032.36~20.04.1|5.15.0-1033.37~20.04.1|5.15.0-1034.38~20.04.1|5.15.0-1035.39~20.04.1|5.15.0-1036.40~20.04.2|5.15.0-1037.41~20.04.2|5.15.0-1038.42~20.04.2|5.15.0-1039.43~20.04.2|5.15.0-1040.44~20.04.3|5.15.0-1041.45~20.04.1|5.15.0-1043.47~20.04.1|5.15.0-1044.48~20.04.1|5.15.0-1045.49~20.04.1|5.15.0-1046.50~20.04.1|5.15.0-1047.51~20.04.1|5.15.0-1048.52~20.04.1|5.15.0-1049.53~20.04.2|5.15.0-1050.54~20.04.1|5.15.0-1051.55~20.04.1|5.15.0-1052.56~20.04.1|5.15.0-1053.57~20.04.1|5.15.0-1056.60~20.04.1|5.15.0-1057.61~20.04.1|5.15.0-1058.62~20.04.1|5.15.0-1059.63~20.04.1|5.15.0-1060.64~20.04.1|5.15.0-1061.65~20.04.1|5.15.0-1062.66~20.04.1|5.15.0-1063.67~20.04.1|5.15.0-1064.68~20.04.1|5.15.0-1065.69~20.04.1|5.15.0-1066.70~20.04.1|5.15.0-1067.71~20.04.1|5.15.0-1068.72~20.04.1|5.15.0-1069.73~20.04.1|5.15.0-1070.74~20.04.1|5.15.0-1071.75~20.04.1|5.15.0-1072.76~20.04.1|5.15.0-1073.77~20.04.1|5.15.0-1074.78~20.04.1|5.15.0-1075.79~20.04.1|5.15.0-1076.80~20.04.1|5.15.0-1077.81~20.04.1|5.15.0-1078.82~20.04.1|5.15.0-1079.83~20.04.1|5.15.0-1081.85~20.04.1|5.15.0-1082.86~20.04.1|5.15.0-1083.87~20.04.1|5.15.0-1084.88~20.04.1|5.15.0-1085.89~20.04.1|5.15.0-1086.90~20.04.1|5.15.0-1087.91~20.04.1|5.15.0-1088.92~20.04.1|5.15.0-1090.94~20.04.1|5.15.0-1091.95~20.04.1|5.15.0-1092.96~20.04.1|5.15.0-1093.97~20.04.2|5.15.0-1094.98~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-5.8", + "version": "", + "qualifiers": "arch=source&distro=focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.8.0-14.16~20.04.1|5.8.0-14.16~20.04.3|5.8.0-16.18~20.04.1|5.8.0-17.19~20.04.1|5.8.0-18.20~20.04.1|5.8.0-20.22~20.04.1|5.8.0-22.24~20.04.1|5.8.0-25.27~20.04.1|5.8.0-26.28~20.04.1|5.8.0-29.31~20.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-xilinx-zynqmp", + "version": "", + "qualifiers": "arch=source&distro=esm-infra/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1020.24|5.4.0-1021.25|5.4.0-1022.26|5.4.0-1023.27|5.4.0-1024.28|5.4.0-1025.29|5.4.0-1026.30|5.4.0-1027.31|5.4.0-1028.32|5.4.0-1029.33|5.4.0-1030.34|5.4.0-1031.35|5.4.0-1032.36|5.4.0-1033.37|5.4.0-1034.38|5.4.0-1035.39|5.4.0-1036.40|5.4.0-1037.41|5.4.0-1038.42|5.4.0-1039.43|5.4.0-1040.44|5.4.0-1041.45|5.4.0-1042.46|5.4.0-1043.47|5.4.0-1044.48|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1047.51|5.4.0-1048.52|5.4.0-1049.53|5.4.0-1050.54|5.4.0-1051.55|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1054.58|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1058.62|5.4.0-1060.64|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1066.70|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1070.74|5.4.0-1071.75", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1008.8~22.04.1|6.5.0-1010.10~22.04.1|6.5.0-1011.11~22.04.1|6.5.0-1012.12~22.04.1|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.2|6.5.0-1018.18~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1021.21~22.04.1|6.5.0-1022.22~22.04.1|6.5.0-1023.23~22.04.1|6.5.0-1024.24~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-1002.2|6.11.0-1003.3|6.11.0-1007.7|6.11.0-1010.10|6.11.0-1011.11|6.11.0-1012.12|6.11.0-1013.13|6.11.0-1016.16", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1006.6|6.14.0-1009.9+25.10.1|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1021.21+fips2|5.4.0-1069.73+fips2|5.4.0-1071.76+fips1|5.4.0-1072.77+fips1|5.4.0-1073.78+fips1|5.4.0-1078.84+fips1|5.4.0-1080.87+fips1|5.4.0-1081.88+fips1|5.4.0-1083.90+fips1|5.4.0-1085.92+fips1|5.4.0-1086.93+fips1|5.4.0-1088.96+fips1|5.4.0-1089.97+fips1|5.4.0-1092.100+fips1|5.4.0-1093.101+fips1|5.4.0-1094.102+fips1|5.4.0-1096.104+fips1|5.4.0-1099.107+fips1|5.4.0-1100.108+fips1|5.4.0-1101.109+fips1|5.4.0-1102.110+fips1|5.4.0-1103.111+fips1|5.4.0-1104.112+fips1|5.4.0-1105.113+fips1|5.4.0-1106.114+fips1|5.4.0-1107.115+fips1|5.4.0-1108.116+fips1|5.4.0-1109.118+fips1|5.4.0-1110.119+fips1|5.4.0-1111.120+fips1|5.4.0-1112.121+fips1|5.4.0-1113.123+fips1|5.4.0-1114.124+fips1|5.4.0-1116.126+fips1|5.4.0-1117.127+fips1|5.4.0-1118.128+fips1|5.4.0-1119.129+fips1|5.4.0-1120.130+fips1|5.4.0-1121.131+fips1|5.4.0-1122.132+fips1|5.4.0-1123.133+fips1|5.4.0-1124.134+fips1|5.4.0-1125.135+fips1|5.4.0-1126.136+fips2|5.4.0-1127.137+fips1|5.4.0-1128.138+fips1|5.4.0-1129.139+fips1|5.4.0-1130.140+fips1|5.4.0-1131.141+fips1|5.4.0-1132.142+fips1|5.4.0-1133.143+fips1|5.4.0-1134.144+fips1|5.4.0-1135.145+fips1|5.4.0-1136.146+fips1|5.4.0-1137.147+fips1|5.4.0-1139.149+fips1|5.4.0-1140.151+fips1|5.4.0-1142.153+fips1|5.4.0-1144.155+fips1|5.4.0-1145.156+fips1|5.4.0-1146.156+fips1|5.4.0-1147.157+fips1|5.4.0-1148.158+fips1|5.4.0-1149.159+fips1|5.4.0-1150.160+fips1|5.4.0-1151.161+fips1|5.4.0-1152.162+fips1|5.4.0-1153.163+fips1|5.4.0-1154.164+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1022.22+fips1|5.4.0-1073.76+fips1|5.4.0-1074.77+fips1|5.4.0-1076.79+fips1|5.4.0-1078.81+fips1|5.4.0-1080.83+fips1|5.4.0-1083.87+fips1|5.4.0-1085.90+fips1|5.4.0-1086.91+fips1|5.4.0-1089.94+fips1|5.4.0-1090.95+fips1|5.4.0-1091.96+fips1|5.4.0-1094.100+fips1|5.4.0-1095.101+fips1|5.4.0-1098.104+fips1|5.4.0-1100.106+fips1|5.4.0-1101.107+fips1|5.4.0-1103.109+fips1|5.4.0-1104.110+fips1|5.4.0-1105.111+fips1|5.4.0-1106.112+fips1|5.4.0-1107.113+fips1|5.4.0-1108.114+fips1|5.4.0-1109.115+fips1|5.4.0-1110.116+fips1|5.4.0-1111.117+fips1|5.4.0-1112.118+fips1|5.4.0-1113.119+fips1|5.4.0-1114.120+fips1|5.4.0-1115.122+fips1|5.4.0-1116.123+fips1|5.4.0-1117.124+fips1|5.4.0-1118.125+fips1|5.4.0-1119.126+fips1|5.4.0-1121.128+fips1|5.4.0-1122.129+fips1|5.4.0-1123.130+fips1|5.4.0-1124.131+fips1|5.4.0-1126.133+fips1|5.4.0-1127.134+fips1|5.4.0-1128.135+fips1|5.4.0-1129.136+fips1|5.4.0-1130.137+fips1|5.4.0-1131.138+fips1|5.4.0-1132.139+fips1|5.4.0-1133.140+fips1|5.4.0-1134.141+fips1|5.4.0-1135.142+fips1|5.4.0-1136.143+fips1|5.4.0-1137.144+fips1|5.4.0-1138.145+fips1|5.4.0-1139.146+fips1|5.4.0-1140.147+fips1|5.4.0-1142.149+fips1|5.4.0-1143.150+fips1|5.4.0-1145.152+fips1|5.4.0-1147.154+fips1|5.4.0-1148.156+fips1|5.4.0-1149.157+fips1|5.4.0-1151.158+fips1|5.4.0-1152.159+fips1|5.4.0-1153.160+fips1|5.4.0-1154.161+fips1|5.4.0-1155.162+fips1|5.4.0-1157.164+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1026.30|5.4.0-1028.32|5.4.0-1031.36|5.4.0-1032.37|5.4.0-1033.38|5.4.0-1034.40|5.4.0-1035.41|5.4.0-1036.42|5.4.0-1037.43|5.4.0-1038.44|5.4.0-1040.46|5.4.0-1041.47|5.4.0-1042.48|5.4.0-1043.49|5.4.0-1045.51|5.4.0-1046.52|5.4.0-1047.53|5.4.0-1048.54|5.4.0-1049.55|5.4.0-1051.57|5.4.0-1054.61|5.4.0-1056.64|5.4.0-1057.65|5.4.0-1059.67|5.4.0-1060.68|5.4.0-1061.69|5.4.0-1062.70|5.4.0-1064.73|5.4.0-1065.74|5.4.0-1068.77|5.4.0-1069.78|5.4.0-1070.79|5.4.0-1072.81|5.4.0-1073.82|5.4.0-1074.83|5.4.0-1075.84|5.4.0-1076.85|5.4.0-1077.86|5.4.0-1078.87|5.4.0-1079.88|5.4.0-1080.89|5.4.0-1081.90|5.4.0-1082.91|5.4.0-1083.92|5.4.0-1084.93|5.4.0-1085.94|5.4.0-1086.95|5.4.0-1087.96|5.4.0-1088.97|5.4.0-1089.98|5.4.0-1090.100|5.4.0-1091.101|5.4.0-1092.102|5.4.0-1094.104|5.4.0-1095.105|5.4.0-1096.106|5.4.0-1097.107|5.4.0-1098.108|5.4.0-1099.109|5.4.0-1100.110|5.4.0-1101.111|5.4.0-1102.112|5.4.0-1103.113|5.4.0-1104.114|5.4.0-1105.115|5.4.0-1106.116|5.4.0-1107.117|5.4.0-1108.118|5.4.0-1109.119|5.4.0-1110.120|5.4.0-1111.121|5.4.0-1112.122|5.4.0-1116.126|5.4.0-1117.127|5.4.0-1118.128|5.4.0-1119.129|5.4.0-1120.130|5.4.0-1121.131|5.4.0-1122.132|5.4.0-1123.133|5.4.0-1124.134|5.4.0-1125.135|5.4.0-1126.136|5.4.0-1127.137|5.4.0-1128.138", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1021.21+fips1|5.4.0-1067.71~20.04.1|5.4.0-1069.73+fips2|5.4.0-1071.75+fips1|5.4.0-1073.78+fips1|5.4.0-1075.80+fips1|5.4.0-1078.84+fips1|5.4.0-1080.87+fips1|5.4.0-1081.88+fips1|5.4.0-1086.94+fips1|5.4.0-1087.95+fips1|5.4.0-1089.97+fips1|5.4.0-1092.101+fips1|5.4.0-1093.102+fips1|5.4.0-1096.105+fips1|5.4.0-1097.106+fips1|5.4.0-1098.107+fips1|5.4.0-1100.109+fips1|5.4.0-1101.110+fips1|5.4.0-1102.111+fips1|5.4.0-1103.112+fips1|5.4.0-1104.113+fips1|5.4.0-1105.114+fips1|5.4.0-1106.115+fips1|5.4.0-1107.116+fips1|5.4.0-1108.117+fips1|5.4.0-1109.118+fips1|5.4.0-1110.119+fips1|5.4.0-1111.120+fips1|5.4.0-1112.121+fips1|5.4.0-1113.122+fips1|5.4.0-1115.124+fips1|5.4.0-1116.125+fips1|5.4.0-1117.126+fips1|5.4.0-1118.127+fips1|5.4.0-1120.129+fips1|5.4.0-1121.130+fips1|5.4.0-1122.131+fips1|5.4.0-1124.133+fips1|5.4.0-1125.134+fips1|5.4.0-1126.135+fips1|5.4.0-1127.136+fips1|5.4.0-1128.137+fips1|5.4.0-1129.138+fips1|5.4.0-1130.139+fips1|5.4.0-1131.140+fips1|5.4.0-1132.141+fips1|5.4.0-1133.142+fips1|5.4.0-1134.143+fips1|5.4.0-1135.144+fips1|5.4.0-1136.145+fips1|5.4.0-1137.146+fips1|5.4.0-1138.147+fips1|5.4.0-1139.148+fips1|5.4.0-1140.149+fips1|5.4.0-1141.150+fips1|5.4.0-1142.151+fips1|5.4.0-1143.152+fips1|5.4.0-1145.154+fips1|5.4.0-1146.155+fips1|5.4.0-1147.156+fips1|5.4.0-1148.157+fips1|5.4.0-1149.158+fips1|5.4.0-1150.159+fips1|5.4.0-1151.160+fips1|5.4.0-1152.161+fips1|5.4.0-1153.162+fips1|5.4.0-1154.163+fips1|5.4.0-1155.164+fips1|5.4.0-1156.165+fips1|5.4.0-1157.166+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1021.21+fips2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1022.22+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1007.8", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips/focal", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.4.0-1021.21+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-19.19|5.15.0-17.17|5.15.0-18.18|5.15.0-22.22|5.15.0-23.23|5.15.0-25.25|5.15.0-27.28|5.15.0-30.31|5.15.0-33.34|5.15.0-35.36|5.15.0-37.39|5.15.0-39.42|5.15.0-40.43|5.15.0-41.44|5.15.0-43.46|5.15.0-46.49|5.15.0-47.51|5.15.0-48.54|5.15.0-50.56|5.15.0-52.58|5.15.0-53.59|5.15.0-56.62|5.15.0-57.63|5.15.0-58.64|5.15.0-60.66|5.15.0-67.74|5.15.0-69.76|5.15.0-70.77|5.15.0-71.78|5.15.0-72.79|5.15.0-73.80|5.15.0-75.82|5.15.0-76.83|5.15.0-78.85|5.15.0-79.86|5.15.0-82.91|5.15.0-83.92|5.15.0-84.93|5.15.0-86.96|5.15.0-87.97|5.15.0-88.98|5.15.0-89.99|5.15.0-91.101|5.15.0-92.102|5.15.0-94.104|5.15.0-97.107|5.15.0-100.110|5.15.0-101.111|5.15.0-102.112|5.15.0-105.115|5.15.0-106.116|5.15.0-107.117|5.15.0-112.122|5.15.0-113.123|5.15.0-116.126|5.15.0-117.127|5.15.0-118.128|5.15.0-119.129|5.15.0-121.131|5.15.0-122.132|5.15.0-124.134|5.15.0-125.135|5.15.0-126.136|5.15.0-127.137|5.15.0-128.138|5.15.0-130.140|5.15.0-131.141|5.15.0-133.144|5.15.0-134.145|5.15.0-135.146|5.15.0-136.147|5.15.0-138.148|5.15.0-139.149|5.15.0-140.150|5.15.0-141.151|5.15.0-142.152|5.15.0-143.153|5.15.0-144.157|5.15.0-151.161|5.15.0-152.162|5.15.0-153.163|5.15.0-156.166|5.15.0-157.167|5.15.0-160.170|5.15.0-161.171|5.15.0-163.173|5.15.0-164.174|5.15.0-168.178", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1006.7|5.15.0-1001.2|5.15.0-1002.3|5.15.0-1003.4|5.15.0-1005.6|5.15.0-1007.8|5.15.0-1008.9|5.15.0-1010.12|5.15.0-1012.15|5.15.0-1013.16|5.15.0-1014.17|5.15.0-1017.20|5.15.0-1019.24|5.15.0-1020.25|5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.29|5.15.0-1024.30|5.15.0-1029.36|5.15.0-1030.37|5.15.0-1031.38|5.15.0-1033.40|5.15.0-1034.41|5.15.0-1035.42|5.15.0-1036.43|5.15.0-1037.44|5.15.0-1038.45|5.15.0-1039.46|5.15.0-1040.47|5.15.0-1041.48|5.15.0-1042.49|5.15.0-1044.51|5.15.0-1045.52|5.15.0-1046.53|5.15.0-1047.54|5.15.0-1049.56|5.15.0-1050.57|5.15.0-1051.59|5.15.0-1052.60|5.15.0-1053.61|5.15.0-1054.62|5.15.0-1056.64|5.15.0-1057.65|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.69|5.15.0-1061.70|5.15.0-1063.72|5.15.0-1064.73|5.15.0-1066.75|5.15.0-1067.76|5.15.0-1068.77|5.15.0-1070.79|5.15.0-1071.80|5.15.0-1072.81|5.15.0-1073.82|5.15.0-1074.83|5.15.0-1075.84|5.15.0-1078.87|5.15.0-1079.88|5.15.0-1081.90|5.15.0-1082.91|5.15.0-1084.93|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1089.98|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1094.103|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107|5.15.0-1099.108|5.15.0-1101.110|5.15.0-1102.111", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1020.21~22.04.1|5.19.0-1021.22~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1025.28~22.04.1|5.19.0-1026.29~22.04.1|5.19.0-1027.30~22.04.2", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1005.5~22.04.1|6.2.0-1006.6~22.04.1|6.2.0-1007.7~22.04.1|6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.3|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1|6.2.0-1019.19~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1007.7~22.04.1|6.5.0-1009.9~22.04.1|6.5.0-1010.10~22.04.1|6.5.0-1011.11~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.1|6.5.0-1018.19~22.04.2|6.5.0-1019.20~22.04.1|6.5.0-1021.22~22.04.1|6.5.0-1022.23~22.04.1|6.5.0-1023.24~22.04.1|6.5.0-1024.25~22.04.1|6.5.0-1025.26~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1009.9~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1012.14~22.04.1|6.8.0-1013.15~22.04.1|6.8.0-1014.16~22.04.1|6.8.0-1015.17~22.04.2|6.8.0-1017.20~22.04.1|6.8.0-1018.21~22.04.1|6.8.0-1020.23~22.04.1|6.8.0-1021.25~22.04.1|6.8.0-1025.30~22.04.1|6.8.0-1026.31~22.04.1|6.8.0-1027.32~22.04.1|6.8.0-1028.33~22.04.1|6.8.0-1029.34~22.04.1|6.8.0-1030.35~22.04.1|6.8.0-1031.36~22.04.1|6.8.0-1034.39~22.04.1|6.8.0-1036.42~22.04.1|6.8.0-1040.46~22.04.1|6.8.0-1041.47~22.04.1|6.8.0-1044.50~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1019.24.1|5.15.0-1024.30.1|5.15.0-1029.36.1|5.15.0-1030.37.1|5.15.0-1031.38.1|5.15.0-1033.40.1|5.15.0-1034.41.1|5.15.0-1035.42.1|5.15.0-1036.43.1|5.15.0-1037.44.1|5.15.0-1038.45.1|5.15.0-1039.46.1|5.15.0-1041.48.1|5.15.0-1042.49.1|5.15.0-1044.51.1|5.15.0-1045.52.1|5.15.0-1046.53.1|5.15.0-1047.54.1|5.15.0-1049.56.1|5.15.0-1050.57.1|5.15.0-1051.59.1|5.15.0-1052.60.1|5.15.0-1053.61.1|5.15.0-1054.62.1|5.15.0-1056.64.1|5.15.0-1057.65.1|5.15.0-1058.66.1|5.15.0-1059.67.1|5.15.0-1060.69.1|5.15.0-1061.70.1|5.15.0-1063.72.1|5.15.0-1064.73.1|5.15.0-1065.74.1|5.15.0-1067.76.1|5.15.0-1068.77.1|5.15.0-1070.79.1|5.15.0-1071.80.1|5.15.0-1072.81.1|5.15.0-1073.82.1|5.15.0-1076.85.1|5.15.0-1078.87.1|5.15.0-1081.90.1|5.15.0-1082.91.1|5.15.0-1084.93.1|5.15.0-1086.95.1|5.15.0-1087.96.1|5.15.0-1088.97.1|5.15.0-1089.98.1|5.15.0-1090.99.1|5.15.0-1091.100.1|5.15.0-1092.101.1|5.15.0-1094.103.1|5.15.0-1095.104.1|5.15.0-1096.105.1|5.15.0-1097.106.1|5.15.0-1098.107.1|5.15.0-1102.111.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1025.28~22.04.1.1|5.19.0-1026.29~22.04.1.1|5.19.0-1027.30~22.04.2.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1008.8~22.04.1.1|6.2.0-1009.9~22.04.3.1|6.2.0-1011.11~22.04.1.1|6.2.0-1012.12~22.04.1.1|6.2.0-1014.14~22.04.1.1|6.2.0-1015.15~22.04.1.1|6.2.0-1016.16~22.04.1.1|6.2.0-1017.17~22.04.1.1|6.2.0-1018.18~22.04.1.1|6.2.0-1019.19~22.04.1.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1041.48~22.04.1|6.8.0-1042.49~22.04.1|6.8.0-1044.51~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1005.6|5.15.0-1001.3|5.15.0-1002.5|5.15.0-1003.6|5.15.0-1004.7|5.15.0-1005.8|5.15.0-1006.9|5.15.0-1008.12|5.15.0-1010.15|5.15.0-1013.18|5.15.0-1016.21|5.15.0-1017.23|5.15.0-1018.24|5.15.0-1019.25|5.15.0-1021.28|5.15.0-1022.29|5.15.0-1025.32|5.15.0-1026.33|5.15.0-1027.34|5.15.0-1029.36|5.15.0-1030.37|5.15.0-1031.38|5.15.0-1032.40|5.15.0-1034.42|5.15.0-1035.43|5.15.0-1036.44|5.15.0-1037.45|5.15.0-1038.46|5.15.0-1039.47|5.15.0-1040.48|5.15.0-1041.49|5.15.0-1042.50|5.15.0-1044.52|5.15.0-1045.53|5.15.0-1046.54|5.15.0-1047.55|5.15.0-1048.56|5.15.0-1049.57|5.15.0-1051.59|5.15.0-1052.60|5.15.0-1053.61|5.15.0-1054.62|5.15.0-1055.63|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.68|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1072.80|5.15.0-1073.81|5.15.0-1074.83|5.15.0-1075.84|5.15.0-1077.86|5.15.0-1078.87|5.15.0-1079.88|5.15.0-1080.89|5.15.0-1081.90|5.15.0-1082.91|5.15.0-1083.92|5.15.0-1084.93|5.15.0-1085.94|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1093.102|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107|5.15.0-1099.108", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1020.22~22.04.2|5.19.0-1021.23~22.04.1|5.19.0-1022.24~22.04.1|5.19.0-1024.26~22.04.1|5.19.0-1025.27~22.04.1|5.19.0-1026.28~22.04.1|5.19.0-1027.29~22.04.1|5.19.0-1030.32~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1009.9~22.04.3|6.2.0-1010.10~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1011.11~22.04.3|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1016.18~22.04.1|6.2.0-1017.19~22.04.1|6.2.0-1018.20~22.04.1|6.2.0-1019.21~22.04.1|6.2.0-1021.23~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1010.10~22.04.3|6.5.0-1011.11~22.04.1|6.5.0-1013.13~22.04.1|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.1|6.5.0-1018.18~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1022.24~22.04.1|6.5.0-1023.25~22.04.1|6.5.0-1024.26~22.04.1|6.5.0-1025.27~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1010.11~22.04.1|6.8.0-1011.12~22.04.1|6.8.0-1012.13~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.16~22.04.1|6.8.0-1015.17~22.04.1|6.8.0-1016.18~22.04.1|6.8.0-1017.19~22.04.1|6.8.0-1018.20~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1024.26~22.04.1|6.8.0-1025.27~22.04.1|6.8.0-1026.28~22.04.1|6.8.0-1027.29~22.04.1|6.8.0-1028.30~22.04.1|6.8.0-1029.31~22.04.1|6.8.0-1030.32~22.04.1|6.8.0-1031.33~22.04.1|6.8.0-1032.34~22.04.1|6.8.0-1033.35~22.04.1|6.8.0-1034.36~22.04.2|6.8.0-1036.38~22.04.1|6.8.0-1037.39~22.04.1|6.8.0-1040.42~22.04.1|6.8.0-1041.43~22.04.1|6.8.0-1042.45~22.04.1|6.8.0-1043.46~22.04.1|6.8.0-1044.47~22.04.1|6.8.0-1045.48~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.5|5.15.0-1005.6|5.15.0-1006.7|5.15.0-1008.10|5.15.0-1010.13|5.15.0-1011.14|5.15.0-1014.17|5.15.0-1015.18|5.15.0-1016.19|5.15.0-1017.20|5.15.0-1019.23|5.15.0-1020.25|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1032.37|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1036.41|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.51|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1054.59|5.15.0-1057.62|5.15.0-1058.63|5.15.0-1059.64|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1087.93|5.15.0-1088.94|5.15.0-1089.95|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100|5.15.0-1095.101", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gkeop", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1001.2|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1004.6|5.15.0-1005.7|5.15.0-1007.10|5.15.0-1008.12|5.15.0-1011.15|5.15.0-1012.16|5.15.0-1013.17|5.15.0-1015.19|5.15.0-1016.21|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1019.24|5.15.0-1020.25|5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.37|5.15.0-1032.38|5.15.0-1033.39|5.15.0-1034.40|5.15.0-1035.41|5.15.0-1036.42|5.15.0-1037.43|5.15.0-1038.44|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1043.50|5.15.0-1044.51|5.15.0-1045.52|5.15.0-1046.53|5.15.0-1047.54|5.15.0-1048.55|5.15.0-1049.56|5.15.0-1050.57|5.15.0-1051.58|5.15.0-1052.59|5.15.0-1053.60|5.15.0-1054.61|5.15.0-1055.62|5.15.0-1056.63|5.15.0-1057.64|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.68|5.15.0-1061.69|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1073.81|5.15.0-1074.82|5.15.0-1075.83|5.15.0-1076.84|5.15.0-1078.86|5.15.0-1079.87|5.15.0-1080.88|5.15.0-1081.89|5.15.0-1082.90", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-28.29~22.04.1|5.19.0-32.33~22.04.1|5.19.0-35.36~22.04.1|5.19.0-38.39~22.04.1|5.19.0-40.41~22.04.1|5.19.0-41.42~22.04.1|5.19.0-42.43~22.04.1|5.19.0-43.44~22.04.1|5.19.0-45.46~22.04.1|5.19.0-46.47~22.04.1|5.19.0-50.50", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-25.25~22.04.2|6.2.0-26.26~22.04.1|6.2.0-31.31~22.04.1|6.2.0-32.32~22.04.1|6.2.0-33.33~22.04.1|6.2.0-34.34~22.04.1|6.2.0-35.35~22.04.1|6.2.0-36.37~22.04.1|6.2.0-37.38~22.04.1|6.2.0-39.40~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-14.14~22.04.1|6.5.0-15.15~22.04.1|6.5.0-17.17~22.04.1|6.5.0-18.18~22.04.1|6.5.0-21.21~22.04.1|6.5.0-25.25~22.04.1|6.5.0-26.26~22.04.1|6.5.0-27.28~22.04.1|6.5.0-28.29~22.04.1|6.5.0-35.35~22.04.1|6.5.0-41.41~22.04.2|6.5.0-44.44~22.04.1|6.5.0-45.45~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-38.38~22.04.1|6.8.0-39.39~22.04.1|6.8.0-40.40~22.04.3|6.8.0-45.45~22.04.1|6.8.0-47.47~22.04.1|6.8.0-48.48~22.04.1|6.8.0-49.49~22.04.1|6.8.0-50.51~22.04.1|6.8.0-51.52~22.04.1|6.8.0-52.53~22.04.1|6.8.0-57.59~22.04.1|6.8.0-58.60~22.04.1|6.8.0-59.61~22.04.1|6.8.0-60.63~22.04.1|6.8.0-64.67~22.04.1|6.8.0-65.68~22.04.1|6.8.0-78.78~22.04.1|6.8.0-79.79~22.04.1|6.8.0-83.83~22.04.1|6.8.0-84.84~22.04.1|6.8.0-85.85~22.04.1|6.8.0-86.87~22.04.1|6.8.0-87.88~22.04.1|6.8.0-88.89~22.04.2|6.8.0-90.91~22.04.1|6.8.0-94.96~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1007.8|5.15.0-1009.11|5.15.0-1010.12|5.15.0-1012.14|5.15.0-1013.15|5.15.0-1015.17|5.15.0-1017.20|5.15.0-1018.21|5.15.0-1021.24|5.15.0-1022.25|5.15.0-1023.26|5.15.0-1025.28|5.15.0-1026.29|5.15.0-1027.30|5.15.0-1028.31|5.15.0-1029.32|5.15.0-1030.33|5.15.0-1031.34|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1035.38|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1040.43|5.15.0-1041.44|5.15.0-1042.45|5.15.0-1043.46|5.15.0-1044.47|5.15.0-1045.48|5.15.0-1046.49|5.15.0-1047.50|5.15.0-1048.51|5.15.0-1049.52|5.15.0-1050.53|5.15.0-1053.56|5.15.0-1054.57|5.15.0-1055.58|5.15.0-1056.59|5.15.0-1057.60|5.15.0-1058.61|5.15.0-1059.62|5.15.0-1060.63|5.15.0-1061.64|5.15.0-1062.65|5.15.0-1063.66|5.15.0-1064.67|5.15.0-1065.68|5.15.0-1066.69|5.15.0-1067.70|5.15.0-1068.71|5.15.0-1069.72|5.15.0-1070.73|5.15.0-1071.74|5.15.0-1072.75|5.15.0-1073.76|5.15.0-1074.77|5.15.0-1075.78|5.15.0-1076.79|5.15.0-1077.80|5.15.0-1078.81|5.15.0-1079.82|5.15.0-1080.83|5.15.0-1081.84|5.15.0-1084.87|5.15.0-1085.88|5.15.0-1086.89|5.15.0-1087.90|5.15.0-1089.92|5.15.0-1090.93|5.15.0-1091.94|5.15.0-1092.95|5.15.0-1093.96", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.13~22.04.1|6.8.0-1014.14~22.04.1|6.8.0-1015.15~22.04.1|6.8.0-1016.16~22.04.1|6.8.0-1017.17~22.04.1|6.8.0-1018.18~22.04.1|6.8.0-1019.19~22.04.1|6.8.0-1023.23~22.04.1|6.8.0-1024.24~22.04.1|6.8.0-1025.25~22.04.1|6.8.0-1026.26~22.04.1|6.8.0-1027.27~22.04.1|6.8.0-1028.28~22.04.1|6.8.0-1029.29~22.04.1|6.8.0-1030.30~22.04.1|6.8.0-1033.33~22.04.1|6.8.0-1036.36~22.04.1|6.8.0-1037.37~22.04.1|6.8.0-1038.38~22.04.1|6.8.0-1039.39~22.04.1|6.8.0-1040.40~22.04.1|6.8.0-1041.41~22.04.1|6.8.0-1042.42~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-iot-realtime", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1073.75", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-iotg", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1004.6|5.15.0-1008.11|5.15.0-1010.14|5.15.0-1013.17|5.15.0-1015.20|5.15.0-1016.21|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1021.26|5.15.0-1023.28|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1036.41|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1043.49|5.15.0-1045.51|5.15.0-1046.52|5.15.0-1047.53|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1055.61|5.15.0-1057.63|5.15.0-1058.64|5.15.0-1059.65|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1074.80|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1087.93|5.15.0-1088.94|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-tegra-igx", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1001.1|5.15.0-1002.2|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1009.9|5.15.0-1012.12|5.15.0-1013.13|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1018.18|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1023.23|5.15.0-1024.24|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1029.29|5.15.0-1030.30|5.15.0-1031.31|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1034.34|5.15.0-1035.35|5.15.0-1036.36|5.15.0-1037.37|5.15.0-1038.38|5.15.0-1039.39", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-kvm", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1002.2|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1010.11|5.15.0-1012.14|5.15.0-1013.16|5.15.0-1016.19|5.15.0-1017.21|5.15.0-1018.22|5.15.0-1019.23|5.15.0-1020.24|5.15.0-1021.26|5.15.0-1024.29|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1028.33|5.15.0-1029.34|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1032.37|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.51|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1054.59|5.15.0-1057.62|5.15.0-1058.63|5.15.0-1059.64|5.15.0-1060.65|5.15.0-1061.66|5.15.0-1062.67|5.15.0-1063.68|5.15.0-1064.69|5.15.0-1065.70|5.15.0-1066.71|5.15.0-1067.72|5.15.0-1068.73|5.15.0-1069.74|5.15.0-1070.75|5.15.0-1071.76|5.15.0-1072.77|5.15.0-1073.78|5.15.0-1076.81|5.15.0-1077.82|5.15.0-1078.83|5.15.0-1079.84|5.15.0-1080.85|5.15.0-1081.86|5.15.0-1082.87|5.15.0-1083.88|5.15.0-1084.89|5.15.0-1085.90|5.15.0-1086.91|5.15.0-1087.92|5.15.0-1088.93|5.15.0-1089.94|5.15.0-1090.95|5.15.0-1091.96", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-22.22|5.15.0-23.23|5.15.0-24.24|5.15.0-27.28|5.15.0-30.31|5.15.0-33.34|5.15.0-35.36|5.15.0-37.39|5.15.0-39.42|5.15.0-40.43|5.15.0-41.44|5.15.0-43.46|5.15.0-46.49|5.15.0-47.53|5.15.0-48.54|5.15.0-50.56|5.15.0-52.58|5.15.0-53.59|5.15.0-56.62|5.15.0-57.63|5.15.0-58.64|5.15.0-60.66|5.15.0-67.74|5.15.0-69.76|5.15.0-70.77|5.15.0-71.78|5.15.0-72.79|5.15.0-73.80|5.15.0-75.82|5.15.0-76.83|5.15.0-78.85|5.15.0-79.88|5.15.0-82.91|5.15.0-83.92|5.15.0-84.93|5.15.0-86.95|5.15.0-87.96|5.15.0-88.98|5.15.0-89.99|5.15.0-91.101|5.15.0-92.102|5.15.0-94.104|5.15.0-97.107|5.15.0-100.110|5.15.0-101.111|5.15.0-102.112|5.15.0-105.115|5.15.0-106.116|5.15.0-107.117|5.15.0-110.120|5.15.0-113.123|5.15.0-116.126|5.15.0-117.127|5.15.0-118.128|5.15.0-119.129|5.15.0-121.131|5.15.0-122.132|5.15.0-124.134|5.15.0-125.135|5.15.0-126.136|5.15.0-127.137|5.15.0-128.138|5.15.0-129.139|5.15.0-131.141|5.15.0-133.143|5.15.0-134.145|5.15.0-135.146|5.15.0-136.147|5.15.0-138.148|5.15.0-139.149|5.15.0-140.150|5.15.0-141.151|5.15.0-142.152|5.15.0-143.153|5.15.0-144.157|5.15.0-145.158|5.15.0-152.162|5.15.0-153.163|5.15.0-156.166|5.15.0-157.167|5.15.0-160.170|5.15.0-161.171|5.15.0-163.173|5.15.0-164.174|5.15.0-168.178", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1017.18~22.04.1|5.19.0-1018.19~22.04.1|5.19.0-1021.22~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1024.25~22.04.1|5.19.0-1025.26~22.04.1|5.19.0-1027.28~22.04.1|5.19.0-1028.29~22.04.1|5.19.0-1030.30", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-14.14.1~22.04.1|6.5.0-15.15.1.1~22.04.1|6.5.0-17.17.1.1.1~22.04.1|6.5.0-21.21.1~22.04.1|6.5.0-25.25.1~22.04.1|6.5.0-26.26.1~22.04.1|6.5.0-27.28.1~22.04.1|6.5.0-28.29.1~22.04.1|6.5.0-35.35.1~22.04.1|6.5.0-41.41.1~22.04.1|6.5.0-42.42.1~22.04.1|6.5.0-44.44.1~22.04.1|6.5.0-45.45.1~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-38.38.1~22.04.2|6.8.0-40.40.1~22.04.1|6.8.0-44.44.1~22.04.1|6.8.0-45.45.1~22.04.1|6.8.0-47.47.1~22.04.1|6.8.0-48.48.3~22.04.1|6.8.0-49.49.1~22.04.1|6.8.0-50.51.1~22.04.1|6.8.0-51.52.1~22.04.1|6.8.0-52.53.1~22.04.1|6.8.0-54.56.1~22.04.1|6.8.0-55.57.1~22.04.1|6.8.0-56.58.1~22.04.1|6.8.0-57.59.1~22.04.1|6.8.0-58.60.1~22.04.1|6.8.0-59.61.1~22.04.1|6.8.0-60.63.1~22.04.1|6.8.0-62.65.1~22.04.1|6.8.0-63.66.1~22.04.1|6.8.0-64.67.1~22.04.1|6.8.0-65.68.1~22.04.1|6.8.0-78.78.1~22.04.1|6.8.0-79.79.1~22.04.1|6.8.0-83.83.1~22.04.1|6.8.0-84.84.1~22.04.1|6.8.0-85.85.1~22.04.1|6.8.0-86.87.1~22.04.1|6.8.0-87.88.1~22.04.1|6.8.0-88.89.1~22.04.1|6.8.0-90.91.1~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1005.5|5.15.0-1007.7|5.15.0-1010.10|5.15.0-1015.15|5.15.0-1017.17|5.15.0-1018.18|5.15.0-1023.23|5.15.0-1025.25|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1029.29|5.15.0-1030.30|5.15.0-1031.31|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1037.37|5.15.0-1039.39|5.15.0-1040.40|5.15.0-1041.41|5.15.0-1042.42|5.15.0-1043.43|5.15.0-1044.44|5.15.0-1045.45|5.15.0-1046.46|5.15.0-1047.47|5.15.0-1048.48|5.15.0-1053.54|5.15.0-1054.55|5.15.0-1055.56|5.15.0-1058.59|5.15.0-1059.60|5.15.0-1060.61|5.15.0-1061.62|5.15.0-1062.63|5.15.0-1063.64|5.15.0-1064.65|5.15.0-1065.66|5.15.0-1066.67|5.15.0-1067.68|5.15.0-1068.69|5.15.0-1069.70|5.15.0-1070.71|5.15.0-1071.72|5.15.0-1072.73|5.15.0-1073.74|5.15.0-1074.75|5.15.0-1075.76|5.15.0-1076.77|5.15.0-1077.78|5.15.0-1078.79|5.15.0-1079.80|5.15.0-1080.81|5.15.0-1081.82|5.15.0-1082.83|5.15.0-1083.84|5.15.0-1085.86|5.15.0-1086.87|5.15.0-1087.88|5.15.0-1088.89|5.15.0-1090.91|5.15.0-1091.92|5.15.0-1092.93|5.15.0-1093.94", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1003.3~22.04.1|6.2.0-1009.9|6.2.0-1010.10|6.2.0-1011.11|6.2.0-1012.12|6.2.0-1013.13|6.2.0-1015.15", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1004.4|6.5.0-1007.7|6.5.0-1013.13|6.5.0-1014.14|6.5.0-1015.15|6.5.0-1018.18|6.5.0-1019.19|6.5.0-1021.22|6.5.0-1022.23|6.5.0-1023.24|6.5.0-1024.25", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1009.9~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.15~22.04.1|6.8.0-1015.16~22.04.1|6.8.0-1017.19~22.04.1|6.8.0-1018.20~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1022.25~22.04.2|6.8.0-1023.26~22.04.1|6.8.0-1024.27~22.04.1|6.8.0-1025.28~22.04.1|6.8.0-1026.29~22.04.1|6.8.0-1027.30~22.04.1|6.8.0-1028.31~22.04.1|6.8.0-1029.32~22.04.1|6.8.0-1030.33~22.04.1|6.8.0-1031.34~22.04.1|6.8.0-1032.35~22.04.1|6.8.0-1035.38~22.04.1|6.8.0-1036.39~22.04.1|6.8.0-1038.41~22.04.1|6.8.0-1039.42~22.04.1|6.8.0-1040.43~22.04.1|6.8.0-1041.44~22.04.2|6.8.0-1042.45~22.04.1|6.8.0-1043.46~22.04.1|6.8.0-1044.47~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-tegra", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1009.9|5.15.0-1010.10|5.15.0-1012.12|5.15.0-1013.13|5.15.0-1014.14|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1017.17|5.15.0-1018.18|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1025.25|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1030.30|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1034.34|5.15.0-1035.35|5.15.0-1036.36|5.15.0-1037.37|5.15.0-1038.38|5.15.0-1039.39|5.15.0-1040.40|5.15.0-1041.41|5.15.0-1042.42|5.15.0-1043.43|5.15.0-1044.44|5.15.0-1045.45|5.15.0-1046.46|5.15.0-1047.47|5.15.0-1048.48|5.15.0-1049.49|5.15.0-1050.50|5.15.0-1051.51", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-5.17", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.17.0-1003.3|5.17.0-1004.4|5.17.0-1006.6|5.17.0-1011.12|5.17.0-1012.13|5.17.0-1013.14|5.17.0-1014.15|5.17.0-1015.16|5.17.0-1016.17|5.17.0-1017.18|5.17.0-1018.19|5.17.0-1019.20|5.17.0-1020.21|5.17.0-1021.22|5.17.0-1024.25|5.17.0-1025.26|5.17.0-1026.27|5.17.0-1027.28|5.17.0-1028.29|5.17.0-1029.30|5.17.0-1030.31|5.17.0-1031.32|5.17.0-1032.33|5.17.0-1033.34|5.17.0-1034.35|5.17.0-1035.36", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1008.10|5.15.0-1001.3|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1006.8|5.15.0-1007.9|5.15.0-1009.12|5.15.0-1011.15|5.15.0-1013.17|5.15.0-1016.20|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1019.24|5.15.0-1021.27|5.15.0-1022.28|5.15.0-1025.31|5.15.0-1026.32|5.15.0-1027.33|5.15.0-1029.35|5.15.0-1030.36|5.15.0-1032.38|5.15.0-1033.39|5.15.0-1034.40|5.15.0-1035.41|5.15.0-1036.42|5.15.0-1037.43|5.15.0-1038.44|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1041.47|5.15.0-1042.48|5.15.0-1044.50|5.15.0-1045.51|5.15.0-1046.52|5.15.0-1047.53|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1053.59|5.15.0-1054.60|5.15.0-1055.61|5.15.0-1058.64|5.15.0-1059.65|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1074.80|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1088.94|5.15.0-1089.95|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100|5.15.0-1095.101|5.15.0-1096.102", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1013.13~22.04.4|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1018.18~22.04.1|6.5.0-1019.19~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1021.21~22.04.1|6.5.0-1023.23~22.04.1|6.5.0-1024.24~22.04.1|6.5.0-1025.25~22.04.1|6.5.0-1026.26~22.04.1|6.5.0-1027.27~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1006.6~22.04.3|6.8.0-1008.8~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.13~22.04.1|6.8.0-1014.14~22.04.1|6.8.0-1015.15~22.04.1|6.8.0-1016.17~22.04.1|6.8.0-1017.18~22.04.1|6.8.0-1018.19~22.04.1|6.8.0-1019.20~22.04.1|6.8.0-1020.21~22.04.1|6.8.0-1021.22~22.04.1|6.8.0-1022.23~22.04.1|6.8.0-1023.24~22.04.1|6.8.0-1024.25~22.04.1|6.8.0-1025.26~22.04.1|6.8.0-1026.27~22.04.1|6.8.0-1027.28~22.04.1|6.8.0-1028.29~22.04.1|6.8.0-1029.30~22.04.1|6.8.0-1030.31~22.04.1|6.8.0-1032.33~22.04.1|6.8.0-1033.34~22.04.1|6.8.0-1035.36~22.04.1|6.8.0-1037.38~22.04.1|6.8.0-1038.39~22.04.1|6.8.0-1039.40~22.04.1|6.8.0-1040.41~22.04.1|6.8.0-1041.42~22.04.1|6.8.0-1042.43~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1008.9|5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1008.8|5.15.0-1011.13|5.15.0-1012.14|5.15.0-1013.15|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.20|5.15.0-1021.23|5.15.0-1022.24|5.15.0-1023.25|5.15.0-1024.26|5.15.0-1025.27|5.15.0-1026.28|5.15.0-1027.29|5.15.0-1028.30|5.15.0-1029.31|5.15.0-1030.32|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1035.38|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1040.43|5.15.0-1041.44|5.15.0-1042.45|5.15.0-1043.46|5.15.0-1044.47|5.15.0-1045.48|5.15.0-1046.49|5.15.0-1047.50|5.15.0-1048.51|5.15.0-1049.52|5.15.0-1050.53|5.15.0-1053.56|5.15.0-1054.57|5.15.0-1055.58|5.15.0-1058.61|5.15.0-1059.62|5.15.0-1060.63|5.15.0-1061.64|5.15.0-1062.65|5.15.0-1063.66|5.15.0-1064.67|5.15.0-1065.68|5.15.0-1066.69|5.15.0-1067.70|5.15.0-1070.73|5.15.0-1071.74|5.15.0-1072.75|5.15.0-1073.76|5.15.0-1074.77|5.15.0-1075.78|5.15.0-1076.79|5.15.0-1077.80|5.15.0-1078.81|5.15.0-1079.82|5.15.0-1080.83|5.15.0-1083.86|5.15.0-1084.87|5.15.0-1085.88|5.15.0-1086.89|5.15.0-1087.90|5.15.0-1089.92|5.15.0-1090.93|5.15.0-1091.94|5.15.0-1092.95|5.15.0-1093.96", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1032.35", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1011.12|5.15.0-1012.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.21|5.15.0-1019.22|5.15.0-1020.23|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1012.13~22.04.1|5.19.0-1015.16~22.04.1|5.19.0-1016.17~22.04.1|5.19.0-1017.18~22.04.1|5.19.0-1018.19~22.04.1|5.19.0-1019.21~22.04.1|5.19.0-1020.22~22.04.1|5.19.0-1021.23~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-17.17.1.1~22.04.1|6.5.0-21.21.1~22.04.1|6.5.0-25.25.1~22.04.1|6.5.0-26.26.1~22.04.1|6.5.0-27.28.1~22.04.1|6.5.0-28.29.1~22.04.1|6.5.0-35.35.1~22.04.1|6.5.0-40.40.1~22.04.1|6.5.0-42.42.1~22.04.1|6.5.0-45.45.1~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-6.8", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-38.38.1~22.04.1|6.8.0-39.39.1~22.04.1|6.8.0-40.40.1~22.04.1|6.8.0-41.41.1~22.04.1|6.8.0-44.44.1~22.04.1|6.8.0-47.47.1~22.04.1|6.8.0-48.48.1~22.04.2|6.8.0-49.49.1~22.04.1|6.8.0-50.51.1~22.04.1|6.8.0-51.52.1~22.04.1|6.8.0-52.53.1~22.04.1|6.8.0-53.55.1~22.04.1|6.8.0-55.57.1~22.04.1|6.8.0-56.58.1~22.04.1|6.8.0-57.59.1~22.04.1|6.8.0-58.60.1~22.04.1|6.8.0-59.61.1~22.04.1|6.8.0-62.65~22.04.1|6.8.0-63.66~22.04.1|6.8.0-64.67~22.04.1|6.8.0-71.71~22.04.1|6.8.0-78.78~22.04.1|6.8.0-79.79~22.04.1|6.8.0-83.83~22.04.1|6.8.0-84.84~22.04.1|6.8.0-86.87~22.04.1|6.8.0-87.88~22.04.1|6.8.0-88.89~22.04.1|6.8.0-90.91~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-starfive-5.19", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.19.0-1014.16~22.04.1|5.19.0-1015.17~22.04.1|5.19.0-1016.18~22.04.1|5.19.0-1017.19~22.04.1|5.19.0-1018.20~22.04.1|5.19.0-1019.21~22.04.1|5.19.0-1020.22~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-starfive-6.2", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.2.0-1006.7~22.04.1|6.2.0-1007.8~22.04.1|6.2.0-1009.10~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-starfive-6.5", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1007.8~22.04.1|6.5.0-1008.9~22.04.1|6.5.0-1009.10~22.04.1|6.5.0-1010.11~22.04.1|6.5.0-1011.12~22.04.1|6.5.0-1012.13~22.04.1|6.5.0-1014.15~22.04.1|6.5.0-1015.16~22.04.1|6.5.0-1016.17~22.04.1|6.5.0-1017.18~22.04.1|6.5.0-1018.19~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-xilinx-zynqmp", + "version": "", + "qualifiers": "arch=source&distro=jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1022.26|5.15.0-1023.27|5.15.0-1025.29|5.15.0-1027.31|5.15.0-1030.34|5.15.0-1031.35|5.15.0-1035.39|5.15.0-1036.40|5.15.0-1037.41|5.15.0-1038.42|5.15.0-1039.43|5.15.0-1041.45|5.15.0-1044.48|5.15.0-1046.50|5.15.0-1050.54|5.15.0-1051.55|5.15.0-1052.56|5.15.0-1053.57|5.15.0-1054.58|5.15.0-1055.59|5.15.0-1056.60|5.15.0-1057.61|5.15.0-1059.63|5.15.0-1060.64|5.15.0-1061.65|5.15.0-1062.66", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-bluefield", + "version": "", + "qualifiers": "arch=source&distro=bluefield/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1011.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1017.19|5.15.0-1019.21|5.15.0-1021.23|5.15.0-1022.24|5.15.0-1023.25|5.15.0-1024.26|5.15.0-1027.29|5.15.0-1028.30|5.15.0-1031.33|5.15.0-1032.34|5.15.0-1033.35|5.15.0-1035.37|5.15.0-1036.38|5.15.0-1037.39|5.15.0-1038.40|5.15.0-1040.42|5.15.0-1042.44|5.15.0-1043.45|5.15.0-1044.46|5.15.0-1045.47|5.15.0-1047.49|5.15.0-1048.50|5.15.0-1050.52|5.15.0-1051.53|5.15.0-1052.54|5.15.0-1053.55|5.15.0-1054.56|5.15.0-1056.58|5.15.0-1057.59|5.15.0-1058.60|5.15.0-1059.61|5.15.0-1060.62|5.15.0-1061.63|5.15.0-1062.64|5.15.0-1063.65|5.15.0-1064.66|5.15.0-1065.67|5.15.0-1066.68|5.15.0-1067.69|5.15.0-1069.71|5.15.0-1070.72|5.15.0-1072.74|5.15.0-1074.76|5.15.0-1075.77|5.15.0-1076.78|5.15.0-1077.79|5.15.0-1079.81|5.15.0-1080.82|5.15.0-1081.83|5.15.0-1082.84", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1051.56+fips1|5.15.0-1052.57+fips1|5.15.0-1053.58+fips1|5.15.0-1055.60+fips1|5.15.0-1056.61+fips1|5.15.0-1057.63+fips1|5.15.0-1060.66+fips1|5.15.0-1061.67+fips1|5.15.0-1062.68+fips1|5.15.0-1063.69+fips1|5.15.0-1064.70+fips1|5.15.0-1065.71+fips1|5.15.0-1066.72+fips1|5.15.0-1067.73+fips1|5.15.0-1068.74+fips1|5.15.0-1069.75+fips1|5.15.0-1070.76+fips1|5.15.0-1071.77+fips1|5.15.0-1072.78+fips1|5.15.0-1073.79+fips1|5.15.0-1076.83+fips1|5.15.0-1077.84+fips1|5.15.0-1078.85+fips1|5.15.0-1079.86+fips1|5.15.0-1080.87+fips1|5.15.0-1081.88+fips1|5.15.0-1082.89+fips1|5.15.0-1083.90+fips1|5.15.0-1084.91+fips1|5.15.0-1085.92+fips1|5.15.0-1086.93+fips1|5.15.0-1087.94+fips1|5.15.0-1088.95+fips1|5.15.0-1089.96+fips1|5.15.0-1090.97+fips1|5.15.0-1091.98+fips1|5.15.0-1092.99+fips1|5.15.0-1093.100+fips1|5.15.0-1095.102+fips1|5.15.0-1096.103+fips1|5.15.0-1097.104+fips1|5.15.0-1098.105+fips1|5.15.0-1099.106+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1053.61+fips1|5.15.0-1058.66+fips1|5.15.0-1059.67+fips1|5.15.0-1060.69+fips1|5.15.0-1061.70+fips1|5.15.0-1063.72+fips1|5.15.0-1064.73+fips1|5.15.0-1065.74+fips1|5.15.0-1067.76+fips1|5.15.0-1068.77+fips1|5.15.0-1070.79+fips1|5.15.0-1071.80+fips1|5.15.0-1072.81+fips1|5.15.0-1073.82+fips1|5.15.0-1074.83+fips1|5.15.0-1075.84+fips1|5.15.0-1078.87+fips1|5.15.0-1079.88+fips1|5.15.0-1080.89+fips1|5.15.0-1082.91+fips1|5.15.0-1083.92+fips1|5.15.0-1085.94+fips1|5.15.0-1087.96+fips1|5.15.0-1088.97+fips1|5.15.0-1089.98+fips1|5.15.0-1090.99+fips1|5.15.0-1091.100+fips1|5.15.0-1094.103+fips1|5.15.0-1095.104+fips1|5.15.0-1096.105+fips1|5.15.0-1097.106+fips1|5.15.0-1098.107+fips1|5.15.0-1101.110+fips1|5.15.0-1102.111+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-73.80+fips1|5.15.0-92.102+fips1|5.15.0-94.104+fips1|5.15.0-97.107+fips1|5.15.0-100.110+fips1|5.15.0-101.111+fips1|5.15.0-102.112+fips1|5.15.0-105.115+fips1|5.15.0-106.116+fips1|5.15.0-107.117+fips1|5.15.0-111.121+fips1|5.15.0-113.123+fips1|5.15.0-115.125+fips1|5.15.0-117.127+fips1|5.15.0-118.128+fips1|5.15.0-119.129+fips1|5.15.0-121.131+fips1|5.15.0-122.132+fips1|5.15.0-124.134+fips1|5.15.0-125.135+fips1|5.15.0-127.137+fips1|5.15.0-128.138+fips1|5.15.0-130.140+fips1|5.15.0-131.141+fips1|5.15.0-133.144+fips1|5.15.0-134.145+fips1|5.15.0-135.146+fips1|5.15.0-136.147+fips1|5.15.0-138.148+fips1|5.15.0-139.149+fips1|5.15.0-140.150+fips1|5.15.0-141.151+fips1|5.15.0-142.152+fips1|5.15.0-143.153+fips1|5.15.0-144.157+fips1|5.15.0-145.158+fips1|5.15.0-152.162+fips1|5.15.0-153.163+fips1|5.15.0-156.166+fips1|5.15.0-157.167+fips1|5.15.0-160.170+fips1|5.15.0-161.171+fips1|5.15.0-163.173+fips1|5.15.0-164.174+fips1|5.15.0-168.178+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1048.56+fips1|5.15.0-1055.63+fips2|5.15.0-1058.66+fips1|5.15.0-1059.67+fips1|5.15.0-1060.68+fips1|5.15.0-1062.70+fips1|5.15.0-1063.71+fips1|5.15.0-1064.72+fips1|5.15.0-1065.73+fips1|5.15.0-1066.74+fips1|5.15.0-1067.75+fips1|5.15.0-1068.76+fips1|5.15.0-1069.77+fips1|5.15.0-1070.78+fips1|5.15.0-1071.79+fips1|5.15.0-1072.80+fips1|5.15.0-1073.81+fips1|5.15.0-1074.83+fips1|5.15.0-1075.84+fips1|5.15.0-1077.86+fips1|5.15.0-1078.87+fips1|5.15.0-1079.88+fips1|5.15.0-1080.89+fips1|5.15.0-1081.90+fips1|5.15.0-1082.91+fips1|5.15.0-1083.92+fips1|5.15.0-1084.93+fips1|5.15.0-1085.94+fips1|5.15.0-1086.95+fips1|5.15.0-1087.96+fips1|5.15.0-1088.97+fips1|5.15.0-1090.99+fips1|5.15.0-1091.100+fips1|5.15.0-1092.101+fips1|5.15.0-1093.102+fips1|5.15.0-1095.104+fips1|5.15.0-1096.105+fips1|5.15.0-1097.106+fips1|5.15.0-1098.107+fips1|5.15.0-1099.108+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-intel-iot-realtime", + "version": "", + "qualifiers": "arch=source&distro=realtime/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1028.33|5.15.0-1033.35|5.15.0-1034.36|5.15.0-1035.37|5.15.0-1036.38|5.15.0-1037.39|5.15.0-1038.40|5.15.0-1039.41|5.15.0-1040.42|5.15.0-1041.43|5.15.0-1042.44|5.15.0-1043.45|5.15.0-1044.46|5.15.0-1046.48|5.15.0-1047.49|5.15.0-1048.50|5.15.0-1049.51|5.15.0-1050.52|5.15.0-1053.55|5.15.0-1054.56|5.15.0-1055.57|5.15.0-1056.58|5.15.0-1057.59|5.15.0-1058.60|5.15.0-1059.61|5.15.0-1060.62|5.15.0-1061.63|5.15.0-1063.65|5.15.0-1064.66|5.15.0-1066.68|5.15.0-1071.73|5.15.0-1072.74|5.15.0-1073.75|5.15.0-1074.76|5.15.0-1075.77|5.15.0-1076.78|5.15.0-1077.79|5.15.0-1078.80|5.15.0-1079.81|5.15.0-1080.82|5.15.0-1081.83|5.15.0-1082.84|5.15.0-1083.85|5.15.0-1084.86|5.15.0-1085.87|5.15.0-1086.88|5.15.0-1087.89|5.15.0-1088.90|5.15.0-1089.91|5.15.0-1090.92|5.15.0-1091.93", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=realtime/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/5.15.0-1006.6|5.15.0-1007.7|5.15.0-1009.9|5.15.0-1011.11|5.15.0-1014.14|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1024.25|5.15.0-1025.28|5.15.0-1028.31|5.15.0-1029.32|5.15.0-1030.33|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1039.42|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1043.48|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.52|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1053.59|5.15.0-1054.60|5.15.0-1055.62|5.15.0-1056.63|5.15.0-1057.64|5.15.0-1058.66|5.15.0-1061.69|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1072.80|5.15.0-1073.81|5.15.0-1074.82|5.15.0-1075.83|5.15.0-1076.84|5.15.0-1077.85|5.15.0-1078.86|5.15.0-1079.87|5.15.0-1080.88|5.15.0-1081.89|5.15.0-1082.91|5.15.0-1083.92|5.15.0-1084.93|5.15.0-1085.94|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1089.98|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1093.102|5.15.0-1094.103|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime-6.8", + "version": "", + "qualifiers": "arch=source&distro=realtime/jammy", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.1-1004.4~22.04.1|6.8.1-1005.5~22.04.2|6.8.1-1006.6~22.04.1|6.8.1-1007.7~22.04.1|6.8.1-1008.8~22.04.1|6.8.1-1009.9~22.04.1|6.8.1-1010.10~22.04.1|6.8.1-1011.11~22.04.1|6.8.1-1012.12~22.04.1|6.8.1-1013.14~22.04.1|6.8.1-1014.15~22.04.1|6.8.1-1015.16~22.04.1|6.8.1-1016.17~22.04.1|6.8.1-1017.18~22.04.1|6.8.1-1018.19~22.04.1|6.8.1-1019.20~22.04.1|6.8.1-1020.21~22.04.1|6.8.1-1021.22~22.04.1|6.8.1-1022.23~22.04.1|6.8.1-1023.24~22.04.1|6.8.1-1024.25~22.04.1|6.8.1-1025.26~22.04.1|6.8.1-1026.27~22.04.1|6.8.1-1030.31~22.04.1|6.8.1-1031.32~22.04.1|6.8.1-1034.35~22.04.1|6.8.1-1035.36~22.04.1|6.8.1-1036.37~22.04.1|6.8.1-1037.38~22.04.1|6.8.1-1038.39~22.04.1|6.8.1-1039.40~22.04.1|6.8.1-1040.41~22.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-9.9|6.6.0-14.14|6.8.0-11.11|6.8.0-20.20|6.8.0-22.22|6.8.0-28.28|6.8.0-31.31|6.8.0-35.35|6.8.0-36.36|6.8.0-38.38|6.8.0-39.39|6.8.0-40.40|6.8.0-41.41|6.8.0-44.44|6.8.0-45.45|6.8.0-47.47|6.8.0-48.48|6.8.0-49.49|6.8.0-50.51|6.8.0-51.52|6.8.0-52.53|6.8.0-53.55|6.8.0-54.56|6.8.0-55.57|6.8.0-56.58|6.8.0-57.59|6.8.0-58.60|6.8.0-59.61|6.8.0-60.63|6.8.0-62.65|6.8.0-63.66|6.8.0-64.67|6.8.0-71.71|6.8.0-78.78|6.8.0-79.79|6.8.0-83.83|6.8.0-84.84|6.8.0-85.85|6.8.0-86.87|6.8.0-87.88|6.8.0-88.89|6.8.0-90.91|6.8.0-94.96", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-15.15|6.15.0-3.3|6.15.0-4.4|6.16.0-13.13|6.16.0-16.16|6.17.0-3.3|6.17.0-4.4|6.17.0-5.5|6.17.0-6.6|6.17.0-7.7|6.17.0-8.8|6.17.0-12.12", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1008.8|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1006.6|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1016.17|6.8.0-1017.18|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1023.25|6.8.0-1024.26|6.8.0-1025.27|6.8.0-1026.28|6.8.0-1027.29|6.8.0-1028.30|6.8.0-1029.31|6.8.0-1030.32|6.8.0-1031.33|6.8.0-1032.34|6.8.0-1033.35|6.8.0-1035.37|6.8.0-1036.38|6.8.0-1038.40|6.8.0-1039.41|6.8.0-1040.42|6.8.0-1041.43|6.8.0-1042.44|6.8.0-1043.45|6.8.0-1044.46", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1009.9~24.04.1|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1|6.14.0-1018.18~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1007.7|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1012.14|6.8.0-1013.15|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.20|6.8.0-1018.21|6.8.0-1020.23|6.8.0-1021.25|6.8.0-1025.30|6.8.0-1026.31|6.8.0-1027.32|6.8.0-1028.33|6.8.0-1029.34|6.8.0-1030.35|6.8.0-1031.36|6.8.0-1034.39|6.8.0-1038.44|6.8.0-1040.46|6.8.0-1041.47|6.8.0-1042.48|6.8.0-1044.50", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-1008.8~24.04.1|6.11.0-1012.12~24.04.1|6.11.0-1013.13~24.04.1|6.11.0-1014.14~24.04.1|6.11.0-1015.15~24.04.1|6.11.0-1017.17~24.04.1|6.11.0-1018.18~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1010.10~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1017.17~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1041.48|6.8.0-1044.51", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fde-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1017.17~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-nvidia", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1013.14|6.8.0-1014.15|6.8.0-1016.17|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1022.23|6.8.0-1025.27|6.8.0-1027.30|6.8.0-1029.32", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-nvidia-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1003.3|6.14.0-1006.6|6.14.0-1007.7", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1007.7|6.6.0-1001.1|6.8.0-1002.2|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.9|6.8.0-1009.10|6.8.0-1010.11|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1024.26|6.8.0-1025.27|6.8.0-1026.28|6.8.0-1027.29|6.8.0-1028.30|6.8.0-1029.31|6.8.0-1030.32|6.8.0-1031.33|6.8.0-1032.34|6.8.0-1033.35|6.8.0-1034.36|6.8.0-1036.38|6.8.0-1037.39|6.8.0-1039.41|6.8.0-1040.42|6.8.0-1041.43|6.8.0-1042.45|6.8.0-1043.46|6.8.0-1044.47|6.8.0-1045.48", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-1006.6~24.04.2|6.11.0-1011.11~24.04.1|6.11.0-1013.13~24.04.1|6.11.0-1014.14~24.04.1|6.11.0-1015.15~24.04.1|6.11.0-1016.16~24.04.1|6.11.0-1017.17~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1014.15~24.04.1|6.14.0-1015.16~24.04.1|6.14.0-1016.17~24.04.1|6.14.0-1017.18~24.04.1|6.14.0-1018.19~24.04.1|6.14.0-1019.20~24.04.1|6.14.0-1020.21~24.04.1|6.14.0-1021.22~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gke", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1003.5|6.8.0-1004.7|6.8.0-1005.8|6.8.0-1006.9|6.8.0-1007.10|6.8.0-1008.11|6.8.0-1009.12|6.8.0-1010.13|6.8.0-1011.14|6.8.0-1012.15|6.8.0-1013.17|6.8.0-1014.18|6.8.0-1015.19|6.8.0-1016.20|6.8.0-1017.21|6.8.0-1019.23|6.8.0-1020.24|6.8.0-1021.25|6.8.0-1022.26|6.8.0-1023.27|6.8.0-1024.28|6.8.0-1025.29|6.8.0-1026.30|6.8.0-1027.31|6.8.0-1028.32|6.8.0-1029.33|6.8.0-1032.36|6.8.0-1033.37|6.8.0-1035.39|6.8.0-1036.40|6.8.0-1037.41|6.8.0-1038.43|6.8.0-1039.44|6.8.0-1040.45|6.8.0-1041.46|6.8.0-1042.47", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gkeop", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1001.3|6.8.0-1002.4|6.8.0-1003.5|6.8.0-1004.6|6.8.0-1006.8|6.8.0-1007.9|6.8.0-1008.10|6.8.0-1009.11|6.8.0-1010.12|6.8.0-1011.13|6.8.0-1012.14|6.8.0-1013.15|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1022.24|6.8.0-1023.25|6.8.0-1024.26|6.8.0-1025.28|6.8.0-1026.29|6.8.0-1027.30|6.8.0-1028.31|6.8.0-1029.32", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-17.17~24.04.2|6.11.0-19.19~24.04.1|6.11.0-21.21~24.04.1|6.11.0-24.24~24.04.1|6.11.0-25.25~24.04.1|6.11.0-26.26~24.04.1|6.11.0-28.28~24.04.1|6.11.0-29.29~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-hwe-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-24.24~24.04.3|6.14.0-27.27~24.04.1|6.14.0-28.28~24.04.1|6.14.0-29.29~24.04.1|6.14.0-32.32~24.04.1|6.14.0-33.33~24.04.1|6.14.0-34.34~24.04.1|6.14.0-35.35~24.04.1|6.14.0-36.36~24.04.1|6.14.0-37.37~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-ibm", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1009.9|6.8.0-1001.1|6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1015.15|6.8.0-1016.16|6.8.0-1017.17|6.8.0-1018.18|6.8.0-1019.19|6.8.0-1022.22|6.8.0-1023.23|6.8.0-1024.24|6.8.0-1025.25|6.8.0-1026.26|6.8.0-1027.27|6.8.0-1028.28|6.8.0-1029.29|6.8.0-1030.30|6.8.0-1033.33|6.8.0-1036.36|6.8.0-1037.37|6.8.0-1038.38|6.8.0-1039.39|6.8.0-1040.40|6.8.0-1041.41|6.8.0-1042.42", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-9.9.1|6.6.0-14.14.1|6.8.0-7.7.1|6.8.0-25.25.3|6.8.0-28.28.1|6.8.0-31.31.1|6.8.0-35.35.1|6.8.0-36.36.1|6.8.0-38.38.1|6.8.0-39.39.1|6.8.0-40.40.1|6.8.0-41.41.1|6.8.0-44.44.1|6.8.0-45.45.1|6.8.0-47.47.1|6.8.0-48.48.3|6.8.0-49.49.1|6.8.0-50.51.1|6.8.0-51.52.1|6.8.0-52.53.1|6.8.0-53.55.2|6.8.0-54.56.1|6.8.0-55.57.1|6.8.0-56.58.1|6.8.0-57.59.1|6.8.0-58.60.1|6.8.0-59.61.1|6.8.0-60.63.1|6.8.0-62.65.1|6.8.0-63.66.1|6.8.0-64.67.1|6.8.0-65.68.1|6.8.0-78.78.1|6.8.0-79.79.1|6.8.0-83.83.1|6.8.0-84.84.1|6.8.0-85.85.1|6.8.0-86.87.1|6.8.0-87.88.1|6.8.0-88.89.1|6.8.0-90.91.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-lowlatency-hwe-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-1009.10~24.04.1|6.11.0-1011.12~24.04.1|6.11.0-1012.13~24.04.1|6.11.0-1013.14~24.04.1|6.11.0-1014.15~24.04.1|6.11.0-1015.16~24.04.2|6.11.0-1016.17~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1022.25|6.8.0-1023.26|6.8.0-1024.27|6.8.0-1025.28|6.8.0-1026.29|6.8.0-1027.30|6.8.0-1028.31|6.8.0-1029.32|6.8.0-1030.33|6.8.0-1031.34|6.8.0-1032.35|6.8.0-1035.38|6.8.0-1036.39|6.8.0-1038.41|6.8.0-1039.42|6.8.0-1040.43|6.8.0-1041.44|6.8.0-1042.45|6.8.0-1043.46|6.8.0-1044.47", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-lowlatency", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1009.9.1|6.8.0-1011.11.1|6.8.0-1012.12.1|6.8.0-1013.14.1|6.8.0-1014.15.1|6.8.0-1015.16.1|6.8.0-1017.19.1|6.8.0-1018.20.1|6.8.0-1019.21.1|6.8.0-1020.22.1|6.8.0-1021.23.1|6.8.0-1022.25.2|6.8.0-1023.26.1|6.8.0-1024.27.1|6.8.0-1025.28.1|6.8.0-1026.29.1|6.8.0-1027.30.1|6.8.0-1028.31.1|6.8.0-1029.32.1|6.8.0-1030.33.1|6.8.0-1031.34.1|6.8.0-1032.35.1|6.8.0-1035.38.1|6.8.0-1036.39.1|6.8.0-1038.41.1|6.8.0-1039.42.1|6.8.0-1040.43.1|6.8.0-1041.44.1|6.8.0-1042.45.1|6.8.0-1043.46.1|6.8.0-1044.47.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-nvidia-tegra", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1003.3|6.8.0-1004.4|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1012.12|6.8.0-1013.13", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.11", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.11.0-1007.7|6.11.0-1008.8|6.11.0-1009.9|6.11.0-1010.10|6.11.0-1011.11|6.11.0-1012.12|6.11.0-1013.13|6.11.0-1015.15|6.11.0-1016.16|6.11.0-1017.17|6.11.0-1018.18|6.11.0-1020.20|6.11.0-1021.21|6.11.0-1022.22|6.11.0-1023.23|6.11.0-1024.24|6.11.0-1025.25|6.11.0-1027.27", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1004.4|6.14.0-1005.5|6.14.0-1006.6|6.14.0-1007.7|6.14.0-1008.8|6.14.0-1010.10|6.14.0-1011.11|6.14.0-1012.12|6.14.0-1013.13|6.14.0-1014.14|6.14.0-1015.15|6.14.0-1016.16|6.14.0-1017.17|6.14.0-1018.18|6.14.0-1019.19|6.14.0-1020.20", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.17", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.17.0-1005.5|6.17.0-1006.6|6.17.0-1007.7|6.17.0-1008.8|6.17.0-1009.9|6.17.0-1010.10", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oem-6.8", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1016.16|6.8.0-1017.17|6.8.0-1018.18|6.8.0-1019.19|6.8.0-1020.20|6.8.0-1024.24|6.8.0-1025.25|6.8.0-1026.26|6.8.0-1027.27|6.8.0-1028.28|6.8.0-1029.29|6.8.0-1030.30|6.8.0-1031.31|6.8.0-1032.32", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1010.10|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1008.8|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1015.16|6.8.0-1016.17|6.8.0-1017.18|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1020.21|6.8.0-1021.22|6.8.0-1022.23|6.8.0-1023.24|6.8.0-1024.25|6.8.0-1025.26|6.8.0-1026.27|6.8.0-1027.28|6.8.0-1028.29|6.8.0-1029.30|6.8.0-1030.31|6.8.0-1032.33|6.8.0-1033.34|6.8.0-1035.36|6.8.0-1037.38|6.8.0-1038.39|6.8.0-1039.40|6.8.0-1040.41|6.8.0-1041.42|6.8.0-1042.43", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1009.9~24.04.1|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1|6.14.0-1018.18~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-1005.7|6.7.0-1001.1|6.8.0-1001.1|6.8.0-1002.2|6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.10|6.8.0-1010.11|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.23|6.8.0-1020.24|6.8.0-1024.28|6.8.0-1028.32|6.8.0-1029.33|6.8.0-1030.34|6.8.0-1031.35|6.8.0-1032.36|6.8.0-1035.39|6.8.0-1036.40|6.8.0-1038.42|6.8.0-1039.43|6.8.0-1040.44|6.8.0-1041.45|6.8.0-1042.46|6.8.0-1043.47|6.8.0-1044.48|6.8.0-1045.49", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi-realtime", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-2019.20", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.1-1015.16", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.5.0-9.9.1|6.8.0-20.20.1|6.8.0-28.28.1|6.8.0-31.31.1|6.8.0-35.35.1|6.8.0-36.36.1|6.8.0-38.38.1|6.8.0-39.39.1|6.8.0-40.40.1|6.8.0-41.41.1|6.8.0-44.44.1|6.8.0-47.47.1|6.8.0-48.48.1|6.8.0-49.49.1|6.8.0-50.51.1|6.8.0-51.52.1|6.8.0-52.53.1|6.8.0-53.55.1|6.8.0-55.57.1|6.8.0-56.58.1|6.8.0-57.59.1|6.8.0-58.60.1|6.8.0-59.61.1|6.8.0-60.63.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv-6.14", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-22.22.1~24.04.1|6.14.0-23.23.1~24.04.1|6.14.0-24.24.1~24.04.1|6.14.0-27.27.1~24.04.1|6.14.0-28.28.1~24.04.1|6.14.0-29.29.1~24.04.1|6.14.0-32.32.1~24.04.1|6.14.0-33.33.1~24.04.1|6.14.0-34.34.1~24.04.1|6.14.0-35.35.1~24.04.1|6.14.0-36.36.1~24.04.1|6.14.0-37.37.1~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-xilinx", + "version": "", + "qualifiers": "arch=source&distro=noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1008.9|6.8.0-1009.10|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1017.18|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1020.21|6.8.0-1021.22", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-aws-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1035.37+fips1|6.8.0-1036.38+fips1|6.8.0-1038.40+fips1|6.8.0-1039.41+fips1|6.8.0-1040.42+fips1|6.8.0-1041.43+fips1|6.8.0-1042.44+fips1|6.8.0-1043.45+fips1|6.8.0-1044.46+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-azure-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1034.39+fips1|6.8.0-1040.46+fips1|6.8.0-1044.50+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-38.38+fips4|6.8.0-78.78+fips1|6.8.0-79.79+fips1|6.8.0-83.83+fips1|6.8.0-84.84+fips1|6.8.0-85.85+fips1|6.8.0-86.87+fips1|6.8.0-87.88+fips1|6.8.0-88.89+fips1|6.8.0-90.91+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-gcp-fips", + "version": "", + "qualifiers": "arch=source&distro=fips-updates/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1036.38+fips1|6.8.0-1037.39+fips1|6.8.0-1039.41+fips1|6.8.0-1040.42+fips1|6.8.0-1041.43+fips1|6.8.0-1042.45+fips1|6.8.0-1043.46+fips1|6.8.0-1044.47+fips1|6.8.0-1045.48+fips1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi-realtime", + "version": "", + "qualifiers": "arch=source&distro=realtime/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.7.0-2001.1|6.8.0-2001.1|6.8.0-2002.2|6.8.0-2004.4|6.8.0-2005.5|6.8.0-2006.6|6.8.0-2007.7|6.8.0-2008.8|6.8.0-2009.9|6.8.0-2010.10|6.8.0-2011.11|6.8.0-2012.12|6.8.0-2013.14|6.8.0-2014.15|6.8.0-2015.16|6.8.0-2016.17|6.8.0-2017.18|6.8.0-2018.19|6.8.0-2019.20|6.8.0-2022.23|6.8.0-2023.24|6.8.0-2024.25|6.8.0-2025.26|6.8.0-2026.27|6.8.0-2028.29|6.8.0-2029.30|6.8.0-2030.31|6.8.0-2031.32|6.8.0-2032.33|6.8.0-2033.34|6.8.0-2034.35|6.8.0-2035.36|6.8.0-2036.37", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=realtime/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.8.0-1008.19|6.8.1-1001.1|6.8.1-1002.2|6.8.1-1003.3|6.8.1-1004.4|6.8.1-1005.5|6.8.1-1006.6|6.8.1-1007.7|6.8.1-1008.8|6.8.1-1009.9|6.8.1-1010.10|6.8.1-1011.11|6.8.1-1012.12|6.8.1-1013.14|6.8.1-1014.15|6.8.1-1015.16|6.8.1-1016.17|6.8.1-1017.18|6.8.1-1018.19|6.8.1-1019.20|6.8.1-1020.21|6.8.1-1021.22|6.8.1-1022.23|6.8.1-1023.24|6.8.1-1024.25|6.8.1-1025.26|6.8.1-1026.27|6.8.1-1030.31|6.8.1-1031.32|6.8.1-1033.34|6.8.1-1034.35|6.8.1-1035.36|6.8.1-1036.37|6.8.1-1037.38|6.8.1-1038.39|6.8.1-1039.40|6.8.1-1040.41", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime-6.14", + "version": "", + "qualifiers": "arch=source&distro=realtime/noble", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1003.3~24.04.3|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-oracle", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1005.5|6.14.0-1007.7+25.10.1|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1005.5|6.17.0-1006.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-raspi", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1005.5|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6|6.17.0-1007.7", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-realtime", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-1002.2|6.17.0-1001.2|6.17.0-1002.3|6.17.0-1003.4|6.17.0-1004.5|6.17.0-1005.6", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + }, + { + "package": { + "type": "deb", + "namespace": "ubuntu", + "name": "linux-riscv", + "version": "", + "qualifiers": "arch=source&distro=questing", + "subpath": "" + }, + "affected_version_range": "vers:deb/6.14.0-13.13.2|6.17.0-4.4.1|6.17.0-5.5.1|6.17.0-6.6.1|6.17.0-7.7.1|6.17.0-8.8.1", + "fixed_version_range": null, + "introduced_by_commit_patches": [], + "fixed_by_commit_patches": [] + } + ], + "references_v2": [ + { + "reference_id": "", + "reference_type": "", + "url": "https://git.kernel.org/stable/c/7b5d4416964c07c902163822a30a622111172b01" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://git.kernel.org/stable/c/dbbf6d47130674640cd12a0781a0fb2a575d0e44" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://ubuntu.com/security/CVE-2025-71115" + }, + { + "reference_id": "", + "reference_type": "", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-71115" + } + ], + "patches": [], + "severities": [ + { + "system": "ubuntu", + "value": "medium", + "scoring_elements": "" + } + ], + "date_published": "2026-01-14T15:16:00+00:00", + "weaknesses": [], + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-71115.json" + } +] \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2001/UBUNTU-CVE-2001-1593.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2001/UBUNTU-CVE-2001-1593.json new file mode 100644 index 000000000..ff7aac1e0 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2001/UBUNTU-CVE-2001-1593.json @@ -0,0 +1,63 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2001-1593", + "details": "Jakub Wilk found that a2ps, a tool to convert text and other types of files to PostScript, insecurely used a temporary file in spy_user(). A local attacker could use this flaw to perform a symbolic link attack to modify an arbitrary file accessible to the user running a2ps.", + "aliases": [], + "upstream": [ + "CVE-2001-1593" + ], + "related": [], + "severity": [ + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2014-04-05T21:55:00Z", + "modified": "2025-07-16T04:49:52Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "a2ps", + "purl": "pkg:deb/ubuntu/a2ps@1:4.14-1.2?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1:4.14-1.2" + } + ] + } + ], + "versions": [ + "1:4.14-1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "a2ps", + "binary_version": "1:4.14-1.2" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2001-1593" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2001-1593" + } + ], + "withdrawn": "2025-07-18T16:42:37Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2005/UBUNTU-CVE-2005-1515.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2005/UBUNTU-CVE-2005-1515.json new file mode 100644 index 000000000..3906ad600 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2005/UBUNTU-CVE-2005-1515.json @@ -0,0 +1,189 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2005-1515", + "details": "Integer signedness error in the qmail_put and substdio_put functions in qmail, when running on 64 bit platforms with a large amount of virtual memory, allows remote attackers to cause a denial of service and possibly execute arbitrary code via a large number of SMTP RCPT TO commands.", + "aliases": [], + "upstream": [ + "CVE-2005-1515" + ], + "related": [ + "USN-4556-1", + "USN-4621-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-05-24T00:00:00Z", + "modified": "2025-07-16T04:49:52Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "netqmail", + "purl": "pkg:deb/ubuntu/netqmail@1.06-6.2~deb10u1build0.14.04.1+esm1?arch=source&distro=trusty/esm" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.06-6.2~deb10u1build0.14.04.1+esm1" + } + ] + } + ], + "versions": [ + "1.06-5" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "qmail", + "binary_version": "1.06-6.2~deb10u1build0.14.04.1+esm1" + }, + { + "binary_name": "qmail-uids-gids", + "binary_version": "1.06-6.2~deb10u1build0.14.04.1+esm1" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "netqmail", + "purl": "pkg:deb/ubuntu/netqmail@1.06-6.2~deb10u1build0.16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.06-6.2~deb10u1build0.16.04.1" + } + ] + } + ], + "versions": [ + "1.06-5" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "qmail", + "binary_version": "1.06-6.2~deb10u1build0.16.04.1" + }, + { + "binary_name": "qmail-uids-gids", + "binary_version": "1.06-6.2~deb10u1build0.16.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "netqmail", + "purl": "pkg:deb/ubuntu/netqmail@1.06-6.2~deb10u1build0.18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.06-6.2~deb10u1build0.18.04.1" + } + ] + } + ], + "versions": [ + "1.06-6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "qmail", + "binary_version": "1.06-6.2~deb10u1build0.18.04.1" + }, + { + "binary_name": "qmail-uids-gids", + "binary_version": "1.06-6.2~deb10u1build0.18.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "netqmail", + "purl": "pkg:deb/ubuntu/netqmail@1.06-6.2~deb10u1build0.20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.06-6.2~deb10u1build0.20.04.1" + } + ] + } + ], + "versions": [ + "1.06-6.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "qmail", + "binary_version": "1.06-6.2~deb10u1build0.20.04.1" + }, + { + "binary_name": "qmail-uids-gids", + "binary_version": "1.06-6.2~deb10u1build0.20.04.1" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2005-1515" + }, + { + "type": "REPORT", + "url": "https://www.openwall.com/lists/oss-security/2020/05/19/8" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-4556-1" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-4621-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2005-1515" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-0751.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-0751.json new file mode 100644 index 000000000..3fdb3d292 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-0751.json @@ -0,0 +1,103 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2010-0751", + "details": "The ip_evictor function in ip_fragment.c in libnids before 1.24, as used in dsniff and possibly other products, allows remote attackers to cause a denial of service (NULL pointer dereference and crash) via crafted fragmented packets.", + "aliases": [], + "upstream": [ + "CVE-2010-0751" + ], + "related": [], + "severity": [ + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2010-04-06T16:30:00Z", + "modified": "2025-07-16T04:49:56Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "libnids", + "purl": "pkg:deb/ubuntu/libnids@1.23-2?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.23-2" + } + ] + } + ], + "versions": [], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libnids-dev", + "binary_version": "1.23-2" + }, + { + "binary_name": "libnids1.21", + "binary_version": "1.23-2" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "libnids", + "purl": "pkg:deb/ubuntu/libnids@1.23-2?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.23-2" + } + ] + } + ], + "versions": [], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libnids-dev", + "binary_version": "1.23-2" + }, + { + "binary_name": "libnids1.21", + "binary_version": "1.23-2" + }, + { + "binary_name": "libnids1.21-dbgsym", + "binary_version": "1.23-2" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2010-0751" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-0751" + } + ], + "withdrawn": "2025-07-18T16:42:39Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json new file mode 100644 index 000000000..256fb78bb --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json @@ -0,0 +1,320 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2010-1824", + "details": "Use-after-free vulnerability in WebKit, as used in Apple iTunes before 10.2 on Windows, Apple Safari, and Google Chrome before 6.0.472.59, allows remote attackers to execute arbitrary code or cause a denial of service via vectors related to SVG styles, the DOM tree, and error messages.", + "aliases": [], + "upstream": [ + "CVE-2010-1824" + ], + "related": [ + "USN-1195-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2010-09-24T00:00:00Z", + "modified": "2025-07-16T04:49:56Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "webkitgtk", + "purl": "pkg:deb/ubuntu/webkitgtk@2.4.8-1ubuntu1~ubuntu14.04.1?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.4.8-1ubuntu1~ubuntu14.04.1" + } + ] + } + ], + "versions": [ + "2.2.1-2ubuntu2", + "2.3.2-1ubuntu2", + "2.3.2-1ubuntu3", + "2.3.2-1ubuntu4", + "2.3.2-1ubuntu5", + "2.3.2-1ubuntu6", + "2.3.4-1ubuntu2", + "2.3.90-1ubuntu1", + "2.3.91-0ubuntu1", + "2.4.0-1ubuntu2", + "2.4.2-1ubuntu0.1", + "2.4.3-1ubuntu2", + "2.4.4-1~ubuntu1", + "2.4.7-1~ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "gir1.2-javascriptcoregtk-1.0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "gir1.2-javascriptcoregtk-3.0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "gir1.2-webkit-1.0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "gir1.2-webkit-3.0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "gir1.2-webkit2-3.0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-0-dbg", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-0-dbg", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-bin", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkit-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkit2gtk-3.0-25", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkit2gtk-3.0-25-dbg", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkit2gtk-3.0-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-1.0-0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-1.0-0-dbg", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-1.0-common", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-3.0-0", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-3.0-0-dbg", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-3.0-common", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-3.0-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-common-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + }, + { + "binary_name": "libwebkitgtk-dev", + "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "webkitgtk", + "purl": "pkg:deb/ubuntu/webkitgtk@2.4.9-2ubuntu2?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.4.9-2ubuntu2" + } + ] + } + ], + "versions": [], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "gir1.2-javascriptcoregtk-3.0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "gir1.2-webkit-3.0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "gir1.2-webkit2-3.0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-0-dbg", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-0-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-1.0-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-0-dbg", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-0-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-bin", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-bin-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libjavascriptcoregtk-3.0-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkit-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkit2gtk-3.0-25", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkit2gtk-3.0-25-dbg", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkit2gtk-3.0-25-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkit2gtk-3.0-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-1.0-0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-1.0-0-dbg", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-1.0-0-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-1.0-common", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-3.0-0", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-3.0-0-dbg", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-3.0-0-dbgsym", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-3.0-common", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-3.0-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-common-dev", + "binary_version": "2.4.9-2ubuntu2" + }, + { + "binary_name": "libwebkitgtk-dev", + "binary_version": "2.4.9-2ubuntu2" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2010-1824" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-1195-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-1824" + } + ], + "withdrawn": "2025-07-18T16:42:39Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json new file mode 100644 index 000000000..a4c2b7a5d --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json @@ -0,0 +1,325 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2010-2496", + "details": "stonith-ng in pacemaker and cluster-glue passed passwords as commandline parameters, making it possible for local attackers to gain access to passwords of the HA stack and potentially influence its operations. This is fixed in cluster-glue 1.0.6 and newer, and pacemaker 1.1.3 and newer.", + "aliases": [], + "upstream": [ + "CVE-2010-2496" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2021-10-18T13:15:00Z", + "modified": "2025-07-16T04:49:56Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "cluster-glue", + "purl": "pkg:deb/ubuntu/cluster-glue@1.0.12-7build1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.0.12-7build1" + } + ] + } + ], + "versions": [ + "1.0.12-5ubuntu2", + "1.0.12-7" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "cluster-glue", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "cluster-glue-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "cluster-glue-dev", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "liblrm2", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "liblrm2-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "liblrm2-dev", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libpils2", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libpils2-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libpils2-dev", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumb2", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumb2-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumb2-dev", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumbgpl2", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumbgpl2-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libplumbgpl2-dev", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libstonith1", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libstonith1-dbgsym", + "binary_version": "1.0.12-7build1" + }, + { + "binary_name": "libstonith1-dev", + "binary_version": "1.0.12-7build1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "pacemaker", + "purl": "pkg:deb/ubuntu/pacemaker@1.1.18-0ubuntu1.3?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.1.18-0ubuntu1.3" + } + ] + } + ], + "versions": [ + "1.1.16-1ubuntu1", + "1.1.18~rc3-1ubuntu1", + "1.1.18~rc4-1ubuntu1", + "1.1.18-0ubuntu1", + "1.1.18-0ubuntu1.1", + "1.1.18-0ubuntu1.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libcib-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcib4", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcib4-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcluster-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcluster4", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcluster4-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcommon-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcommon3", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmcommon3-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmservice-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmservice3", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libcrmservice3-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "liblrmd-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "liblrmd1", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "liblrmd1-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpe-rules2", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpe-rules2-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpe-status10", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpe-status10-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpengine-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpengine10", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libpengine10-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libstonithd-dev", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libstonithd2", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libstonithd2-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libtransitioner2", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "libtransitioner2-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-cli-utils", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-cli-utils-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-common", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-doc", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-remote", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-remote-dbgsym", + "binary_version": "1.1.18-0ubuntu1.3" + }, + { + "binary_name": "pacemaker-resource-agents", + "binary_version": "1.1.18-0ubuntu1.3" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2010-2496" + }, + { + "type": "REPORT", + "url": "https://bugzilla.suse.com/show_bug.cgi?id=620781" + }, + { + "type": "REPORT", + "url": "https://github.com/ClusterLabs/cluster-glue/commit/3d7b464439ee0271da76e0ee9480f3dc14005879" + }, + { + "type": "REPORT", + "url": "https://github.com/ClusterLabs/pacemaker/commit/7901f43c5800374d41ae2287fe122692fe045664" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2010-2496" + } + ], + "withdrawn": "2025-07-18T16:42:39Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0209.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0209.json new file mode 100644 index 000000000..4889fd822 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0209.json @@ -0,0 +1,89 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2015-0209", + "details": "Use-after-free vulnerability in the d2i_ECPrivateKey function in crypto/ec/ec_asn1.c in OpenSSL before 0.9.8zf, 1.0.0 before 1.0.0r, 1.0.1 before 1.0.1m, and 1.0.2 before 1.0.2a might allow remote attackers to cause a denial of service (memory corruption and application crash) or possibly have unspecified other impact via a malformed Elliptic Curve (EC) private-key file that is improperly handled during import.", + "aliases": [], + "upstream": [ + "CVE-2015-0209" + ], + "related": [ + "USN-2537-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2015-03-17T00:00:00Z", + "modified": "2025-09-08T16:43:18Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "openssl", + "purl": "pkg:deb/ubuntu/openssl@1.0.1f-1ubuntu2.11?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.0.1f-1ubuntu2.11" + } + ] + } + ], + "versions": [ + "1.0.1e-3ubuntu1", + "1.0.1e-4ubuntu1", + "1.0.1e-4ubuntu2", + "1.0.1e-4ubuntu3", + "1.0.1e-4ubuntu4", + "1.0.1f-1ubuntu1", + "1.0.1f-1ubuntu2", + "1.0.1f-1ubuntu2.1", + "1.0.1f-1ubuntu2.2", + "1.0.1f-1ubuntu2.3", + "1.0.1f-1ubuntu2.4", + "1.0.1f-1ubuntu2.5", + "1.0.1f-1ubuntu2.7", + "1.0.1f-1ubuntu2.8" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libssl-dev", + "binary_version": "1.0.1f-1ubuntu2.11" + }, + { + "binary_name": "libssl1.0.0", + "binary_version": "1.0.1f-1ubuntu2.11" + }, + { + "binary_name": "openssl", + "binary_version": "1.0.1f-1ubuntu2.11" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2015-0209" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-2537-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0209" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json new file mode 100644 index 000000000..f0a448227 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json @@ -0,0 +1,80 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2015-0222", + "details": "ModelMultipleChoiceField in Django 1.6.x before 1.6.10 and 1.7.x before 1.7.3, when show_hidden_initial is set to True, allows remote attackers to cause a denial of service by submitting duplicate values, which triggers a large number of SQL queries.", + "aliases": [], + "upstream": [ + "CVE-2015-0222" + ], + "related": [ + "USN-2469-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2015-01-13T00:00:00Z", + "modified": "2025-09-08T16:43:18Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "python-django", + "purl": "pkg:deb/ubuntu/python-django@1.6.1-2ubuntu0.6?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.6.1-2ubuntu0.6" + } + ] + } + ], + "versions": [ + "1.5.4-1ubuntu1", + "1.6-1", + "1.6.1-1", + "1.6.1-2", + "1.6.1-2ubuntu0.1", + "1.6.1-2ubuntu0.2", + "1.6.1-2ubuntu0.3", + "1.6.1-2ubuntu0.4", + "1.6.1-2ubuntu0.5" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "python-django", + "binary_version": "1.6.1-2ubuntu0.6" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2015-0222" + }, + { + "type": "REPORT", + "url": "https://www.djangoproject.com/weblog/2015/jan/13/security/" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-2469-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0222" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json new file mode 100644 index 000000000..870d64489 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json @@ -0,0 +1,174 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2015-0244", + "details": "PostgreSQL before 9.0.19, 9.1.x before 9.1.15, 9.2.x before 9.2.10, 9.3.x before 9.3.6, and 9.4.x before 9.4.1 does not properly handle errors while reading a protocol message, which allows remote attackers to conduct SQL injection attacks via crafted binary data in a parameter and causing an error, which triggers the loss of synchronization and part of the protocol message to be treated as a new message, as demonstrated by causing a timeout or query cancellation.", + "aliases": [], + "upstream": [ + "CVE-2015-0244" + ], + "related": [ + "USN-2499-1" + ], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2015-02-06T00:00:00Z", + "modified": "2025-09-08T16:43:18Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "postgresql-9.1", + "purl": "pkg:deb/ubuntu/postgresql-9.1@9.1.15-0ubuntu0.14.04?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "9.1.15-0ubuntu0.14.04" + } + ] + } + ], + "versions": [ + "9.1.10-1", + "9.1.10-1bzr1", + "9.1.11-1", + "9.1.11-2", + "9.1.12-1", + "9.1.13-1", + "9.1.14-0ubuntu0.14.04" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "postgresql-plperl-9.1", + "binary_version": "9.1.15-0ubuntu0.14.04" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "postgresql-9.3", + "purl": "pkg:deb/ubuntu/postgresql-9.3@9.3.6-0ubuntu0.14.04?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "9.3.6-0ubuntu0.14.04" + } + ] + } + ], + "versions": [ + "9.3.1-1", + "9.3.2-1", + "9.3.2-1ubuntu1", + "9.3.2-1ubuntu2", + "9.3.3-1", + "9.3.3-1bzr1", + "9.3.3-1bzr2", + "9.3.4-1", + "9.3.5-0ubuntu0.14.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libecpg-compat3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "libecpg-dev", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "libecpg6", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "libpgtypes3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "libpq-dev", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "libpq5", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-client-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-contrib-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-doc-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-plperl-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-plpython-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-plpython3-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-pltcl-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + }, + { + "binary_name": "postgresql-server-dev-9.3", + "binary_version": "9.3.6-0ubuntu0.14.04" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2015-0244" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-2499-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0244" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json new file mode 100644 index 000000000..07b358a64 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json @@ -0,0 +1,74 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2015-0261", + "details": "Integer signedness error in the mobility_opt_print function in the IPv6 mobility printer in tcpdump before 4.7.2 allows remote attackers to cause a denial of service (out-of-bounds read and crash) or possibly execute arbitrary code via a negative length value.", + "aliases": [], + "upstream": [ + "CVE-2015-0261" + ], + "related": [ + "USN-2580-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2015-03-24T00:00:00Z", + "modified": "2025-07-16T04:50:43Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "tcpdump", + "purl": "pkg:deb/ubuntu/tcpdump@4.5.1-2ubuntu1.2?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.5.1-2ubuntu1.2" + } + ] + } + ], + "versions": [ + "4.4.0-1ubuntu1", + "4.5.1-2ubuntu1", + "4.5.1-2ubuntu1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "tcpdump", + "binary_version": "4.5.1-2ubuntu1.2" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2015-0261" + }, + { + "type": "REPORT", + "url": "http://seclists.org/bugtraq/2015/Mar/33" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-2580-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0261" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json new file mode 100644 index 000000000..0960c6765 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json @@ -0,0 +1,393 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2015-0295", + "details": "The BMP decoder in QtGui in QT before 5.5 does not properly calculate the masks used to extract the color components, which allows remote attackers to cause a denial of service (divide-by-zero and crash) via a crafted BMP file.", + "aliases": [], + "upstream": [ + "CVE-2015-0295" + ], + "related": [ + "USN-2626-1" + ], + "severity": [ + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2015-03-25T00:00:00Z", + "modified": "2025-09-08T16:43:18Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "qt4-x11", + "purl": "pkg:deb/ubuntu/qt4-x11@4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + } + ] + } + ], + "versions": [ + "4:4.8.4+dfsg-0ubuntu18", + "4:4.8.4+dfsg-0ubuntu19", + "4:4.8.4+dfsg-0ubuntu20", + "4:4.8.4+dfsg-0ubuntu21", + "4:4.8.4+dfsg-0ubuntu22", + "4:4.8.5+git192-g085f851+dfsg-2ubuntu3", + "4:4.8.5+git192-g085f851+dfsg-2ubuntu4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libqt4-assistant", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-core", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-dbus", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-declarative", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-declarative-folderlistmodel", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-declarative-gestures", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-declarative-particles", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-declarative-shaders", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-designer", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-dev", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-dev-bin", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-gui", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-help", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-network", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-opengl", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-opengl-dev", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-private-dev", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-qt3support", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-script", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-scripttools", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql-mysql", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql-odbc", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql-psql", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql-sqlite", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-sql-tds", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-svg", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-test", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-webkit", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-xml", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqt4-xmlpatterns", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqtcore4", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqtdbus4", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "libqtgui4", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qdbus", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-default", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-demos", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-designer", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-dev-tools", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-doc-html", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-linguist-tools", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-qmake", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-qmlviewer", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qt4-qtconfig", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + }, + { + "binary_name": "qtcore4-l10n", + "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "qtbase-opensource-src", + "purl": "pkg:deb/ubuntu/qtbase-opensource-src@5.2.1+dfsg-1ubuntu14.3?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.2.1+dfsg-1ubuntu14.3" + } + ] + } + ], + "versions": [ + "5.0.2+dfsg1-7ubuntu11", + "5.0.2+dfsg1-7ubuntu12", + "5.0.2+dfsg1-7ubuntu13", + "5.0.2+dfsg1-7ubuntu14", + "5.0.2+dfsg1-7ubuntu15", + "5.0.2+dfsg1-7ubuntu16", + "5.0.2+dfsg1-7ubuntu17", + "5.0.2+dfsg1-7ubuntu18", + "5.2.1+dfsg-1ubuntu7", + "5.2.1+dfsg-1ubuntu8", + "5.2.1+dfsg-1ubuntu9", + "5.2.1+dfsg-1ubuntu10", + "5.2.1+dfsg-1ubuntu11", + "5.2.1+dfsg-1ubuntu13", + "5.2.1+dfsg-1ubuntu14", + "5.2.1+dfsg-1ubuntu14.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libqt5concurrent5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5core5a", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5dbus5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5gui5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5network5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5opengl5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5opengl5-dev", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5printsupport5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5-mysql", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5-odbc", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5-psql", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5-sqlite", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5sql5-tds", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5test5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5widgets5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "libqt5xml5", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qt5-default", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qt5-qmake", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qtbase5-dev", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qtbase5-dev-tools", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qtbase5-doc-html", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qtbase5-examples", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + }, + { + "binary_name": "qtbase5-private-dev", + "binary_version": "5.2.1+dfsg-1ubuntu14.3" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2015-0295" + }, + { + "type": "REPORT", + "url": "http://lists.qt-project.org/pipermail/announce/2015-February/000059.html" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-2626-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0295" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json new file mode 100644 index 000000000..13984f8c7 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json @@ -0,0 +1,8566 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-0305", + "details": "In cdev_get of char_dev.c, there is a possible use-after-free due to a race condition. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-153467744", + "aliases": [], + "upstream": [ + "CVE-2020-0305" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-07-17T20:15:00Z", + "modified": "2026-01-30T05:05:53Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1062.66?arch=source&distro=trusty/esm" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1062.66" + } + ] + } + ], + "versions": [ + "4.4.0-1002.2", + "4.4.0-1003.3", + "4.4.0-1005.5", + "4.4.0-1006.6", + "4.4.0-1009.9", + "4.4.0-1010.10", + "4.4.0-1011.11", + "4.4.0-1012.12", + "4.4.0-1014.14", + "4.4.0-1016.16", + "4.4.0-1017.17", + "4.4.0-1019.19", + "4.4.0-1022.22", + "4.4.0-1023.23", + "4.4.0-1024.25", + "4.4.0-1025.26", + "4.4.0-1027.30", + "4.4.0-1028.31", + "4.4.0-1029.32", + "4.4.0-1031.34", + "4.4.0-1032.35", + "4.4.0-1034.37", + "4.4.0-1036.39", + "4.4.0-1037.40", + "4.4.0-1038.41", + "4.4.0-1039.42", + "4.4.0-1040.43", + "4.4.0-1042.45", + "4.4.0-1044.47", + "4.4.0-1045.48", + "4.4.0-1046.50", + "4.4.0-1048.52", + "4.4.0-1050.54", + "4.4.0-1052.56", + "4.4.0-1054.58", + "4.4.0-1055.59", + "4.4.0-1056.60", + "4.4.0-1058.62", + "4.4.0-1059.63", + "4.4.0-1060.64", + "4.4.0-1061.65" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.4.0-1062", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-aws-headers-4.4.0-1062", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-aws-tools-4.4.0-1062", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-headers-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-image-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-modules-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + }, + { + "binary_name": "linux-tools-4.4.0-1062-aws", + "binary_version": "4.4.0-1062.66" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1074.79~14.04.1?arch=source&distro=trusty/esm" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1074.79~14.04.1" + } + ] + } + ], + "versions": [ + "4.15.0-1023.24~14.04.1", + "4.15.0-1030.31~14.04.1", + "4.15.0-1031.32~14.04.1", + "4.15.0-1032.33~14.04.2", + "4.15.0-1035.36~14.04.2", + "4.15.0-1036.38~14.04.2", + "4.15.0-1037.39~14.04.2", + "4.15.0-1039.41~14.04.2", + "4.15.0-1040.44~14.04.1", + "4.15.0-1041.45~14.04.1", + "4.15.0-1042.46~14.04.1", + "4.15.0-1045.49~14.04.1", + "4.15.0-1046.50~14.04.1", + "4.15.0-1047.51~14.04.1", + "4.15.0-1049.54~14.04.1", + "4.15.0-1050.55~14.04.1", + "4.15.0-1051.56~14.04.1", + "4.15.0-1052.57~14.04.1", + "4.15.0-1055.60~14.04.1", + "4.15.0-1056.61~14.04.1", + "4.15.0-1057.62~14.04.1", + "4.15.0-1059.64~14.04.1", + "4.15.0-1060.65~14.04.1", + "4.15.0-1061.66~14.04.1", + "4.15.0-1063.68~14.04.1", + "4.15.0-1064.69~14.04.1", + "4.15.0-1066.71~14.04.1", + "4.15.0-1067.72~14.04.1", + "4.15.0-1069.74~14.04.1", + "4.15.0-1071.76~14.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-4.15.0-1074", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-azure-headers-4.15.0-1074", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-azure-tools-4.15.0-1074", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1074-azure", + "binary_version": "4.15.0-1074.79~14.04.1" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-lts-xenial", + "purl": "pkg:deb/ubuntu/linux-lts-xenial@4.4.0-174.204~14.04.1?arch=source&distro=trusty/esm" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-174.204~14.04.1" + } + ] + } + ], + "versions": [ + "4.4.0-13.29~14.04.1", + "4.4.0-14.30~14.04.2", + "4.4.0-15.31~14.04.1", + "4.4.0-18.34~14.04.1", + "4.4.0-21.37~14.04.1", + "4.4.0-22.39~14.04.1", + "4.4.0-22.40~14.04.1", + "4.4.0-24.43~14.04.1", + "4.4.0-28.47~14.04.1", + "4.4.0-31.50~14.04.1", + "4.4.0-34.53~14.04.1", + "4.4.0-36.55~14.04.1", + "4.4.0-38.57~14.04.1", + "4.4.0-42.62~14.04.1", + "4.4.0-45.66~14.04.1", + "4.4.0-47.68~14.04.1", + "4.4.0-51.72~14.04.1", + "4.4.0-53.74~14.04.1", + "4.4.0-57.78~14.04.1", + "4.4.0-59.80~14.04.1", + "4.4.0-62.83~14.04.1", + "4.4.0-63.84~14.04.2", + "4.4.0-64.85~14.04.1", + "4.4.0-66.87~14.04.1", + "4.4.0-67.88~14.04.1", + "4.4.0-70.91~14.04.1", + "4.4.0-71.92~14.04.1", + "4.4.0-72.93~14.04.1", + "4.4.0-75.96~14.04.1", + "4.4.0-78.99~14.04.2", + "4.4.0-79.100~14.04.1", + "4.4.0-81.104~14.04.1", + "4.4.0-83.106~14.04.1", + "4.4.0-87.110~14.04.1", + "4.4.0-89.112~14.04.1", + "4.4.0-91.114~14.04.1", + "4.4.0-92.115~14.04.1", + "4.4.0-93.116~14.04.1", + "4.4.0-96.119~14.04.1", + "4.4.0-97.120~14.04.1", + "4.4.0-98.121~14.04.1", + "4.4.0-101.124~14.04.1", + "4.4.0-103.126~14.04.1", + "4.4.0-104.127~14.04.1", + "4.4.0-108.131~14.04.1", + "4.4.0-109.132~14.04.1", + "4.4.0-111.134~14.04.1", + "4.4.0-112.135~14.04.1", + "4.4.0-116.140~14.04.1", + "4.4.0-119.143~14.04.1", + "4.4.0-121.145~14.04.1", + "4.4.0-124.148~14.04.1", + "4.4.0-127.153~14.04.1", + "4.4.0-128.154~14.04.1", + "4.4.0-130.156~14.04.1", + "4.4.0-131.157~14.04.1", + "4.4.0-133.159~14.04.1", + "4.4.0-134.160~14.04.1", + "4.4.0-135.161~14.04.1", + "4.4.0-137.163~14.04.1", + "4.4.0-138.164~14.04.1", + "4.4.0-139.165~14.04.1", + "4.4.0-140.166~14.04.1", + "4.4.0-141.167~14.04.1", + "4.4.0-142.168~14.04.1", + "4.4.0-143.169~14.04.2", + "4.4.0-144.170~14.04.1", + "4.4.0-146.172~14.04.1", + "4.4.0-148.174~14.04.1", + "4.4.0-150.176~14.04.1", + "4.4.0-151.178~14.04.1", + "4.4.0-154.181~14.04.1", + "4.4.0-157.185~14.04.1", + "4.4.0-159.187~14.04.1", + "4.4.0-161.189~14.04.1", + "4.4.0-164.192~14.04.1", + "4.4.0-165.193~14.04.1", + "4.4.0-166.195~14.04.1", + "4.4.0-168.197~14.04.1", + "4.4.0-169.198~14.04.1", + "4.4.0-170.199~14.04.1", + "4.4.0-171.200~14.04.1", + "4.4.0-173.203~14.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "block-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "floppy-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-cloud-tools-4.4.0-174", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-tools-4.4.0-174", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-modules-extra-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-generic", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "message-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pata-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pcmcia-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "serial-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "virtio-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204~14.04.1" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@3.13.0-210.261?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "3.11.0-12.19", + "3.12.0-1.3", + "3.12.0-2.5", + "3.12.0-2.7", + "3.12.0-3.8", + "3.12.0-3.9", + "3.12.0-4.10", + "3.12.0-4.12", + "3.12.0-5.13", + "3.12.0-7.15", + "3.13.0-1.16", + "3.13.0-2.17", + "3.13.0-3.18", + "3.13.0-4.19", + "3.13.0-5.20", + "3.13.0-6.23", + "3.13.0-7.25", + "3.13.0-7.26", + "3.13.0-8.27", + "3.13.0-8.28", + "3.13.0-10.30", + "3.13.0-11.31", + "3.13.0-12.32", + "3.13.0-13.33", + "3.13.0-14.34", + "3.13.0-15.35", + "3.13.0-16.36", + "3.13.0-17.37", + "3.13.0-18.38", + "3.13.0-19.39", + "3.13.0-19.40", + "3.13.0-20.42", + "3.13.0-21.43", + "3.13.0-22.44", + "3.13.0-23.45", + "3.13.0-24.46", + "3.13.0-24.47", + "3.13.0-27.50", + "3.13.0-29.53", + "3.13.0-30.54", + "3.13.0-30.55", + "3.13.0-32.57", + "3.13.0-33.58", + "3.13.0-34.60", + "3.13.0-35.62", + "3.13.0-36.63", + "3.13.0-37.64", + "3.13.0-39.66", + "3.13.0-40.69", + "3.13.0-41.70", + "3.13.0-43.72", + "3.13.0-44.73", + "3.13.0-45.74", + "3.13.0-46.75", + "3.13.0-46.76", + "3.13.0-46.77", + "3.13.0-46.79", + "3.13.0-48.80", + "3.13.0-49.81", + "3.13.0-49.83", + "3.13.0-51.84", + "3.13.0-52.85", + "3.13.0-52.86", + "3.13.0-53.88", + "3.13.0-53.89", + "3.13.0-54.91", + "3.13.0-55.92", + "3.13.0-55.94", + "3.13.0-57.95", + "3.13.0-58.97", + "3.13.0-59.98", + "3.13.0-61.100", + "3.13.0-62.102", + "3.13.0-63.103", + "3.13.0-65.105", + "3.13.0-65.106", + "3.13.0-66.108", + "3.13.0-67.110", + "3.13.0-68.111", + "3.13.0-70.113", + "3.13.0-71.114", + "3.13.0-73.116", + "3.13.0-74.118", + "3.13.0-76.120", + "3.13.0-77.121", + "3.13.0-79.123", + "3.13.0-83.127", + "3.13.0-85.129", + "3.13.0-86.130", + "3.13.0-86.131", + "3.13.0-87.133", + "3.13.0-88.135", + "3.13.0-91.138", + "3.13.0-92.139", + "3.13.0-93.140", + "3.13.0-95.142", + "3.13.0-96.143", + "3.13.0-98.145", + "3.13.0-100.147", + "3.13.0-101.148", + "3.13.0-103.150", + "3.13.0-105.152", + "3.13.0-106.153", + "3.13.0-107.154", + "3.13.0-108.155", + "3.13.0-109.156", + "3.13.0-110.157", + "3.13.0-111.158", + "3.13.0-112.159", + "3.13.0-113.160", + "3.13.0-115.162", + "3.13.0-116.163", + "3.13.0-117.164", + "3.13.0-119.166", + "3.13.0-121.170", + "3.13.0-123.172", + "3.13.0-125.174", + "3.13.0-126.175", + "3.13.0-128.177", + "3.13.0-129.178", + "3.13.0-132.181", + "3.13.0-133.182", + "3.13.0-135.184", + "3.13.0-137.186", + "3.13.0-139.188", + "3.13.0-141.190", + "3.13.0-142.191", + "3.13.0-143.192", + "3.13.0-144.193", + "3.13.0-145.194", + "3.13.0-147.196", + "3.13.0-149.199", + "3.13.0-151.201", + "3.13.0-153.203", + "3.13.0-155.205", + "3.13.0-156.206", + "3.13.0-157.207", + "3.13.0-158.208", + "3.13.0-160.210", + "3.13.0-161.211", + "3.13.0-162.212", + "3.13.0-163.213", + "3.13.0-164.214", + "3.13.0-165.215", + "3.13.0-166.216", + "3.13.0-167.217", + "3.13.0-168.218", + "3.13.0-169.219", + "3.13.0-170.220", + "3.13.0-171.222", + "3.13.0-172.223", + "3.13.0-173.224", + "3.13.0-174.225", + "3.13.0-175.226", + "3.13.0-176.227", + "3.13.0-180.231", + "3.13.0-181.232", + "3.13.0-182.233", + "3.13.0-183.234", + "3.13.0-184.235", + "3.13.0-185.236", + "3.13.0-186.237", + "3.13.0-187.238", + "3.13.0-188.239", + "3.13.0-189.240", + "3.13.0-190.241", + "3.13.0-191.242", + "3.13.0-192.243", + "3.13.0-193.244", + "3.13.0-194.245", + "3.13.0-195.246", + "3.13.0-196.247", + "3.13.0-197.248", + "3.13.0-198.249", + "3.13.0-199.250", + "3.13.0-200.251", + "3.13.0-201.252", + "3.13.0-202.253", + "3.13.0-203.254", + "3.13.0-204.255", + "3.13.0-205.256", + "3.13.0-206.257", + "3.13.0-207.258", + "3.13.0-208.259", + "3.13.0-209.260", + "3.13.0-210.261" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "crypto-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fat-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "firewire-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "floppy-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fs-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fs-secondary-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "input-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "ipmi-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "irda-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "kernel-image-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-buildinfo-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-buildinfo-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-image-unsigned-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-image-unsigned-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-extra-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-source-3.13.0", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "md-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "message-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "mouse-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "multipath-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nfs-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-pcmcia-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-shared-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-usb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "parport-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pata-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pcmcia-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pcmcia-storage-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "plip-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "ppp-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "sata-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "scsi-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "serial-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "speakup-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "squashfs-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "storage-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "usb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "virtio-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "vlan-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@4.4.0-174.204?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-174.204" + } + ] + } + ], + "versions": [ + "4.2.0-16.19", + "4.2.0-17.21", + "4.2.0-19.23", + "4.3.0-1.10", + "4.3.0-2.11", + "4.3.0-5.16", + "4.3.0-6.17", + "4.3.0-7.18", + "4.4.0-2.16", + "4.4.0-4.19", + "4.4.0-6.21", + "4.4.0-7.22", + "4.4.0-8.23", + "4.4.0-9.24", + "4.4.0-10.25", + "4.4.0-11.26", + "4.4.0-12.28", + "4.4.0-13.29", + "4.4.0-14.30", + "4.4.0-15.31", + "4.4.0-16.32", + "4.4.0-17.33", + "4.4.0-18.34", + "4.4.0-21.37", + "4.4.0-22.39", + "4.4.0-22.40", + "4.4.0-24.43", + "4.4.0-28.47", + "4.4.0-31.50", + "4.4.0-34.53", + "4.4.0-36.55", + "4.4.0-38.57", + "4.4.0-42.62", + "4.4.0-43.63", + "4.4.0-45.66", + "4.4.0-47.68", + "4.4.0-51.72", + "4.4.0-53.74", + "4.4.0-57.78", + "4.4.0-59.80", + "4.4.0-62.83", + "4.4.0-63.84", + "4.4.0-64.85", + "4.4.0-65.86", + "4.4.0-66.87", + "4.4.0-67.88", + "4.4.0-70.91", + "4.4.0-71.92", + "4.4.0-72.93", + "4.4.0-75.96", + "4.4.0-77.98", + "4.4.0-78.99", + "4.4.0-79.100", + "4.4.0-81.104", + "4.4.0-83.106", + "4.4.0-87.110", + "4.4.0-89.112", + "4.4.0-91.114", + "4.4.0-92.115", + "4.4.0-93.116", + "4.4.0-96.119", + "4.4.0-97.120", + "4.4.0-98.121", + "4.4.0-101.124", + "4.4.0-103.126", + "4.4.0-104.127", + "4.4.0-108.131", + "4.4.0-109.132", + "4.4.0-112.135", + "4.4.0-116.140", + "4.4.0-119.143", + "4.4.0-121.145", + "4.4.0-122.146", + "4.4.0-124.148", + "4.4.0-127.153", + "4.4.0-128.154", + "4.4.0-130.156", + "4.4.0-131.157", + "4.4.0-133.159", + "4.4.0-134.160", + "4.4.0-135.161", + "4.4.0-137.163", + "4.4.0-138.164", + "4.4.0-139.165", + "4.4.0-140.166", + "4.4.0-141.167", + "4.4.0-142.168", + "4.4.0-143.169", + "4.4.0-145.171", + "4.4.0-146.172", + "4.4.0-148.174", + "4.4.0-150.176", + "4.4.0-151.178", + "4.4.0-154.181", + "4.4.0-157.185", + "4.4.0-159.187", + "4.4.0-161.189", + "4.4.0-164.192", + "4.4.0-165.193", + "4.4.0-166.195", + "4.4.0-168.197", + "4.4.0-169.198", + "4.4.0-170.199", + "4.4.0-171.200", + "4.4.0-173.203" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "block-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "block-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "crypto-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "crypto-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "crypto-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "dasd-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fat-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fat-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fat-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "firewire-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "floppy-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "floppy-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "input-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "input-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "input-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ipmi-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "irda-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "irda-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "irda-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "kernel-image-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "kernel-image-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "kernel-image-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-174", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-headers-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-modules-extra-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-source-4.4.0", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-lowlatency", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc64-emb", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-4.4.0-174-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-udebs-generic-lpae", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-udebs-powerpc-e500mc", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-udebs-powerpc-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "linux-udebs-powerpc64-smp", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "md-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "md-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "md-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "message-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "message-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "mouse-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "mouse-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "mouse-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "multipath-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "multipath-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "multipath-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nfs-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nfs-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nfs-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-shared-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "nic-usb-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "parport-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "parport-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "parport-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pata-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pata-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pcmcia-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "plip-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "plip-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "plip-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ppp-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ppp-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "ppp-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "sata-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "sata-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "sata-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "scsi-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "scsi-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "scsi-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "serial-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "speakup-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "speakup-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "speakup-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "storage-core-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "usb-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "usb-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "usb-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "virtio-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "virtio-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "vlan-modules-4.4.0-174-generic-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "vlan-modules-4.4.0-174-generic-lpae-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc-e500mc-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc-smp-di", + "binary_version": "4.4.0-174.204" + }, + { + "binary_name": "vlan-modules-4.4.0-174-powerpc64-smp-di", + "binary_version": "4.4.0-174.204" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1102.113?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1102.113" + } + ] + } + ], + "versions": [ + "4.4.0-1001.10", + "4.4.0-1003.12", + "4.4.0-1004.13", + "4.4.0-1007.16", + "4.4.0-1009.18", + "4.4.0-1011.20", + "4.4.0-1012.21", + "4.4.0-1013.22", + "4.4.0-1016.25", + "4.4.0-1017.26", + "4.4.0-1018.27", + "4.4.0-1020.29", + "4.4.0-1022.31", + "4.4.0-1026.35", + "4.4.0-1028.37", + "4.4.0-1030.39", + "4.4.0-1031.40", + "4.4.0-1032.41", + "4.4.0-1035.44", + "4.4.0-1037.46", + "4.4.0-1038.47", + "4.4.0-1039.48", + "4.4.0-1041.50", + "4.4.0-1043.52", + "4.4.0-1044.53", + "4.4.0-1047.56", + "4.4.0-1048.57", + "4.4.0-1049.58", + "4.4.0-1050.59", + "4.4.0-1052.61", + "4.4.0-1054.63", + "4.4.0-1055.64", + "4.4.0-1057.66", + "4.4.0-1060.69", + "4.4.0-1061.70", + "4.4.0-1062.71", + "4.4.0-1063.72", + "4.4.0-1065.75", + "4.4.0-1066.76", + "4.4.0-1067.77", + "4.4.0-1069.79", + "4.4.0-1070.80", + "4.4.0-1072.82", + "4.4.0-1073.83", + "4.4.0-1074.84", + "4.4.0-1075.85", + "4.4.0-1077.87", + "4.4.0-1079.89", + "4.4.0-1081.91", + "4.4.0-1083.93", + "4.4.0-1084.94", + "4.4.0-1085.96", + "4.4.0-1087.98", + "4.4.0-1088.99", + "4.4.0-1090.101", + "4.4.0-1092.103", + "4.4.0-1094.105", + "4.4.0-1095.106", + "4.4.0-1096.107", + "4.4.0-1098.109", + "4.4.0-1099.110", + "4.4.0-1100.111", + "4.4.0-1101.112" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.4.0-1102", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-aws-headers-4.4.0-1102", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-aws-tools-4.4.0-1102", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-headers-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-image-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-modules-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-modules-extra-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + }, + { + "binary_name": "linux-tools-4.4.0-1102-aws", + "binary_version": "4.4.0-1102.113" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-aws-hwe", + "purl": "pkg:deb/ubuntu/linux-aws-hwe@4.15.0-1063.67~16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1063.67~16.04.1" + } + ] + } + ], + "versions": [ + "4.15.0-1030.31~16.04.1", + "4.15.0-1031.33~16.04.1", + "4.15.0-1032.34~16.04.1", + "4.15.0-1033.35~16.04.1", + "4.15.0-1035.37~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1039.41~16.04.1", + "4.15.0-1040.42~16.04.1", + "4.15.0-1041.43~16.04.1", + "4.15.0-1043.45~16.04.1", + "4.15.0-1044.46~16.04.1", + "4.15.0-1045.47~16.04.1", + "4.15.0-1047.49~16.04.1", + "4.15.0-1048.50~16.04.1", + "4.15.0-1050.52~16.04.1", + "4.15.0-1051.53~16.04.1", + "4.15.0-1052.54~16.04.1", + "4.15.0-1054.56~16.04.1", + "4.15.0-1056.58~16.04.1", + "4.15.0-1057.59~16.04.1", + "4.15.0-1058.60~16.04.1", + "4.15.0-1060.62~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-headers-4.15.0-1063", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-aws-hwe-cloud-tools-4.15.0-1063", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-aws-hwe-tools-4.15.0-1063", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67~16.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1075.80?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1075.80" + } + ] + } + ], + "versions": [ + "4.11.0-1009.9", + "4.11.0-1011.11", + "4.11.0-1013.13", + "4.11.0-1014.14", + "4.11.0-1015.15", + "4.11.0-1016.16", + "4.13.0-1005.7", + "4.13.0-1006.8", + "4.13.0-1007.9", + "4.13.0-1009.12", + "4.13.0-1011.14", + "4.13.0-1012.15", + "4.13.0-1014.17", + "4.13.0-1016.19", + "4.13.0-1018.21", + "4.15.0-1013.13~16.04.2", + "4.15.0-1014.14~16.04.1", + "4.15.0-1018.18~16.04.1", + "4.15.0-1019.19~16.04.1", + "4.15.0-1021.21~16.04.1", + "4.15.0-1022.22~16.04.1", + "4.15.0-1023.24~16.04.1", + "4.15.0-1025.26~16.04.1", + "4.15.0-1028.29~16.04.1", + "4.15.0-1030.31~16.04.1", + "4.15.0-1031.32~16.04.1", + "4.15.0-1032.33~16.04.1", + "4.15.0-1035.36~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1037.39~16.04.1", + "4.15.0-1039.43", + "4.15.0-1040.44", + "4.15.0-1041.45", + "4.15.0-1042.46", + "4.15.0-1045.49", + "4.15.0-1046.50", + "4.15.0-1047.51", + "4.15.0-1049.54", + "4.15.0-1050.55", + "4.15.0-1051.56", + "4.15.0-1052.57", + "4.15.0-1055.60", + "4.15.0-1056.61", + "4.15.0-1057.62", + "4.15.0-1059.64", + "4.15.0-1060.65", + "4.15.0-1061.66", + "4.15.0-1063.68", + "4.15.0-1064.69", + "4.15.0-1066.71", + "4.15.0-1067.72", + "4.15.0-1069.74", + "4.15.0-1071.76" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-4.15.0-1075", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-azure-headers-4.15.0-1075", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-azure-tools-4.15.0-1075", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-headers-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-modules-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + }, + { + "binary_name": "linux-tools-4.15.0-1075-azure", + "binary_version": "4.15.0-1075.80" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@4.15.0-1058.62?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1058.62" + } + ] + } + ], + "versions": [ + "4.10.0-1004.4", + "4.10.0-1006.6", + "4.10.0-1007.7", + "4.10.0-1008.8", + "4.10.0-1009.9", + "4.13.0-1002.5", + "4.13.0-1006.9", + "4.13.0-1007.10", + "4.13.0-1008.11", + "4.13.0-1011.15", + "4.13.0-1012.16", + "4.13.0-1013.17", + "4.13.0-1015.19", + "4.13.0-1017.21", + "4.13.0-1019.23", + "4.15.0-1014.14~16.04.1", + "4.15.0-1015.15~16.04.1", + "4.15.0-1017.18~16.04.1", + "4.15.0-1018.19~16.04.2", + "4.15.0-1019.20~16.04.1", + "4.15.0-1021.22~16.04.1", + "4.15.0-1023.24~16.04.1", + "4.15.0-1024.25~16.04.2", + "4.15.0-1025.26~16.04.1", + "4.15.0-1026.27~16.04.1", + "4.15.0-1027.28~16.04.1", + "4.15.0-1028.29~16.04.1", + "4.15.0-1029.31~16.04.1", + "4.15.0-1030.32~16.04.1", + "4.15.0-1032.34~16.04.1", + "4.15.0-1033.35~16.04.1", + "4.15.0-1034.36~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1037.39~16.04.1", + "4.15.0-1040.42~16.04.1", + "4.15.0-1041.43", + "4.15.0-1042.44", + "4.15.0-1044.46", + "4.15.0-1046.49", + "4.15.0-1047.50", + "4.15.0-1049.52", + "4.15.0-1050.53", + "4.15.0-1052.56", + "4.15.0-1055.59" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-gcp-headers-4.15.0-1058", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-gcp-tools-4.15.0-1058", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-headers-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-modules-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + }, + { + "binary_name": "linux-tools-4.15.0-1058-gcp", + "binary_version": "4.15.0-1058.62" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-hwe", + "purl": "pkg:deb/ubuntu/linux-hwe@4.15.0-91.92~16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-91.92~16.04.1" + } + ] + } + ], + "versions": [ + "4.8.0-36.36~16.04.1", + "4.8.0-39.42~16.04.1", + "4.8.0-41.44~16.04.1", + "4.8.0-42.45~16.04.1", + "4.8.0-44.47~16.04.1", + "4.8.0-45.48~16.04.1", + "4.8.0-46.49~16.04.1", + "4.8.0-49.52~16.04.1", + "4.8.0-51.54~16.04.1", + "4.8.0-52.55~16.04.1", + "4.8.0-53.56~16.04.1", + "4.8.0-54.57~16.04.1", + "4.8.0-56.61~16.04.1", + "4.8.0-58.63~16.04.1", + "4.10.0-27.30~16.04.2", + "4.10.0-28.32~16.04.2", + "4.10.0-30.34~16.04.1", + "4.10.0-32.36~16.04.1", + "4.10.0-33.37~16.04.1", + "4.10.0-35.39~16.04.1", + "4.10.0-37.41~16.04.1", + "4.10.0-38.42~16.04.1", + "4.10.0-40.44~16.04.1", + "4.10.0-42.46~16.04.1", + "4.13.0-26.29~16.04.2", + "4.13.0-31.34~16.04.1", + "4.13.0-32.35~16.04.1", + "4.13.0-36.40~16.04.1", + "4.13.0-37.42~16.04.1", + "4.13.0-38.43~16.04.1", + "4.13.0-39.44~16.04.1", + "4.13.0-41.46~16.04.1", + "4.13.0-43.48~16.04.1", + "4.13.0-45.50~16.04.1", + "4.15.0-24.26~16.04.1", + "4.15.0-29.31~16.04.1", + "4.15.0-30.32~16.04.1", + "4.15.0-32.35~16.04.1", + "4.15.0-33.36~16.04.1", + "4.15.0-34.37~16.04.1", + "4.15.0-36.39~16.04.1", + "4.15.0-38.41~16.04.1", + "4.15.0-39.42~16.04.1", + "4.15.0-42.45~16.04.1", + "4.15.0-43.46~16.04.1", + "4.15.0-45.48~16.04.1", + "4.15.0-46.49~16.04.1", + "4.15.0-47.50~16.04.1", + "4.15.0-48.51~16.04.1", + "4.15.0-50.54~16.04.1", + "4.15.0-51.55~16.04.1", + "4.15.0-52.56~16.04.1", + "4.15.0-54.58~16.04.1", + "4.15.0-55.60~16.04.2", + "4.15.0-58.64~16.04.1", + "4.15.0-60.67~16.04.1", + "4.15.0-62.69~16.04.1", + "4.15.0-64.73~16.04.1", + "4.15.0-65.74~16.04.1", + "4.15.0-66.75~16.04.1", + "4.15.0-69.78~16.04.1", + "4.15.0-70.79~16.04.1", + "4.15.0-72.81~16.04.1", + "4.15.0-74.83~16.04.1", + "4.15.0-76.86~16.04.1", + "4.15.0-88.88~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "block-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "dasd-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "firewire-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "floppy-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-91", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-hwe-cloud-tools-4.15.0-91", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-hwe-tools-4.15.0-91", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-hwe-udebs-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-hwe-udebs-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-source-4.15.0", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-91-generic", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "message-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "pata-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "pcmcia-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "serial-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "virtio-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92~16.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@4.4.0-1066.73?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1066.73" + } + ] + } + ], + "versions": [ + "4.4.0-1004.9", + "4.4.0-1007.12", + "4.4.0-1008.13", + "4.4.0-1009.14", + "4.4.0-1010.15", + "4.4.0-1012.17", + "4.4.0-1013.18", + "4.4.0-1015.20", + "4.4.0-1017.22", + "4.4.0-1019.24", + "4.4.0-1020.25", + "4.4.0-1021.26", + "4.4.0-1023.28", + "4.4.0-1026.31", + "4.4.0-1027.32", + "4.4.0-1029.34", + "4.4.0-1031.37", + "4.4.0-1032.38", + "4.4.0-1033.39", + "4.4.0-1035.41", + "4.4.0-1036.42", + "4.4.0-1037.43", + "4.4.0-1038.44", + "4.4.0-1039.45", + "4.4.0-1040.46", + "4.4.0-1041.47", + "4.4.0-1043.49", + "4.4.0-1044.50", + "4.4.0-1046.52", + "4.4.0-1047.53", + "4.4.0-1048.55", + "4.4.0-1051.58", + "4.4.0-1052.59", + "4.4.0-1054.61", + "4.4.0-1056.63", + "4.4.0-1058.65", + "4.4.0-1059.66", + "4.4.0-1060.67", + "4.4.0-1062.69", + "4.4.0-1063.70", + "4.4.0-1064.71", + "4.4.0-1065.72" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-headers-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-image-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-kvm-cloud-tools-4.4.0-1066", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-kvm-headers-4.4.0-1066", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-kvm-tools-4.4.0-1066", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-modules-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + }, + { + "binary_name": "linux-tools-4.4.0-1066-kvm", + "binary_version": "4.4.0-1066.73" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1035.38~16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1035.38~16.04.1" + } + ] + } + ], + "versions": [ + "4.15.0-1007.9~16.04.1", + "4.15.0-1008.10~16.04.1", + "4.15.0-1009.11~16.04.1", + "4.15.0-1010.12~16.04.1", + "4.15.0-1011.13~16.04.1", + "4.15.0-1013.15~16.04.1", + "4.15.0-1014.16~16.04.1", + "4.15.0-1015.17~16.04.1", + "4.15.0-1017.19~16.04.2", + "4.15.0-1018.20~16.04.1", + "4.15.0-1021.23~16.04.1", + "4.15.0-1022.25~16.04.1", + "4.15.0-1023.26~16.04.1", + "4.15.0-1025.28~16.04.1", + "4.15.0-1026.29~16.04.1", + "4.15.0-1027.30~16.04.1", + "4.15.0-1029.32~16.04.1", + "4.15.0-1030.33~16.04.1", + "4.15.0-1031.34~16.04.1", + "4.15.0-1033.36~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-oracle-headers-4.15.0-1035", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-oracle-tools-4.15.0-1035", + "binary_version": "4.15.0-1035.38~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.38~16.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-raspi2", + "purl": "pkg:deb/ubuntu/linux-raspi2@4.4.0-1129.138?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1129.138" + } + ] + } + ], + "versions": [ + "4.2.0-1013.19", + "4.2.0-1014.21", + "4.3.0-1006.6", + "4.4.0-1003.4", + "4.4.0-1004.5", + "4.4.0-1009.10", + "4.4.0-1010.12", + "4.4.0-1010.13", + "4.4.0-1012.16", + "4.4.0-1016.22", + "4.4.0-1017.23", + "4.4.0-1019.25", + "4.4.0-1021.27", + "4.4.0-1023.29", + "4.4.0-1027.33", + "4.4.0-1029.36", + "4.4.0-1034.41", + "4.4.0-1038.45", + "4.4.0-1040.47", + "4.4.0-1042.49", + "4.4.0-1044.51", + "4.4.0-1046.53", + "4.4.0-1048.55", + "4.4.0-1050.57", + "4.4.0-1051.58", + "4.4.0-1052.59", + "4.4.0-1054.61", + "4.4.0-1055.62", + "4.4.0-1057.64", + "4.4.0-1059.67", + "4.4.0-1061.69", + "4.4.0-1065.73", + "4.4.0-1067.75", + "4.4.0-1069.77", + "4.4.0-1070.78", + "4.4.0-1071.79", + "4.4.0-1074.82", + "4.4.0-1075.83", + "4.4.0-1076.84", + "4.4.0-1077.85", + "4.4.0-1079.87", + "4.4.0-1080.88", + "4.4.0-1082.90", + "4.4.0-1085.93", + "4.4.0-1086.94", + "4.4.0-1087.95", + "4.4.0-1089.97", + "4.4.0-1090.98", + "4.4.0-1091.99", + "4.4.0-1092.100", + "4.4.0-1094.102", + "4.4.0-1095.103", + "4.4.0-1096.104", + "4.4.0-1098.106", + "4.4.0-1099.107", + "4.4.0-1100.108", + "4.4.0-1101.109", + "4.4.0-1102.110", + "4.4.0-1103.111", + "4.4.0-1104.112", + "4.4.0-1106.114", + "4.4.0-1107.115", + "4.4.0-1109.117", + "4.4.0-1110.118", + "4.4.0-1111.120", + "4.4.0-1114.123", + "4.4.0-1117.126", + "4.4.0-1118.127", + "4.4.0-1120.129", + "4.4.0-1122.131", + "4.4.0-1123.132", + "4.4.0-1124.133", + "4.4.0-1125.134", + "4.4.0-1126.135", + "4.4.0-1127.136", + "4.4.0-1128.137" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.4.0-1129-raspi2", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-headers-4.4.0-1129-raspi2", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-image-4.4.0-1129-raspi2", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-modules-4.4.0-1129-raspi2", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-raspi2-headers-4.4.0-1129", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-raspi2-tools-4.4.0-1129", + "binary_version": "4.4.0-1129.138" + }, + { + "binary_name": "linux-tools-4.4.0-1129-raspi2", + "binary_version": "4.4.0-1129.138" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-snapdragon", + "purl": "pkg:deb/ubuntu/linux-snapdragon@4.4.0-1133.141?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1133.141" + } + ] + } + ], + "versions": [ + "4.4.0-1012.12", + "4.4.0-1013.14", + "4.4.0-1013.15", + "4.4.0-1015.18", + "4.4.0-1019.22", + "4.4.0-1020.23", + "4.4.0-1022.25", + "4.4.0-1024.27", + "4.4.0-1026.29", + "4.4.0-1030.33", + "4.4.0-1032.36", + "4.4.0-1035.39", + "4.4.0-1039.43", + "4.4.0-1042.46", + "4.4.0-1044.48", + "4.4.0-1046.50", + "4.4.0-1047.51", + "4.4.0-1048.52", + "4.4.0-1050.54", + "4.4.0-1051.55", + "4.4.0-1053.57", + "4.4.0-1054.58", + "4.4.0-1055.59", + "4.4.0-1057.61", + "4.4.0-1058.62", + "4.4.0-1059.63", + "4.4.0-1061.66", + "4.4.0-1063.68", + "4.4.0-1067.72", + "4.4.0-1069.74", + "4.4.0-1071.76", + "4.4.0-1072.77", + "4.4.0-1073.78", + "4.4.0-1076.81", + "4.4.0-1077.82", + "4.4.0-1078.83", + "4.4.0-1079.84", + "4.4.0-1081.86", + "4.4.0-1082.87", + "4.4.0-1084.89", + "4.4.0-1087.92", + "4.4.0-1088.93", + "4.4.0-1090.95", + "4.4.0-1092.97", + "4.4.0-1093.98", + "4.4.0-1094.99", + "4.4.0-1095.100", + "4.4.0-1096.101", + "4.4.0-1098.103", + "4.4.0-1099.104", + "4.4.0-1100.105", + "4.4.0-1102.107", + "4.4.0-1103.108", + "4.4.0-1104.109", + "4.4.0-1105.110", + "4.4.0-1106.111", + "4.4.0-1107.112", + "4.4.0-1108.113", + "4.4.0-1110.115", + "4.4.0-1111.116", + "4.4.0-1113.118", + "4.4.0-1114.119", + "4.4.0-1115.121", + "4.4.0-1118.124", + "4.4.0-1121.127", + "4.4.0-1122.128", + "4.4.0-1124.130", + "4.4.0-1126.132", + "4.4.0-1127.135", + "4.4.0-1128.136", + "4.4.0-1129.137", + "4.4.0-1130.138", + "4.4.0-1131.139", + "4.4.0-1132.140" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.4.0-1133-snapdragon", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-headers-4.4.0-1133-snapdragon", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-image-4.4.0-1133-snapdragon", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-modules-4.4.0-1133-snapdragon", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-snapdragon-headers-4.4.0-1133", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-snapdragon-tools-4.4.0-1133", + "binary_version": "4.4.0-1133.141" + }, + { + "binary_name": "linux-tools-4.4.0-1133-snapdragon", + "binary_version": "4.4.0-1133.141" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-hwe-edge", + "purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.8.0-28.30~16.04.1", + "4.8.0-30.32~16.04.1", + "4.8.0-32.34~16.04.1", + "4.8.0-34.36~16.04.1", + "4.10.0-14.16~16.04.1", + "4.10.0-19.21~16.04.1", + "4.10.0-20.22~16.04.1", + "4.10.0-21.23~16.04.1", + "4.10.0-22.24~16.04.1", + "4.10.0-24.28~16.04.1", + "4.10.0-26.30~16.04.1", + "4.11.0-13.19~16.04.1", + "4.11.0-14.20~16.04.1", + "4.13.0-16.19~16.04.3", + "4.13.0-17.20~16.04.1", + "4.13.0-19.22~16.04.1", + "4.13.0-21.24~16.04.1", + "4.13.0-25.29~16.04.2", + "4.15.0-13.14~16.04.1", + "4.15.0-15.16~16.04.1", + "4.15.0-20.21~16.04.1", + "4.15.0-22.24~16.04.1", + "4.15.0-23.25~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "block-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "dasd-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "firewire-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "floppy-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-tools-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-source-4.15.0", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "message-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pata-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pcmcia-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "serial-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "virtio-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1029.34?arch=source&distro=fips-updates/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.4.0-1029.34" + } + ] + } + ], + "versions": [ + "4.4.0-1003.3", + "4.4.0-1005.5", + "4.4.0-1006.6", + "4.4.0-1008.10", + "4.4.0-1010.13", + "4.4.0-1011.14", + "4.4.0-1012.16", + "4.4.0-1013.17", + "4.4.0-1015.20", + "4.4.0-1017.22", + "4.4.0-1019.24", + "4.4.0-1021.26", + "4.4.0-1022.27", + "4.4.0-1023.28", + "4.4.0-1025.30", + "4.4.0-1026.31", + "4.4.0-1027.32", + "4.4.0-1028.33" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "crypto-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "dasd-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "fat-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "fb-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "firewire-core-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "floppy-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "fs-core-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "input-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "ipmi-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "irda-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "kernel-image-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-fips-cloud-tools-common", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-fips-headers-4.4.0-1029", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-fips-source-4.4.0", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-fips-tools-4.4.0-1029", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-headers-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-image-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-image-hmac-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-modules-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-modules-extra-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-tools-4.4.0-1029-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "linux-udebs-fips", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "md-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "message-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "mouse-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "multipath-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "nfs-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "nic-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "nic-shared-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "nic-usb-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "parport-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "pata-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "pcmcia-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "plip-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "ppp-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "sata-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "scsi-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "serial-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "speakup-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "storage-core-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "usb-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "virtio-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + }, + { + "binary_name": "vlan-modules-4.4.0-1029-fips-di", + "binary_version": "4.4.0-1029.34" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1002.2?arch=source&distro=fips/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1001.1", + "4.4.0-1002.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "crypto-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "dasd-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fat-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "firewire-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "floppy-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fs-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "input-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "ipmi-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "irda-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "kernel-image-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-headers-4.4.0-1002", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-source-4.4.0", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-tools-4.4.0-1002", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-headers-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-extra-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-hmac-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-tools-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-udebs-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "md-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "message-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "mouse-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "multipath-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nfs-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-shared-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-usb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "parport-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pata-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pcmcia-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "plip-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "ppp-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "sata-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "scsi-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "serial-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "speakup-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "storage-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "usb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "virtio-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "vlan-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@4.15.0-91.92?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-91.92" + } + ] + } + ], + "versions": [ + "4.13.0-16.19", + "4.13.0-17.20", + "4.13.0-25.29", + "4.13.0-32.35", + "4.15.0-10.11", + "4.15.0-12.13", + "4.15.0-13.14", + "4.15.0-15.16", + "4.15.0-19.20", + "4.15.0-20.21", + "4.15.0-22.24", + "4.15.0-23.25", + "4.15.0-24.26", + "4.15.0-29.31", + "4.15.0-30.32", + "4.15.0-32.35", + "4.15.0-33.36", + "4.15.0-34.37", + "4.15.0-36.39", + "4.15.0-38.41", + "4.15.0-39.42", + "4.15.0-42.45", + "4.15.0-43.46", + "4.15.0-44.47", + "4.15.0-45.48", + "4.15.0-46.49", + "4.15.0-47.50", + "4.15.0-48.51", + "4.15.0-50.54", + "4.15.0-51.55", + "4.15.0-52.56", + "4.15.0-54.58", + "4.15.0-55.60", + "4.15.0-58.64", + "4.15.0-60.67", + "4.15.0-62.69", + "4.15.0-64.73", + "4.15.0-65.74", + "4.15.0-66.75", + "4.15.0-69.78", + "4.15.0-70.79", + "4.15.0-72.81", + "4.15.0-74.84", + "4.15.0-76.86", + "4.15.0-88.88" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "block-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "crypto-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "crypto-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "dasd-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fat-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fat-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "firewire-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "floppy-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fs-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fs-core-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "input-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "input-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "ipmi-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "ipmi-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "irda-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "irda-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "kernel-image-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "kernel-image-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-buildinfo-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-91", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-headers-4.15.0-91", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-headers-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-headers-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-headers-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-image-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-image-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-image-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-modules-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-modules-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-modules-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-modules-extra-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-source-4.15.0", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-4.15.0-91", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-4.15.0-91-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-4.15.0-91-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-4.15.0-91-lowlatency", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "linux-udebs-generic-lpae", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "md-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "md-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "message-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "mouse-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "mouse-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "multipath-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "multipath-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nfs-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nfs-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-shared-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-shared-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-usb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "nic-usb-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "parport-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "parport-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "pata-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "pcmcia-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "plip-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "plip-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "ppp-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "ppp-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "sata-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "sata-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "scsi-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "scsi-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "serial-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "storage-core-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "storage-core-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "usb-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "usb-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "virtio-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "vlan-modules-4.15.0-91-generic-di", + "binary_version": "4.15.0-91.92" + }, + { + "binary_name": "vlan-modules-4.15.0-91-generic-lpae-di", + "binary_version": "4.15.0-91.92" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.15.0-1063.67?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1063.67" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1", + "4.15.0-1003.3", + "4.15.0-1005.5", + "4.15.0-1006.6", + "4.15.0-1007.7", + "4.15.0-1009.9", + "4.15.0-1010.10", + "4.15.0-1011.11", + "4.15.0-1016.16", + "4.15.0-1017.17", + "4.15.0-1019.19", + "4.15.0-1020.20", + "4.15.0-1021.21", + "4.15.0-1023.23", + "4.15.0-1025.25", + "4.15.0-1027.27", + "4.15.0-1029.30", + "4.15.0-1031.33", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1035.37", + "4.15.0-1037.39", + "4.15.0-1039.41", + "4.15.0-1040.42", + "4.15.0-1041.43", + "4.15.0-1043.45", + "4.15.0-1044.46", + "4.15.0-1045.47", + "4.15.0-1047.49", + "4.15.0-1048.50", + "4.15.0-1050.52", + "4.15.0-1051.53", + "4.15.0-1052.54", + "4.15.0-1054.56", + "4.15.0-1056.58", + "4.15.0-1057.59", + "4.15.0-1058.60", + "4.15.0-1060.62" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.15.0-1063", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-aws-headers-4.15.0-1063", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-aws-tools-4.15.0-1063", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-headers-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-image-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-modules-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + }, + { + "binary_name": "linux-tools-4.15.0-1063-aws", + "binary_version": "4.15.0-1063.67" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gke-4.15", + "purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1055.58?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1055.58" + } + ] + } + ], + "versions": [ + "4.15.0-1030.32", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.15.0-1040.42", + "4.15.0-1041.43", + "4.15.0-1042.44", + "4.15.0-1044.46", + "4.15.0-1045.48", + "4.15.0-1046.49", + "4.15.0-1048.51", + "4.15.0-1049.52", + "4.15.0-1050.53", + "4.15.0-1052.55" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-gke-4.15-headers-4.15.0-1055", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-gke-4.15-tools-4.15.0-1055", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-headers-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-modules-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + }, + { + "binary_name": "linux-tools-4.15.0-1055-gke", + "binary_version": "4.15.0-1055.58" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gke-5.0", + "purl": "pkg:deb/ubuntu/linux-gke-5.0@5.0.0-1032.33?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.0.0-1032.33" + } + ] + } + ], + "versions": [ + "5.0.0-1011.11~18.04.1", + "5.0.0-1013.13~18.04.1", + "5.0.0-1015.15~18.04.1", + "5.0.0-1017.17~18.04.1", + "5.0.0-1020.20~18.04.1", + "5.0.0-1022.22~18.04.3", + "5.0.0-1023.23~18.04.2", + "5.0.0-1025.26~18.04.1", + "5.0.0-1026.27~18.04.2", + "5.0.0-1027.28~18.04.1", + "5.0.0-1029.30~18.04.1", + "5.0.0-1030.31" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-gke-5.0-headers-5.0.0-1032", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-gke-5.0-tools-5.0.0-1032", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-headers-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-modules-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + }, + { + "binary_name": "linux-tools-5.0.0-1032-gke", + "binary_version": "5.0.0-1032.33" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gke-5.3", + "purl": "pkg:deb/ubuntu/linux-gke-5.3@5.3.0-1014.15~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.3.0-1014.15~18.04.1" + } + ] + } + ], + "versions": [ + "5.3.0-1011.12~18.04.1", + "5.3.0-1012.13~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-gke-5.3-headers-5.3.0-1014", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-gke-5.3-tools-5.3.0-1014", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1014-gke", + "binary_version": "5.3.0-1014.15~18.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@4.15.0-1056.57?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1056.57" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2", + "4.15.0-1003.3", + "4.15.0-1004.4", + "4.15.0-1006.6", + "4.15.0-1008.8", + "4.15.0-1010.10", + "4.15.0-1011.11", + "4.15.0-1012.12", + "4.15.0-1016.16", + "4.15.0-1017.17", + "4.15.0-1019.19", + "4.15.0-1020.20", + "4.15.0-1021.21", + "4.15.0-1023.23", + "4.15.0-1025.25", + "4.15.0-1026.26", + "4.15.0-1027.27", + "4.15.0-1028.28", + "4.15.0-1029.29", + "4.15.0-1030.30", + "4.15.0-1031.31", + "4.15.0-1032.32", + "4.15.0-1034.34", + "4.15.0-1035.35", + "4.15.0-1036.36", + "4.15.0-1038.38", + "4.15.0-1039.39", + "4.15.0-1042.42", + "4.15.0-1043.43", + "4.15.0-1044.44", + "4.15.0-1046.46", + "4.15.0-1047.47", + "4.15.0-1048.48", + "4.15.0-1050.50", + "4.15.0-1051.51", + "4.15.0-1052.52", + "4.15.0-1053.53" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1056-kvm", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-headers-4.15.0-1056-kvm", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-image-4.15.0-1056-kvm", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-kvm-headers-4.15.0-1056", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-kvm-tools-4.15.0-1056", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-modules-4.15.0-1056-kvm", + "binary_version": "4.15.0-1056.57" + }, + { + "binary_name": "linux-tools-4.15.0-1056-kvm", + "binary_version": "4.15.0-1056.57" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oem", + "purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1076.86?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1076.86" + } + ] + } + ], + "versions": [ + "4.15.0-1002.3", + "4.15.0-1004.5", + "4.15.0-1006.9", + "4.15.0-1008.11", + "4.15.0-1009.12", + "4.15.0-1012.15", + "4.15.0-1013.16", + "4.15.0-1015.18", + "4.15.0-1017.20", + "4.15.0-1018.21", + "4.15.0-1021.24", + "4.15.0-1024.29", + "4.15.0-1026.31", + "4.15.0-1028.33", + "4.15.0-1030.35", + "4.15.0-1033.38", + "4.15.0-1034.39", + "4.15.0-1035.40", + "4.15.0-1036.41", + "4.15.0-1038.43", + "4.15.0-1039.44", + "4.15.0-1043.48", + "4.15.0-1045.50", + "4.15.0-1050.57", + "4.15.0-1056.65", + "4.15.0-1057.66", + "4.15.0-1059.68", + "4.15.0-1063.72", + "4.15.0-1064.73", + "4.15.0-1065.75", + "4.15.0-1066.76", + "4.15.0-1067.77", + "4.15.0-1069.79", + "4.15.0-1073.83" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "crypto-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "fat-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "fb-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "firewire-core-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "floppy-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "fs-core-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "input-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "ipmi-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "irda-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "kernel-image-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1076-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-headers-4.15.0-1076-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1076-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-modules-4.15.0-1076-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-oem-headers-4.15.0-1076", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-oem-tools-4.15.0-1076", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-tools-4.15.0-1076-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "linux-udebs-oem", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "md-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "message-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "mouse-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "multipath-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "nfs-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "nic-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "nic-shared-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "nic-usb-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "parport-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "pata-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "pcmcia-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "plip-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "ppp-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "sata-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "scsi-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "serial-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "storage-core-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "usb-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "virtio-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + }, + { + "binary_name": "vlan-modules-4.15.0-1076-oem-di", + "binary_version": "4.15.0-1076.86" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oem-osp1", + "purl": "pkg:deb/ubuntu/linux-oem-osp1@5.0.0-1043.48?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.0.0-1043.48" + } + ] + } + ], + "versions": [ + "5.0.0-1010.11", + "5.0.0-1012.13", + "5.0.0-1015.16", + "5.0.0-1018.20", + "5.0.0-1020.22", + "5.0.0-1022.24", + "5.0.0-1024.27", + "5.0.0-1025.28", + "5.0.0-1027.31", + "5.0.0-1028.32", + "5.0.0-1030.34", + "5.0.0-1033.38", + "5.0.0-1037.42", + "5.0.0-1039.44", + "5.0.0-1040.45" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "crypto-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "fat-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "fb-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "firewire-core-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "floppy-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "fs-core-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "fs-secondary-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "input-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "ipmi-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "kernel-image-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1043-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-headers-5.0.0-1043-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1043-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-modules-5.0.0-1043-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-oem-osp1-headers-5.0.0-1043", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-oem-osp1-tools-5.0.0-1043", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-oem-osp1-tools-host", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-tools-5.0.0-1043-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "linux-udebs-oem-osp1", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "md-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "message-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "mouse-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "multipath-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "nfs-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "nic-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "nic-pcmcia-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "nic-shared-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "nic-usb-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "parport-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "pata-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "pcmcia-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "pcmcia-storage-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "plip-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "ppp-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "sata-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "scsi-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "serial-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "storage-core-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "usb-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "virtio-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + }, + { + "binary_name": "vlan-modules-5.0.0-1043-oem-osp1-di", + "binary_version": "5.0.0-1043.48" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1035.39?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1035.39" + } + ] + } + ], + "versions": [ + "4.15.0-1007.9", + "4.15.0-1008.10", + "4.15.0-1009.11", + "4.15.0-1010.12", + "4.15.0-1011.13", + "4.15.0-1013.15", + "4.15.0-1014.16", + "4.15.0-1015.17", + "4.15.0-1017.19", + "4.15.0-1018.20", + "4.15.0-1021.23", + "4.15.0-1022.25", + "4.15.0-1023.26", + "4.15.0-1025.28", + "4.15.0-1026.29", + "4.15.0-1027.30", + "4.15.0-1029.32", + "4.15.0-1030.33", + "4.15.0-1031.34", + "4.15.0-1033.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-headers-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-modules-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-oracle-headers-4.15.0-1035", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-oracle-tools-4.15.0-1035", + "binary_version": "4.15.0-1035.39" + }, + { + "binary_name": "linux-tools-4.15.0-1035-oracle", + "binary_version": "4.15.0-1035.39" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-raspi2", + "purl": "pkg:deb/ubuntu/linux-raspi2@4.15.0-1057.61?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1057.61" + } + ] + } + ], + "versions": [ + "4.13.0-1005.5", + "4.13.0-1006.6", + "4.13.0-1008.8", + "4.15.0-1006.7", + "4.15.0-1009.10", + "4.15.0-1010.11", + "4.15.0-1011.12", + "4.15.0-1012.13", + "4.15.0-1013.14", + "4.15.0-1017.18", + "4.15.0-1018.19", + "4.15.0-1020.22", + "4.15.0-1021.23", + "4.15.0-1022.24", + "4.15.0-1024.26", + "4.15.0-1026.28", + "4.15.0-1027.29", + "4.15.0-1028.30", + "4.15.0-1029.31", + "4.15.0-1030.32", + "4.15.0-1031.33", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.15.0-1038.40", + "4.15.0-1040.43", + "4.15.0-1041.44", + "4.15.0-1043.46", + "4.15.0-1044.47", + "4.15.0-1045.49", + "4.15.0-1047.51", + "4.15.0-1048.52", + "4.15.0-1049.53", + "4.15.0-1050.54", + "4.15.0-1052.56", + "4.15.0-1053.57", + "4.15.0-1054.58", + "4.15.0-1055.59" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1057-raspi2", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-headers-4.15.0-1057-raspi2", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-image-4.15.0-1057-raspi2", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-modules-4.15.0-1057-raspi2", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-raspi2-headers-4.15.0-1057", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-raspi2-tools-4.15.0-1057", + "binary_version": "4.15.0-1057.61" + }, + { + "binary_name": "linux-tools-4.15.0-1057-raspi2", + "binary_version": "4.15.0-1057.61" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-raspi2-5.3", + "purl": "pkg:deb/ubuntu/linux-raspi2-5.3@5.3.0-1019.21~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.3.0-1019.21~18.04.1" + } + ] + } + ], + "versions": [ + "5.3.0-1017.19~18.04.1", + "5.3.0-1018.20~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1019-raspi2", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1019-raspi2", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-image-5.3.0-1019-raspi2", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1019-raspi2", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-raspi2-5.3-headers-5.3.0-1019", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-raspi2-5.3-tools-5.3.0-1019", + "binary_version": "5.3.0-1019.21~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1019-raspi2", + "binary_version": "5.3.0-1019.21~18.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-snapdragon", + "purl": "pkg:deb/ubuntu/linux-snapdragon@4.15.0-1074.81?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-1074.81" + } + ] + } + ], + "versions": [ + "4.4.0-1077.82", + "4.4.0-1078.83", + "4.4.0-1079.84", + "4.4.0-1081.86", + "4.15.0-1053.57", + "4.15.0-1054.58", + "4.15.0-1055.59", + "4.15.0-1057.62", + "4.15.0-1058.64", + "4.15.0-1060.66", + "4.15.0-1062.69", + "4.15.0-1064.71", + "4.15.0-1065.72", + "4.15.0-1066.73", + "4.15.0-1067.74", + "4.15.0-1069.76", + "4.15.0-1070.77", + "4.15.0-1071.78", + "4.15.0-1072.79" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1074-snapdragon", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-headers-4.15.0-1074-snapdragon", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-image-4.15.0-1074-snapdragon", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-modules-4.15.0-1074-snapdragon", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-snapdragon-headers-4.15.0-1074", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-snapdragon-tools-4.15.0-1074", + "binary_version": "4.15.0-1074.81" + }, + { + "binary_name": "linux-tools-4.15.0-1074-snapdragon", + "binary_version": "4.15.0-1074.81" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-aws-5.0", + "purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-1021.24~18.04.1", + "5.0.0-1022.25~18.04.1", + "5.0.0-1023.26~18.04.1", + "5.0.0-1024.27~18.04.1", + "5.0.0-1025.28", + "5.0.0-1027.30" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.0-tools-5.0.0-1027", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-aws-headers-5.0.0-1027", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-headers-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-image-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-modules-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-tools-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-aws-5.3", + "purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1016.17~18.04.1", + "5.3.0-1017.18~18.04.1", + "5.3.0-1019.21~18.04.1", + "5.3.0-1023.25~18.04.1", + "5.3.0-1028.30~18.04.1", + "5.3.0-1030.32~18.04.1", + "5.3.0-1032.34~18.04.2", + "5.3.0-1033.35", + "5.3.0-1034.36", + "5.3.0-1035.37" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-aws-5.3-headers-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-aws-5.3-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-buildinfo-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-headers-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-image-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-modules-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-tools-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2", + "4.15.0-1003.3", + "4.15.0-1004.4", + "4.15.0-1008.8", + "4.15.0-1009.9", + "4.15.0-1012.12", + "4.15.0-1013.13", + "4.15.0-1014.14", + "4.15.0-1018.18", + "4.15.0-1019.19", + "4.15.0-1021.21", + "4.15.0-1022.23", + "4.15.0-1023.24", + "4.15.0-1025.26", + "4.15.0-1028.29", + "4.15.0-1030.31", + "4.15.0-1031.32", + "4.15.0-1032.33", + "4.15.0-1035.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.18.0-1011.11~18.04.1", + "4.18.0-1013.13~18.04.1", + "4.18.0-1014.14~18.04.1", + "4.18.0-1018.18~18.04.1", + "4.18.0-1019.19~18.04.1", + "4.18.0-1020.20~18.04.1", + "4.18.0-1023.24~18.04.1", + "4.18.0-1024.25~18.04.1", + "4.18.0-1025.27~18.04.1", + "5.0.0-1014.14~18.04.1", + "5.0.0-1016.17~18.04.1", + "5.0.0-1018.19~18.04.1", + "5.0.0-1020.21~18.04.1", + "5.0.0-1022.23~18.04.1", + "5.0.0-1023.24~18.04.1", + "5.0.0-1025.27~18.04.1", + "5.0.0-1027.29~18.04.1", + "5.0.0-1028.30~18.04.1", + "5.0.0-1029.31~18.04.1", + "5.0.0-1031.33", + "5.0.0-1032.34", + "5.0.0-1035.37", + "5.0.0-1036.38" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-azure-headers-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-azure-tools-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-headers-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-modules-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-tools-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure-5.3", + "purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1007.8~18.04.1", + "5.3.0-1008.9~18.04.1", + "5.3.0-1009.10~18.04.1", + "5.3.0-1010.11~18.04.1", + "5.3.0-1012.13~18.04.1", + "5.3.0-1013.14~18.04.1", + "5.3.0-1016.17~18.04.1", + "5.3.0-1018.19~18.04.1", + "5.3.0-1019.20~18.04.1", + "5.3.0-1020.21~18.04.1", + "5.3.0-1022.23~18.04.1", + "5.3.0-1028.29~18.04.1", + "5.3.0-1031.32~18.04.1", + "5.3.0-1032.33~18.04.1", + "5.3.0-1034.35~18.04.1", + "5.3.0-1035.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-azure-5.3-headers-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-azure-5.3-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-buildinfo-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-headers-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-modules-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-tools-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure-edge", + "purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.18.0-1006.6~18.04.1", + "4.18.0-1007.7~18.04.1", + "4.18.0-1008.8~18.04.1", + "5.0.0-1012.12~18.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-azure-edge-tools-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-azure-headers-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-headers-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-modules-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-tools-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1", + "4.15.0-1003.3", + "4.15.0-1005.5", + "4.15.0-1006.6", + "4.15.0-1008.8", + "4.15.0-1009.9", + "4.15.0-1010.10", + "4.15.0-1014.14", + "4.15.0-1015.15", + "4.15.0-1017.18", + "4.15.0-1018.19", + "4.15.0-1019.20", + "4.15.0-1021.22", + "4.15.0-1023.24", + "4.15.0-1024.25", + "4.15.0-1025.26", + "4.15.0-1026.27", + "4.15.0-1027.28", + "4.15.0-1028.29", + "4.15.0-1029.31", + "4.15.0-1030.32", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.15.0-1040.42", + "4.15.0-1042.45", + "4.15.0-1044.70", + "5.0.0-1020.20~18.04.1", + "5.0.0-1021.21~18.04.1", + "5.0.0-1025.26~18.04.1", + "5.0.0-1026.27~18.04.1", + "5.0.0-1028.29~18.04.1", + "5.0.0-1029.30~18.04.1", + "5.0.0-1031.32", + "5.0.0-1033.34", + "5.0.0-1034.35" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-gcp-headers-5.0.0-1034", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-gcp-tools-5.0.0-1034", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-headers-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-modules-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-tools-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gcp-5.3", + "purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1008.9~18.04.1", + "5.3.0-1009.10~18.04.1", + "5.3.0-1010.11~18.04.1", + "5.3.0-1012.13~18.04.1", + "5.3.0-1014.15~18.04.1", + "5.3.0-1016.17~18.04.1", + "5.3.0-1017.18~18.04.1", + "5.3.0-1018.19~18.04.1", + "5.3.0-1020.22~18.04.1", + "5.3.0-1026.28~18.04.1", + "5.3.0-1029.31~18.04.1", + "5.3.0-1030.32~18.04.1", + "5.3.0-1032.34~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-gcp-5.3-headers-5.3.0-1032", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-gcp-5.3-tools-5.3.0-1032", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gcp-edge", + "purl": "pkg:deb/ubuntu/linux-gcp-edge@5.0.0-1013.13~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.18.0-1004.5~18.04.1", + "4.18.0-1005.6~18.04.1", + "4.18.0-1006.7~18.04.1", + "4.18.0-1007.8~18.04.1", + "4.18.0-1008.9~18.04.1", + "4.18.0-1009.10~18.04.1", + "4.18.0-1011.12~18.04.1", + "4.18.0-1012.13~18.04.1", + "4.18.0-1013.14~18.04.1", + "4.18.0-1015.16~18.04.1", + "5.0.0-1011.11~18.04.1", + "5.0.0-1013.13~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-gcp-edge-tools-5.0.0-1013", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-gcp-headers-5.0.0-1013", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-headers-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-modules-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + }, + { + "binary_name": "linux-tools-5.0.0-1013-gcp", + "binary_version": "5.0.0-1013.13~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-hwe", + "purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.18.0-13.14~18.04.1", + "4.18.0-14.15~18.04.1", + "4.18.0-15.16~18.04.1", + "4.18.0-16.17~18.04.1", + "4.18.0-17.18~18.04.1", + "4.18.0-18.19~18.04.1", + "4.18.0-20.21~18.04.1", + "4.18.0-21.22~18.04.1", + "4.18.0-22.23~18.04.1", + "4.18.0-24.25~18.04.1", + "4.18.0-25.26~18.04.1", + "5.0.0-23.24~18.04.1", + "5.0.0-25.26~18.04.1", + "5.0.0-27.28~18.04.1", + "5.0.0-29.31~18.04.1", + "5.0.0-31.33~18.04.1", + "5.0.0-32.34~18.04.2", + "5.0.0-35.38~18.04.1", + "5.0.0-36.39~18.04.1", + "5.0.0-37.40~18.04.1", + "5.3.0-26.28~18.04.1", + "5.3.0-28.30~18.04.1", + "5.3.0-40.32~18.04.1", + "5.3.0-42.34~18.04.1", + "5.3.0-45.37~18.04.1", + "5.3.0-46.38~18.04.1", + "5.3.0-51.44~18.04.2", + "5.3.0-53.47~18.04.1", + "5.3.0-59.53~18.04.1", + "5.3.0-61.55~18.04.1", + "5.3.0-62.56~18.04.1", + "5.3.0-64.58~18.04.1", + "5.3.0-65.59", + "5.3.0-66.60", + "5.3.0-67.61", + "5.3.0-68.63", + "5.3.0-69.65", + "5.3.0-70.66", + "5.3.0-72.68", + "5.3.0-73.69", + "5.3.0-74.70", + "5.3.0-75.71", + "5.3.0-76.72" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "crypto-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fat-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "firewire-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "floppy-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fs-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "input-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "ipmi-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "kernel-image-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-buildinfo-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-buildinfo-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-headers-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-headers-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-cloud-tools-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-headers-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-tools-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-udebs-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-extra-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-source-5.3.0", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-tools-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-tools-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "md-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "message-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "mouse-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "multipath-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nfs-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-shared-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-usb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "parport-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pata-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pcmcia-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "plip-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "ppp-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "sata-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "scsi-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "serial-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "storage-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "usb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "virtio-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "vlan-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-hwe-edge", + "purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-15.16~18.04.1", + "5.0.0-16.17~18.04.1", + "5.0.0-17.18~18.04.1", + "5.0.0-19.20~18.04.1", + "5.0.0-20.21~18.04.1", + "5.3.0-19.20~18.04.2", + "5.3.0-22.24~18.04.1", + "5.3.0-23.25~18.04.1", + "5.3.0-23.25~18.04.2", + "5.3.0-24.26~18.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "block-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "crypto-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "crypto-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "dasd-extra-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "dasd-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fat-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fat-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "firewire-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "floppy-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "input-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "input-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ipmi-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "kernel-image-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "kernel-image-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-tools-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-extra-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-source-5.3.0", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "md-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "md-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "message-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "mouse-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "mouse-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "multipath-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "multipath-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nfs-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nfs-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-shared-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-usb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "parport-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "parport-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pata-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pcmcia-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "plip-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "plip-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ppp-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ppp-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "sata-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "sata-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "scsi-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "scsi-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "serial-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "storage-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "usb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "usb-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "virtio-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "vlan-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "vlan-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oracle-5.0", + "purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-1007.12~18.04.1", + "5.0.0-1008.13~18.04.1", + "5.0.0-1009.14~18.04.1", + "5.0.0-1010.15~18.04.1", + "5.0.0-1011.16", + "5.0.0-1013.18", + "5.0.0-1014.19" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-headers-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-modules-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-oracle-5.0-headers-5.0.0-1014", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-oracle-5.0-tools-5.0.0-1014", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-tools-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oracle-5.3", + "purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1011.12~18.04.1", + "5.3.0-1013.14~18.04.1", + "5.3.0-1014.15~18.04.1", + "5.3.0-1016.18~18.04.1", + "5.3.0-1018.20~18.04.1", + "5.3.0-1024.26~18.04.1", + "5.3.0-1027.29~18.04.1", + "5.3.0-1028.30~18.04.1", + "5.3.0-1030.32~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-oracle-5.3-headers-5.3.0-1030", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-oracle-5.3-tools-5.3.0-1030", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2018.18?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-2018.18" + } + ] + } + ], + "versions": [ + "4.15.0-2000.4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-4.15.0-2018", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-aws-fips-tools-4.15.0-2018", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-headers-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-modules-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + }, + { + "binary_name": "linux-tools-4.15.0-2018-aws-fips", + "binary_version": "4.15.0-2018.18" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-2006.7?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "4.15.0-2006.7" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-4.15.0-2006", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-azure-fips-headers-4.15.0-2006", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-azure-fips-tools-4.15.0-2006", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-headers-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-modules-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + }, + { + "binary_name": "linux-tools-4.15.0-2006-azure-fips", + "binary_version": "4.15.0-2006.7" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2000.4?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-2000.4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-4.15.0-2000", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-aws-fips-tools-4.15.0-2000", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-headers-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-modules-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-tools-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-1002.2?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-azure-fips-headers-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-azure-fips-tools-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-headers-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-modules-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-tools-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-1001.1?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-gcp-fips-headers-4.15.0-1001", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-gcp-fips-tools-4.15.0-1001", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-headers-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-modules-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-tools-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-azure-fde", + "purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1063.66+cvm2.2", + "5.4.0-1063.66+cvm3.2", + "5.4.0-1064.67+cvm1.1", + "5.4.0-1065.68+cvm2.1", + "5.4.0-1067.70+cvm1.1", + "5.4.0-1068.71+cvm1.1", + "5.4.0-1069.72+cvm1.1", + "5.4.0-1070.73+cvm1.1", + "5.4.0-1072.75+cvm1.1", + "5.4.0-1073.76+cvm1.1", + "5.4.0-1074.77+cvm1.1", + "5.4.0-1076.79+cvm1.1", + "5.4.0-1078.81+cvm1.1", + "5.4.0-1080.83+cvm1.1", + "5.4.0-1083.87+cvm1.1", + "5.4.0-1085.90+cvm1.1", + "5.4.0-1085.90+cvm2.1", + "5.4.0-1086.91+cvm1.1", + "5.4.0-1089.94+cvm1.2", + "5.4.0-1090.95+cvm1.1", + "5.4.0-1091.96+cvm1.1", + "5.4.0-1092.97+cvm1.1", + "5.4.0-1095.101+cvm1.1", + "5.4.0-1098.104+cvm1.1", + "5.4.0-1100.106+cvm1.1", + "5.4.0-1103.109+cvm1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde", + "binary_version": "5.4.0-1103.109+cvm1.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-azure-fde-5.15", + "purl": "pkg:deb/ubuntu/linux-azure-fde-5.15@5.15.0-1102.111~20.04.1.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1019.24~20.04.1.1", + "5.15.0-1020.25~20.04.1.1", + "5.15.0-1021.26~20.04.1.1", + "5.15.0-1029.36~20.04.1.1", + "5.15.0-1030.37~20.04.1.1", + "5.15.0-1031.38~20.04.1.1", + "5.15.0-1033.40~20.04.1.1", + "5.15.0-1034.41~20.04.1.2", + "5.15.0-1035.42~20.04.1.1", + "5.15.0-1036.43~20.04.1.1", + "5.15.0-1037.44~20.04.1.1", + "5.15.0-1038.45~20.04.1.1", + "5.15.0-1039.46~20.04.1.1", + "5.15.0-1040.47~20.04.1.1", + "5.15.0-1041.48~20.04.1.1", + "5.15.0-1042.49~20.04.1.1", + "5.15.0-1043.50~20.04.1.1", + "5.15.0-1046.53~20.04.1.1", + "5.15.0-1047.54~20.04.1.1", + "5.15.0-1049.56~20.04.1.1", + "5.15.0-1050.57~20.04.1.1", + "5.15.0-1051.59~20.04.1.1", + "5.15.0-1052.60~20.04.1.1", + "5.15.0-1053.61~20.04.1.1", + "5.15.0-1054.62~20.04.1.1", + "5.15.0-1056.64~20.04.1.1", + "5.15.0-1057.65~20.04.1.1", + "5.15.0-1058.66~20.04.2.1", + "5.15.0-1059.67~20.04.1.1", + "5.15.0-1060.69~20.04.1.1", + "5.15.0-1061.70~20.04.1.1", + "5.15.0-1063.72~20.04.1.1", + "5.15.0-1064.73~20.04.1.1", + "5.15.0-1065.74~20.04.1.1", + "5.15.0-1067.76~20.04.1.1", + "5.15.0-1068.77~20.04.1.1", + "5.15.0-1070.79~20.04.1.1", + "5.15.0-1071.80~20.04.1.1", + "5.15.0-1072.81~20.04.1.1", + "5.15.0-1073.82~20.04.1.1", + "5.15.0-1074.83~20.04.1.1", + "5.15.0-1076.85~20.04.1.1", + "5.15.0-1078.87~20.04.1.1", + "5.15.0-1081.90~20.04.1.1", + "5.15.0-1082.91~20.04.1.1", + "5.15.0-1086.95~20.04.1.1", + "5.15.0-1087.96~20.04.1.1", + "5.15.0-1088.97~20.04.1.1", + "5.15.0-1089.98~20.04.1.1", + "5.15.0-1091.100~20.04.1.1", + "5.15.0-1094.103~20.04.1.1", + "5.15.0-1096.105~20.04.1.1", + "5.15.0-1097.106~20.04.1.1", + "5.15.0-1098.107~20.04.1.1", + "5.15.0-1102.111~20.04.1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", + "binary_version": "5.15.0-1102.111~20.04.1.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gke", + "purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1033.35", + "5.4.0-1035.37", + "5.4.0-1036.38", + "5.4.0-1037.39", + "5.4.0-1039.41", + "5.4.0-1041.43", + "5.4.0-1042.44", + "5.4.0-1043.45", + "5.4.0-1044.46", + "5.4.0-1046.48", + "5.4.0-1049.52", + "5.4.0-1051.54", + "5.4.0-1052.55", + "5.4.0-1053.56", + "5.4.0-1054.57", + "5.4.0-1055.58", + "5.4.0-1056.59", + "5.4.0-1057.60", + "5.4.0-1059.62", + "5.4.0-1061.64", + "5.4.0-1062.65", + "5.4.0-1063.66", + "5.4.0-1065.68", + "5.4.0-1066.69", + "5.4.0-1067.70", + "5.4.0-1068.71", + "5.4.0-1071.76", + "5.4.0-1072.77", + "5.4.0-1074.79", + "5.4.0-1076.82", + "5.4.0-1078.84", + "5.4.0-1080.86", + "5.4.0-1081.87", + "5.4.0-1083.89", + "5.4.0-1084.90", + "5.4.0-1086.93", + "5.4.0-1087.94", + "5.4.0-1090.97", + "5.4.0-1091.98", + "5.4.0-1094.101", + "5.4.0-1095.102", + "5.4.0-1096.103", + "5.4.0-1097.104", + "5.4.0-1098.105", + "5.4.0-1099.106", + "5.4.0-1100.107", + "5.4.0-1101.108", + "5.4.0-1102.109", + "5.4.0-1103.110", + "5.4.0-1104.111", + "5.4.0-1105.112" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-gke-headers-5.4.0-1105", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-gke-tools-5.4.0-1105", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-headers-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-modules-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-tools-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-raspi2", + "purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1007.8", + "5.3.0-1014.16", + "5.3.0-1015.17", + "5.3.0-1017.19", + "5.4.0-1004.4", + "5.4.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-headers-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-image-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-modules-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-raspi2-headers-5.4.0-1006", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-raspi2-tools-5.4.0-1006", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-tools-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-intel-iot-realtime", + "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1073.75" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-common", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-common", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-host", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1032.35" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-headers-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-modules-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-cloud-tools-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-cloud-tools-common", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-headers-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-common", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-host", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-tools-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-riscv", + "purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1004.4", + "5.13.0-1006.6+22.04.1", + "5.13.0-1007.7+22.04.1", + "5.13.0-1010.11+22.04.1", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1006.6", + "5.15.0-1007.7", + "5.15.0-1008.8", + "5.15.0-1011.12", + "5.15.0-1012.13", + "5.15.0-1014.16", + "5.15.0-1015.17", + "5.15.0-1016.18", + "5.15.0-1017.19", + "5.15.0-1018.21", + "5.15.0-1019.22", + "5.15.0-1020.23", + "5.15.0-1022.26", + "5.15.0-1023.27", + "5.15.0-1026.30", + "5.15.0-1027.31", + "5.15.0-1028.32" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-headers-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-image-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-modules-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-riscv-headers-5.15.0-1028", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-riscv-tools-5.15.0-1028", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-tools-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-raspi-realtime", + "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-2019.20" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-headers-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-image-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-modules-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-raspi-realtime-headers-6.8.0-2019", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-raspi-realtime-tools-6.8.0-2019", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-tools-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-0305" + }, + { + "type": "REPORT", + "url": "https://git.kernel.org/linus/68faa679b8be1a74e6663c21c3a9d25d32f1c079" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-0305" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json new file mode 100644 index 000000000..9ee5461c8 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json @@ -0,0 +1,176 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-0556", + "details": "Improper access control in subsystem for BlueZ before version 5.54 may allow an unauthenticated user to potentially enable escalation of privilege and denial of service via adjacent access", + "aliases": [], + "upstream": [ + "CVE-2020-0556" + ], + "related": [ + "USN-4311-1" + ], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-03-12T21:15:00Z", + "modified": "2025-09-08T16:45:54Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "bluez", + "purl": "pkg:deb/ubuntu/bluez@5.37-0ubuntu5.3?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.37-0ubuntu5.3" + } + ] + } + ], + "versions": [ + "5.35-0ubuntu2", + "5.36-0ubuntu1", + "5.37-0ubuntu5", + "5.37-0ubuntu5.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "bluetooth", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "bluez", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "bluez-cups", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "bluez-hcidump", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "bluez-obexd", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "bluez-tests", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "libbluetooth-dev", + "binary_version": "5.37-0ubuntu5.3" + }, + { + "binary_name": "libbluetooth3", + "binary_version": "5.37-0ubuntu5.3" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "bluez", + "purl": "pkg:deb/ubuntu/bluez@5.48-0ubuntu3.4?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "5.48-0ubuntu3.4" + } + ] + } + ], + "versions": [ + "5.46-0ubuntu3", + "5.46-0ubuntu4", + "5.48-0ubuntu3", + "5.48-0ubuntu3.1", + "5.48-0ubuntu3.2", + "5.48-0ubuntu3.3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "bluetooth", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "bluez", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "bluez-cups", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "bluez-hcidump", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "bluez-obexd", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "bluez-tests", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "libbluetooth-dev", + "binary_version": "5.48-0ubuntu3.4" + }, + { + "binary_name": "libbluetooth3", + "binary_version": "5.48-0ubuntu3.4" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-0556" + }, + { + "type": "REPORT", + "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00352.html" + }, + { + "type": "REPORT", + "url": "https://www.openwall.com/lists/oss-security/2020/03/12/4" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-4311-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-0556" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json new file mode 100644 index 000000000..7a8ade639 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json @@ -0,0 +1,223 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-1739", + "details": "A flaw was found in Ansible 2.7.16 and prior, 2.8.8 and prior, and 2.9.5 and prior when a password is set with the argument \"password\" of svn module, it is used on svn command line, disclosing to other users within the same node. An attacker could take advantage by reading the cmdline file from that particular PID on the procfs.", + "aliases": [], + "upstream": [ + "CVE-2020-1739" + ], + "related": [ + "USN-7330-1" + ], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" + }, + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-03-12T18:15:00Z", + "modified": "2025-10-14T16:49:17Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "ansible", + "purl": "pkg:deb/ubuntu/ansible@1.5.4+dfsg-1ubuntu0.1~esm3?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.5.4+dfsg-1ubuntu0.1~esm3" + } + ] + } + ], + "versions": [ + "1.1+dfsg-1", + "1.3.4+dfsg-1", + "1.4.0+dfsg-1", + "1.4.1+dfsg-1", + "1.4.3+dfsg-1", + "1.4.4+dfsg-1", + "1.5.4+dfsg-1", + "1.5.4+dfsg-1ubuntu0.1~esm1", + "1.5.4+dfsg-1ubuntu0.1~esm2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "ansible", + "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" + }, + { + "binary_name": "ansible-fireball", + "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" + }, + { + "binary_name": "ansible-node-fireball", + "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" + } + ], + "availability": "Available with Ubuntu Pro with Legacy support add-on: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "ansible", + "purl": "pkg:deb/ubuntu/ansible@2.0.0.2-2ubuntu1.3+esm5?arch=source&distro=esm-apps/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.0.0.2-2ubuntu1.3+esm5" + } + ] + } + ], + "versions": [ + "1.9.2+dfsg-2", + "1.9.4-1", + "2.0.0.2-2", + "2.0.0.2-2ubuntu1", + "2.0.0.2-2ubuntu1.1", + "2.0.0.2-2ubuntu1.2", + "2.0.0.2-2ubuntu1.3", + "2.0.0.2-2ubuntu1.3+esm1", + "2.0.0.2-2ubuntu1.3+esm2", + "2.0.0.2-2ubuntu1.3+esm3", + "2.0.0.2-2ubuntu1.3+esm4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "ansible", + "binary_version": "2.0.0.2-2ubuntu1.3+esm5" + }, + { + "binary_name": "ansible-fireball", + "binary_version": "2.0.0.2-2ubuntu1.3+esm5" + }, + { + "binary_name": "ansible-node-fireball", + "binary_version": "2.0.0.2-2ubuntu1.3+esm5" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "ansible", + "purl": "pkg:deb/ubuntu/ansible@2.5.1+dfsg-1ubuntu0.1+esm5?arch=source&distro=esm-apps/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.5.1+dfsg-1ubuntu0.1+esm5" + } + ] + } + ], + "versions": [ + "2.3.1.0+dfsg-2", + "2.5.0+dfsg-1", + "2.5.1+dfsg-1", + "2.5.1+dfsg-1ubuntu0.1", + "2.5.1+dfsg-1ubuntu0.1+esm1", + "2.5.1+dfsg-1ubuntu0.1+esm2", + "2.5.1+dfsg-1ubuntu0.1+esm3", + "2.5.1+dfsg-1ubuntu0.1+esm4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "ansible", + "binary_version": "2.5.1+dfsg-1ubuntu0.1+esm5" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "ansible", + "purl": "pkg:deb/ubuntu/ansible@2.9.6+dfsg-1ubuntu0.1~esm3?arch=source&distro=esm-apps/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.9.6+dfsg-1ubuntu0.1~esm3" + } + ] + } + ], + "versions": [ + "2.8.3+dfsg-1", + "2.8.6+dfsg-1", + "2.9.2+dfsg-1", + "2.9.4+dfsg-1", + "2.9.6+dfsg-1", + "2.9.6+dfsg-1ubuntu0.1~esm1", + "2.9.6+dfsg-1ubuntu0.1~esm2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "ansible", + "binary_version": "2.9.6+dfsg-1ubuntu0.1~esm3" + } + ], + "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-1739" + }, + { + "type": "REPORT", + "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802178" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1739" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-7330-1" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json new file mode 100644 index 000000000..12cb98e27 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json @@ -0,0 +1,157 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-1770", + "details": "Support bundle generated files could contain sensitive information that might be unwanted to be disclosed. This issue affects: ((OTRS)) Community Edition: 5.0.41 and prior versions, 6.0.26 and prior versions. OTRS: 7.0.15 and prior versions.", + "aliases": [], + "upstream": [ + "CVE-2020-1770" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:N/A:N" + }, + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-03-27T13:15:00Z", + "modified": "2025-10-24T04:48:15Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "otrs2", + "purl": "pkg:deb/ubuntu/otrs2@5.0.7-1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.0.10-1", + "5.0.1-1", + "5.0.1-2", + "5.0.2-1", + "5.0.3-1", + "5.0.5-1", + "5.0.6-1", + "5.0.7-1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "otrs", + "binary_version": "5.0.7-1" + }, + { + "binary_name": "otrs2", + "binary_version": "5.0.7-1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "otrs2", + "purl": "pkg:deb/ubuntu/otrs2@6.0.5-1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.23-1", + "5.0.24-1", + "6.0.1-1", + "6.0.2-1", + "6.0.3-1", + "6.0.4-1", + "6.0.5-1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "otrs", + "binary_version": "6.0.5-1" + }, + { + "binary_name": "otrs2", + "binary_version": "6.0.5-1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "otrs2", + "purl": "pkg:deb/ubuntu/otrs2@6.0.26-1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.0.20-1", + "6.0.23-2", + "6.0.24-1", + "6.0.25-1", + "6.0.25-2", + "6.0.25-3", + "6.0.26-1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "otrs", + "binary_version": "6.0.26-1" + }, + { + "binary_name": "otrs2", + "binary_version": "6.0.26-1" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-1770" + }, + { + "type": "REPORT", + "url": "https://otrs.com/release-notes/otrs-security-advisory-2020-07/" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1770" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1944.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1944.json new file mode 100644 index 000000000..6fd4fc4a5 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1944.json @@ -0,0 +1,193 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-1944", + "details": "There is a vulnerability in Apache Traffic Server 6.0.0 to 6.2.3, 7.0.0 to 7.1.8, and 8.0.0 to 8.0.5 with a smuggling attack and Transfer-Encoding and Content length headers. Upgrade to versions 7.1.9 and 8.0.6 or later versions.", + "aliases": [], + "upstream": [ + "CVE-2020-1944" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-03-23T22:15:00Z", + "modified": "2025-10-24T04:48:15Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "trafficserver", + "purl": "pkg:deb/ubuntu/trafficserver@5.3.0-2ubuntu2?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-2ubuntu1", + "5.3.0-2ubuntu2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "trafficserver", + "binary_version": "5.3.0-2ubuntu2" + }, + { + "binary_name": "trafficserver-dev", + "binary_version": "5.3.0-2ubuntu2" + }, + { + "binary_name": "trafficserver-experimental-plugins", + "binary_version": "5.3.0-2ubuntu2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "trafficserver", + "purl": "pkg:deb/ubuntu/trafficserver@7.1.2+ds-3?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "7.0.0-5", + "7.1.2+ds-2", + "7.1.2+ds-2build1", + "7.1.2+ds-3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "trafficserver", + "binary_version": "7.1.2+ds-3" + }, + { + "binary_name": "trafficserver-dev", + "binary_version": "7.1.2+ds-3" + }, + { + "binary_name": "trafficserver-experimental-plugins", + "binary_version": "7.1.2+ds-3" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "trafficserver", + "purl": "pkg:deb/ubuntu/trafficserver@8.0.5+ds-3ubuntu0.1~esm1?arch=source&distro=esm-apps/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "8.0.5+ds-1", + "8.0.5+ds-2", + "8.0.5+ds-2build1", + "8.0.5+ds-2ubuntu1", + "8.0.5+ds-3", + "8.0.5+ds-3ubuntu0.1~esm1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "trafficserver", + "binary_version": "8.0.5+ds-3ubuntu0.1~esm1" + }, + { + "binary_name": "trafficserver-dev", + "binary_version": "8.0.5+ds-3ubuntu0.1~esm1" + }, + { + "binary_name": "trafficserver-experimental-plugins", + "binary_version": "8.0.5+ds-3ubuntu0.1~esm1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:22.04:LTS", + "name": "trafficserver", + "purl": "pkg:deb/ubuntu/trafficserver@9.1.1+ds-2ubuntu0.1~esm1?arch=source&distro=esm-apps/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "8.1.1+ds-1.1", + "9.1.1+ds-2build1", + "9.1.1+ds-2ubuntu0.1~esm1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "trafficserver", + "binary_version": "9.1.1+ds-2ubuntu0.1~esm1" + }, + { + "binary_name": "trafficserver-dev", + "binary_version": "9.1.1+ds-2ubuntu0.1~esm1" + }, + { + "binary_name": "trafficserver-experimental-plugins", + "binary_version": "9.1.1+ds-2ubuntu0.1~esm1" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-1944" + }, + { + "type": "REPORT", + "url": "https://lists.apache.org/thread.html/r99d18d0bc4daa05e7d0e5a63e0e22701a421b2ef5a8f4f7694c43869%40%3Cannounce.trafficserver.apache.org%3E" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1944" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json new file mode 100644 index 000000000..b25cc8375 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json @@ -0,0 +1,581 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-2590", + "details": "Vulnerability in the Java SE, Java SE Embedded product of Oracle Java SE (component: Security). Supported versions that are affected are Java SE: 7u241, 8u231, 11.0.5 and 13.0.1; Java SE Embedded: 8u231. Difficult to exploit vulnerability allows unauthenticated attacker with network access via Kerberos to compromise Java SE, Java SE Embedded. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Java SE, Java SE Embedded accessible data. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets (in Java SE 8), that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability can also be exploited by using APIs in the specified Component, e.g., through a web service which supplies data to the APIs. CVSS 3.0 Base Score 3.7 (Integrity impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N).", + "aliases": [], + "upstream": [ + "CVE-2020-2590" + ], + "related": [ + "USN-4257-1" + ], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" + }, + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" + }, + { + "type": "Ubuntu", + "score": "low" + } + ], + "published": "2020-01-15T17:15:00Z", + "modified": "2026-01-20T04:57:14Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "openjdk-8", + "purl": "pkg:deb/ubuntu/openjdk-8@8u242-b08-0ubuntu3~16.04?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "8u242-b08-0ubuntu3~16.04" + } + ] + } + ], + "versions": [ + "8u66-b01-5", + "8u72-b05-1ubuntu1", + "8u72-b05-5", + "8u72-b05-6", + "8u72-b15-1", + "8u72-b15-2ubuntu1", + "8u72-b15-2ubuntu3", + "8u72-b15-3ubuntu1", + "8u77-b03-1ubuntu2", + "8u77-b03-3ubuntu1", + "8u77-b03-3ubuntu2", + "8u77-b03-3ubuntu3", + "8u91-b14-0ubuntu4~16.04.1", + "8u91-b14-3ubuntu1~16.04.1", + "8u111-b14-2ubuntu0.16.04.2", + "8u121-b13-0ubuntu1.16.04.2", + "8u131-b11-0ubuntu1.16.04.2", + "8u131-b11-2ubuntu1.16.04.2", + "8u131-b11-2ubuntu1.16.04.3", + "8u151-b12-0ubuntu0.16.04.2", + "8u162-b12-0ubuntu0.16.04.2", + "8u171-b11-0ubuntu0.16.04.1", + "8u181-b13-0ubuntu0.16.04.1", + "8u181-b13-1ubuntu0.16.04.1", + "8u191-b12-0ubuntu0.16.04.1", + "8u191-b12-2ubuntu0.16.04.1", + "8u212-b03-0ubuntu1.16.04.1", + "8u222-b10-1ubuntu1~16.04.1", + "8u232-b09-0ubuntu1~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "openjdk-8-demo", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jdk", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jdk-headless", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jre", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jre-headless", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jre-jamvm", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-jre-zero", + "binary_version": "8u242-b08-0ubuntu3~16.04" + }, + { + "binary_name": "openjdk-8-source", + "binary_version": "8u242-b08-0ubuntu3~16.04" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.6.2-3ubuntu1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.5.2-1ubuntu2", + "1.5.3-0ubuntu1", + "1.6.1-1ubuntu2", + "1.6.1-3ubuntu1", + "1.6.1-4ubuntu1", + "1.6.2-1ubuntu1", + "1.6.2-2ubuntu1", + "1.6.2-3ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-8-plugin", + "binary_version": "1.6.2-3ubuntu1" + }, + { + "binary_name": "icedtea-netx", + "binary_version": "1.6.2-3ubuntu1" + }, + { + "binary_name": "icedtea-netx-common", + "binary_version": "1.6.2-3ubuntu1" + }, + { + "binary_name": "icedtea-plugin", + "binary_version": "1.6.2-3ubuntu1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "openjdk-9", + "purl": "pkg:deb/ubuntu/openjdk-9@9~b114-0ubuntu1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "9~b88-1", + "9~b101-2ubuntu2", + "9~b102-1", + "9~b113-0ubuntu1", + "9~b114-0ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "openjdk-9-demo", + "binary_version": "9~b114-0ubuntu1" + }, + { + "binary_name": "openjdk-9-jdk", + "binary_version": "9~b114-0ubuntu1" + }, + { + "binary_name": "openjdk-9-jdk-headless", + "binary_version": "9~b114-0ubuntu1" + }, + { + "binary_name": "openjdk-9-jre", + "binary_version": "9~b114-0ubuntu1" + }, + { + "binary_name": "openjdk-9-jre-headless", + "binary_version": "9~b114-0ubuntu1" + }, + { + "binary_name": "openjdk-9-source", + "binary_version": "9~b114-0ubuntu1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "openjdk-8", + "purl": "pkg:deb/ubuntu/openjdk-8@8u242-b08-0ubuntu3~18.04?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "8u242-b08-0ubuntu3~18.04" + } + ] + } + ], + "versions": [ + "8u144-b01-2", + "8u151-b12-1", + "8u162-b12-1", + "8u171-b11-0ubuntu0.18.04.1", + "8u181-b13-0ubuntu0.18.04.1", + "8u181-b13-1ubuntu0.18.04.1", + "8u191-b12-0ubuntu0.18.04.1", + "8u191-b12-2ubuntu0.18.04.1", + "8u212-b03-0ubuntu1.18.04.1", + "8u222-b10-1ubuntu1~18.04.1", + "8u232-b09-0ubuntu1~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "openjdk-8-demo", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-jdk", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-jdk-headless", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-jre", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-jre-headless", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-jre-zero", + "binary_version": "8u242-b08-0ubuntu3~18.04" + }, + { + "binary_name": "openjdk-8-source", + "binary_version": "8u242-b08-0ubuntu3~18.04" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "openjdk-lts", + "purl": "pkg:deb/ubuntu/openjdk-lts@11.0.6+10-1ubuntu1~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "11.0.6+10-1ubuntu1~18.04.1" + } + ] + } + ], + "versions": [ + "9.0.4+12-2ubuntu4", + "9.0.4+12-4ubuntu1", + "10~46-4ubuntu1", + "10~46-5ubuntu1", + "10.0.1+10-1ubuntu2", + "10.0.1+10-3ubuntu1", + "10.0.2+13-1ubuntu0.18.04.1", + "10.0.2+13-1ubuntu0.18.04.2", + "10.0.2+13-1ubuntu0.18.04.3", + "10.0.2+13-1ubuntu0.18.04.4", + "11.0.2+9-3ubuntu1~18.04.3", + "11.0.3+7-1ubuntu2~18.04.1", + "11.0.4+11-1ubuntu2~18.04.3", + "11.0.5+10-0ubuntu1.1~18.04" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "openjdk-11-demo", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-jdk", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-jdk-headless", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-jre", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-jre-headless", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-jre-zero", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + }, + { + "binary_name": "openjdk-11-source", + "binary_version": "11.0.6+10-1ubuntu1~18.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.8-0ubuntu8~18.04?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.6.2-3.1ubuntu3", + "1.8-0ubuntu8~18.04" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-8-plugin", + "binary_version": "1.8-0ubuntu8~18.04" + }, + { + "binary_name": "icedtea-netx", + "binary_version": "1.8-0ubuntu8~18.04" + }, + { + "binary_name": "icedtea-netx-common", + "binary_version": "1.8-0ubuntu8~18.04" + }, + { + "binary_name": "icedtea-plugin", + "binary_version": "1.8-0ubuntu8~18.04" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "openjdk-lts", + "purl": "pkg:deb/ubuntu/openjdk-lts@11.0.6+10-1ubuntu1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "11.0.6+10-1ubuntu1" + } + ] + } + ], + "versions": [ + "11.0.5+10-0ubuntu1", + "11.0.5+10-2ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "openjdk-11-demo", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-jdk", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-jdk-headless", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-jre", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-jre-headless", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-jre-zero", + "binary_version": "11.0.6+10-1ubuntu1" + }, + { + "binary_name": "openjdk-11-source", + "binary_version": "11.0.6+10-1ubuntu1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.8-0ubuntu8?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.8-0ubuntu8" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-netx", + "binary_version": "1.8-0ubuntu8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.8.4-1build1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.8.4-1build1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-netx", + "binary_version": "1.8.4-1build1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.8.8-2ubuntu1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.8.8-2", + "1.8.8-2ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-netx", + "binary_version": "1.8.8-2ubuntu1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "icedtea-web", + "purl": "pkg:deb/ubuntu/icedtea-web@1.8.8-3?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.8.8-3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "icedtea-netx", + "binary_version": "1.8.8-3" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-2590" + }, + { + "type": "REPORT", + "url": "https://www.oracle.com/security-alerts/cpujan2020.html" + }, + { + "type": "ADVISORY", + "url": "https://ubuntu.com/security/notices/USN-4257-1" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-2590" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json new file mode 100644 index 000000000..b868bdaae --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json @@ -0,0 +1,306 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2020-6537", + "details": "Type confusion in V8 in Google Chrome prior to 84.0.4147.105 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page.", + "aliases": [], + "upstream": [ + "CVE-2020-6537" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2020-09-21T20:15:00Z", + "modified": "2025-10-24T04:48:17Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "chromium-browser", + "purl": "pkg:deb/ubuntu/chromium-browser@84.0.4147.105-0ubuntu0.16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "84.0.4147.105-0ubuntu0.16.04.1" + } + ] + } + ], + "versions": [ + "45.0.2454.101-0ubuntu1.1201", + "47.0.2526.73-0ubuntu1.1218", + "47.0.2526.106-0ubuntu1.1221", + "48.0.2564.82-0ubuntu1.1222", + "48.0.2564.116-0ubuntu1.1229", + "49.0.2623.87-0ubuntu1.1232", + "49.0.2623.108-0ubuntu1.1233", + "50.0.2661.102-0ubuntu0.16.04.1.1237", + "51.0.2704.79-0ubuntu0.16.04.1.1242", + "52.0.2743.116-0ubuntu0.16.04.1.1250", + "53.0.2785.143-0ubuntu0.16.04.1.1254", + "53.0.2785.143-0ubuntu0.16.04.1.1257", + "55.0.2883.87-0ubuntu0.16.04.1263", + "56.0.2924.76-0ubuntu0.16.04.1268", + "57.0.2987.98-0ubuntu0.16.04.1276", + "58.0.3029.81-0ubuntu0.16.04.1277", + "58.0.3029.96-0ubuntu0.16.04.1279", + "58.0.3029.110-0ubuntu0.16.04.1281", + "59.0.3071.109-0ubuntu0.16.04.1289", + "59.0.3071.109-0ubuntu0.16.04.1291", + "60.0.3112.78-0ubuntu0.16.04.1293", + "60.0.3112.113-0ubuntu0.16.04.1298", + "61.0.3163.79-0ubuntu0.16.04.1300", + "61.0.3163.100-0ubuntu0.16.04.1306", + "62.0.3202.62-0ubuntu0.16.04.1308", + "62.0.3202.75-0ubuntu0.16.04.1313", + "62.0.3202.89-0ubuntu0.16.04.1315", + "62.0.3202.94-0ubuntu0.16.04.1317", + "63.0.3239.84-0ubuntu0.16.04.1", + "63.0.3239.132-0ubuntu0.16.04.1", + "64.0.3282.119-0ubuntu0.16.04.1", + "64.0.3282.140-0ubuntu0.16.04.1", + "64.0.3282.167-0ubuntu0.16.04.1", + "65.0.3325.181-0ubuntu0.16.04.1", + "66.0.3359.139-0ubuntu0.16.04.3", + "66.0.3359.181-0ubuntu0.16.04.1", + "67.0.3396.99-0ubuntu0.16.04.2", + "68.0.3440.75-0ubuntu0.16.04.1", + "68.0.3440.106-0ubuntu0.16.04.1", + "69.0.3497.81-0ubuntu0.16.04.1", + "70.0.3538.67-0ubuntu0.16.04.1", + "70.0.3538.77-0ubuntu0.16.04.1", + "70.0.3538.110-0ubuntu0.16.04.1", + "71.0.3578.80-0ubuntu0.16.04.1", + "71.0.3578.98-0ubuntu0.16.04.1", + "72.0.3626.119-0ubuntu0.16.04.1", + "72.0.3626.121-0ubuntu0.16.04.1", + "73.0.3683.75-0ubuntu0.16.04.1", + "73.0.3683.86-0ubuntu0.16.04.1", + "74.0.3729.169-0ubuntu0.16.04.1", + "76.0.3809.87-0ubuntu0.16.04.1", + "76.0.3809.100-0ubuntu0.16.04.1", + "77.0.3865.90-0ubuntu0.16.04.1", + "78.0.3904.70-0ubuntu0.16.04.2", + "78.0.3904.97-0ubuntu0.16.04.1", + "78.0.3904.108-0ubuntu0.16.04.1", + "79.0.3945.79-0ubuntu0.16.04.1", + "79.0.3945.130-0ubuntu0.16.04.1", + "80.0.3987.87-0ubuntu0.16.04.1", + "80.0.3987.149-0ubuntu0.16.04.1", + "80.0.3987.163-0ubuntu0.16.04.1", + "81.0.4044.122-0ubuntu0.16.04.1", + "81.0.4044.138-0ubuntu0.16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "chromium-browser", + "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" + }, + { + "binary_name": "chromium-browser-l10n", + "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" + }, + { + "binary_name": "chromium-chromedriver", + "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" + }, + { + "binary_name": "chromium-codecs-ffmpeg", + "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" + }, + { + "binary_name": "chromium-codecs-ffmpeg-extra", + "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "libv8-3.14", + "purl": "pkg:deb/ubuntu/libv8-3.14@3.14.5.8-5ubuntu2?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "3.14.5.8-5ubuntu2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libv8-3.14-dev", + "binary_version": "3.14.5.8-5ubuntu2" + }, + { + "binary_name": "libv8-3.14.5", + "binary_version": "3.14.5.8-5ubuntu2" + }, + { + "binary_name": "libv8-dev", + "binary_version": "3.14.5.8-5ubuntu2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "chromium-browser", + "purl": "pkg:deb/ubuntu/chromium-browser@84.0.4147.105-0ubuntu0.18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "84.0.4147.105-0ubuntu0.18.04.1" + } + ] + } + ], + "versions": [ + "61.0.3163.100-0ubuntu1.1378", + "62.0.3202.62-0ubuntu0.17.10.1380", + "62.0.3202.89-0ubuntu1.1386", + "62.0.3202.94-0ubuntu1.1388", + "63.0.3239.84-0ubuntu1", + "63.0.3239.108-0ubuntu1", + "64.0.3282.119-0ubuntu1", + "64.0.3282.140-0ubuntu1", + "64.0.3282.167-0ubuntu1", + "65.0.3325.146-0ubuntu1", + "65.0.3325.181-0ubuntu1", + "66.0.3359.139-0ubuntu0.18.04.3", + "66.0.3359.181-0ubuntu0.18.04.1", + "67.0.3396.99-0ubuntu0.18.04.1", + "68.0.3440.75-0ubuntu0.18.04.1", + "68.0.3440.106-0ubuntu0.18.04.1", + "69.0.3497.81-0ubuntu0.18.04.1", + "70.0.3538.67-0ubuntu0.18.04.1", + "70.0.3538.77-0ubuntu0.18.04.1", + "70.0.3538.110-0ubuntu0.18.04.1", + "71.0.3578.80-0ubuntu0.18.04.1", + "71.0.3578.98-0ubuntu0.18.04.1", + "72.0.3626.119-0ubuntu0.18.04.1", + "72.0.3626.121-0ubuntu0.18.04.1", + "73.0.3683.75-0ubuntu0.18.04.1", + "73.0.3683.86-0ubuntu0.18.04.1", + "74.0.3729.169-0ubuntu0.18.04.1", + "75.0.3770.90-0ubuntu0.18.04.1", + "75.0.3770.142-0ubuntu0.18.04.1", + "76.0.3809.87-0ubuntu0.18.04.1", + "76.0.3809.100-0ubuntu0.18.04.1", + "77.0.3865.90-0ubuntu0.18.04.1", + "78.0.3904.70-0ubuntu0.18.04.2", + "78.0.3904.97-0ubuntu0.18.04.1", + "78.0.3904.108-0ubuntu0.18.04.1", + "79.0.3945.79-0ubuntu0.18.04.1", + "79.0.3945.130-0ubuntu0.18.04.1", + "80.0.3987.87-0ubuntu0.18.04.1", + "80.0.3987.149-0ubuntu0.18.04.1", + "80.0.3987.163-0ubuntu0.18.04.1", + "81.0.4044.122-0ubuntu0.18.04.1", + "81.0.4044.138-0ubuntu0.18.04.1", + "83.0.4103.61-0ubuntu0.18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "chromium-browser", + "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" + }, + { + "binary_name": "chromium-browser-l10n", + "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" + }, + { + "binary_name": "chromium-chromedriver", + "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" + }, + { + "binary_name": "chromium-codecs-ffmpeg", + "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" + }, + { + "binary_name": "chromium-codecs-ffmpeg-extra", + "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "libv8-3.14", + "purl": "pkg:deb/ubuntu/libv8-3.14@3.14.5.8-11ubuntu1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "3.14.5.8-11ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "libv8-3.14-dev", + "binary_version": "3.14.5.8-11ubuntu1" + }, + { + "binary_name": "libv8-3.14.5", + "binary_version": "3.14.5.8-11ubuntu1" + }, + { + "binary_name": "libv8-dev", + "binary_version": "3.14.5.8-11ubuntu1" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2020-6537" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2020-6537" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json new file mode 100644 index 000000000..b049544e0 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json @@ -0,0 +1,428 @@ +{ + "schema_version": "1.6.3", + "id": "UBUNTU-CVE-2025-0245", + "details": "Under certain circumstances, a user opt-in setting that Focus should require authentication before use could have been be bypassed. This vulnerability affects Firefox < 134.", + "aliases": [], + "related": [ + "CVE-2025-0245" + ], + "published": "2025-01-07T16:15:00Z", + "modified": "2025-01-13T10:27:00Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "mozjs52", + "purl": "pkg:deb/ubuntu/mozjs52@52.9.1-0ubuntu0.18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "52.3.1-0ubuntu3", + "52.3.1-7fakesync1", + "52.8.1-0ubuntu0.18.04.1", + "52.9.1-0ubuntu0.18.04.1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "mozjs38", + "purl": "pkg:deb/ubuntu/mozjs38@38.8.0~repack1-0ubuntu4?arch=source&distro=esm-apps/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "38.8.0~repack1-0ubuntu1", + "38.8.0~repack1-0ubuntu3", + "38.8.0~repack1-0ubuntu4" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "mozjs52", + "purl": "pkg:deb/ubuntu/mozjs52@52.9.1-1ubuntu3?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "52.9.1-1build1", + "52.9.1-1ubuntu3" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "mozjs68", + "purl": "pkg:deb/ubuntu/mozjs68@68.6.0-1ubuntu1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "68.5.0-1~fakesync", + "68.5.0-2~fakesync", + "68.6.0-1", + "68.6.0-1ubuntu1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "thunderbird", + "purl": "pkg:deb/ubuntu/thunderbird@1:115.18.0+build1-0ubuntu0.20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:68.1.2+build1-0ubuntu1", + "1:68.1.2+build1-0ubuntu2", + "1:68.2.1+build1-0ubuntu1", + "1:68.2.2+build1-0ubuntu1", + "1:68.3.0+build2-0ubuntu1", + "1:68.3.1+build1-0ubuntu2", + "1:68.4.1+build1-0ubuntu1", + "1:68.4.2+build2-0ubuntu1", + "1:68.5.0+build1-0ubuntu1", + "1:68.6.0+build2-0ubuntu1", + "1:68.7.0+build1-0ubuntu1", + "1:68.7.0+build1-0ubuntu2", + "1:68.8.0+build2-0ubuntu0.20.04.2", + "1:68.10.0+build1-0ubuntu0.20.04.1", + "1:78.7.1+build1-0ubuntu0.20.04.1", + "1:78.8.1+build1-0ubuntu0.20.04.1", + "1:78.11.0+build1-0ubuntu0.20.04.2", + "1:78.13.0+build1-0ubuntu0.20.04.2", + "1:78.14.0+build1-0ubuntu0.20.04.1", + "1:78.14.0+build1-0ubuntu0.20.04.2", + "1:91.5.0+build1-0ubuntu0.20.04.1", + "1:91.7.0+build2-0ubuntu0.20.04.1", + "1:91.8.1+build1-0ubuntu0.20.04.1", + "1:91.9.1+build1-0ubuntu0.20.04.1", + "1:91.11.0+build2-0ubuntu0.20.04.1", + "1:102.2.2+build1-0ubuntu0.20.04.1", + "1:102.4.2+build2-0ubuntu0.20.04.1", + "1:102.7.1+build2-0ubuntu0.20.04.1", + "1:102.8.0+build2-0ubuntu0.20.04.1", + "1:102.9.0+build1-0ubuntu0.20.04.1", + "1:102.10.0+build2-0ubuntu0.20.04.1", + "1:102.11.0+build1-0ubuntu0.20.04.1", + "1:102.13.0+build1-0ubuntu0.20.04.1", + "1:102.15.0+build1-0ubuntu0.20.04.1", + "1:102.15.1+build1-0ubuntu0.20.04.1", + "1:115.3.1+build1-0ubuntu0.20.04.1", + "1:115.4.1+build1-0ubuntu0.20.04.1", + "1:115.5.0+build1-0ubuntu0.20.04.1", + "1:115.6.0+build2-0ubuntu0.20.04.1", + "1:115.8.1+build1-0ubuntu0.20.04.1", + "1:115.9.0+build1-0ubuntu0.20.04.1", + "1:115.10.1+build1-0ubuntu0.20.04.1", + "1:115.11.0+build2-0ubuntu0.20.04.1", + "1:115.12.0+build3-0ubuntu0.20.04.1", + "1:115.13.0+build5-0ubuntu0.20.04.1", + "1:115.15.0+build1-0ubuntu0.20.04.1", + "1:115.16.0+build2-0ubuntu0.20.04.1", + "1:115.18.0+build1-0ubuntu0.20.04.1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "mozjs102", + "purl": "pkg:deb/ubuntu/mozjs102@102.15.1-0ubuntu0.22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "102.11.0-0ubuntu0.22.04.1", + "102.12.0-0ubuntu0.22.04.1", + "102.13.0-0ubuntu0.22.04.1", + "102.15.1-0ubuntu0.22.04.1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "mozjs78", + "purl": "pkg:deb/ubuntu/mozjs78@78.15.0-4ubuntu1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "78.13.0-1", + "78.15.0-2", + "78.15.0-4ubuntu1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "mozjs91", + "purl": "pkg:deb/ubuntu/mozjs91@91.10.0-0ubuntu1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "91.5.1-0ubuntu1", + "91.6.0-1", + "91.6.0-2", + "91.7.0-2", + "91.10.0-0ubuntu1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "thunderbird", + "purl": "pkg:deb/ubuntu/thunderbird@1:115.18.0+build1-0ubuntu0.22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:91.1.2+build1-0ubuntu1", + "1:91.3.0+build2-0ubuntu1", + "1:91.3.1+build1-0ubuntu1", + "1:91.3.2+build1-0ubuntu1", + "1:91.4.0+build1.1-0ubuntu1", + "1:91.4.0+build2-0ubuntu1", + "1:91.5.0+build1-0ubuntu1", + "1:91.5.1+build1-0ubuntu1", + "1:91.6.1+build1-0ubuntu1", + "1:91.7.0+build1-0ubuntu1", + "1:91.7.0+build2-0ubuntu1", + "1:91.8.0+build2-0ubuntu1", + "1:91.9.1+build1-0ubuntu0.22.04.1", + "1:91.11.0+build2-0ubuntu0.22.04.1", + "1:102.2.2+build1-0ubuntu0.22.04.1", + "1:102.4.2+build2-0ubuntu0.22.04.1", + "1:102.7.1+build2-0ubuntu0.22.04.1", + "1:102.8.0+build2-0ubuntu0.22.04.1", + "1:102.9.0+build1-0ubuntu0.22.04.1", + "1:102.10.0+build2-0ubuntu0.22.04.1", + "1:102.11.0+build1-0ubuntu0.22.04.1", + "1:102.13.0+build1-0ubuntu0.22.04.1", + "1:102.15.0+build1-0ubuntu0.22.04.1", + "1:102.15.1+build1-0ubuntu0.22.04.1", + "1:115.3.1+build1-0ubuntu0.22.04.2", + "1:115.4.1+build1-0ubuntu0.22.04.1", + "1:115.5.0+build1-0ubuntu0.22.04.1", + "1:115.6.0+build2-0ubuntu0.22.04.1", + "1:115.8.1+build1-0ubuntu0.22.04.1", + "1:115.9.0+build1-0ubuntu0.22.04.1", + "1:115.10.1+build1-0ubuntu0.22.04.1", + "1:115.11.0+build2-0ubuntu0.22.04.1", + "1:115.12.0+build3-0ubuntu0.22.04.1", + "1:115.13.0+build5-0ubuntu0.22.04.1", + "1:115.15.0+build1-0ubuntu0.22.04.1", + "1:115.16.0+build2-0ubuntu0.22.04.1", + "1:115.18.0+build1-0ubuntu0.22.04.1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.10", + "name": "mozjs115", + "purl": "pkg:deb/ubuntu/mozjs115@115.16.0-1?arch=source&distro=oracular" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "115.10.0-1", + "115.11.0-1", + "115.12.0-1", + "115.12.0-1build1", + "115.13.0-1", + "115.14.0-1", + "115.16.0-1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "mozjs102", + "purl": "pkg:deb/ubuntu/mozjs102@102.15.1-3ubuntu2?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "102.15.1-1", + "102.15.1-3ubuntu2" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "mozjs115", + "purl": "pkg:deb/ubuntu/mozjs115@115.10.0-1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "115.3.0-0ubuntu1", + "115.4.0-2", + "115.5.0-1", + "115.6.0-1", + "115.7.0-4", + "115.8.0-1", + "115.9.0-1", + "115.9.0-1build1", + "115.10.0-1" + ], + "ecosystem_specific": { + "ubuntu_priority": "negligible" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2025-0245" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-0245" + }, + { + "type": "REPORT", + "url": "https://www.mozilla.org/en-US/security/advisories/mfsa2025-01/#CVE-2025-0245" + }, + { + "type": "REPORT", + "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1895342" + }, + { + "type": "REPORT", + "url": "https://www.mozilla.org/security/advisories/mfsa2025-01/" + } + ], + "withdrawn": "2025-06-23T16:00:08Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json new file mode 100644 index 000000000..02d9c54cb --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json @@ -0,0 +1,839 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2025-0677", + "details": "A flaw was found in grub2. When performing a symlink lookup, the grub's UFS module checks the inode's data size to allocate the internal buffer to read the file content, however, it fails to check if the symlink data size has overflown. When this occurs, grub_malloc() may be called with a smaller value than needed. When further reading the data from the disk into the buffer, the grub_ufs_lookup_symlink() function will write past the end of the allocated size. An attack can leverage this by crafting a malicious filesystem, and as a result, it will corrupt data stored in the heap, allowing for arbitrary code execution used to by-pass secure boot mechanisms.", + "aliases": [], + "upstream": [ + "CVE-2025-0677" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2025-02-18T18:00:00Z", + "modified": "2026-01-20T05:24:58Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "grub2", + "purl": "pkg:deb/ubuntu/grub2@2.02~beta2-9ubuntu1.21?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.00-19ubuntu2", + "2.00-19ubuntu3", + "2.00-19ubuntu4", + "2.00-20", + "2.00-21", + "2.00-22", + "2.02~beta2-5", + "2.02~beta2-6", + "2.02~beta2-7", + "2.02~beta2-8", + "2.02~beta2-9", + "2.02~beta2-9ubuntu1", + "2.02~beta2-9ubuntu1.1", + "2.02~beta2-9ubuntu1.2", + "2.02~beta2-9ubuntu1.3", + "2.02~beta2-9ubuntu1.4", + "2.02~beta2-9ubuntu1.5", + "2.02~beta2-9ubuntu1.6", + "2.02~beta2-9ubuntu1.7", + "2.02~beta2-9ubuntu1.8", + "2.02~beta2-9ubuntu1.11", + "2.02~beta2-9ubuntu1.12", + "2.02~beta2-9ubuntu1.14", + "2.02~beta2-9ubuntu1.15", + "2.02~beta2-9ubuntu1.16", + "2.02~beta2-9ubuntu1.17", + "2.02~beta2-9ubuntu1.20", + "2.02~beta2-9ubuntu1.21" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-common", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-coreboot", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-coreboot-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-arm", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-arm-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-ia32", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-efi-ia32-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-emu", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-firmware-qemu", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-ieee1275", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-ieee1275-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-linuxbios", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-pc", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-pc-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-rescue-pc", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-theme-starfield", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-uboot", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-uboot-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-xen", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub-xen-bin", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub2", + "binary_version": "2.02~beta2-9ubuntu1.21" + }, + { + "binary_name": "grub2-common", + "binary_version": "2.02~beta2-9ubuntu1.21" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.34.24?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.22", + "1.23", + "1.24", + "1.25", + "1.26", + "1.27", + "1.30", + "1.31", + "1.32", + "1.33", + "1.34", + "1.34.1", + "1.34.2", + "1.34.3", + "1.34.4", + "1.34.5", + "1.34.6", + "1.34.7", + "1.34.8", + "1.34.9", + "1.34.13", + "1.34.14", + "1.34.16", + "1.34.17", + "1.34.18", + "1.34.20", + "1.34.22", + "1.34.24" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.34.24+2.02~beta2-9ubuntu1.21" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.167~16.04.6?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.55", + "1.56", + "1.57", + "1.58", + "1.59", + "1.61", + "1.62", + "1.63", + "1.64", + "1.65", + "1.66", + "1.66.1", + "1.66.2", + "1.66.6", + "1.66.7", + "1.66.8", + "1.66.9", + "1.66.11", + "1.66.12", + "1.66.14", + "1.66.15", + "1.66.16", + "1.66.17", + "1.66.18", + "1.66.19", + "1.66.20", + "1.66.21", + "1.66.22", + "1.66.23", + "1.66.26", + "1.66.27", + "1.66.28", + "1.66.29", + "1.167~16.04.1", + "1.167~16.04.2", + "1.167~16.04.4", + "1.167~16.04.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.167~16.04.6+2.04-1ubuntu44.1.2" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.167~16.04.6+2.04-1ubuntu44.1.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.04-1ubuntu44.1.2?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.04-1ubuntu44", + "2.04-1ubuntu44.1", + "2.04-1ubuntu44.1.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.04-1ubuntu44.1.2" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.04-1ubuntu44.1.2" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.04-1ubuntu44.1.2" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.04-1ubuntu44.1.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.187.3~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.85", + "1.86", + "1.87", + "1.89", + "1.91", + "1.92", + "1.93", + "1.93.1", + "1.93.2", + "1.93.3", + "1.93.4", + "1.93.5", + "1.93.7", + "1.93.8", + "1.93.10", + "1.93.11", + "1.93.13", + "1.93.14", + "1.93.15", + "1.93.16", + "1.93.18", + "1.93.19", + "1.93.20", + "1.93.21", + "1.93.22", + "1.93.24", + "1.167~18.04.1", + "1.167~18.04.3", + "1.167~18.04.5", + "1.173.2~18.04.1", + "1.187.2~18.04.1", + "1.187.3~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.187.3~18.04.1+2.06-2ubuntu14.1" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.187.3~18.04.1+2.06-2ubuntu14.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.04-1ubuntu44", + "2.04-1ubuntu44.1", + "2.04-1ubuntu44.1.2", + "2.04-1ubuntu47.4", + "2.06-2ubuntu14", + "2.06-2ubuntu14.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.06-2ubuntu14.1" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.06-2ubuntu14.1" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.06-2ubuntu14.1" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.06-2ubuntu14.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.187.12~20.04?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.128", + "1.129", + "1.130", + "1.131", + "1.133", + "1.134", + "1.135", + "1.136", + "1.137", + "1.138", + "1.139", + "1.140", + "1.141", + "1.142", + "1.142.1", + "1.142.3", + "1.142.4", + "1.142.5", + "1.142.6", + "1.142.8", + "1.142.9", + "1.142.10", + "1.142.11", + "1.167", + "1.167.2", + "1.173.2~20.04.1", + "1.173.4", + "1.187.2~20.04.2", + "1.187.3~20.04.1", + "1.187.4~20.04.1", + "1.187.6~20.04.1", + "1.187.12~20.04" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.187.12~20.04+2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.187.12~20.04+2.06-2ubuntu14.8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.8?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.04-1ubuntu44", + "2.04-1ubuntu44.2", + "2.04-1ubuntu47.4", + "2.04-1ubuntu47.5", + "2.06-2ubuntu14", + "2.06-2ubuntu14.1", + "2.06-2ubuntu14.2", + "2.06-2ubuntu14.4", + "2.06-2ubuntu14.8" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.06-2ubuntu14.8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.187.12?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.173", + "1.174", + "1.176", + "1.177", + "1.178", + "1.179", + "1.180", + "1.182~22.04.1", + "1.187.2", + "1.187.3~22.04.1", + "1.187.4~22.04.1", + "1.187.6", + "1.187.12" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.187.12+2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.187.12+2.06-2ubuntu14.8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.8?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.04-1ubuntu47", + "2.04-1ubuntu48", + "2.06-2ubuntu3", + "2.06-2ubuntu4", + "2.06-2ubuntu5", + "2.06-2ubuntu6", + "2.06-2ubuntu7", + "2.06-2ubuntu10", + "2.06-2ubuntu14", + "2.06-2ubuntu14.1", + "2.06-2ubuntu14.2", + "2.06-2ubuntu14.4", + "2.06-2ubuntu14.8" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.06-2ubuntu14.8" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.06-2ubuntu14.8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.202.5?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.197", + "1.199", + "1.201", + "1.202", + "1.202.2", + "1.202.5" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.202.5+2.12-1ubuntu7.3" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.202.5+2.12-1ubuntu7.3" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.12-1ubuntu7.3?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.12~rc1-10ubuntu4", + "2.12~rc1-12ubuntu2", + "2.12-1ubuntu1", + "2.12-1ubuntu7", + "2.12-1ubuntu7.1", + "2.12-1ubuntu7.3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.12-1ubuntu7.3" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.12-1ubuntu7.3" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.12-1ubuntu7.3" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.12-1ubuntu7.3" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "grub2-signed", + "purl": "pkg:deb/ubuntu/grub2-signed@1.214?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1.212", + "1.213", + "1.214" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64-signed", + "binary_version": "1.214+2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-arm64-signed", + "binary_version": "1.214+2.14~git20250718.0e36779-1ubuntu4" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "grub2-unsigned", + "purl": "pkg:deb/ubuntu/grub2-unsigned@2.14~git20250718.0e36779-1ubuntu4?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "2.12-5ubuntu11", + "2.14~git20250718.0e36779-1ubuntu1", + "2.14~git20250718.0e36779-1ubuntu4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "grub-efi-amd64", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-amd64-bin", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-amd64-unsigned", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-arm64", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-arm64-bin", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + }, + { + "binary_name": "grub-efi-arm64-unsigned", + "binary_version": "2.14~git20250718.0e36779-1ubuntu4" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2025-0677" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-0677" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json new file mode 100644 index 000000000..d0a1434a9 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json @@ -0,0 +1,1490 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2025-1179", + "details": "A vulnerability was found in GNU Binutils 2.43. It has been rated as critical. Affected by this issue is the function bfd_putl64 of the file bfd/libbfd.c of the component ld. The manipulation leads to memory corruption. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. Upgrading to version 2.44 is able to address this issue. It is recommended to upgrade the affected component. The code maintainer explains, that \"[t]his bug has been fixed at some point between the 2.43 and 2.44 releases\".", + "aliases": [], + "upstream": [ + "CVE-2025-1179" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L" + }, + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2025-02-11T07:15:00Z", + "modified": "2025-07-14T04:38:26Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "binutils", + "purl": "pkg:deb/ubuntu/binutils@2.26.1-1ubuntu1~16.04.8+esm11?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.26.1-1ubuntu1~16.04.8+esm11" + } + ] + } + ], + "versions": [ + "2.25.1-6ubuntu1", + "2.25.51.20151022-0ubuntu2", + "2.25.51.20151022-0ubuntu3", + "2.25.51.20151027-0ubuntu1", + "2.25.51.20151028-0ubuntu1", + "2.25.51.20151106-0ubuntu1", + "2.25.51.20151113-1ubuntu1", + "2.25.51.20151113-2ubuntu1", + "2.25.90.20151125-1ubuntu1", + "2.25.90.20151125-2ubuntu1", + "2.25.90.20151211-0ubuntu1", + "2.25.90.20151211-0ubuntu2", + "2.25.90.20160101-1ubuntu1", + "2.25.90.20160101-1ubuntu2", + "2.26-2ubuntu1", + "2.26-3ubuntu1", + "2.26-4ubuntu1", + "2.26-5ubuntu1", + "2.26-6ubuntu1", + "2.26-7ubuntu2", + "2.26-8ubuntu1", + "2.26-8ubuntu2", + "2.26-8ubuntu2.1", + "2.26.1-1ubuntu1~16.04", + "2.26.1-1ubuntu1~16.04.1", + "2.26.1-1ubuntu1~16.04.3", + "2.26.1-1ubuntu1~16.04.4", + "2.26.1-1ubuntu1~16.04.5", + "2.26.1-1ubuntu1~16.04.6", + "2.26.1-1ubuntu1~16.04.7", + "2.26.1-1ubuntu1~16.04.8", + "2.26.1-1ubuntu1~16.04.8+esm1", + "2.26.1-1ubuntu1~16.04.8+esm3", + "2.26.1-1ubuntu1~16.04.8+esm4", + "2.26.1-1ubuntu1~16.04.8+esm5", + "2.26.1-1ubuntu1~16.04.8+esm6", + "2.26.1-1ubuntu1~16.04.8+esm7", + "2.26.1-1ubuntu1~16.04.8+esm9" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "binutils", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-aarch64-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-alpha-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-arm-linux-gnueabi", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-dev", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-doc", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-hppa-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-hppa64-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-m68k-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-mips-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-mips64-linux-gnuabi64", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-mips64el-linux-gnuabi64", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-mipsel-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-multiarch", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-multiarch-dev", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-powerpc-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-powerpc-linux-gnuspe", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-s390x-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-sh4-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-source", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + }, + { + "binary_name": "binutils-sparc64-linux-gnu", + "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "binutils", + "purl": "pkg:deb/ubuntu/binutils@2.30-21ubuntu1~18.04.9+esm4?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.30-21ubuntu1~18.04.9+esm4" + } + ] + } + ], + "versions": [ + "2.29.1-4ubuntu1", + "2.29.1-6ubuntu1", + "2.29.1-7ubuntu1", + "2.29.1-8ubuntu1", + "2.29.1-10ubuntu1", + "2.29.1-12ubuntu1", + "2.30-4ubuntu1", + "2.30-5ubuntu1", + "2.30-7ubuntu1", + "2.30-8ubuntu1", + "2.30-9ubuntu1", + "2.30-10ubuntu1", + "2.30-11ubuntu1", + "2.30-14ubuntu2", + "2.30-15ubuntu1", + "2.30-20ubuntu2~18.04", + "2.30-21ubuntu1~18.04", + "2.30-21ubuntu1~18.04.1", + "2.30-21ubuntu1~18.04.2", + "2.30-21ubuntu1~18.04.3", + "2.30-21ubuntu1~18.04.4", + "2.30-21ubuntu1~18.04.5", + "2.30-21ubuntu1~18.04.7", + "2.30-21ubuntu1~18.04.8", + "2.30-21ubuntu1~18.04.9", + "2.30-21ubuntu1~18.04.9+esm1", + "2.30-21ubuntu1~18.04.9+esm3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "binutils", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-aarch64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-aarch64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-alpha-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-alpha-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-arm-linux-gnueabi", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-arm-linux-gnueabi-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-common", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-dev", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-doc", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-for-build", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-for-host", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-hppa-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-hppa-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-hppa64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-hppa64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-i686-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-ia64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-ia64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-m68k-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-m68k-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64-linux-gnuabi64", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64-linux-gnuabi64-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64-linux-gnuabin32", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64-linux-gnuabin32-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64el-linux-gnuabi64", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64el-linux-gnuabi64-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64el-linux-gnuabin32", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mips64el-linux-gnuabin32-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsel-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsel-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa32r6-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa32r6-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa32r6el-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa32r6el-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6-linux-gnuabi64", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6-linux-gnuabi64-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6-linux-gnuabin32", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6-linux-gnuabin32-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6el-linux-gnuabi64", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6el-linux-gnuabi64-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6el-linux-gnuabin32", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-mipsisa64r6el-linux-gnuabin32-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-multiarch", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-multiarch-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-multiarch-dev", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc-linux-gnuspe", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc-linux-gnuspe-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-riscv64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-riscv64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-s390x-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-s390x-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-sh4-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-sh4-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-source", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-sparc64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-sparc64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-linux-gnu", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-linux-gnu-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "libbinutils", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + }, + { + "binary_name": "libbinutils-dbg", + "binary_version": "2.30-21ubuntu1~18.04.9+esm4" + } + ], + "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "binutils", + "purl": "pkg:deb/ubuntu/binutils@2.38-4ubuntu2.8?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.38-4ubuntu2.8" + } + ] + } + ], + "versions": [ + "2.37-7ubuntu1", + "2.37-9ubuntu1", + "2.37-10ubuntu1", + "2.37.50.20220106-2ubuntu1", + "2.37.90.20220126-0ubuntu1", + "2.37.90.20220130-0ubuntu2", + "2.38-1ubuntu1", + "2.38-2ubuntu1", + "2.38-3ubuntu1", + "2.38-4ubuntu2", + "2.38-4ubuntu2.1", + "2.38-4ubuntu2.2", + "2.38-4ubuntu2.3", + "2.38-4ubuntu2.4", + "2.38-4ubuntu2.5", + "2.38-4ubuntu2.6", + "2.38-4ubuntu2.7" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "binutils", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-aarch64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-aarch64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-alpha-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-alpha-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-arm-linux-gnueabi", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-arm-linux-gnueabi-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-common", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-dev", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-doc", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-for-build", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-for-host", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-hppa-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-hppa-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-hppa64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-hppa64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-i686-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-ia64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-ia64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-m68k-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-m68k-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-multiarch", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-multiarch-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-multiarch-dev", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-riscv64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-riscv64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-s390x-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-s390x-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-sh4-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-sh4-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-source", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-sparc64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-sparc64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-linux-gnu", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-linux-gnu-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libbinutils", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libbinutils-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libctf-nobfd0", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libctf-nobfd0-dbg", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libctf0", + "binary_version": "2.38-4ubuntu2.8" + }, + { + "binary_name": "libctf0-dbg", + "binary_version": "2.38-4ubuntu2.8" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "binutils", + "purl": "pkg:deb/ubuntu/binutils@2.42-4ubuntu2.5?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.42-4ubuntu2.5" + } + ] + } + ], + "versions": [ + "2.41-5ubuntu1", + "2.41-6ubuntu1", + "2.41.50.20231206-1ubuntu1", + "2.41.50.20231214-1ubuntu1", + "2.41.50.20231227-1ubuntu1", + "2.41.90.20240122-1ubuntu1", + "2.42-2ubuntu1", + "2.42-3ubuntu1", + "2.42-4ubuntu1", + "2.42-4ubuntu2", + "2.42-4ubuntu2.3", + "2.42-4ubuntu2.4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "binutils", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-aarch64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-aarch64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-alpha-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-alpha-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arc-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arc-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arm-linux-gnueabi", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arm-linux-gnueabi-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-common", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-dev", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-doc", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-for-build", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-for-host", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-hppa-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-hppa-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-hppa64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-hppa64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-kfreebsd-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-i686-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-ia64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-ia64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-loongarch64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-loongarch64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-m68k-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-m68k-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-multiarch", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-multiarch-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-multiarch-dev", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-riscv64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-riscv64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-s390x-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-s390x-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-sh4-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-sh4-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-source", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-sparc64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-sparc64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-linux-gnu", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-linux-gnu-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libbinutils", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libbinutils-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libctf-nobfd0", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libctf-nobfd0-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libctf0", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libctf0-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libgprofng0", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libgprofng0-dbg", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libsframe1", + "binary_version": "2.42-4ubuntu2.5" + }, + { + "binary_name": "libsframe1-dbg", + "binary_version": "2.42-4ubuntu2.5" + } + ], + "availability": "No subscription required" + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.04", + "name": "binutils", + "purl": "pkg:deb/ubuntu/binutils@2.44-3ubuntu1?arch=source&distro=plucky" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.44-3ubuntu1" + } + ] + } + ], + "versions": [ + "2.43.1-4ubuntu1", + "2.43.50.20241126-3ubuntu1", + "2.43.50.20241204-2ubuntu1", + "2.43.50.20241210-1ubuntu2", + "2.43.50.20241215-1ubuntu1", + "2.43.50.20241221-1ubuntu1", + "2.43.50.20241230-1ubuntu1", + "2.43.50.20250108-1ubuntu1", + "2.44-1ubuntu1", + "2.44-2ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "binutils", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-aarch64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-aarch64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-alpha-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-alpha-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arc-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arc-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arm-linux-gnueabi", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arm-linux-gnueabi-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-arm-linux-gnueabihf-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-common", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-dev", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-doc", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-for-build", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-for-host", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-hppa-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-hppa-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-hppa64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-hppa64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-i686-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-i686-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-i686-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-i686-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-loongarch64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-loongarch64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-m68k-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-m68k-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-multiarch", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-multiarch-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-multiarch-dev", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-powerpc64le-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-riscv64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-riscv64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-s390x-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-s390x-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sh4-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sh4-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-source", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sparc-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sparc-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sparc64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-sparc64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-linux-gnu", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-linux-gnu-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "binutils-x86-64-linux-gnux32-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libbinutils", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libbinutils-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libctf-nobfd0", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libctf-nobfd0-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libctf0", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libctf0-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libgprofng0", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libgprofng0-dbg", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libsframe1", + "binary_version": "2.44-3ubuntu1" + }, + { + "binary_name": "libsframe1-dbg", + "binary_version": "2.44-3ubuntu1" + } + ], + "availability": "No subscription required" + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2025-1179" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-1179" + }, + { + "type": "REPORT", + "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640" + }, + { + "type": "REPORT", + "url": "https://sourceware.org/bugzilla/attachment.cgi?id=15915" + }, + { + "type": "REPORT", + "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640#c1" + }, + { + "type": "REPORT", + "url": "https://vuldb.com/?ctiid.295082" + }, + { + "type": "REPORT", + "url": "https://vuldb.com/?id.295082" + }, + { + "type": "REPORT", + "url": "https://vuldb.com/?submit.495376" + }, + { + "type": "REPORT", + "url": "https://www.gnu.org/" + } + ], + "withdrawn": "2025-07-18T17:02:42Z" +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-14345.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-14345.json new file mode 100644 index 000000000..6ac194559 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-14345.json @@ -0,0 +1,220 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2025-14345", + "details": "A post-authentication\u00a0flaw in the network two-phase commit protocol used for cross-shard transactions in MongoDB Server may lead to logical data inconsistencies under specific conditions which are not predictable and exist for a very short period of time. This error can cause the transaction coordination logic to misinterpret the transaction as committed, resulting in inconsistent state on those shards. This may lead to low integrity and availability impact. This issue impacts MongoDB Server v8.0 versions prior to 8.0.16, MongoDB Server v7.0 versions prior to 7.0.26 and MongoDB server v8.2 versions prior to 8.2.2.", + "aliases": [], + "upstream": [ + "CVE-2025-14345" + ], + "related": [], + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N" + }, + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N" + }, + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2025-12-09T16:17:00Z", + "modified": "2025-12-16T05:43:18Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:14.04:LTS", + "name": "mongodb", + "purl": "pkg:deb/ubuntu/mongodb@1:2.4.9-1ubuntu2?arch=source&distro=trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:2.4.6-0ubuntu5", + "1:2.4.6-0ubuntu6", + "1:2.4.8-1ubuntu1", + "1:2.4.8-2", + "1:2.4.9-1", + "1:2.4.9-1ubuntu1", + "1:2.4.9-1ubuntu2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "mongodb", + "binary_version": "1:2.4.9-1ubuntu2" + }, + { + "binary_name": "mongodb-clients", + "binary_version": "1:2.4.9-1ubuntu2" + }, + { + "binary_name": "mongodb-dev", + "binary_version": "1:2.4.9-1ubuntu2" + }, + { + "binary_name": "mongodb-server", + "binary_version": "1:2.4.9-1ubuntu2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "mongodb", + "purl": "pkg:deb/ubuntu/mongodb@1:2.6.10-0ubuntu1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:2.6.10-0ubuntu1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "mongodb", + "binary_version": "1:2.6.10-0ubuntu1" + }, + { + "binary_name": "mongodb-clients", + "binary_version": "1:2.6.10-0ubuntu1" + }, + { + "binary_name": "mongodb-server", + "binary_version": "1:2.6.10-0ubuntu1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "mongodb", + "purl": "pkg:deb/ubuntu/mongodb@1:3.6.3-0ubuntu1.4?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:3.4.7-1", + "1:3.4.7-1ubuntu1", + "1:3.4.7-1ubuntu2", + "1:3.4.7-1ubuntu4", + "1:3.4.14-3ubuntu1", + "1:3.4.14-3ubuntu2", + "1:3.6.3-0ubuntu1", + "1:3.6.3-0ubuntu1.1", + "1:3.6.3-0ubuntu1.3", + "1:3.6.3-0ubuntu1.4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "mongodb", + "binary_version": "1:3.6.3-0ubuntu1.4" + }, + { + "binary_name": "mongodb-clients", + "binary_version": "1:3.6.3-0ubuntu1.4" + }, + { + "binary_name": "mongodb-server", + "binary_version": "1:3.6.3-0ubuntu1.4" + }, + { + "binary_name": "mongodb-server-core", + "binary_version": "1:3.6.3-0ubuntu1.4" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "mongodb", + "purl": "pkg:deb/ubuntu/mongodb@1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu2", + "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5", + "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.2", + "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "mongodb", + "binary_version": "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3" + }, + { + "binary_name": "mongodb-clients", + "binary_version": "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3" + }, + { + "binary_name": "mongodb-server", + "binary_version": "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3" + }, + { + "binary_name": "mongodb-server-core", + "binary_version": "1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2025-14345" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-14345" + }, + { + "type": "REPORT", + "url": "https://jira.mongodb.org/browse/SERVER-106075" + } + ] +} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json new file mode 100644 index 000000000..880e9ed31 --- /dev/null +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json @@ -0,0 +1,29143 @@ +{ + "schema_version": "1.7.0", + "id": "UBUNTU-CVE-2025-71115", + "details": "In the Linux kernel, the following vulnerability has been resolved: um: init cpu_tasks[] earlier This is currently done in uml_finishsetup(), but e.g. with KCOV enabled we'll crash because some init code can call into e.g. memparse(), which has coverage annotations, and then the checks in check_kcov_mode() crash because current is NULL. Simply initialize the cpu_tasks[] array statically, which fixes the crash. For the later SMP work, it seems to have not really caused any problems yet, but initialize all of the entries anyway.", + "aliases": [], + "upstream": [ + "CVE-2025-71115" + ], + "related": [], + "severity": [ + { + "type": "Ubuntu", + "score": "medium" + } + ], + "published": "2026-01-14T15:16:00Z", + "modified": "2026-01-30T05:47:05Z", + "affected": [ + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@3.13.0-210.261?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "3.11.0-12.19", + "3.12.0-1.3", + "3.12.0-2.5", + "3.12.0-2.7", + "3.12.0-3.8", + "3.12.0-3.9", + "3.12.0-4.10", + "3.12.0-4.12", + "3.12.0-5.13", + "3.12.0-7.15", + "3.13.0-1.16", + "3.13.0-2.17", + "3.13.0-3.18", + "3.13.0-4.19", + "3.13.0-5.20", + "3.13.0-6.23", + "3.13.0-7.25", + "3.13.0-7.26", + "3.13.0-8.27", + "3.13.0-8.28", + "3.13.0-10.30", + "3.13.0-11.31", + "3.13.0-12.32", + "3.13.0-13.33", + "3.13.0-14.34", + "3.13.0-15.35", + "3.13.0-16.36", + "3.13.0-17.37", + "3.13.0-18.38", + "3.13.0-19.39", + "3.13.0-19.40", + "3.13.0-20.42", + "3.13.0-21.43", + "3.13.0-22.44", + "3.13.0-23.45", + "3.13.0-24.46", + "3.13.0-24.47", + "3.13.0-27.50", + "3.13.0-29.53", + "3.13.0-30.54", + "3.13.0-30.55", + "3.13.0-32.57", + "3.13.0-33.58", + "3.13.0-34.60", + "3.13.0-35.62", + "3.13.0-36.63", + "3.13.0-37.64", + "3.13.0-39.66", + "3.13.0-40.69", + "3.13.0-41.70", + "3.13.0-43.72", + "3.13.0-44.73", + "3.13.0-45.74", + "3.13.0-46.75", + "3.13.0-46.76", + "3.13.0-46.77", + "3.13.0-46.79", + "3.13.0-48.80", + "3.13.0-49.81", + "3.13.0-49.83", + "3.13.0-51.84", + "3.13.0-52.85", + "3.13.0-52.86", + "3.13.0-53.88", + "3.13.0-53.89", + "3.13.0-54.91", + "3.13.0-55.92", + "3.13.0-55.94", + "3.13.0-57.95", + "3.13.0-58.97", + "3.13.0-59.98", + "3.13.0-61.100", + "3.13.0-62.102", + "3.13.0-63.103", + "3.13.0-65.105", + "3.13.0-65.106", + "3.13.0-66.108", + "3.13.0-67.110", + "3.13.0-68.111", + "3.13.0-70.113", + "3.13.0-71.114", + "3.13.0-73.116", + "3.13.0-74.118", + "3.13.0-76.120", + "3.13.0-77.121", + "3.13.0-79.123", + "3.13.0-83.127", + "3.13.0-85.129", + "3.13.0-86.130", + "3.13.0-86.131", + "3.13.0-87.133", + "3.13.0-88.135", + "3.13.0-91.138", + "3.13.0-92.139", + "3.13.0-93.140", + "3.13.0-95.142", + "3.13.0-96.143", + "3.13.0-98.145", + "3.13.0-100.147", + "3.13.0-101.148", + "3.13.0-103.150", + "3.13.0-105.152", + "3.13.0-106.153", + "3.13.0-107.154", + "3.13.0-108.155", + "3.13.0-109.156", + "3.13.0-110.157", + "3.13.0-111.158", + "3.13.0-112.159", + "3.13.0-113.160", + "3.13.0-115.162", + "3.13.0-116.163", + "3.13.0-117.164", + "3.13.0-119.166", + "3.13.0-121.170", + "3.13.0-123.172", + "3.13.0-125.174", + "3.13.0-126.175", + "3.13.0-128.177", + "3.13.0-129.178", + "3.13.0-132.181", + "3.13.0-133.182", + "3.13.0-135.184", + "3.13.0-137.186", + "3.13.0-139.188", + "3.13.0-141.190", + "3.13.0-142.191", + "3.13.0-143.192", + "3.13.0-144.193", + "3.13.0-145.194", + "3.13.0-147.196", + "3.13.0-149.199", + "3.13.0-151.201", + "3.13.0-153.203", + "3.13.0-155.205", + "3.13.0-156.206", + "3.13.0-157.207", + "3.13.0-158.208", + "3.13.0-160.210", + "3.13.0-161.211", + "3.13.0-162.212", + "3.13.0-163.213", + "3.13.0-164.214", + "3.13.0-165.215", + "3.13.0-166.216", + "3.13.0-167.217", + "3.13.0-168.218", + "3.13.0-169.219", + "3.13.0-170.220", + "3.13.0-171.222", + "3.13.0-172.223", + "3.13.0-173.224", + "3.13.0-174.225", + "3.13.0-175.226", + "3.13.0-176.227", + "3.13.0-180.231", + "3.13.0-181.232", + "3.13.0-182.233", + "3.13.0-183.234", + "3.13.0-184.235", + "3.13.0-185.236", + "3.13.0-186.237", + "3.13.0-187.238", + "3.13.0-188.239", + "3.13.0-189.240", + "3.13.0-190.241", + "3.13.0-191.242", + "3.13.0-192.243", + "3.13.0-193.244", + "3.13.0-194.245", + "3.13.0-195.246", + "3.13.0-196.247", + "3.13.0-197.248", + "3.13.0-198.249", + "3.13.0-199.250", + "3.13.0-200.251", + "3.13.0-201.252", + "3.13.0-202.253", + "3.13.0-203.254", + "3.13.0-204.255", + "3.13.0-205.256", + "3.13.0-206.257", + "3.13.0-207.258", + "3.13.0-208.259", + "3.13.0-209.260", + "3.13.0-210.261" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "crypto-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fat-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "firewire-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "floppy-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fs-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "fs-secondary-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "input-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "ipmi-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "irda-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "kernel-image-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-buildinfo-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-buildinfo-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-headers-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-image-unsigned-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-image-unsigned-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-modules-extra-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-source-3.13.0", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-3.13.0-210-lowlatency", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "md-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "message-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "mouse-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "multipath-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nfs-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-pcmcia-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-shared-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "nic-usb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "parport-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pata-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pcmcia-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "pcmcia-storage-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "plip-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "ppp-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "sata-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "scsi-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "serial-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "speakup-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "squashfs-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "storage-core-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "usb-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "virtio-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + }, + { + "binary_name": "vlan-modules-3.13.0-210-generic-di", + "binary_version": "3.13.0-210.261" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1151.157?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1002.2", + "4.4.0-1003.3", + "4.4.0-1005.5", + "4.4.0-1006.6", + "4.4.0-1009.9", + "4.4.0-1010.10", + "4.4.0-1011.11", + "4.4.0-1012.12", + "4.4.0-1014.14", + "4.4.0-1016.16", + "4.4.0-1017.17", + "4.4.0-1019.19", + "4.4.0-1022.22", + "4.4.0-1023.23", + "4.4.0-1024.25", + "4.4.0-1025.26", + "4.4.0-1027.30", + "4.4.0-1028.31", + "4.4.0-1029.32", + "4.4.0-1031.34", + "4.4.0-1032.35", + "4.4.0-1034.37", + "4.4.0-1036.39", + "4.4.0-1037.40", + "4.4.0-1038.41", + "4.4.0-1039.42", + "4.4.0-1040.43", + "4.4.0-1042.45", + "4.4.0-1044.47", + "4.4.0-1045.48", + "4.4.0-1046.50", + "4.4.0-1048.52", + "4.4.0-1050.54", + "4.4.0-1052.56", + "4.4.0-1054.58", + "4.4.0-1055.59", + "4.4.0-1056.60", + "4.4.0-1058.62", + "4.4.0-1059.63", + "4.4.0-1060.64", + "4.4.0-1061.65", + "4.4.0-1062.66", + "4.4.0-1064.68", + "4.4.0-1065.69", + "4.4.0-1066.70", + "4.4.0-1067.71", + "4.4.0-1073.77", + "4.4.0-1074.78", + "4.4.0-1075.79", + "4.4.0-1076.80", + "4.4.0-1077.81", + "4.4.0-1078.82", + "4.4.0-1081.85", + "4.4.0-1082.86", + "4.4.0-1083.87", + "4.4.0-1085.89", + "4.4.0-1086.90", + "4.4.0-1087.91", + "4.4.0-1088.92", + "4.4.0-1090.94", + "4.4.0-1091.95", + "4.4.0-1092.96", + "4.4.0-1093.97", + "4.4.0-1094.99", + "4.4.0-1095.100", + "4.4.0-1096.101", + "4.4.0-1097.102", + "4.4.0-1098.103", + "4.4.0-1099.104", + "4.4.0-1101.106", + "4.4.0-1102.107", + "4.4.0-1103.108", + "4.4.0-1104.109", + "4.4.0-1107.113", + "4.4.0-1109.115", + "4.4.0-1110.116", + "4.4.0-1111.117", + "4.4.0-1112.118", + "4.4.0-1113.119", + "4.4.0-1114.120", + "4.4.0-1115.121", + "4.4.0-1116.122", + "4.4.0-1117.123", + "4.4.0-1118.124", + "4.4.0-1119.125", + "4.4.0-1120.126", + "4.4.0-1121.127", + "4.4.0-1122.128", + "4.4.0-1123.129", + "4.4.0-1124.130", + "4.4.0-1125.131", + "4.4.0-1127.133", + "4.4.0-1128.134", + "4.4.0-1129.135", + "4.4.0-1130.136", + "4.4.0-1131.137", + "4.4.0-1133.139", + "4.4.0-1134.140", + "4.4.0-1135.141", + "4.4.0-1136.142", + "4.4.0-1137.143", + "4.4.0-1138.144", + "4.4.0-1139.145", + "4.4.0-1140.146", + "4.4.0-1141.147", + "4.4.0-1142.148", + "4.4.0-1143.149", + "4.4.0-1144.150", + "4.4.0-1145.151", + "4.4.0-1146.152", + "4.4.0-1147.153", + "4.4.0-1148.154", + "4.4.0-1149.155", + "4.4.0-1150.156", + "4.4.0-1151.157" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.4.0-1151", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-aws-headers-4.4.0-1151", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-aws-tools-4.4.0-1151", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-headers-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-image-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-modules-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + }, + { + "binary_name": "linux-tools-4.4.0-1151-aws", + "binary_version": "4.4.0-1151.157" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1195.210~14.04.1?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1023.24~14.04.1", + "4.15.0-1030.31~14.04.1", + "4.15.0-1031.32~14.04.1", + "4.15.0-1032.33~14.04.2", + "4.15.0-1035.36~14.04.2", + "4.15.0-1036.38~14.04.2", + "4.15.0-1037.39~14.04.2", + "4.15.0-1039.41~14.04.2", + "4.15.0-1040.44~14.04.1", + "4.15.0-1041.45~14.04.1", + "4.15.0-1042.46~14.04.1", + "4.15.0-1045.49~14.04.1", + "4.15.0-1046.50~14.04.1", + "4.15.0-1047.51~14.04.1", + "4.15.0-1049.54~14.04.1", + "4.15.0-1050.55~14.04.1", + "4.15.0-1051.56~14.04.1", + "4.15.0-1052.57~14.04.1", + "4.15.0-1055.60~14.04.1", + "4.15.0-1056.61~14.04.1", + "4.15.0-1057.62~14.04.1", + "4.15.0-1059.64~14.04.1", + "4.15.0-1060.65~14.04.1", + "4.15.0-1061.66~14.04.1", + "4.15.0-1063.68~14.04.1", + "4.15.0-1064.69~14.04.1", + "4.15.0-1066.71~14.04.1", + "4.15.0-1067.72~14.04.1", + "4.15.0-1069.74~14.04.1", + "4.15.0-1071.76~14.04.1", + "4.15.0-1074.79~14.04.1", + "4.15.0-1077.82~14.04.1", + "4.15.0-1082.92~14.04.1", + "4.15.0-1083.93~14.04.1", + "4.15.0-1089.99~14.04.1", + "4.15.0-1091.101~14.04.1", + "4.15.0-1092.102~14.04.1", + "4.15.0-1093.103~14.04.1", + "4.15.0-1095.105~14.04.1", + "4.15.0-1096.106~14.04.1", + "4.15.0-1098.109~14.04.1", + "4.15.0-1100.111~14.04.1", + "4.15.0-1102.113~14.04.1", + "4.15.0-1103.114~14.04.1", + "4.15.0-1106.118~14.04.1", + "4.15.0-1108.120~14.04.1", + "4.15.0-1109.121~14.04.1", + "4.15.0-1110.122~14.04.1", + "4.15.0-1111.123~14.04.1", + "4.15.0-1112.124~14.04.1", + "4.15.0-1113.126~14.04.1", + "4.15.0-1114.127~14.04.1", + "4.15.0-1115.128~14.04.1", + "4.15.0-1118.131~14.04.1", + "4.15.0-1121.134~14.04.1", + "4.15.0-1122.135~14.04.1", + "4.15.0-1123.136~14.04.1", + "4.15.0-1124.137~14.04.1", + "4.15.0-1125.138~14.04.1", + "4.15.0-1126.139~14.04.1", + "4.15.0-1127.140~14.04.1", + "4.15.0-1129.142~14.04.1", + "4.15.0-1130.143~14.04.1", + "4.15.0-1131.144~14.04.1", + "4.15.0-1133.146~14.04.1", + "4.15.0-1134.147~14.04.1", + "4.15.0-1136.149~14.04.1", + "4.15.0-1137.150~14.04.1", + "4.15.0-1138.151~14.04.1", + "4.15.0-1139.152~14.04.1", + "4.15.0-1142.156~14.04.1", + "4.15.0-1145.160~14.04.1", + "4.15.0-1146.161~14.04.1", + "4.15.0-1149.164~14.04.1", + "4.15.0-1150.165~14.04.1", + "4.15.0-1151.166~14.04.1", + "4.15.0-1153.168~14.04.1", + "4.15.0-1157.172~14.04.2", + "4.15.0-1158.173~14.04.1", + "4.15.0-1159.174~14.04.1", + "4.15.0-1162.177~14.04.1", + "4.15.0-1163.178~14.04.1", + "4.15.0-1164.179~14.04.1", + "4.15.0-1165.180~14.04.1", + "4.15.0-1166.181~14.04.1", + "4.15.0-1167.182~14.04.1", + "4.15.0-1168.183~14.04.1", + "4.15.0-1169.184~14.04.1", + "4.15.0-1170.185~14.04.1", + "4.15.0-1171.186~14.04.1", + "4.15.0-1172.187~14.04.1", + "4.15.0-1173.188~14.04.1", + "4.15.0-1174.189~14.04.1", + "4.15.0-1175.190~14.04.1", + "4.15.0-1176.191~14.04.1", + "4.15.0-1177.192~14.04.1", + "4.15.0-1178.193~14.04.1", + "4.15.0-1179.194~14.04.1", + "4.15.0-1180.195~14.04.1", + "4.15.0-1181.196~14.04.1", + "4.15.0-1182.197~14.04.1", + "4.15.0-1183.198~14.04.1", + "4.15.0-1184.199~14.04.1", + "4.15.0-1185.200~14.04.1", + "4.15.0-1186.201~14.04.1", + "4.15.0-1187.202~14.04.1", + "4.15.0-1188.203~14.04.1", + "4.15.0-1189.204~14.04.1", + "4.15.0-1190.205~14.04.1", + "4.15.0-1191.206~14.04.1", + "4.15.0-1192.207~14.04.1", + "4.15.0-1193.208~14.04.1", + "4.15.0-1194.209~14.04.1", + "4.15.0-1195.210~14.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-azure-headers-4.15.0-1195", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-azure-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~14.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:14.04:LTS", + "name": "linux-lts-xenial", + "purl": "pkg:deb/ubuntu/linux-lts-xenial@4.4.0-277.311~14.04.1?arch=source&distro=esm-infra-legacy/trusty" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-13.29~14.04.1", + "4.4.0-14.30~14.04.2", + "4.4.0-15.31~14.04.1", + "4.4.0-18.34~14.04.1", + "4.4.0-21.37~14.04.1", + "4.4.0-22.39~14.04.1", + "4.4.0-22.40~14.04.1", + "4.4.0-24.43~14.04.1", + "4.4.0-28.47~14.04.1", + "4.4.0-31.50~14.04.1", + "4.4.0-34.53~14.04.1", + "4.4.0-36.55~14.04.1", + "4.4.0-38.57~14.04.1", + "4.4.0-42.62~14.04.1", + "4.4.0-45.66~14.04.1", + "4.4.0-47.68~14.04.1", + "4.4.0-51.72~14.04.1", + "4.4.0-53.74~14.04.1", + "4.4.0-57.78~14.04.1", + "4.4.0-59.80~14.04.1", + "4.4.0-62.83~14.04.1", + "4.4.0-63.84~14.04.2", + "4.4.0-64.85~14.04.1", + "4.4.0-66.87~14.04.1", + "4.4.0-67.88~14.04.1", + "4.4.0-70.91~14.04.1", + "4.4.0-71.92~14.04.1", + "4.4.0-72.93~14.04.1", + "4.4.0-75.96~14.04.1", + "4.4.0-78.99~14.04.2", + "4.4.0-79.100~14.04.1", + "4.4.0-81.104~14.04.1", + "4.4.0-83.106~14.04.1", + "4.4.0-87.110~14.04.1", + "4.4.0-89.112~14.04.1", + "4.4.0-91.114~14.04.1", + "4.4.0-92.115~14.04.1", + "4.4.0-93.116~14.04.1", + "4.4.0-96.119~14.04.1", + "4.4.0-97.120~14.04.1", + "4.4.0-98.121~14.04.1", + "4.4.0-101.124~14.04.1", + "4.4.0-103.126~14.04.1", + "4.4.0-104.127~14.04.1", + "4.4.0-108.131~14.04.1", + "4.4.0-109.132~14.04.1", + "4.4.0-111.134~14.04.1", + "4.4.0-112.135~14.04.1", + "4.4.0-116.140~14.04.1", + "4.4.0-119.143~14.04.1", + "4.4.0-121.145~14.04.1", + "4.4.0-124.148~14.04.1", + "4.4.0-127.153~14.04.1", + "4.4.0-128.154~14.04.1", + "4.4.0-130.156~14.04.1", + "4.4.0-131.157~14.04.1", + "4.4.0-133.159~14.04.1", + "4.4.0-134.160~14.04.1", + "4.4.0-135.161~14.04.1", + "4.4.0-137.163~14.04.1", + "4.4.0-138.164~14.04.1", + "4.4.0-139.165~14.04.1", + "4.4.0-140.166~14.04.1", + "4.4.0-141.167~14.04.1", + "4.4.0-142.168~14.04.1", + "4.4.0-143.169~14.04.2", + "4.4.0-144.170~14.04.1", + "4.4.0-146.172~14.04.1", + "4.4.0-148.174~14.04.1", + "4.4.0-150.176~14.04.1", + "4.4.0-151.178~14.04.1", + "4.4.0-154.181~14.04.1", + "4.4.0-157.185~14.04.1", + "4.4.0-159.187~14.04.1", + "4.4.0-161.189~14.04.1", + "4.4.0-164.192~14.04.1", + "4.4.0-165.193~14.04.1", + "4.4.0-166.195~14.04.1", + "4.4.0-168.197~14.04.1", + "4.4.0-169.198~14.04.1", + "4.4.0-170.199~14.04.1", + "4.4.0-171.200~14.04.1", + "4.4.0-173.203~14.04.1", + "4.4.0-174.204~14.04.1", + "4.4.0-176.206~14.04.1", + "4.4.0-177.207~14.04.1", + "4.4.0-178.208~14.04.1", + "4.4.0-179.209~14.04.1", + "4.4.0-184.214~14.04.1", + "4.4.0-185.215~14.04.1", + "4.4.0-186.216~14.04.1", + "4.4.0-187.217~14.04.1", + "4.4.0-189.219~14.04.1", + "4.4.0-190.220~14.04.1", + "4.4.0-193.224~14.04.1", + "4.4.0-194.226~14.04.1", + "4.4.0-197.229~14.04.1", + "4.4.0-198.230~14.04.1", + "4.4.0-200.232~14.04.1", + "4.4.0-201.233~14.04.1", + "4.4.0-203.235~14.04.1", + "4.4.0-204.236~14.04.1", + "4.4.0-206.238~14.04.1", + "4.4.0-208.240~14.04.1", + "4.4.0-209.241~14.04.1", + "4.4.0-210.242~14.04.1", + "4.4.0-211.243~14.04.1", + "4.4.0-212.244~14.04.1", + "4.4.0-213.245~14.04.1", + "4.4.0-214.246~14.04.1", + "4.4.0-215.247~14.04.1", + "4.4.0-218.251~14.04.1", + "4.4.0-219.252~14.04.1", + "4.4.0-221.254~14.04.1", + "4.4.0-222.255~14.04.1", + "4.4.0-223.256~14.04.1", + "4.4.0-224.257~14.04.1", + "4.4.0-227.261~14.04.1", + "4.4.0-229.263~14.04.1", + "4.4.0-230.264~14.04.1", + "4.4.0-231.265~14.04.1", + "4.4.0-233.267~14.04.1", + "4.4.0-234.268~14.04.1", + "4.4.0-235.269~14.04.1", + "4.4.0-236.270~14.04.1", + "4.4.0-237.271~14.04.1", + "4.4.0-239.273~14.04.1", + "4.4.0-240.274~14.04.1", + "4.4.0-241.275~14.04.1", + "4.4.0-242.276~14.04.1", + "4.4.0-243.277~14.04.1", + "4.4.0-244.278~14.04.1", + "4.4.0-245.279~14.04.1", + "4.4.0-246.280~14.04.1", + "4.4.0-248.282~14.04.1", + "4.4.0-250.284~14.04.1", + "4.4.0-251.285~14.04.1", + "4.4.0-252.286~14.04.1", + "4.4.0-253.287~14.04.1", + "4.4.0-254.288~14.04.1", + "4.4.0-256.290~14.04.1", + "4.4.0-257.291~14.04.1", + "4.4.0-258.292~14.04.2", + "4.4.0-259.293~14.04.1", + "4.4.0-260.294~14.04.1", + "4.4.0-261.295~14.04.1", + "4.4.0-262.296~14.04.1", + "4.4.0-263.297~14.04.1", + "4.4.0-264.298~14.04.1", + "4.4.0-266.300~14.04.1", + "4.4.0-267.301~14.04.1", + "4.4.0-268.302~14.04.1", + "4.4.0-269.303~14.04.1", + "4.4.0-270.304~14.04.1", + "4.4.0-271.305~14.04.1", + "4.4.0-272.306~14.04.1", + "4.4.0-273.307~14.04.1", + "4.4.0-274.308~14.04.1", + "4.4.0-276.310~14.04.1", + "4.4.0-277.311~14.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "crypto-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "fat-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "fb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "firewire-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "floppy-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "fs-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "input-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "ipmi-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "irda-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "kernel-image-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-buildinfo-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-277", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-headers-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-image-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-cloud-tools-4.4.0-277", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-tools-4.4.0-277", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-lts-xenial-udebs-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-modules-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-modules-extra-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-277-generic", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "linux-tools-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "md-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "message-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "mouse-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "multipath-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "nfs-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "nic-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "nic-shared-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "nic-usb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "parport-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "pata-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "pcmcia-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "plip-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "ppp-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "sata-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "scsi-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "serial-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "speakup-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "storage-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "usb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "virtio-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + }, + { + "binary_name": "vlan-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311~14.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@4.4.0-277.311?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.2.0-16.19", + "4.2.0-17.21", + "4.2.0-19.23", + "4.3.0-1.10", + "4.3.0-2.11", + "4.3.0-5.16", + "4.3.0-6.17", + "4.3.0-7.18", + "4.4.0-2.16", + "4.4.0-4.19", + "4.4.0-6.21", + "4.4.0-7.22", + "4.4.0-8.23", + "4.4.0-9.24", + "4.4.0-10.25", + "4.4.0-11.26", + "4.4.0-12.28", + "4.4.0-13.29", + "4.4.0-14.30", + "4.4.0-15.31", + "4.4.0-16.32", + "4.4.0-17.33", + "4.4.0-18.34", + "4.4.0-21.37", + "4.4.0-22.39", + "4.4.0-22.40", + "4.4.0-24.43", + "4.4.0-28.47", + "4.4.0-31.50", + "4.4.0-34.53", + "4.4.0-36.55", + "4.4.0-38.57", + "4.4.0-42.62", + "4.4.0-43.63", + "4.4.0-45.66", + "4.4.0-47.68", + "4.4.0-51.72", + "4.4.0-53.74", + "4.4.0-57.78", + "4.4.0-59.80", + "4.4.0-62.83", + "4.4.0-63.84", + "4.4.0-64.85", + "4.4.0-65.86", + "4.4.0-66.87", + "4.4.0-67.88", + "4.4.0-70.91", + "4.4.0-71.92", + "4.4.0-72.93", + "4.4.0-75.96", + "4.4.0-77.98", + "4.4.0-78.99", + "4.4.0-79.100", + "4.4.0-81.104", + "4.4.0-83.106", + "4.4.0-87.110", + "4.4.0-89.112", + "4.4.0-91.114", + "4.4.0-92.115", + "4.4.0-93.116", + "4.4.0-96.119", + "4.4.0-97.120", + "4.4.0-98.121", + "4.4.0-101.124", + "4.4.0-103.126", + "4.4.0-104.127", + "4.4.0-108.131", + "4.4.0-109.132", + "4.4.0-112.135", + "4.4.0-116.140", + "4.4.0-119.143", + "4.4.0-121.145", + "4.4.0-122.146", + "4.4.0-124.148", + "4.4.0-127.153", + "4.4.0-128.154", + "4.4.0-130.156", + "4.4.0-131.157", + "4.4.0-133.159", + "4.4.0-134.160", + "4.4.0-135.161", + "4.4.0-137.163", + "4.4.0-138.164", + "4.4.0-139.165", + "4.4.0-140.166", + "4.4.0-141.167", + "4.4.0-142.168", + "4.4.0-143.169", + "4.4.0-145.171", + "4.4.0-146.172", + "4.4.0-148.174", + "4.4.0-150.176", + "4.4.0-151.178", + "4.4.0-154.181", + "4.4.0-157.185", + "4.4.0-159.187", + "4.4.0-161.189", + "4.4.0-164.192", + "4.4.0-165.193", + "4.4.0-166.195", + "4.4.0-168.197", + "4.4.0-169.198", + "4.4.0-170.199", + "4.4.0-171.200", + "4.4.0-173.203", + "4.4.0-174.204", + "4.4.0-176.206", + "4.4.0-177.207", + "4.4.0-178.208", + "4.4.0-179.209", + "4.4.0-184.214", + "4.4.0-185.215", + "4.4.0-186.216", + "4.4.0-187.217", + "4.4.0-189.219", + "4.4.0-190.220", + "4.4.0-193.224", + "4.4.0-194.226", + "4.4.0-197.229", + "4.4.0-198.230", + "4.4.0-200.232", + "4.4.0-201.233", + "4.4.0-203.235", + "4.4.0-204.236", + "4.4.0-206.238", + "4.4.0-208.240", + "4.4.0-209.241", + "4.4.0-210.242", + "4.4.0-211.243", + "4.4.0-212.244", + "4.4.0-213.245", + "4.4.0-214.246", + "4.4.0-216.249", + "4.4.0-217.250", + "4.4.0-218.251", + "4.4.0-219.252", + "4.4.0-221.254", + "4.4.0-222.255", + "4.4.0-223.256", + "4.4.0-224.257", + "4.4.0-227.261", + "4.4.0-229.263", + "4.4.0-230.264", + "4.4.0-231.265", + "4.4.0-233.267", + "4.4.0-234.268", + "4.4.0-235.269", + "4.4.0-236.270", + "4.4.0-237.271", + "4.4.0-239.273", + "4.4.0-240.274", + "4.4.0-241.275", + "4.4.0-242.276", + "4.4.0-243.277", + "4.4.0-244.278", + "4.4.0-245.279", + "4.4.0-246.280", + "4.4.0-248.282", + "4.4.0-250.284", + "4.4.0-251.285", + "4.4.0-252.286", + "4.4.0-253.287", + "4.4.0-254.288", + "4.4.0-256.290", + "4.4.0-257.291", + "4.4.0-258.292", + "4.4.0-259.293", + "4.4.0-260.294", + "4.4.0-261.295", + "4.4.0-262.296", + "4.4.0-263.297", + "4.4.0-264.298", + "4.4.0-266.300", + "4.4.0-267.301", + "4.4.0-268.302", + "4.4.0-269.303", + "4.4.0-270.304", + "4.4.0-271.305", + "4.4.0-272.306", + "4.4.0-273.307", + "4.4.0-274.308", + "4.4.0-276.310", + "4.4.0-277.311" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "crypto-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "dasd-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "fat-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "fb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "firewire-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "floppy-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "fs-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "input-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "ipmi-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "irda-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "kernel-image-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-buildinfo-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-buildinfo-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-277", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-headers-4.4.0-277", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-headers-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-headers-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-image-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-modules-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-modules-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-modules-extra-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-source-4.4.0", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-tools-4.4.0-277", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-tools-4.4.0-277-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-tools-4.4.0-277-lowlatency", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "md-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "message-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "mouse-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "multipath-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "nfs-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "nic-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "nic-shared-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "nic-usb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "parport-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "pata-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "pcmcia-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "plip-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "ppp-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "sata-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "scsi-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "serial-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "speakup-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "storage-core-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "usb-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "virtio-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + }, + { + "binary_name": "vlan-modules-4.4.0-277-generic-di", + "binary_version": "4.4.0-277.311" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1189.204?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1001.10", + "4.4.0-1003.12", + "4.4.0-1004.13", + "4.4.0-1007.16", + "4.4.0-1009.18", + "4.4.0-1011.20", + "4.4.0-1012.21", + "4.4.0-1013.22", + "4.4.0-1016.25", + "4.4.0-1017.26", + "4.4.0-1018.27", + "4.4.0-1020.29", + "4.4.0-1022.31", + "4.4.0-1026.35", + "4.4.0-1028.37", + "4.4.0-1030.39", + "4.4.0-1031.40", + "4.4.0-1032.41", + "4.4.0-1035.44", + "4.4.0-1037.46", + "4.4.0-1038.47", + "4.4.0-1039.48", + "4.4.0-1041.50", + "4.4.0-1043.52", + "4.4.0-1044.53", + "4.4.0-1047.56", + "4.4.0-1048.57", + "4.4.0-1049.58", + "4.4.0-1050.59", + "4.4.0-1052.61", + "4.4.0-1054.63", + "4.4.0-1055.64", + "4.4.0-1057.66", + "4.4.0-1060.69", + "4.4.0-1061.70", + "4.4.0-1062.71", + "4.4.0-1063.72", + "4.4.0-1065.75", + "4.4.0-1066.76", + "4.4.0-1067.77", + "4.4.0-1069.79", + "4.4.0-1070.80", + "4.4.0-1072.82", + "4.4.0-1073.83", + "4.4.0-1074.84", + "4.4.0-1075.85", + "4.4.0-1077.87", + "4.4.0-1079.89", + "4.4.0-1081.91", + "4.4.0-1083.93", + "4.4.0-1084.94", + "4.4.0-1085.96", + "4.4.0-1087.98", + "4.4.0-1088.99", + "4.4.0-1090.101", + "4.4.0-1092.103", + "4.4.0-1094.105", + "4.4.0-1095.106", + "4.4.0-1096.107", + "4.4.0-1098.109", + "4.4.0-1099.110", + "4.4.0-1100.111", + "4.4.0-1101.112", + "4.4.0-1102.113", + "4.4.0-1104.115", + "4.4.0-1105.116", + "4.4.0-1106.117", + "4.4.0-1107.118", + "4.4.0-1109.120", + "4.4.0-1110.121", + "4.4.0-1111.123", + "4.4.0-1112.124", + "4.4.0-1113.126", + "4.4.0-1114.127", + "4.4.0-1117.131", + "4.4.0-1118.132", + "4.4.0-1119.133", + "4.4.0-1121.135", + "4.4.0-1122.136", + "4.4.0-1123.137", + "4.4.0-1124.138", + "4.4.0-1126.140", + "4.4.0-1127.141", + "4.4.0-1128.142", + "4.4.0-1129.143", + "4.4.0-1130.144", + "4.4.0-1131.145", + "4.4.0-1132.146", + "4.4.0-1133.147", + "4.4.0-1134.148", + "4.4.0-1135.149", + "4.4.0-1137.151", + "4.4.0-1138.152", + "4.4.0-1139.153", + "4.4.0-1140.154", + "4.4.0-1143.158", + "4.4.0-1145.160", + "4.4.0-1146.161", + "4.4.0-1147.162", + "4.4.0-1148.163", + "4.4.0-1150.165", + "4.4.0-1151.166", + "4.4.0-1152.167", + "4.4.0-1153.168", + "4.4.0-1154.169", + "4.4.0-1155.170", + "4.4.0-1156.171", + "4.4.0-1157.172", + "4.4.0-1158.173", + "4.4.0-1159.174", + "4.4.0-1160.175", + "4.4.0-1161.176", + "4.4.0-1162.177", + "4.4.0-1163.178", + "4.4.0-1164.179", + "4.4.0-1165.180", + "4.4.0-1166.181", + "4.4.0-1167.182", + "4.4.0-1168.183", + "4.4.0-1169.184", + "4.4.0-1171.186", + "4.4.0-1172.187", + "4.4.0-1173.188", + "4.4.0-1174.189", + "4.4.0-1175.190", + "4.4.0-1176.191", + "4.4.0-1177.192", + "4.4.0-1178.193", + "4.4.0-1179.194", + "4.4.0-1180.195", + "4.4.0-1181.196", + "4.4.0-1182.197", + "4.4.0-1183.198", + "4.4.0-1184.199", + "4.4.0-1185.200", + "4.4.0-1186.201", + "4.4.0-1187.202", + "4.4.0-1188.203", + "4.4.0-1189.204" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.4.0-1189", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-aws-headers-4.4.0-1189", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-aws-tools-4.4.0-1189", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-headers-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-image-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-modules-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-modules-extra-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + }, + { + "binary_name": "linux-tools-4.4.0-1189-aws", + "binary_version": "4.4.0-1189.204" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-aws-hwe", + "purl": "pkg:deb/ubuntu/linux-aws-hwe@4.15.0-1188.201~16.04.1?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1030.31~16.04.1", + "4.15.0-1031.33~16.04.1", + "4.15.0-1032.34~16.04.1", + "4.15.0-1033.35~16.04.1", + "4.15.0-1035.37~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1039.41~16.04.1", + "4.15.0-1040.42~16.04.1", + "4.15.0-1041.43~16.04.1", + "4.15.0-1043.45~16.04.1", + "4.15.0-1044.46~16.04.1", + "4.15.0-1045.47~16.04.1", + "4.15.0-1047.49~16.04.1", + "4.15.0-1048.50~16.04.1", + "4.15.0-1050.52~16.04.1", + "4.15.0-1051.53~16.04.1", + "4.15.0-1052.54~16.04.1", + "4.15.0-1054.56~16.04.1", + "4.15.0-1056.58~16.04.1", + "4.15.0-1057.59~16.04.1", + "4.15.0-1058.60~16.04.1", + "4.15.0-1060.62~16.04.1", + "4.15.0-1063.67~16.04.1", + "4.15.0-1065.69~16.04.1", + "4.15.0-1066.70~16.04.1", + "4.15.0-1067.71~16.04.1", + "4.15.0-1073.77~16.04.1", + "4.15.0-1074.78~16.04.1", + "4.15.0-1079.83~16.04.1", + "4.15.0-1080.84~16.04.1", + "4.15.0-1082.86~16.04.1", + "4.15.0-1083.87~16.04.1", + "4.15.0-1085.90~16.04.1", + "4.15.0-1088.93~16.04.1", + "4.15.0-1090.95~16.04.1", + "4.15.0-1091.96~16.04.1", + "4.15.0-1093.99~16.04.1", + "4.15.0-1094.101~16.04.1", + "4.15.0-1095.102~16.04.1", + "4.15.0-1096.103~16.04.1", + "4.15.0-1097.104~16.04.1", + "4.15.0-1098.105~16.04.1", + "4.15.0-1099.106~16.04.1", + "4.15.0-1102.109~16.04.1", + "4.15.0-1103.110~16.04.1", + "4.15.0-1106.113~16.04.1", + "4.15.0-1109.116~16.04.1", + "4.15.0-1110.117~16.04.1", + "4.15.0-1111.118~16.04.1", + "4.15.0-1112.119~16.04.1", + "4.15.0-1113.120~16.04.1", + "4.15.0-1115.122~16.04.1", + "4.15.0-1116.123~16.04.1", + "4.15.0-1118.125~16.04.1", + "4.15.0-1119.126~16.04.2", + "4.15.0-1120.128~16.04.1", + "4.15.0-1123.132~16.04.1", + "4.15.0-1124.133~16.04.1", + "4.15.0-1126.135~16.04.2", + "4.15.0-1127.136~16.04.1", + "4.15.0-1128.137~16.04.1", + "4.15.0-1130.139~16.04.1", + "4.15.0-1133.143~16.04.1", + "4.15.0-1136.147~16.04.1", + "4.15.0-1137.148~16.04.1", + "4.15.0-1139.150~16.04.1", + "4.15.0-1140.151~16.04.1", + "4.15.0-1141.152~16.04.1", + "4.15.0-1142.154~16.04.1", + "4.15.0-1143.155~16.04.1", + "4.15.0-1146.158~16.04.2", + "4.15.0-1147.159~16.04.1", + "4.15.0-1148.160~16.04.1", + "4.15.0-1151.164~16.04.1", + "4.15.0-1153.166~16.04.1", + "4.15.0-1154.167~16.04.1", + "4.15.0-1155.168~16.04.1", + "4.15.0-1156.169~16.04.1", + "4.15.0-1157.170~16.04.1", + "4.15.0-1158.171~16.04.1", + "4.15.0-1159.172~16.04.1", + "4.15.0-1160.173~16.04.1", + "4.15.0-1161.174~16.04.1", + "4.15.0-1162.175~16.04.1", + "4.15.0-1163.176~16.04.1", + "4.15.0-1164.177~16.04.1", + "4.15.0-1165.178~16.04.1", + "4.15.0-1166.179~16.04.1", + "4.15.0-1167.180~16.04.1", + "4.15.0-1168.181~16.04.1", + "4.15.0-1169.182~16.04.1", + "4.15.0-1170.183~16.04.1", + "4.15.0-1172.185~16.04.1", + "4.15.0-1173.186~16.04.1", + "4.15.0-1174.187~16.04.1", + "4.15.0-1175.188~16.04.1", + "4.15.0-1176.189~16.04.1", + "4.15.0-1177.190~16.04.1", + "4.15.0-1178.191~16.04.1", + "4.15.0-1179.192~16.04.1", + "4.15.0-1180.193~16.04.1", + "4.15.0-1181.194~16.04.1", + "4.15.0-1182.195~16.04.1", + "4.15.0-1183.196~16.04.1", + "4.15.0-1184.197~16.04.1", + "4.15.0-1185.198~16.04.1", + "4.15.0-1186.199~16.04.1", + "4.15.0-1187.200~16.04.1", + "4.15.0-1188.201~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-headers-4.15.0-1188", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-aws-hwe-cloud-tools-4.15.0-1188", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-aws-hwe-tools-4.15.0-1188", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1195.210~16.04.1?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.11.0-1009.9", + "4.11.0-1011.11", + "4.11.0-1013.13", + "4.11.0-1014.14", + "4.11.0-1015.15", + "4.11.0-1016.16", + "4.13.0-1005.7", + "4.13.0-1006.8", + "4.13.0-1007.9", + "4.13.0-1009.12", + "4.13.0-1011.14", + "4.13.0-1012.15", + "4.13.0-1014.17", + "4.13.0-1016.19", + "4.13.0-1018.21", + "4.15.0-1013.13~16.04.2", + "4.15.0-1014.14~16.04.1", + "4.15.0-1018.18~16.04.1", + "4.15.0-1019.19~16.04.1", + "4.15.0-1021.21~16.04.1", + "4.15.0-1022.22~16.04.1", + "4.15.0-1023.24~16.04.1", + "4.15.0-1025.26~16.04.1", + "4.15.0-1028.29~16.04.1", + "4.15.0-1030.31~16.04.1", + "4.15.0-1031.32~16.04.1", + "4.15.0-1032.33~16.04.1", + "4.15.0-1035.36~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1037.39~16.04.1", + "4.15.0-1039.43", + "4.15.0-1040.44", + "4.15.0-1041.45", + "4.15.0-1042.46", + "4.15.0-1045.49", + "4.15.0-1046.50", + "4.15.0-1047.51", + "4.15.0-1049.54", + "4.15.0-1050.55", + "4.15.0-1051.56", + "4.15.0-1052.57", + "4.15.0-1055.60", + "4.15.0-1056.61", + "4.15.0-1057.62", + "4.15.0-1059.64", + "4.15.0-1060.65", + "4.15.0-1061.66", + "4.15.0-1063.68", + "4.15.0-1064.69", + "4.15.0-1066.71", + "4.15.0-1067.72", + "4.15.0-1069.74", + "4.15.0-1071.76", + "4.15.0-1075.80", + "4.15.0-1077.82", + "4.15.0-1082.92~16.04.1", + "4.15.0-1083.93~16.04.1", + "4.15.0-1089.99~16.04.1", + "4.15.0-1091.101~16.04.1", + "4.15.0-1092.102~16.04.1", + "4.15.0-1093.103~16.04.1", + "4.15.0-1095.105~16.04.1", + "4.15.0-1096.106~16.04.1", + "4.15.0-1098.109~16.04.1", + "4.15.0-1100.111~16.04.1", + "4.15.0-1102.113~16.04.1", + "4.15.0-1103.114~16.04.1", + "4.15.0-1106.118~16.04.1", + "4.15.0-1108.120~16.04.1", + "4.15.0-1109.121~16.04.1", + "4.15.0-1110.122~16.04.1", + "4.15.0-1111.123~16.04.1", + "4.15.0-1112.124~16.04.1", + "4.15.0-1113.126~16.04.1", + "4.15.0-1114.127~16.04.1", + "4.15.0-1115.128~16.04.1", + "4.15.0-1118.131~16.04.1", + "4.15.0-1121.134~16.04.1", + "4.15.0-1122.135~16.04.1", + "4.15.0-1123.136~16.04.1", + "4.15.0-1124.137~16.04.1", + "4.15.0-1125.138~16.04.1", + "4.15.0-1126.139~16.04.1", + "4.15.0-1127.140~16.04.1", + "4.15.0-1129.142~16.04.1", + "4.15.0-1130.143~16.04.1", + "4.15.0-1131.144~16.04.1", + "4.15.0-1133.146~16.04.1", + "4.15.0-1134.147~16.04.1", + "4.15.0-1136.149~16.04.1", + "4.15.0-1137.150~16.04.1", + "4.15.0-1138.151~16.04.1", + "4.15.0-1139.152~16.04.1", + "4.15.0-1142.156~16.04.1", + "4.15.0-1145.160~16.04.1", + "4.15.0-1146.161~16.04.1", + "4.15.0-1149.164~16.04.1", + "4.15.0-1150.165~16.04.1", + "4.15.0-1151.166~16.04.1", + "4.15.0-1153.168~16.04.1", + "4.15.0-1159.174~16.04.1", + "4.15.0-1162.177~16.04.1", + "4.15.0-1163.178~16.04.1", + "4.15.0-1164.179~16.04.1", + "4.15.0-1165.180~16.04.1", + "4.15.0-1166.181~16.04.1", + "4.15.0-1167.182~16.04.1", + "4.15.0-1168.183~16.04.1", + "4.15.0-1169.184~16.04.1", + "4.15.0-1170.185~16.04.1", + "4.15.0-1171.186~16.04.1", + "4.15.0-1172.187~16.04.1", + "4.15.0-1173.188~16.04.1", + "4.15.0-1174.189~16.04.1", + "4.15.0-1175.190~16.04.1", + "4.15.0-1176.191~16.04.1", + "4.15.0-1177.192~16.04.1", + "4.15.0-1178.193~16.04.1", + "4.15.0-1179.194~16.04.1", + "4.15.0-1180.195~16.04.1", + "4.15.0-1181.196~16.04.1", + "4.15.0-1182.197~16.04.1", + "4.15.0-1183.198~16.04.1", + "4.15.0-1184.199~16.04.1", + "4.15.0-1185.200~16.04.1", + "4.15.0-1186.201~16.04.1", + "4.15.0-1187.202~16.04.1", + "4.15.0-1188.203~16.04.1", + "4.15.0-1189.204~16.04.1", + "4.15.0-1190.205~16.04.1", + "4.15.0-1191.206~16.04.1", + "4.15.0-1192.207~16.04.1", + "4.15.0-1193.208~16.04.1", + "4.15.0-1194.209~16.04.1", + "4.15.0-1195.210~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-azure-headers-4.15.0-1195", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-azure-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@4.15.0-1180.197~16.04.1?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.10.0-1004.4", + "4.10.0-1006.6", + "4.10.0-1007.7", + "4.10.0-1008.8", + "4.10.0-1009.9", + "4.13.0-1002.5", + "4.13.0-1006.9", + "4.13.0-1007.10", + "4.13.0-1008.11", + "4.13.0-1011.15", + "4.13.0-1012.16", + "4.13.0-1013.17", + "4.13.0-1015.19", + "4.13.0-1017.21", + "4.13.0-1019.23", + "4.15.0-1014.14~16.04.1", + "4.15.0-1015.15~16.04.1", + "4.15.0-1017.18~16.04.1", + "4.15.0-1018.19~16.04.2", + "4.15.0-1019.20~16.04.1", + "4.15.0-1021.22~16.04.1", + "4.15.0-1023.24~16.04.1", + "4.15.0-1024.25~16.04.2", + "4.15.0-1025.26~16.04.1", + "4.15.0-1026.27~16.04.1", + "4.15.0-1027.28~16.04.1", + "4.15.0-1028.29~16.04.1", + "4.15.0-1029.31~16.04.1", + "4.15.0-1030.32~16.04.1", + "4.15.0-1032.34~16.04.1", + "4.15.0-1033.35~16.04.1", + "4.15.0-1034.36~16.04.1", + "4.15.0-1036.38~16.04.1", + "4.15.0-1037.39~16.04.1", + "4.15.0-1040.42~16.04.1", + "4.15.0-1041.43", + "4.15.0-1042.44", + "4.15.0-1044.46", + "4.15.0-1046.49", + "4.15.0-1047.50", + "4.15.0-1049.52", + "4.15.0-1050.53", + "4.15.0-1052.56", + "4.15.0-1055.59", + "4.15.0-1058.62", + "4.15.0-1060.64", + "4.15.0-1061.65", + "4.15.0-1071.81~16.04.1", + "4.15.0-1077.87~16.04.1", + "4.15.0-1078.88~16.04.1", + "4.15.0-1080.90~16.04.1", + "4.15.0-1081.92~16.04.1", + "4.15.0-1083.94~16.04.1", + "4.15.0-1084.95~16.04.1", + "4.15.0-1086.98~16.04.1", + "4.15.0-1087.100~16.04.1", + "4.15.0-1088.101~16.04.1", + "4.15.0-1090.103~16.04.1", + "4.15.0-1091.104~16.04.1", + "4.15.0-1092.105~16.04.1", + "4.15.0-1093.106~16.04.1", + "4.15.0-1094.107~16.04.1", + "4.15.0-1095.108~16.04.1", + "4.15.0-1096.109~16.04.1", + "4.15.0-1097.110~16.04.1", + "4.15.0-1098.111~16.04.1", + "4.15.0-1099.112~16.04.1", + "4.15.0-1100.113~16.04.1", + "4.15.0-1103.116~16.04.1", + "4.15.0-1106.120~16.04.1", + "4.15.0-1107.121~16.04.1", + "4.15.0-1108.122~16.04.1", + "4.15.0-1109.123~16.04.1", + "4.15.0-1110.124~16.04.1", + "4.15.0-1111.125~16.04.1", + "4.15.0-1112.126~16.04.1", + "4.15.0-1114.128~16.04.1", + "4.15.0-1115.129~16.04.1", + "4.15.0-1116.130~16.04.1", + "4.15.0-1118.132~16.04.1", + "4.15.0-1119.133~16.04.1", + "4.15.0-1120.134~16.04.1", + "4.15.0-1121.135~16.04.1", + "4.15.0-1122.136~16.04.1", + "4.15.0-1124.138~16.04.1", + "4.15.0-1127.142~16.04.1", + "4.15.0-1130.146~16.04.1", + "4.15.0-1131.147~16.04.1", + "4.15.0-1134.150~16.04.2", + "4.15.0-1135.151~16.04.2", + "4.15.0-1136.152~16.04.1", + "4.15.0-1137.153~16.04.1", + "4.15.0-1138.154~16.04.1", + "4.15.0-1141.157~16.04.2", + "4.15.0-1142.158~16.04.1", + "4.15.0-1143.159~16.04.1", + "4.15.0-1146.162~16.04.1", + "4.15.0-1147.163~16.04.1", + "4.15.0-1148.164~16.04.1", + "4.15.0-1149.165~16.04.1", + "4.15.0-1150.166~16.04.1", + "4.15.0-1151.167~16.04.1", + "4.15.0-1152.168~16.04.1", + "4.15.0-1153.170~16.04.1", + "4.15.0-1154.171~16.04.1", + "4.15.0-1155.172~16.04.1", + "4.15.0-1156.173~16.04.1", + "4.15.0-1157.174~16.04.1", + "4.15.0-1158.175~16.04.1", + "4.15.0-1159.176~16.04.1", + "4.15.0-1160.177~16.04.1", + "4.15.0-1161.178~16.04.1", + "4.15.0-1162.179~16.04.1", + "4.15.0-1163.180~16.04.1", + "4.15.0-1164.181~16.04.1", + "4.15.0-1165.182~16.04.1", + "4.15.0-1166.183~16.04.1", + "4.15.0-1167.184~16.04.2", + "4.15.0-1168.185~16.04.1", + "4.15.0-1169.186~16.04.1", + "4.15.0-1170.187~16.04.1", + "4.15.0-1171.188~16.04.1", + "4.15.0-1172.189~16.04.1", + "4.15.0-1173.190~16.04.1", + "4.15.0-1174.191~16.04.1", + "4.15.0-1175.192~16.04.1", + "4.15.0-1176.193~16.04.1", + "4.15.0-1177.194~16.04.1", + "4.15.0-1178.195~16.04.1", + "4.15.0-1179.196~16.04.1", + "4.15.0-1180.197~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-gcp-headers-4.15.0-1180", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-gcp-tools-4.15.0-1180", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-hwe", + "purl": "pkg:deb/ubuntu/linux-hwe@4.15.0-246.258~16.04.1?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.8.0-36.36~16.04.1", + "4.8.0-39.42~16.04.1", + "4.8.0-41.44~16.04.1", + "4.8.0-42.45~16.04.1", + "4.8.0-44.47~16.04.1", + "4.8.0-45.48~16.04.1", + "4.8.0-46.49~16.04.1", + "4.8.0-49.52~16.04.1", + "4.8.0-51.54~16.04.1", + "4.8.0-52.55~16.04.1", + "4.8.0-53.56~16.04.1", + "4.8.0-54.57~16.04.1", + "4.8.0-56.61~16.04.1", + "4.8.0-58.63~16.04.1", + "4.10.0-27.30~16.04.2", + "4.10.0-28.32~16.04.2", + "4.10.0-30.34~16.04.1", + "4.10.0-32.36~16.04.1", + "4.10.0-33.37~16.04.1", + "4.10.0-35.39~16.04.1", + "4.10.0-37.41~16.04.1", + "4.10.0-38.42~16.04.1", + "4.10.0-40.44~16.04.1", + "4.10.0-42.46~16.04.1", + "4.13.0-26.29~16.04.2", + "4.13.0-31.34~16.04.1", + "4.13.0-32.35~16.04.1", + "4.13.0-36.40~16.04.1", + "4.13.0-37.42~16.04.1", + "4.13.0-38.43~16.04.1", + "4.13.0-39.44~16.04.1", + "4.13.0-41.46~16.04.1", + "4.13.0-43.48~16.04.1", + "4.13.0-45.50~16.04.1", + "4.15.0-24.26~16.04.1", + "4.15.0-29.31~16.04.1", + "4.15.0-30.32~16.04.1", + "4.15.0-32.35~16.04.1", + "4.15.0-33.36~16.04.1", + "4.15.0-34.37~16.04.1", + "4.15.0-36.39~16.04.1", + "4.15.0-38.41~16.04.1", + "4.15.0-39.42~16.04.1", + "4.15.0-42.45~16.04.1", + "4.15.0-43.46~16.04.1", + "4.15.0-45.48~16.04.1", + "4.15.0-46.49~16.04.1", + "4.15.0-47.50~16.04.1", + "4.15.0-48.51~16.04.1", + "4.15.0-50.54~16.04.1", + "4.15.0-51.55~16.04.1", + "4.15.0-52.56~16.04.1", + "4.15.0-54.58~16.04.1", + "4.15.0-55.60~16.04.2", + "4.15.0-58.64~16.04.1", + "4.15.0-60.67~16.04.1", + "4.15.0-62.69~16.04.1", + "4.15.0-64.73~16.04.1", + "4.15.0-65.74~16.04.1", + "4.15.0-66.75~16.04.1", + "4.15.0-69.78~16.04.1", + "4.15.0-70.79~16.04.1", + "4.15.0-72.81~16.04.1", + "4.15.0-74.83~16.04.1", + "4.15.0-76.86~16.04.1", + "4.15.0-88.88~16.04.1", + "4.15.0-91.92~16.04.1", + "4.15.0-96.97~16.04.1", + "4.15.0-99.100~16.04.1", + "4.15.0-101.102~16.04.1", + "4.15.0-106.107~16.04.1", + "4.15.0-107.108~16.04.1", + "4.15.0-112.113~16.04.1", + "4.15.0-115.116~16.04.1", + "4.15.0-117.118~16.04.1", + "4.15.0-118.119~16.04.1", + "4.15.0-120.122~16.04.1", + "4.15.0-122.124~16.04.1", + "4.15.0-123.126~16.04.1", + "4.15.0-126.129~16.04.1", + "4.15.0-128.131~16.04.1", + "4.15.0-129.132~16.04.1", + "4.15.0-132.136~16.04.1", + "4.15.0-133.137~16.04.1", + "4.15.0-136.140~16.04.1", + "4.15.0-137.141~16.04.1", + "4.15.0-139.143~16.04.1", + "4.15.0-140.144~16.04.1", + "4.15.0-142.146~16.04.1", + "4.15.0-143.147~16.04.3", + "4.15.0-144.148~16.04.1", + "4.15.0-147.151~16.04.1", + "4.15.0-151.157~16.04.1", + "4.15.0-153.160~16.04.1", + "4.15.0-154.161~16.04.1", + "4.15.0-156.163~16.04.1", + "4.15.0-158.166~16.04.1", + "4.15.0-159.167~16.04.1", + "4.15.0-161.169~16.04.1", + "4.15.0-162.170~16.04.1", + "4.15.0-163.171~16.04.1", + "4.15.0-166.174~16.04.1", + "4.15.0-167.175~16.04.1", + "4.15.0-169.177~16.04.1", + "4.15.0-171.180~16.04.1", + "4.15.0-173.182~16.04.1", + "4.15.0-175.184~16.04.1", + "4.15.0-176.185~16.04.1", + "4.15.0-177.186~16.04.1", + "4.15.0-180.189~16.04.1", + "4.15.0-184.194~16.04.1", + "4.15.0-187.198~16.04.1", + "4.15.0-188.199~16.04.1", + "4.15.0-189.200~16.04.1", + "4.15.0-191.202~16.04.1", + "4.15.0-192.203~16.04.1", + "4.15.0-193.204~16.04.1", + "4.15.0-194.205~16.04.1", + "4.15.0-196.207~16.04.1", + "4.15.0-197.208~16.04.1", + "4.15.0-200.211~16.04.2", + "4.15.0-201.212~16.04.1", + "4.15.0-202.213~16.04.1", + "4.15.0-206.217~16.04.1", + "4.15.0-208.219~16.04.1", + "4.15.0-209.220~16.04.1", + "4.15.0-210.221~16.04.1", + "4.15.0-211.222~16.04.1", + "4.15.0-212.223~16.04.1", + "4.15.0-213.224~16.04.1", + "4.15.0-214.225~16.04.1", + "4.15.0-216.227~16.04.1", + "4.15.0-218.229~16.04.1", + "4.15.0-219.230~16.04.1", + "4.15.0-220.231~16.04.1", + "4.15.0-221.232~16.04.1", + "4.15.0-222.233~16.04.1", + "4.15.0-223.235~16.04.1", + "4.15.0-224.236~16.04.1", + "4.15.0-225.237~16.04.1", + "4.15.0-226.238~16.04.1", + "4.15.0-227.239~16.04.1", + "4.15.0-228.240~16.04.1", + "4.15.0-229.241~16.04.1", + "4.15.0-230.242~16.04.1", + "4.15.0-231.243~16.04.1", + "4.15.0-232.244~16.04.1", + "4.15.0-233.245~16.04.1", + "4.15.0-234.246~16.04.1", + "4.15.0-235.247~16.04.1", + "4.15.0-236.248~16.04.1", + "4.15.0-237.249~16.04.1", + "4.15.0-238.250~16.04.1", + "4.15.0-239.251~16.04.1", + "4.15.0-240.252~16.04.1", + "4.15.0-241.253~16.04.1", + "4.15.0-242.254~16.04.1", + "4.15.0-243.255~16.04.1", + "4.15.0-245.257~16.04.1", + "4.15.0-246.258~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "dasd-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "fb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "firewire-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "floppy-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-buildinfo-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-246", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-hwe-cloud-tools-4.15.0-246", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-hwe-tools-4.15.0-246", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-hwe-udebs-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-246-generic", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "message-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "pata-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "pcmcia-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "serial-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "virtio-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:16.04:LTS", + "name": "linux-hwe-edge", + "purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source&distro=xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.8.0-28.30~16.04.1", + "4.8.0-30.32~16.04.1", + "4.8.0-32.34~16.04.1", + "4.8.0-34.36~16.04.1", + "4.10.0-14.16~16.04.1", + "4.10.0-19.21~16.04.1", + "4.10.0-20.22~16.04.1", + "4.10.0-21.23~16.04.1", + "4.10.0-22.24~16.04.1", + "4.10.0-24.28~16.04.1", + "4.10.0-26.30~16.04.1", + "4.11.0-13.19~16.04.1", + "4.11.0-14.20~16.04.1", + "4.13.0-16.19~16.04.3", + "4.13.0-17.20~16.04.1", + "4.13.0-19.22~16.04.1", + "4.13.0-21.24~16.04.1", + "4.13.0-25.29~16.04.2", + "4.15.0-13.14~16.04.1", + "4.15.0-15.16~16.04.1", + "4.15.0-20.21~16.04.1", + "4.15.0-22.24~16.04.1", + "4.15.0-23.25~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "block-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "crypto-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "dasd-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fat-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "firewire-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "floppy-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "input-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "irda-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "kernel-image-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-tools-4.15.0-23", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-source-4.15.0", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-generic", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-generic-lpae", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-23-lowlatency", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "md-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "message-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "mouse-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "multipath-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nfs-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "parport-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pata-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pcmcia-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "plip-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "ppp-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "sata-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "scsi-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "serial-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "usb-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "virtio-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-23-generic-di", + "binary_version": "4.15.0-23.25~16.04.1" + }, + { + "binary_name": "vlan-modules-4.15.0-23-generic-lpae-di", + "binary_version": "4.15.0-23.25~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@4.4.0-1152.163?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1004.9", + "4.4.0-1007.12", + "4.4.0-1008.13", + "4.4.0-1009.14", + "4.4.0-1010.15", + "4.4.0-1012.17", + "4.4.0-1013.18", + "4.4.0-1015.20", + "4.4.0-1017.22", + "4.4.0-1019.24", + "4.4.0-1020.25", + "4.4.0-1021.26", + "4.4.0-1023.28", + "4.4.0-1026.31", + "4.4.0-1027.32", + "4.4.0-1029.34", + "4.4.0-1031.37", + "4.4.0-1032.38", + "4.4.0-1033.39", + "4.4.0-1035.41", + "4.4.0-1036.42", + "4.4.0-1037.43", + "4.4.0-1038.44", + "4.4.0-1039.45", + "4.4.0-1040.46", + "4.4.0-1041.47", + "4.4.0-1043.49", + "4.4.0-1044.50", + "4.4.0-1046.52", + "4.4.0-1047.53", + "4.4.0-1048.55", + "4.4.0-1051.58", + "4.4.0-1052.59", + "4.4.0-1054.61", + "4.4.0-1056.63", + "4.4.0-1058.65", + "4.4.0-1059.66", + "4.4.0-1060.67", + "4.4.0-1062.69", + "4.4.0-1063.70", + "4.4.0-1064.71", + "4.4.0-1065.72", + "4.4.0-1066.73", + "4.4.0-1068.75", + "4.4.0-1069.76", + "4.4.0-1070.77", + "4.4.0-1071.78", + "4.4.0-1075.82", + "4.4.0-1076.83", + "4.4.0-1077.84", + "4.4.0-1078.85", + "4.4.0-1079.86", + "4.4.0-1080.87", + "4.4.0-1082.91", + "4.4.0-1084.93", + "4.4.0-1085.94", + "4.4.0-1087.96", + "4.4.0-1088.97", + "4.4.0-1089.98", + "4.4.0-1090.99", + "4.4.0-1091.100", + "4.4.0-1092.101", + "4.4.0-1093.102", + "4.4.0-1094.103", + "4.4.0-1095.104", + "4.4.0-1096.105", + "4.4.0-1097.106", + "4.4.0-1098.107", + "4.4.0-1099.108", + "4.4.0-1100.109", + "4.4.0-1102.111", + "4.4.0-1103.112", + "4.4.0-1104.113", + "4.4.0-1105.114", + "4.4.0-1108.118", + "4.4.0-1110.120", + "4.4.0-1111.121", + "4.4.0-1112.122", + "4.4.0-1113.123", + "4.4.0-1114.124", + "4.4.0-1115.125", + "4.4.0-1116.126", + "4.4.0-1117.127", + "4.4.0-1118.128", + "4.4.0-1119.129", + "4.4.0-1120.130", + "4.4.0-1121.131", + "4.4.0-1122.132", + "4.4.0-1123.133", + "4.4.0-1124.134", + "4.4.0-1125.135", + "4.4.0-1126.136", + "4.4.0-1128.138", + "4.4.0-1129.139", + "4.4.0-1130.140", + "4.4.0-1131.141", + "4.4.0-1132.142", + "4.4.0-1134.144", + "4.4.0-1135.145", + "4.4.0-1136.146", + "4.4.0-1137.147", + "4.4.0-1138.148", + "4.4.0-1139.149", + "4.4.0-1140.151", + "4.4.0-1141.152", + "4.4.0-1142.153", + "4.4.0-1143.154", + "4.4.0-1144.155", + "4.4.0-1145.156", + "4.4.0-1146.157", + "4.4.0-1147.158", + "4.4.0-1148.159", + "4.4.0-1149.160", + "4.4.0-1150.161", + "4.4.0-1151.162", + "4.4.0-1152.163" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-cloud-tools-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-headers-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-image-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-kvm-cloud-tools-4.4.0-1152", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-kvm-headers-4.4.0-1152", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-kvm-tools-4.4.0-1152", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-modules-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + }, + { + "binary_name": "linux-tools-4.4.0-1152-kvm", + "binary_version": "4.4.0-1152.163" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:16.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1150.161~16.04.1?arch=source&distro=esm-infra/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1007.9~16.04.1", + "4.15.0-1008.10~16.04.1", + "4.15.0-1009.11~16.04.1", + "4.15.0-1010.12~16.04.1", + "4.15.0-1011.13~16.04.1", + "4.15.0-1013.15~16.04.1", + "4.15.0-1014.16~16.04.1", + "4.15.0-1015.17~16.04.1", + "4.15.0-1017.19~16.04.2", + "4.15.0-1018.20~16.04.1", + "4.15.0-1021.23~16.04.1", + "4.15.0-1022.25~16.04.1", + "4.15.0-1023.26~16.04.1", + "4.15.0-1025.28~16.04.1", + "4.15.0-1026.29~16.04.1", + "4.15.0-1027.30~16.04.1", + "4.15.0-1029.32~16.04.1", + "4.15.0-1030.33~16.04.1", + "4.15.0-1031.34~16.04.1", + "4.15.0-1033.36~16.04.1", + "4.15.0-1035.38~16.04.1", + "4.15.0-1037.41~16.04.1", + "4.15.0-1038.42~16.04.1", + "4.15.0-1039.43~16.04.1", + "4.15.0-1045.49~16.04.1", + "4.15.0-1046.50~16.04.1", + "4.15.0-1050.54~16.04.1", + "4.15.0-1051.55~16.04.1", + "4.15.0-1053.57~16.04.1", + "4.15.0-1054.58~16.04.1", + "4.15.0-1056.61~16.04.1", + "4.15.0-1058.64~16.04.1", + "4.15.0-1059.65~16.04.1", + "4.15.0-1061.67~16.04.1", + "4.15.0-1062.68~16.04.1", + "4.15.0-1064.71~16.04.1", + "4.15.0-1065.73~16.04.1", + "4.15.0-1066.74~16.04.1", + "4.15.0-1067.75~16.04.1", + "4.15.0-1068.76~16.04.1", + "4.15.0-1069.77~16.04.1", + "4.15.0-1070.78~16.04.1", + "4.15.0-1071.79~16.04.1", + "4.15.0-1072.80~16.04.1", + "4.15.0-1075.83~16.04.1", + "4.15.0-1078.86~16.04.1", + "4.15.0-1079.87~16.04.1", + "4.15.0-1080.88~16.04.1", + "4.15.0-1081.89~16.04.1", + "4.15.0-1082.90~16.04.1", + "4.15.0-1083.91~16.04.1", + "4.15.0-1084.92~16.04.1", + "4.15.0-1085.93~16.04.1", + "4.15.0-1086.94~16.04.1", + "4.15.0-1087.95~16.04.1", + "4.15.0-1089.98~16.04.1", + "4.15.0-1090.99~16.04.1", + "4.15.0-1091.100~16.04.1", + "4.15.0-1092.101~16.04.1", + "4.15.0-1093.102~16.04.1", + "4.15.0-1095.104~16.04.1", + "4.15.0-1098.108~16.04.1", + "4.15.0-1101.112~16.04.1", + "4.15.0-1102.113~16.04.1", + "4.15.0-1104.115~16.04.1", + "4.15.0-1105.116~16.04.1", + "4.15.0-1106.117~16.04.1", + "4.15.0-1107.118~16.04.1", + "4.15.0-1108.119~16.04.1", + "4.15.0-1111.122~16.04.2", + "4.15.0-1112.123~16.04.1", + "4.15.0-1113.124~16.04.1", + "4.15.0-1115.126~16.04.1", + "4.15.0-1116.127~16.04.1", + "4.15.0-1117.128~16.04.1", + "4.15.0-1118.129~16.04.1", + "4.15.0-1119.130~16.04.1", + "4.15.0-1120.131~16.04.1", + "4.15.0-1121.132~16.04.1", + "4.15.0-1122.133~16.04.1", + "4.15.0-1123.134~16.04.1", + "4.15.0-1124.135~16.04.1", + "4.15.0-1125.136~16.04.1", + "4.15.0-1126.137~16.04.1", + "4.15.0-1127.138~16.04.1", + "4.15.0-1128.139~16.04.1", + "4.15.0-1129.140~16.04.1", + "4.15.0-1130.141~16.04.1", + "4.15.0-1131.142~16.04.1", + "4.15.0-1132.143~16.04.1", + "4.15.0-1133.144~16.04.1", + "4.15.0-1134.145~16.04.1", + "4.15.0-1135.146~16.04.1", + "4.15.0-1136.147~16.04.1", + "4.15.0-1137.148~16.04.1", + "4.15.0-1138.149~16.04.1", + "4.15.0-1139.150~16.04.1", + "4.15.0-1140.151~16.04.1", + "4.15.0-1141.152~16.04.1", + "4.15.0-1142.153~16.04.1", + "4.15.0-1143.154~16.04.1", + "4.15.0-1144.155~16.04.1", + "4.15.0-1145.156~16.04.1", + "4.15.0-1148.159~16.04.1", + "4.15.0-1149.160~16.04.1", + "4.15.0-1150.161~16.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-headers-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-modules-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-oracle-headers-4.15.0-1150", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-oracle-tools-4.15.0-1150", + "binary_version": "4.15.0-1150.161~16.04.1" + }, + { + "binary_name": "linux-tools-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161~16.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1121.128?arch=source&distro=fips-updates/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1003.3", + "4.4.0-1005.5", + "4.4.0-1006.6", + "4.4.0-1008.10", + "4.4.0-1010.13", + "4.4.0-1011.14", + "4.4.0-1012.16", + "4.4.0-1013.17", + "4.4.0-1015.20", + "4.4.0-1017.22", + "4.4.0-1019.24", + "4.4.0-1021.26", + "4.4.0-1022.27", + "4.4.0-1023.28", + "4.4.0-1025.30", + "4.4.0-1026.31", + "4.4.0-1027.32", + "4.4.0-1028.33", + "4.4.0-1029.34", + "4.4.0-1031.36", + "4.4.0-1032.37", + "4.4.0-1033.38", + "4.4.0-1034.39", + "4.4.0-1041.46", + "4.4.0-1042.47", + "4.4.0-1043.48", + "4.4.0-1044.49", + "4.4.0-1045.50", + "4.4.0-1046.51", + "4.4.0-1048.53", + "4.4.0-1049.55", + "4.4.0-1051.57", + "4.4.0-1052.58", + "4.4.0-1054.60", + "4.4.0-1055.61", + "4.4.0-1056.62", + "4.4.0-1057.63", + "4.4.0-1058.64", + "4.4.0-1060.66", + "4.4.0-1061.67", + "4.4.0-1062.68", + "4.4.0-1063.69", + "4.4.0-1064.70", + "4.4.0-1065.71", + "4.4.0-1066.72", + "4.4.0-1067.73", + "4.4.0-1068.74", + "4.4.0-1069.75", + "4.4.0-1071.77", + "4.4.0-1072.78", + "4.4.0-1073.79", + "4.4.0-1074.80", + "4.4.0-1077.84", + "4.4.0-1079.86", + "4.4.0-1080.87", + "4.4.0-1081.88", + "4.4.0-1082.89", + "4.4.0-1083.90", + "4.4.0-1084.91", + "4.4.0-1085.92", + "4.4.0-1086.93", + "4.4.0-1088.95", + "4.4.0-1089.96", + "4.4.0-1090.97", + "4.4.0-1091.98", + "4.4.0-1092.99", + "4.4.0-1093.100", + "4.4.0-1094.101", + "4.4.0-1095.102", + "4.4.0-1097.104", + "4.4.0-1099.106", + "4.4.0-1100.107", + "4.4.0-1101.108", + "4.4.0-1102.109", + "4.4.0-1103.110", + "4.4.0-1104.111", + "4.4.0-1105.112", + "4.4.0-1106.113", + "4.4.0-1107.114", + "4.4.0-1108.115", + "4.4.0-1109.116", + "4.4.0-1110.117", + "4.4.0-1111.118", + "4.4.0-1112.119", + "4.4.0-1113.120", + "4.4.0-1114.121", + "4.4.0-1115.122", + "4.4.0-1116.123", + "4.4.0-1117.124", + "4.4.0-1119.126", + "4.4.0-1120.127", + "4.4.0-1121.128" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "crypto-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "dasd-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "fat-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "fb-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "firewire-core-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "floppy-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "fs-core-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "input-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "ipmi-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "irda-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "kernel-image-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-buildinfo-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-fips-cloud-tools-common", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-fips-headers-4.4.0-1121", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-fips-source-4.4.0", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-fips-tools-4.4.0-1121", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-headers-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-image-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-image-hmac-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-image-unsigned-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-modules-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-modules-extra-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-tools-4.4.0-1121-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "linux-udebs-fips", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "md-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "message-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "mouse-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "multipath-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "nfs-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "nic-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "nic-shared-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "nic-usb-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "parport-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "pata-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "pcmcia-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "plip-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "ppp-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "sata-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "scsi-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "serial-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "speakup-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "storage-core-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "usb-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "virtio-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + }, + { + "binary_name": "vlan-modules-4.4.0-1121-fips-di", + "binary_version": "4.4.0-1121.128" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1002.2?arch=source&distro=fips/xenial" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.4.0-1001.1", + "4.4.0-1002.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "crypto-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "dasd-extra-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "dasd-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fat-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "firewire-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "floppy-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fs-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "fs-secondary-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "input-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "ipmi-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "irda-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "kernel-image-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-headers-4.4.0-1002", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-source-4.4.0", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-fips-tools-4.4.0-1002", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-headers-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-extra-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-image-hmac-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-tools-4.4.0-1002-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "linux-udebs-fips", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "md-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "message-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "mouse-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "multipath-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nfs-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-pcmcia-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-shared-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "nic-usb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "parport-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pata-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pcmcia-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "pcmcia-storage-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "plip-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "ppp-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "sata-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "scsi-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "serial-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "speakup-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "storage-core-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "usb-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "virtio-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + }, + { + "binary_name": "vlan-modules-4.4.0-1002-fips-di", + "binary_version": "4.4.0-1002.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@4.15.0-246.258?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.13.0-16.19", + "4.13.0-17.20", + "4.13.0-25.29", + "4.13.0-32.35", + "4.15.0-10.11", + "4.15.0-12.13", + "4.15.0-13.14", + "4.15.0-15.16", + "4.15.0-19.20", + "4.15.0-20.21", + "4.15.0-22.24", + "4.15.0-23.25", + "4.15.0-24.26", + "4.15.0-29.31", + "4.15.0-30.32", + "4.15.0-32.35", + "4.15.0-33.36", + "4.15.0-34.37", + "4.15.0-36.39", + "4.15.0-38.41", + "4.15.0-39.42", + "4.15.0-42.45", + "4.15.0-43.46", + "4.15.0-44.47", + "4.15.0-45.48", + "4.15.0-46.49", + "4.15.0-47.50", + "4.15.0-48.51", + "4.15.0-50.54", + "4.15.0-51.55", + "4.15.0-52.56", + "4.15.0-54.58", + "4.15.0-55.60", + "4.15.0-58.64", + "4.15.0-60.67", + "4.15.0-62.69", + "4.15.0-64.73", + "4.15.0-65.74", + "4.15.0-66.75", + "4.15.0-69.78", + "4.15.0-70.79", + "4.15.0-72.81", + "4.15.0-74.84", + "4.15.0-76.86", + "4.15.0-88.88", + "4.15.0-91.92", + "4.15.0-96.97", + "4.15.0-99.100", + "4.15.0-101.102", + "4.15.0-106.107", + "4.15.0-108.109", + "4.15.0-109.110", + "4.15.0-111.112", + "4.15.0-112.113", + "4.15.0-115.116", + "4.15.0-117.118", + "4.15.0-118.119", + "4.15.0-121.123", + "4.15.0-122.124", + "4.15.0-123.126", + "4.15.0-124.127", + "4.15.0-126.129", + "4.15.0-128.131", + "4.15.0-129.132", + "4.15.0-130.134", + "4.15.0-132.136", + "4.15.0-134.138", + "4.15.0-135.139", + "4.15.0-136.140", + "4.15.0-137.141", + "4.15.0-139.143", + "4.15.0-140.144", + "4.15.0-141.145", + "4.15.0-142.146", + "4.15.0-143.147", + "4.15.0-144.148", + "4.15.0-147.151", + "4.15.0-151.157", + "4.15.0-153.160", + "4.15.0-154.161", + "4.15.0-156.163", + "4.15.0-158.166", + "4.15.0-159.167", + "4.15.0-161.169", + "4.15.0-162.170", + "4.15.0-163.171", + "4.15.0-166.174", + "4.15.0-167.175", + "4.15.0-169.177", + "4.15.0-171.180", + "4.15.0-173.182", + "4.15.0-175.184", + "4.15.0-176.185", + "4.15.0-177.186", + "4.15.0-180.189", + "4.15.0-184.194", + "4.15.0-187.198", + "4.15.0-188.199", + "4.15.0-189.200", + "4.15.0-191.202", + "4.15.0-192.203", + "4.15.0-193.204", + "4.15.0-194.205", + "4.15.0-196.207", + "4.15.0-197.208", + "4.15.0-200.211", + "4.15.0-201.212", + "4.15.0-202.213", + "4.15.0-204.215", + "4.15.0-206.217", + "4.15.0-208.220", + "4.15.0-209.220", + "4.15.0-210.221", + "4.15.0-211.222", + "4.15.0-212.223", + "4.15.0-213.224", + "4.15.0-214.225", + "4.15.0-216.227", + "4.15.0-218.229", + "4.15.0-219.230", + "4.15.0-220.231", + "4.15.0-221.232", + "4.15.0-222.233", + "4.15.0-223.235", + "4.15.0-224.236", + "4.15.0-225.237", + "4.15.0-226.238", + "4.15.0-227.239", + "4.15.0-228.240", + "4.15.0-229.241", + "4.15.0-230.242", + "4.15.0-231.243", + "4.15.0-232.244", + "4.15.0-233.245", + "4.15.0-234.246", + "4.15.0-235.247", + "4.15.0-236.248", + "4.15.0-237.249", + "4.15.0-238.250", + "4.15.0-239.251", + "4.15.0-240.252", + "4.15.0-241.253", + "4.15.0-242.254", + "4.15.0-243.255", + "4.15.0-245.257", + "4.15.0-246.258" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "crypto-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "dasd-extra-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "dasd-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "fat-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "fb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "firewire-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "floppy-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "fs-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "input-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "ipmi-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "irda-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "kernel-image-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-buildinfo-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-buildinfo-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-246", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-headers-4.15.0-246", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-headers-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-headers-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-image-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-modules-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-modules-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-modules-extra-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-source-4.15.0", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-tools-4.15.0-246", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-tools-4.15.0-246-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-tools-4.15.0-246-lowlatency", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "md-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "message-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "mouse-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "multipath-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "nfs-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "nic-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "nic-shared-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "nic-usb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "parport-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "pata-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "pcmcia-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "plip-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "ppp-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "sata-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "scsi-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "serial-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "storage-core-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "usb-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "virtio-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + }, + { + "binary_name": "vlan-modules-4.15.0-246-generic-di", + "binary_version": "4.15.0-246.258" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@4.15.0-1188.201?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1", + "4.15.0-1003.3", + "4.15.0-1005.5", + "4.15.0-1006.6", + "4.15.0-1007.7", + "4.15.0-1009.9", + "4.15.0-1010.10", + "4.15.0-1011.11", + "4.15.0-1016.16", + "4.15.0-1017.17", + "4.15.0-1019.19", + "4.15.0-1020.20", + "4.15.0-1021.21", + "4.15.0-1023.23", + "4.15.0-1025.25", + "4.15.0-1027.27", + "4.15.0-1029.30", + "4.15.0-1031.33", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1035.37", + "4.15.0-1037.39", + "4.15.0-1039.41", + "4.15.0-1040.42", + "4.15.0-1041.43", + "4.15.0-1043.45", + "4.15.0-1044.46", + "4.15.0-1045.47", + "4.15.0-1047.49", + "4.15.0-1048.50", + "4.15.0-1050.52", + "4.15.0-1051.53", + "4.15.0-1052.54", + "4.15.0-1054.56", + "4.15.0-1056.58", + "4.15.0-1057.59", + "4.15.0-1058.60", + "4.15.0-1060.62", + "4.15.0-1063.67", + "4.15.0-1065.69", + "4.15.0-1066.70", + "4.15.0-1067.71", + "4.15.0-1073.77", + "4.15.0-1076.80", + "4.15.0-1077.81", + "4.15.0-1079.83", + "4.15.0-1080.84", + "4.15.0-1082.86", + "4.15.0-1083.87", + "4.15.0-1086.91", + "4.15.0-1087.92", + "4.15.0-1088.93", + "4.15.0-1090.95", + "4.15.0-1091.96", + "4.15.0-1092.98", + "4.15.0-1093.99", + "4.15.0-1094.101", + "4.15.0-1095.102", + "4.15.0-1096.103", + "4.15.0-1097.104", + "4.15.0-1098.105", + "4.15.0-1099.106", + "4.15.0-1101.108", + "4.15.0-1102.109", + "4.15.0-1103.110", + "4.15.0-1106.113", + "4.15.0-1109.116", + "4.15.0-1110.117", + "4.15.0-1111.118", + "4.15.0-1112.119", + "4.15.0-1114.121", + "4.15.0-1115.122", + "4.15.0-1116.123", + "4.15.0-1118.125", + "4.15.0-1119.127", + "4.15.0-1121.129", + "4.15.0-1123.132", + "4.15.0-1124.133", + "4.15.0-1126.135", + "4.15.0-1127.136", + "4.15.0-1128.137", + "4.15.0-1130.139", + "4.15.0-1133.143", + "4.15.0-1136.147", + "4.15.0-1137.148", + "4.15.0-1139.150", + "4.15.0-1140.151", + "4.15.0-1141.152", + "4.15.0-1142.154", + "4.15.0-1143.155", + "4.15.0-1144.156", + "4.15.0-1146.158", + "4.15.0-1147.159", + "4.15.0-1148.160", + "4.15.0-1150.163", + "4.15.0-1151.164", + "4.15.0-1153.166", + "4.15.0-1154.167", + "4.15.0-1155.168", + "4.15.0-1156.169", + "4.15.0-1157.170", + "4.15.0-1158.171", + "4.15.0-1159.172", + "4.15.0-1160.173", + "4.15.0-1161.174", + "4.15.0-1162.175", + "4.15.0-1163.176", + "4.15.0-1164.177", + "4.15.0-1165.178", + "4.15.0-1166.179", + "4.15.0-1167.180", + "4.15.0-1168.181", + "4.15.0-1169.182", + "4.15.0-1170.183", + "4.15.0-1172.185", + "4.15.0-1173.186", + "4.15.0-1174.187", + "4.15.0-1175.188", + "4.15.0-1176.189", + "4.15.0-1177.190", + "4.15.0-1178.191", + "4.15.0-1179.192", + "4.15.0-1180.193", + "4.15.0-1181.194", + "4.15.0-1182.195", + "4.15.0-1183.196", + "4.15.0-1184.197", + "4.15.0-1185.198", + "4.15.0-1186.199", + "4.15.0-1187.200", + "4.15.0-1188.201" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-4.15.0-1188", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-aws-headers-4.15.0-1188", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-aws-tools-4.15.0-1188", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-headers-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-modules-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + }, + { + "binary_name": "linux-tools-4.15.0-1188-aws", + "binary_version": "4.15.0-1188.201" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-aws-5.0", + "purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-1021.24~18.04.1", + "5.0.0-1022.25~18.04.1", + "5.0.0-1023.26~18.04.1", + "5.0.0-1024.27~18.04.1", + "5.0.0-1025.28", + "5.0.0-1027.30" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.0-tools-5.0.0-1027", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-aws-headers-5.0.0-1027", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-headers-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-image-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-modules-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + }, + { + "binary_name": "linux-tools-5.0.0-1027-aws", + "binary_version": "5.0.0-1027.30" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-aws-5.3", + "purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1016.17~18.04.1", + "5.3.0-1017.18~18.04.1", + "5.3.0-1019.21~18.04.1", + "5.3.0-1023.25~18.04.1", + "5.3.0-1028.30~18.04.1", + "5.3.0-1030.32~18.04.1", + "5.3.0-1032.34~18.04.2", + "5.3.0-1033.35", + "5.3.0-1034.36", + "5.3.0-1035.37" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-aws-5.3-headers-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-aws-5.3-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-buildinfo-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-headers-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-image-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-modules-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + }, + { + "binary_name": "linux-tools-5.3.0-1035-aws", + "binary_version": "5.3.0-1035.37" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-aws-5.4", + "purl": "pkg:deb/ubuntu/linux-aws-5.4@5.4.0-1154.164~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1018.18~18.04.1", + "5.4.0-1020.20~18.04.2", + "5.4.0-1022.22~18.04.1", + "5.4.0-1024.24~18.04.1", + "5.4.0-1025.25~18.04.1", + "5.4.0-1028.29~18.04.1", + "5.4.0-1029.30~18.04.1", + "5.4.0-1030.31~18.04.1", + "5.4.0-1032.33~18.04.1", + "5.4.0-1034.35~18.04.1", + "5.4.0-1035.37~18.04.1", + "5.4.0-1037.39~18.04.1", + "5.4.0-1038.40~18.04.1", + "5.4.0-1039.41~18.04.1", + "5.4.0-1041.43~18.04.1", + "5.4.0-1043.45~18.04.1", + "5.4.0-1045.47~18.04.1", + "5.4.0-1047.49~18.04.1", + "5.4.0-1048.50~18.04.1", + "5.4.0-1049.51~18.04.1", + "5.4.0-1051.53~18.04.1", + "5.4.0-1054.57~18.04.1", + "5.4.0-1055.58~18.04.1", + "5.4.0-1056.59~18.04.1", + "5.4.0-1057.60~18.04.1", + "5.4.0-1058.61~18.04.3", + "5.4.0-1059.62~18.04.1", + "5.4.0-1060.63~18.04.1", + "5.4.0-1061.64~18.04.1", + "5.4.0-1063.66~18.04.1", + "5.4.0-1064.67~18.04.1", + "5.4.0-1065.68~18.04.1", + "5.4.0-1066.69~18.04.1", + "5.4.0-1068.72~18.04.1", + "5.4.0-1069.73~18.04.1", + "5.4.0-1071.76~18.04.1", + "5.4.0-1072.77~18.04.1", + "5.4.0-1075.80~18.04.1", + "5.4.0-1078.84~18.04.1", + "5.4.0-1080.87~18.04.1", + "5.4.0-1081.88~18.04.1", + "5.4.0-1083.90~18.04.1", + "5.4.0-1084.91~18.04.1", + "5.4.0-1085.92~18.04.1", + "5.4.0-1086.93~18.04.1", + "5.4.0-1088.96~18.04.1", + "5.4.0-1089.97~18.04.1", + "5.4.0-1090.98~18.04.1", + "5.4.0-1092.100~18.04.2", + "5.4.0-1093.102~18.04.2", + "5.4.0-1094.102~18.04.1", + "5.4.0-1096.104~18.04.1", + "5.4.0-1097.105~18.04.1", + "5.4.0-1099.107~18.04.1", + "5.4.0-1100.108~18.04.1", + "5.4.0-1101.109~18.04.1", + "5.4.0-1103.111~18.04.1", + "5.4.0-1104.112~18.04.1", + "5.4.0-1105.113~18.04.1", + "5.4.0-1106.114~18.04.1", + "5.4.0-1107.115~18.04.1", + "5.4.0-1108.116~18.04.1", + "5.4.0-1109.118~18.04.1", + "5.4.0-1110.119~18.04.1", + "5.4.0-1111.120~18.04.1", + "5.4.0-1112.121~18.04.2", + "5.4.0-1113.123~18.04.1", + "5.4.0-1114.124~18.04.1", + "5.4.0-1116.126~18.04.1", + "5.4.0-1117.127~18.04.1", + "5.4.0-1118.128~18.04.1", + "5.4.0-1119.129~18.04.1", + "5.4.0-1120.130~18.04.1", + "5.4.0-1121.131~18.04.1", + "5.4.0-1122.132~18.04.1", + "5.4.0-1123.133~18.04.1", + "5.4.0-1124.134~18.04.1", + "5.4.0-1125.135~18.04.1", + "5.4.0-1126.136~18.04.1", + "5.4.0-1127.137~18.04.2", + "5.4.0-1128.138~18.04.1", + "5.4.0-1129.139~18.04.1", + "5.4.0-1130.140~18.04.1", + "5.4.0-1131.141~18.04.1", + "5.4.0-1132.142~18.04.1", + "5.4.0-1133.143~18.04.1", + "5.4.0-1134.144~18.04.1", + "5.4.0-1135.145~18.04.1", + "5.4.0-1136.146~18.04.1", + "5.4.0-1137.147~18.04.1", + "5.4.0-1139.149~18.04.1", + "5.4.0-1142.152~18.04.1", + "5.4.0-1144.154~18.04.1", + "5.4.0-1145.155~18.04.1", + "5.4.0-1146.156~18.04.1", + "5.4.0-1147.157~18.04.1", + "5.4.0-1148.158~18.04.1", + "5.4.0-1149.159~18.04.1", + "5.4.0-1150.160~18.04.1", + "5.4.0-1151.161~18.04.1", + "5.4.0-1152.162~18.04.1", + "5.4.0-1153.163~18.04.1", + "5.4.0-1154.164~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.4-cloud-tools-5.4.0-1154", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-aws-5.4-headers-5.4.0-1154", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-aws-5.4-tools-5.4.0-1154", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2", + "4.15.0-1003.3", + "4.15.0-1004.4", + "4.15.0-1008.8", + "4.15.0-1009.9", + "4.15.0-1012.12", + "4.15.0-1013.13", + "4.15.0-1014.14", + "4.15.0-1018.18", + "4.15.0-1019.19", + "4.15.0-1021.21", + "4.15.0-1022.23", + "4.15.0-1023.24", + "4.15.0-1025.26", + "4.15.0-1028.29", + "4.15.0-1030.31", + "4.15.0-1031.32", + "4.15.0-1032.33", + "4.15.0-1035.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.18.0-1011.11~18.04.1", + "4.18.0-1013.13~18.04.1", + "4.18.0-1014.14~18.04.1", + "4.18.0-1018.18~18.04.1", + "4.18.0-1019.19~18.04.1", + "4.18.0-1020.20~18.04.1", + "4.18.0-1023.24~18.04.1", + "4.18.0-1024.25~18.04.1", + "4.18.0-1025.27~18.04.1", + "5.0.0-1014.14~18.04.1", + "5.0.0-1016.17~18.04.1", + "5.0.0-1018.19~18.04.1", + "5.0.0-1020.21~18.04.1", + "5.0.0-1022.23~18.04.1", + "5.0.0-1023.24~18.04.1", + "5.0.0-1025.27~18.04.1", + "5.0.0-1027.29~18.04.1", + "5.0.0-1028.30~18.04.1", + "5.0.0-1029.31~18.04.1", + "5.0.0-1031.33", + "5.0.0-1032.34", + "5.0.0-1035.37", + "5.0.0-1036.38" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-azure-headers-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-azure-tools-5.0.0-1036", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-headers-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-modules-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + }, + { + "binary_name": "linux-tools-5.0.0-1036-azure", + "binary_version": "5.0.0-1036.38" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-azure-4.15", + "purl": "pkg:deb/ubuntu/linux-azure-4.15@4.15.0-1195.210?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1082.92", + "4.15.0-1083.93", + "4.15.0-1089.99", + "4.15.0-1091.101", + "4.15.0-1092.102", + "4.15.0-1093.103", + "4.15.0-1095.105", + "4.15.0-1096.106", + "4.15.0-1099.110", + "4.15.0-1100.111", + "4.15.0-1102.113", + "4.15.0-1103.114", + "4.15.0-1104.116", + "4.15.0-1106.118", + "4.15.0-1108.120", + "4.15.0-1109.121", + "4.15.0-1110.122", + "4.15.0-1111.123", + "4.15.0-1112.125", + "4.15.0-1113.126", + "4.15.0-1114.127", + "4.15.0-1115.128", + "4.15.0-1118.131", + "4.15.0-1121.134", + "4.15.0-1122.135", + "4.15.0-1123.136", + "4.15.0-1124.137", + "4.15.0-1125.138", + "4.15.0-1126.139", + "4.15.0-1127.140", + "4.15.0-1129.142", + "4.15.0-1130.143", + "4.15.0-1131.144", + "4.15.0-1133.146", + "4.15.0-1134.147", + "4.15.0-1136.149", + "4.15.0-1137.150", + "4.15.0-1138.151", + "4.15.0-1139.152", + "4.15.0-1142.156", + "4.15.0-1145.160", + "4.15.0-1146.161", + "4.15.0-1149.164", + "4.15.0-1150.165", + "4.15.0-1151.166", + "4.15.0-1153.168", + "4.15.0-1157.172", + "4.15.0-1158.173", + "4.15.0-1159.174", + "4.15.0-1161.176", + "4.15.0-1162.177", + "4.15.0-1163.178", + "4.15.0-1164.179", + "4.15.0-1165.180", + "4.15.0-1166.181", + "4.15.0-1167.182", + "4.15.0-1168.183", + "4.15.0-1169.184", + "4.15.0-1170.185", + "4.15.0-1171.186", + "4.15.0-1172.187", + "4.15.0-1173.188", + "4.15.0-1174.189", + "4.15.0-1175.190", + "4.15.0-1176.191", + "4.15.0-1177.192", + "4.15.0-1178.193", + "4.15.0-1179.194", + "4.15.0-1180.195", + "4.15.0-1181.196", + "4.15.0-1182.197", + "4.15.0-1183.198", + "4.15.0-1184.199", + "4.15.0-1185.200", + "4.15.0-1186.201", + "4.15.0-1187.202", + "4.15.0-1188.203", + "4.15.0-1189.204", + "4.15.0-1190.205", + "4.15.0-1191.206", + "4.15.0-1192.207", + "4.15.0-1193.208", + "4.15.0-1194.209", + "4.15.0-1195.210" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-4.15-cloud-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-azure-4.15-headers-4.15.0-1195", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-azure-4.15-tools-4.15.0-1195", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-headers-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-modules-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + }, + { + "binary_name": "linux-tools-4.15.0-1195-azure", + "binary_version": "4.15.0-1195.210" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure-5.3", + "purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1007.8~18.04.1", + "5.3.0-1008.9~18.04.1", + "5.3.0-1009.10~18.04.1", + "5.3.0-1010.11~18.04.1", + "5.3.0-1012.13~18.04.1", + "5.3.0-1013.14~18.04.1", + "5.3.0-1016.17~18.04.1", + "5.3.0-1018.19~18.04.1", + "5.3.0-1019.20~18.04.1", + "5.3.0-1020.21~18.04.1", + "5.3.0-1022.23~18.04.1", + "5.3.0-1028.29~18.04.1", + "5.3.0-1031.32~18.04.1", + "5.3.0-1032.33~18.04.1", + "5.3.0-1034.35~18.04.1", + "5.3.0-1035.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-azure-5.3-headers-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-azure-5.3-tools-5.3.0-1035", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-buildinfo-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-headers-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-modules-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + }, + { + "binary_name": "linux-tools-5.3.0-1035-azure", + "binary_version": "5.3.0-1035.36" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-azure-5.4", + "purl": "pkg:deb/ubuntu/linux-azure-5.4@5.4.0-1156.163~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1020.20~18.04.1", + "5.4.0-1022.22~18.04.1", + "5.4.0-1023.23~18.04.1", + "5.4.0-1025.25~18.04.1", + "5.4.0-1026.26~18.04.1", + "5.4.0-1031.32~18.04.1", + "5.4.0-1032.33~18.04.1", + "5.4.0-1034.35~18.04.1", + "5.4.0-1035.36~18.04.1", + "5.4.0-1036.38~18.04.1", + "5.4.0-1039.41~18.04.1", + "5.4.0-1040.42~18.04.1", + "5.4.0-1041.43~18.04.1", + "5.4.0-1043.45~18.04.1", + "5.4.0-1044.46~18.04.1", + "5.4.0-1046.48~18.04.1", + "5.4.0-1047.49~18.04.1", + "5.4.0-1048.50~18.04.1", + "5.4.0-1049.51~18.04.1", + "5.4.0-1051.53~18.04.1", + "5.4.0-1055.57~18.04.1", + "5.4.0-1056.58~18.04.1", + "5.4.0-1058.60~18.04.1", + "5.4.0-1059.62~18.04.1", + "5.4.0-1061.64~18.04.1", + "5.4.0-1062.65~18.04.1", + "5.4.0-1063.66~18.04.1", + "5.4.0-1064.67~18.04.1", + "5.4.0-1065.68~18.04.1", + "5.4.0-1067.70~18.04.1", + "5.4.0-1068.71~18.04.1", + "5.4.0-1069.72~18.04.1", + "5.4.0-1070.73~18.04.1", + "5.4.0-1072.75~18.04.1", + "5.4.0-1073.76~18.04.1", + "5.4.0-1074.77~18.04.1", + "5.4.0-1077.80~18.04.1", + "5.4.0-1078.81~18.04.1", + "5.4.0-1080.83~18.04.2", + "5.4.0-1083.87~18.04.1", + "5.4.0-1085.90~18.04.1", + "5.4.0-1086.91~18.04.1", + "5.4.0-1089.94~18.04.1", + "5.4.0-1090.95~18.04.1", + "5.4.0-1091.96~18.04.1", + "5.4.0-1094.100~18.04.1", + "5.4.0-1095.101~18.04.1", + "5.4.0-1098.104~18.04.2", + "5.4.0-1100.106~18.04.1", + "5.4.0-1101.107~18.04.1", + "5.4.0-1103.109~18.04.1", + "5.4.0-1104.110~18.04.1", + "5.4.0-1105.111~18.04.1", + "5.4.0-1106.112~18.04.1", + "5.4.0-1107.113~18.04.1", + "5.4.0-1108.114~18.04.1", + "5.4.0-1109.115~18.04.1", + "5.4.0-1110.116~18.04.1", + "5.4.0-1111.117~18.04.1", + "5.4.0-1112.118~18.04.1", + "5.4.0-1113.119~18.04.1", + "5.4.0-1115.122~18.04.1", + "5.4.0-1116.123~18.04.1", + "5.4.0-1117.124~18.04.1", + "5.4.0-1118.125~18.04.1", + "5.4.0-1119.126~18.04.2", + "5.4.0-1120.127~18.04.1", + "5.4.0-1121.128~18.04.1", + "5.4.0-1122.129~18.04.1", + "5.4.0-1123.130~18.04.1", + "5.4.0-1124.131~18.04.1", + "5.4.0-1126.133~18.04.1", + "5.4.0-1127.134~18.04.1", + "5.4.0-1128.135~18.04.1", + "5.4.0-1129.136~18.04.1", + "5.4.0-1130.137~18.04.1", + "5.4.0-1131.138~18.04.1", + "5.4.0-1132.139~18.04.1", + "5.4.0-1133.140~18.04.1", + "5.4.0-1134.141~18.04.1", + "5.4.0-1135.142~18.04.1", + "5.4.0-1136.143~18.04.1", + "5.4.0-1137.144~18.04.1", + "5.4.0-1138.145~18.04.1", + "5.4.0-1139.146~18.04.1", + "5.4.0-1140.147~18.04.1", + "5.4.0-1142.149~18.04.1", + "5.4.0-1143.150~18.04.1", + "5.4.0-1145.152~18.04.1", + "5.4.0-1147.154~18.04.1", + "5.4.0-1148.155~18.04.1", + "5.4.0-1149.156~18.04.1", + "5.4.0-1150.157~18.04.1", + "5.4.0-1151.158~18.04.1", + "5.4.0-1152.159~18.04.1", + "5.4.0-1153.160~18.04.1", + "5.4.0-1154.161~18.04.1", + "5.4.0-1156.163~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.4-cloud-tools-5.4.0-1156", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-azure-5.4-headers-5.4.0-1156", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-azure-5.4-tools-5.4.0-1156", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-azure-edge", + "purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.18.0-1006.6~18.04.1", + "4.18.0-1007.7~18.04.1", + "4.18.0-1008.8~18.04.1", + "5.0.0-1012.12~18.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-azure-edge-tools-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-azure-headers-5.0.0-1012", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-headers-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-modules-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + }, + { + "binary_name": "linux-tools-5.0.0-1012-azure", + "binary_version": "5.0.0-1012.12~18.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1", + "4.15.0-1003.3", + "4.15.0-1005.5", + "4.15.0-1006.6", + "4.15.0-1008.8", + "4.15.0-1009.9", + "4.15.0-1010.10", + "4.15.0-1014.14", + "4.15.0-1015.15", + "4.15.0-1017.18", + "4.15.0-1018.19", + "4.15.0-1019.20", + "4.15.0-1021.22", + "4.15.0-1023.24", + "4.15.0-1024.25", + "4.15.0-1025.26", + "4.15.0-1026.27", + "4.15.0-1027.28", + "4.15.0-1028.29", + "4.15.0-1029.31", + "4.15.0-1030.32", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.15.0-1040.42", + "4.15.0-1042.45", + "4.15.0-1044.70", + "5.0.0-1020.20~18.04.1", + "5.0.0-1021.21~18.04.1", + "5.0.0-1025.26~18.04.1", + "5.0.0-1026.27~18.04.1", + "5.0.0-1028.29~18.04.1", + "5.0.0-1029.30~18.04.1", + "5.0.0-1031.32", + "5.0.0-1033.34", + "5.0.0-1034.35" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-gcp-headers-5.0.0-1034", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-gcp-tools-5.0.0-1034", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-headers-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-modules-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + }, + { + "binary_name": "linux-tools-5.0.0-1034-gcp", + "binary_version": "5.0.0-1034.35" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-gcp-4.15", + "purl": "pkg:deb/ubuntu/linux-gcp-4.15@4.15.0-1180.197?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1071.81", + "4.15.0-1077.87", + "4.15.0-1078.88", + "4.15.0-1080.90", + "4.15.0-1081.92", + "4.15.0-1083.94", + "4.15.0-1084.95", + "4.15.0-1086.98", + "4.15.0-1087.100", + "4.15.0-1088.101", + "4.15.0-1090.103", + "4.15.0-1091.104", + "4.15.0-1092.105", + "4.15.0-1093.106", + "4.15.0-1094.107", + "4.15.0-1095.108", + "4.15.0-1096.109", + "4.15.0-1097.110", + "4.15.0-1098.111", + "4.15.0-1099.112", + "4.15.0-1100.113", + "4.15.0-1103.116", + "4.15.0-1106.120", + "4.15.0-1107.121", + "4.15.0-1108.122", + "4.15.0-1109.123", + "4.15.0-1110.124", + "4.15.0-1111.125", + "4.15.0-1112.126", + "4.15.0-1114.128", + "4.15.0-1115.129", + "4.15.0-1116.130", + "4.15.0-1118.132", + "4.15.0-1119.133", + "4.15.0-1120.134", + "4.15.0-1121.135", + "4.15.0-1122.136", + "4.15.0-1124.138", + "4.15.0-1127.142", + "4.15.0-1130.146", + "4.15.0-1131.147", + "4.15.0-1134.150", + "4.15.0-1135.151", + "4.15.0-1136.152", + "4.15.0-1137.153", + "4.15.0-1138.154", + "4.15.0-1141.157", + "4.15.0-1142.158", + "4.15.0-1143.159", + "4.15.0-1145.161", + "4.15.0-1146.162", + "4.15.0-1147.163", + "4.15.0-1148.164", + "4.15.0-1149.165", + "4.15.0-1150.166", + "4.15.0-1151.167", + "4.15.0-1152.168", + "4.15.0-1153.170", + "4.15.0-1154.171", + "4.15.0-1155.172", + "4.15.0-1156.173", + "4.15.0-1157.174", + "4.15.0-1158.175", + "4.15.0-1159.176", + "4.15.0-1160.177", + "4.15.0-1161.178", + "4.15.0-1162.179", + "4.15.0-1163.180", + "4.15.0-1164.181", + "4.15.0-1165.182", + "4.15.0-1166.183", + "4.15.0-1167.184", + "4.15.0-1168.185", + "4.15.0-1169.186", + "4.15.0-1170.187", + "4.15.0-1171.188", + "4.15.0-1172.189", + "4.15.0-1173.190", + "4.15.0-1174.191", + "4.15.0-1175.192", + "4.15.0-1176.193", + "4.15.0-1177.194", + "4.15.0-1178.195", + "4.15.0-1179.196", + "4.15.0-1180.197" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-gcp-4.15-headers-4.15.0-1180", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-gcp-4.15-tools-4.15.0-1180", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-headers-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-modules-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + }, + { + "binary_name": "linux-tools-4.15.0-1180-gcp", + "binary_version": "4.15.0-1180.197" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gcp-5.3", + "purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1008.9~18.04.1", + "5.3.0-1009.10~18.04.1", + "5.3.0-1010.11~18.04.1", + "5.3.0-1012.13~18.04.1", + "5.3.0-1014.15~18.04.1", + "5.3.0-1016.17~18.04.1", + "5.3.0-1017.18~18.04.1", + "5.3.0-1018.19~18.04.1", + "5.3.0-1020.22~18.04.1", + "5.3.0-1026.28~18.04.1", + "5.3.0-1029.31~18.04.1", + "5.3.0-1030.32~18.04.1", + "5.3.0-1032.34~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-gcp-5.3-headers-5.3.0-1032", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-gcp-5.3-tools-5.3.0-1032", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1032-gcp", + "binary_version": "5.3.0-1032.34~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-gcp-5.4", + "purl": "pkg:deb/ubuntu/linux-gcp-5.4@5.4.0-1157.166~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1019.19~18.04.2", + "5.4.0-1021.21~18.04.1", + "5.4.0-1022.22~18.04.1", + "5.4.0-1024.24~18.04.1", + "5.4.0-1025.25~18.04.1", + "5.4.0-1028.29~18.04.1", + "5.4.0-1029.31~18.04.1", + "5.4.0-1030.32~18.04.1", + "5.4.0-1032.34~18.04.1", + "5.4.0-1033.35~18.04.1", + "5.4.0-1034.37~18.04.1", + "5.4.0-1036.39~18.04.1", + "5.4.0-1037.40~18.04.1", + "5.4.0-1038.41~18.04.1", + "5.4.0-1040.43~18.04.1", + "5.4.0-1041.44~18.04.1", + "5.4.0-1042.45~18.04.1", + "5.4.0-1043.46~18.04.1", + "5.4.0-1044.47~18.04.2", + "5.4.0-1046.49~18.04.1", + "5.4.0-1049.53~18.04.1", + "5.4.0-1051.55~18.04.1", + "5.4.0-1052.56~18.04.1", + "5.4.0-1053.57~18.04.1", + "5.4.0-1055.59~18.04.1", + "5.4.0-1056.60~18.04.1", + "5.4.0-1057.61~18.04.1", + "5.4.0-1058.62~18.04.1", + "5.4.0-1059.63~18.04.1", + "5.4.0-1060.64~18.04.1", + "5.4.0-1062.66~18.04.1", + "5.4.0-1063.67~18.04.1", + "5.4.0-1064.68~18.04.1", + "5.4.0-1065.69~18.04.1", + "5.4.0-1067.71~18.04.1", + "5.4.0-1068.72~18.04.1", + "5.4.0-1069.73~18.04.1", + "5.4.0-1072.77~18.04.1", + "5.4.0-1073.78~18.04.1", + "5.4.0-1075.80~18.04.1", + "5.4.0-1078.84~18.04.1", + "5.4.0-1080.87~18.04.1", + "5.4.0-1083.91~18.04.1", + "5.4.0-1084.92~18.04.1", + "5.4.0-1086.94~18.04.1", + "5.4.0-1087.95~18.04.1", + "5.4.0-1089.97~18.04.1", + "5.4.0-1092.101~18.04.1", + "5.4.0-1093.102~18.04.1", + "5.4.0-1096.105~18.04.2", + "5.4.0-1097.106~18.04.1", + "5.4.0-1098.107~18.04.1", + "5.4.0-1100.109~18.04.1", + "5.4.0-1101.110~18.04.1", + "5.4.0-1102.111~18.04.2", + "5.4.0-1103.112~18.04.1", + "5.4.0-1104.113~18.04.1", + "5.4.0-1105.114~18.04.1", + "5.4.0-1106.115~18.04.1", + "5.4.0-1107.116~18.04.1", + "5.4.0-1108.117~18.04.1", + "5.4.0-1109.118~18.04.1", + "5.4.0-1110.119~18.04.1", + "5.4.0-1111.120~18.04.1", + "5.4.0-1112.121~18.04.1", + "5.4.0-1113.122~18.04.1", + "5.4.0-1115.124~18.04.1", + "5.4.0-1116.125~18.04.1", + "5.4.0-1117.126~18.04.1", + "5.4.0-1118.127~18.04.1", + "5.4.0-1120.129~18.04.1", + "5.4.0-1121.130~18.04.1", + "5.4.0-1122.131~18.04.1", + "5.4.0-1123.132~18.04.1", + "5.4.0-1124.133~18.04.1", + "5.4.0-1125.134~18.04.1", + "5.4.0-1126.135~18.04.1", + "5.4.0-1127.136~18.04.1", + "5.4.0-1128.137~18.04.1", + "5.4.0-1129.138~18.04.1", + "5.4.0-1130.139~18.04.1", + "5.4.0-1132.141~18.04.1", + "5.4.0-1133.142~18.04.1", + "5.4.0-1134.143~18.04.1", + "5.4.0-1135.144~18.04.1", + "5.4.0-1136.145~18.04.1", + "5.4.0-1137.146~18.04.1", + "5.4.0-1138.147~18.04.1", + "5.4.0-1139.148~18.04.1", + "5.4.0-1140.149~18.04.1", + "5.4.0-1141.150~18.04.1", + "5.4.0-1142.151~18.04.1", + "5.4.0-1143.152~18.04.1", + "5.4.0-1145.154~18.04.1", + "5.4.0-1147.156~18.04.1", + "5.4.0-1148.157~18.04.1", + "5.4.0-1149.158~18.04.1", + "5.4.0-1150.159~18.04.1", + "5.4.0-1151.160~18.04.1", + "5.4.0-1152.161~18.04.1", + "5.4.0-1153.162~18.04.1", + "5.4.0-1154.163~18.04.1", + "5.4.0-1155.164~18.04.1", + "5.4.0-1156.165~18.04.1", + "5.4.0-1157.166~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-gcp-5.4-headers-5.4.0-1157", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-gcp-5.4-tools-5.4.0-1157", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gke-4.15", + "purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1079.84?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1030.32", + "4.15.0-1032.34", + "4.15.0-1033.35", + "4.15.0-1034.36", + "4.15.0-1036.38", + "4.15.0-1037.39", + "4.15.0-1040.42", + "4.15.0-1041.43", + "4.15.0-1042.44", + "4.15.0-1044.46", + "4.15.0-1045.48", + "4.15.0-1046.49", + "4.15.0-1048.51", + "4.15.0-1049.52", + "4.15.0-1050.53", + "4.15.0-1052.55", + "4.15.0-1055.58", + "4.15.0-1057.60", + "4.15.0-1058.61", + "4.15.0-1059.62", + "4.15.0-1063.66", + "4.15.0-1064.67", + "4.15.0-1066.69", + "4.15.0-1067.70", + "4.15.0-1069.72", + "4.15.0-1070.73", + "4.15.0-1072.76", + "4.15.0-1073.78", + "4.15.0-1074.79", + "4.15.0-1076.81", + "4.15.0-1077.82", + "4.15.0-1078.83", + "4.15.0-1079.84" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-gke-4.15-headers-4.15.0-1079", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-gke-4.15-tools-4.15.0-1079", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-headers-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-modules-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + }, + { + "binary_name": "linux-tools-4.15.0-1079-gke", + "binary_version": "4.15.0-1079.84" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gke-5.4", + "purl": "pkg:deb/ubuntu/linux-gke-5.4@5.4.0-1080.86~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1025.25~18.04.1", + "5.4.0-1027.28~18.04.1", + "5.4.0-1029.31~18.04.1", + "5.4.0-1030.32~18.04.1", + "5.4.0-1032.34~18.04.1", + "5.4.0-1033.35~18.04.1", + "5.4.0-1035.37~18.04.1", + "5.4.0-1036.38~18.04.1", + "5.4.0-1037.39~18.04.1", + "5.4.0-1039.41~18.04.1", + "5.4.0-1040.42~18.04.1", + "5.4.0-1042.44~18.04.1", + "5.4.0-1043.45~18.04.1", + "5.4.0-1044.46~18.04.1", + "5.4.0-1046.48~18.04.1", + "5.4.0-1049.52~18.04.1", + "5.4.0-1051.54~18.04.1", + "5.4.0-1052.55~18.04.1", + "5.4.0-1053.56~18.04.1", + "5.4.0-1054.57~18.04.1", + "5.4.0-1055.58~18.04.1", + "5.4.0-1056.59~18.04.1", + "5.4.0-1057.60~18.04.1", + "5.4.0-1059.62~18.04.1", + "5.4.0-1061.64~18.04.1", + "5.4.0-1062.65~18.04.1", + "5.4.0-1063.66~18.04.1", + "5.4.0-1065.68~18.04.1", + "5.4.0-1066.69~18.04.1", + "5.4.0-1067.70~18.04.1", + "5.4.0-1068.71~18.04.1", + "5.4.0-1071.76~18.04.3", + "5.4.0-1072.77~18.04.1", + "5.4.0-1074.79~18.04.1", + "5.4.0-1076.82~18.04.1", + "5.4.0-1078.84~18.04.1", + "5.4.0-1080.86~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-gke-5.4-headers-5.4.0-1080", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-gke-5.4-tools-5.4.0-1080", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1080-gke", + "binary_version": "5.4.0-1080.86~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-gkeop-5.4", + "purl": "pkg:deb/ubuntu/linux-gkeop-5.4@5.4.0-1051.54~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1001.1", + "5.4.0-1003.3", + "5.4.0-1004.5", + "5.4.0-1005.6", + "5.4.0-1007.8~18.04.1", + "5.4.0-1008.9~18.04.1", + "5.4.0-1009.10~18.04.1", + "5.4.0-1010.11~18.04.1", + "5.4.0-1011.12~18.04.2", + "5.4.0-1012.13~18.04.1", + "5.4.0-1013.14~18.04.1", + "5.4.0-1014.15~18.04.1", + "5.4.0-1015.16~18.04.1", + "5.4.0-1016.17~18.04.1", + "5.4.0-1018.19~18.04.1", + "5.4.0-1021.22~18.04.1", + "5.4.0-1022.23~18.04.1", + "5.4.0-1023.24~18.04.1", + "5.4.0-1024.25~18.04.1", + "5.4.0-1025.26~18.04.1", + "5.4.0-1026.27~18.04.1", + "5.4.0-1027.28~18.04.1", + "5.4.0-1029.30~18.04.2", + "5.4.0-1031.32~18.04.1", + "5.4.0-1032.33~18.04.1", + "5.4.0-1033.34~18.04.1", + "5.4.0-1034.35~18.04.1", + "5.4.0-1036.37~18.04.1", + "5.4.0-1037.38~18.04.1", + "5.4.0-1038.39~18.04.1", + "5.4.0-1039.40~18.04.1", + "5.4.0-1040.41~18.04.1", + "5.4.0-1043.44~18.04.1", + "5.4.0-1046.48~18.04.1", + "5.4.0-1048.51~18.04.1", + "5.4.0-1049.52~18.04.1", + "5.4.0-1051.54~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-gkeop-5.4-cloud-tools-5.4.0-1051", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-gkeop-5.4-headers-5.4.0-1051", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-gkeop-5.4-source-5.4.0", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-gkeop-5.4-tools-5.4.0-1051", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1051-gkeop", + "binary_version": "5.4.0-1051.54~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-hwe", + "purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.18.0-13.14~18.04.1", + "4.18.0-14.15~18.04.1", + "4.18.0-15.16~18.04.1", + "4.18.0-16.17~18.04.1", + "4.18.0-17.18~18.04.1", + "4.18.0-18.19~18.04.1", + "4.18.0-20.21~18.04.1", + "4.18.0-21.22~18.04.1", + "4.18.0-22.23~18.04.1", + "4.18.0-24.25~18.04.1", + "4.18.0-25.26~18.04.1", + "5.0.0-23.24~18.04.1", + "5.0.0-25.26~18.04.1", + "5.0.0-27.28~18.04.1", + "5.0.0-29.31~18.04.1", + "5.0.0-31.33~18.04.1", + "5.0.0-32.34~18.04.2", + "5.0.0-35.38~18.04.1", + "5.0.0-36.39~18.04.1", + "5.0.0-37.40~18.04.1", + "5.3.0-26.28~18.04.1", + "5.3.0-28.30~18.04.1", + "5.3.0-40.32~18.04.1", + "5.3.0-42.34~18.04.1", + "5.3.0-45.37~18.04.1", + "5.3.0-46.38~18.04.1", + "5.3.0-51.44~18.04.2", + "5.3.0-53.47~18.04.1", + "5.3.0-59.53~18.04.1", + "5.3.0-61.55~18.04.1", + "5.3.0-62.56~18.04.1", + "5.3.0-64.58~18.04.1", + "5.3.0-65.59", + "5.3.0-66.60", + "5.3.0-67.61", + "5.3.0-68.63", + "5.3.0-69.65", + "5.3.0-70.66", + "5.3.0-72.68", + "5.3.0-73.69", + "5.3.0-74.70", + "5.3.0-75.71", + "5.3.0-76.72" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "crypto-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fat-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "firewire-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "floppy-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fs-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "input-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "ipmi-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "kernel-image-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-buildinfo-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-buildinfo-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-headers-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-headers-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-cloud-tools-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-headers-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-tools-5.3.0-76", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-hwe-udebs-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-modules-extra-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-source-5.3.0", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-tools-5.3.0-76-generic", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "linux-tools-5.3.0-76-lowlatency", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "md-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "message-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "mouse-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "multipath-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nfs-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-shared-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "nic-usb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "parport-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pata-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pcmcia-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "plip-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "ppp-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "sata-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "scsi-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "serial-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "storage-core-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "usb-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "virtio-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + }, + { + "binary_name": "vlan-modules-5.3.0-76-generic-di", + "binary_version": "5.3.0-76.72" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-hwe-5.4", + "purl": "pkg:deb/ubuntu/linux-hwe-5.4@5.4.0-225.245~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-37.41~18.04.1", + "5.4.0-39.43~18.04.1", + "5.4.0-40.44~18.04.1", + "5.4.0-42.46~18.04.1", + "5.4.0-45.49~18.04.2", + "5.4.0-47.51~18.04.1", + "5.4.0-48.52~18.04.1", + "5.4.0-51.56~18.04.1", + "5.4.0-52.57~18.04.1", + "5.4.0-53.59~18.04.1", + "5.4.0-54.60~18.04.1", + "5.4.0-56.62~18.04.1", + "5.4.0-58.64~18.04.1", + "5.4.0-59.65~18.04.1", + "5.4.0-60.67~18.04.1", + "5.4.0-62.70~18.04.1", + "5.4.0-64.72~18.04.1", + "5.4.0-65.73~18.04.1", + "5.4.0-66.74~18.04.2", + "5.4.0-67.75~18.04.1", + "5.4.0-70.78~18.04.1", + "5.4.0-71.79~18.04.1", + "5.4.0-72.80~18.04.1", + "5.4.0-73.82~18.04.1", + "5.4.0-74.83~18.04.1", + "5.4.0-77.86~18.04.1", + "5.4.0-80.90~18.04.1", + "5.4.0-81.91~18.04.1", + "5.4.0-84.94~18.04.1", + "5.4.0-86.97~18.04.1", + "5.4.0-87.98~18.04.1", + "5.4.0-89.100~18.04.1", + "5.4.0-90.101~18.04.1", + "5.4.0-91.102~18.04.1", + "5.4.0-92.103~18.04.2", + "5.4.0-94.106~18.04.1", + "5.4.0-96.109~18.04.1", + "5.4.0-97.110~18.04.1", + "5.4.0-99.112~18.04.1", + "5.4.0-100.113~18.04.1", + "5.4.0-104.118~18.04.1", + "5.4.0-105.119~18.04.1", + "5.4.0-107.121~18.04.1", + "5.4.0-109.123~18.04.1", + "5.4.0-110.124~18.04.1", + "5.4.0-113.127~18.04.1", + "5.4.0-117.132~18.04.1", + "5.4.0-120.136~18.04.1", + "5.4.0-121.137~18.04.1", + "5.4.0-122.138~18.04.1", + "5.4.0-124.140~18.04.1", + "5.4.0-125.141~18.04.1", + "5.4.0-126.142~18.04.1", + "5.4.0-128.144~18.04.1", + "5.4.0-131.147~18.04.1", + "5.4.0-132.148~18.04.1", + "5.4.0-133.149~18.04.1", + "5.4.0-135.152~18.04.2", + "5.4.0-136.153~18.04.1", + "5.4.0-137.154~18.04.1", + "5.4.0-139.156~18.04.1", + "5.4.0-144.161~18.04.1", + "5.4.0-146.163~18.04.1", + "5.4.0-147.164~18.04.1", + "5.4.0-148.165~18.04.1", + "5.4.0-149.166~18.04.1", + "5.4.0-150.167~18.04.1", + "5.4.0-152.169~18.04.1", + "5.4.0-153.170~18.04.1", + "5.4.0-155.172~18.04.1", + "5.4.0-156.173~18.04.1", + "5.4.0-159.176~18.04.1", + "5.4.0-162.179~18.04.1", + "5.4.0-163.180~18.04.1", + "5.4.0-164.181~18.04.1", + "5.4.0-165.182~18.04.1", + "5.4.0-166.183~18.04.2", + "5.4.0-167.184~18.04.1", + "5.4.0-169.187~18.04.1", + "5.4.0-170.188~18.04.1", + "5.4.0-171.189~18.04.1", + "5.4.0-172.190~18.04.1", + "5.4.0-173.191~18.04.1", + "5.4.0-174.193~18.04.1", + "5.4.0-175.195~18.04.1", + "5.4.0-177.197~18.04.1", + "5.4.0-181.201~18.04.1", + "5.4.0-182.202~18.04.1", + "5.4.0-186.206~18.04.1", + "5.4.0-187.207~18.04.1", + "5.4.0-189.209~18.04.1", + "5.4.0-190.210~18.04.1", + "5.4.0-192.212~18.04.1", + "5.4.0-193.213~18.04.1", + "5.4.0-195.215~18.04.1", + "5.4.0-196.216~18.04.1", + "5.4.0-198.218~18.04.1", + "5.4.0-200.220~18.04.1", + "5.4.0-202.222~18.04.1", + "5.4.0-204.224~18.04.1", + "5.4.0-205.225~18.04.1", + "5.4.0-208.228~18.04.1", + "5.4.0-211.231~18.04.1", + "5.4.0-212.232~18.04.1", + "5.4.0-214.234~18.04.1", + "5.4.0-215.235~18.04.1", + "5.4.0-216.236~18.04.1", + "5.4.0-218.238~18.04.1", + "5.4.0-219.239~18.04.1", + "5.4.0-220.240~18.04.1", + "5.4.0-221.241~18.04.1", + "5.4.0-222.242~18.04.1", + "5.4.0-223.243~18.04.1", + "5.4.0-224.244~18.04.1", + "5.4.0-225.245~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "crypto-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "dasd-extra-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "dasd-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "fat-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "fb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "firewire-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "floppy-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "fs-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "input-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "ipmi-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "kernel-image-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-cloud-tools-5.4.0-225", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-cloud-tools-common", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-headers-5.4.0-225", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-source-5.4.0", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-tools-5.4.0-225", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-tools-common", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-hwe-5.4-udebs-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-225-generic", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "md-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "message-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "mouse-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "multipath-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "nfs-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "nic-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "nic-shared-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "nic-usb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "parport-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "pata-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "pcmcia-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "plip-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "ppp-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "sata-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "scsi-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "serial-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "storage-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "usb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "virtio-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + }, + { + "binary_name": "vlan-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-hwe-edge", + "purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-15.16~18.04.1", + "5.0.0-16.17~18.04.1", + "5.0.0-17.18~18.04.1", + "5.0.0-19.20~18.04.1", + "5.0.0-20.21~18.04.1", + "5.3.0-19.20~18.04.2", + "5.3.0-22.24~18.04.1", + "5.3.0-23.25~18.04.1", + "5.3.0-23.25~18.04.2", + "5.3.0-24.26~18.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "block-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "crypto-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "crypto-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "dasd-extra-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "dasd-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fat-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fat-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "firewire-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "floppy-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "input-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "input-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ipmi-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "kernel-image-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "kernel-image-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-buildinfo-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-headers-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-tools-5.3.0-24", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-hwe-edge-udebs-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-modules-extra-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-source-5.3.0", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-generic", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-generic-lpae", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "linux-tools-5.3.0-24-lowlatency", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "md-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "md-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "message-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "mouse-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "mouse-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "multipath-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "multipath-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nfs-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nfs-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-shared-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-usb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "parport-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "parport-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pata-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pcmcia-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "plip-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "plip-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ppp-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "ppp-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "sata-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "sata-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "scsi-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "scsi-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "serial-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "storage-core-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "usb-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "usb-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "virtio-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "vlan-modules-5.3.0-24-generic-di", + "binary_version": "5.3.0-24.26~18.04.2" + }, + { + "binary_name": "vlan-modules-5.3.0-24-generic-lpae-di", + "binary_version": "5.3.0-24.26~18.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-ibm-5.4", + "purl": "pkg:deb/ubuntu/linux-ibm-5.4@5.4.0-1100.105~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1010.11~18.04.2", + "5.4.0-1012.13~18.04.1", + "5.4.0-1014.15~18.04.1", + "5.4.0-1015.16~18.04.1", + "5.4.0-1017.19~18.04.1", + "5.4.0-1018.20~18.04.1", + "5.4.0-1019.21~18.04.1", + "5.4.0-1020.22~18.04.1", + "5.4.0-1021.23~18.04.1", + "5.4.0-1023.25~18.04.1", + "5.4.0-1026.29~18.04.1", + "5.4.0-1028.32~18.04.1", + "5.4.0-1029.33~18.04.1", + "5.4.0-1031.35~18.04.1", + "5.4.0-1032.36~18.04.1", + "5.4.0-1033.37~18.04.1", + "5.4.0-1034.38~18.04.1", + "5.4.0-1036.41~18.04.1", + "5.4.0-1037.42~18.04.1", + "5.4.0-1040.45~18.04.2", + "5.4.0-1041.46~18.04.1", + "5.4.0-1042.47~18.04.1", + "5.4.0-1044.49~18.04.1", + "5.4.0-1045.50~18.04.1", + "5.4.0-1046.51~18.04.1", + "5.4.0-1047.52~18.04.1", + "5.4.0-1048.53~18.04.1", + "5.4.0-1049.54~18.04.1", + "5.4.0-1050.55~18.04.1", + "5.4.0-1051.56~18.04.1", + "5.4.0-1052.57~18.04.1", + "5.4.0-1053.58~18.04.1", + "5.4.0-1054.59~18.04.1", + "5.4.0-1056.61~18.04.1", + "5.4.0-1057.62~18.04.1", + "5.4.0-1058.63~18.04.1", + "5.4.0-1059.64~18.04.1", + "5.4.0-1060.65~18.04.1", + "5.4.0-1061.66~18.04.1", + "5.4.0-1063.68~18.04.1", + "5.4.0-1064.69~18.04.1", + "5.4.0-1065.70~18.04.1", + "5.4.0-1066.71~18.04.1", + "5.4.0-1067.72~18.04.1", + "5.4.0-1068.73~18.04.1", + "5.4.0-1069.74~18.04.1", + "5.4.0-1070.75~18.04.1", + "5.4.0-1071.76~18.04.1", + "5.4.0-1072.77~18.04.1", + "5.4.0-1073.78~18.04.1", + "5.4.0-1074.79~18.04.1", + "5.4.0-1075.80~18.04.1", + "5.4.0-1076.81~18.04.1", + "5.4.0-1077.82~18.04.1", + "5.4.0-1078.83~18.04.1", + "5.4.0-1079.84~18.04.1", + "5.4.0-1080.85~18.04.1", + "5.4.0-1081.86~18.04.1", + "5.4.0-1082.87~18.04.1", + "5.4.0-1083.88~18.04.1", + "5.4.0-1084.89~18.04.1", + "5.4.0-1085.90~18.04.1", + "5.4.0-1086.91~18.04.1", + "5.4.0-1090.95~18.04.1", + "5.4.0-1092.97~18.04.1", + "5.4.0-1093.98~18.04.1", + "5.4.0-1094.99~18.04.1", + "5.4.0-1095.100~18.04.1", + "5.4.0-1096.101~18.04.1", + "5.4.0-1097.102~18.04.1", + "5.4.0-1098.103~18.04.1", + "5.4.0-1099.104~18.04.1", + "5.4.0-1100.105~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-ibm-5.4-cloud-tools-common", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-ibm-5.4-headers-5.4.0-1100", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-ibm-5.4-source-5.4.0", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-ibm-5.4-tools-5.4.0-1100", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-ibm-5.4-tools-common", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@4.15.0-1170.175?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2", + "4.15.0-1003.3", + "4.15.0-1004.4", + "4.15.0-1006.6", + "4.15.0-1008.8", + "4.15.0-1010.10", + "4.15.0-1011.11", + "4.15.0-1012.12", + "4.15.0-1016.16", + "4.15.0-1017.17", + "4.15.0-1019.19", + "4.15.0-1020.20", + "4.15.0-1021.21", + "4.15.0-1023.23", + "4.15.0-1025.25", + "4.15.0-1026.26", + "4.15.0-1027.27", + "4.15.0-1028.28", + "4.15.0-1029.29", + "4.15.0-1030.30", + "4.15.0-1031.31", + "4.15.0-1032.32", + "4.15.0-1034.34", + "4.15.0-1035.35", + "4.15.0-1036.36", + "4.15.0-1038.38", + "4.15.0-1039.39", + "4.15.0-1042.42", + "4.15.0-1043.43", + "4.15.0-1044.44", + "4.15.0-1046.46", + "4.15.0-1047.47", + "4.15.0-1048.48", + "4.15.0-1050.50", + "4.15.0-1051.51", + "4.15.0-1052.52", + "4.15.0-1053.53", + "4.15.0-1056.57", + "4.15.0-1058.59", + "4.15.0-1059.60", + "4.15.0-1060.61", + "4.15.0-1067.68", + "4.15.0-1069.70", + "4.15.0-1071.72", + "4.15.0-1072.73", + "4.15.0-1074.75", + "4.15.0-1075.76", + "4.15.0-1077.79", + "4.15.0-1079.81", + "4.15.0-1081.83", + "4.15.0-1082.84", + "4.15.0-1084.86", + "4.15.0-1085.87", + "4.15.0-1086.88", + "4.15.0-1087.89", + "4.15.0-1088.90", + "4.15.0-1089.91", + "4.15.0-1090.92", + "4.15.0-1091.93", + "4.15.0-1092.94", + "4.15.0-1094.96", + "4.15.0-1097.99", + "4.15.0-1098.100", + "4.15.0-1099.101", + "4.15.0-1100.102", + "4.15.0-1101.103", + "4.15.0-1102.104", + "4.15.0-1103.105", + "4.15.0-1105.107", + "4.15.0-1106.108", + "4.15.0-1107.109", + "4.15.0-1109.112", + "4.15.0-1110.113", + "4.15.0-1112.115", + "4.15.0-1113.116", + "4.15.0-1114.117", + "4.15.0-1116.119", + "4.15.0-1119.123", + "4.15.0-1122.127", + "4.15.0-1123.128", + "4.15.0-1125.130", + "4.15.0-1126.131", + "4.15.0-1127.132", + "4.15.0-1128.133", + "4.15.0-1129.134", + "4.15.0-1132.137", + "4.15.0-1133.138", + "4.15.0-1134.139", + "4.15.0-1135.140", + "4.15.0-1136.141", + "4.15.0-1137.142", + "4.15.0-1138.143", + "4.15.0-1139.144", + "4.15.0-1140.145", + "4.15.0-1141.146", + "4.15.0-1142.147", + "4.15.0-1143.148", + "4.15.0-1144.149", + "4.15.0-1145.150", + "4.15.0-1146.151", + "4.15.0-1147.152", + "4.15.0-1148.153", + "4.15.0-1149.154", + "4.15.0-1150.155", + "4.15.0-1151.156", + "4.15.0-1152.157", + "4.15.0-1153.158", + "4.15.0-1154.159", + "4.15.0-1155.160", + "4.15.0-1156.161", + "4.15.0-1157.162", + "4.15.0-1158.163", + "4.15.0-1159.164", + "4.15.0-1160.165", + "4.15.0-1161.166", + "4.15.0-1162.167", + "4.15.0-1163.168", + "4.15.0-1164.169", + "4.15.0-1165.170", + "4.15.0-1166.171", + "4.15.0-1167.172", + "4.15.0-1168.173", + "4.15.0-1169.174", + "4.15.0-1170.175" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1170-kvm", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-headers-4.15.0-1170-kvm", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-image-4.15.0-1170-kvm", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-kvm-headers-4.15.0-1170", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-kvm-tools-4.15.0-1170", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-modules-4.15.0-1170-kvm", + "binary_version": "4.15.0-1170.175" + }, + { + "binary_name": "linux-tools-4.15.0-1170-kvm", + "binary_version": "4.15.0-1170.175" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oem", + "purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1103.114?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.3", + "4.15.0-1004.5", + "4.15.0-1006.9", + "4.15.0-1008.11", + "4.15.0-1009.12", + "4.15.0-1012.15", + "4.15.0-1013.16", + "4.15.0-1015.18", + "4.15.0-1017.20", + "4.15.0-1018.21", + "4.15.0-1021.24", + "4.15.0-1024.29", + "4.15.0-1026.31", + "4.15.0-1028.33", + "4.15.0-1030.35", + "4.15.0-1033.38", + "4.15.0-1034.39", + "4.15.0-1035.40", + "4.15.0-1036.41", + "4.15.0-1038.43", + "4.15.0-1039.44", + "4.15.0-1043.48", + "4.15.0-1045.50", + "4.15.0-1050.57", + "4.15.0-1056.65", + "4.15.0-1057.66", + "4.15.0-1059.68", + "4.15.0-1063.72", + "4.15.0-1064.73", + "4.15.0-1065.75", + "4.15.0-1066.76", + "4.15.0-1067.77", + "4.15.0-1069.79", + "4.15.0-1073.83", + "4.15.0-1076.86", + "4.15.0-1079.89", + "4.15.0-1080.90", + "4.15.0-1081.91", + "4.15.0-1087.97", + "4.15.0-1090.100", + "4.15.0-1091.101", + "4.15.0-1093.103", + "4.15.0-1094.104", + "4.15.0-1096.106", + "4.15.0-1097.107", + "4.15.0-1099.109", + "4.15.0-1100.110", + "4.15.0-1101.112", + "4.15.0-1102.113", + "4.15.0-1103.114" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "crypto-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "fat-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "fb-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "firewire-core-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "floppy-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "fs-core-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "fs-secondary-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "input-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "ipmi-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "irda-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "kernel-image-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1103-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-headers-4.15.0-1103-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1103-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-modules-4.15.0-1103-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-oem-headers-4.15.0-1103", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-oem-tools-4.15.0-1103", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-tools-4.15.0-1103-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "linux-udebs-oem", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "md-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "message-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "mouse-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "multipath-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "nfs-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "nic-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "nic-pcmcia-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "nic-shared-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "nic-usb-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "parport-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "pata-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "pcmcia-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "pcmcia-storage-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "plip-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "ppp-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "sata-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "scsi-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "serial-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "storage-core-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "usb-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "virtio-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + }, + { + "binary_name": "vlan-modules-4.15.0-1103-oem-di", + "binary_version": "4.15.0-1103.114" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1150.161?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1007.9", + "4.15.0-1008.10", + "4.15.0-1009.11", + "4.15.0-1010.12", + "4.15.0-1011.13", + "4.15.0-1013.15", + "4.15.0-1014.16", + "4.15.0-1015.17", + "4.15.0-1017.19", + "4.15.0-1018.20", + "4.15.0-1021.23", + "4.15.0-1022.25", + "4.15.0-1023.26", + "4.15.0-1025.28", + "4.15.0-1026.29", + "4.15.0-1027.30", + "4.15.0-1029.32", + "4.15.0-1030.33", + "4.15.0-1031.34", + "4.15.0-1033.36", + "4.15.0-1035.39", + "4.15.0-1037.41", + "4.15.0-1038.42", + "4.15.0-1039.43", + "4.15.0-1045.49", + "4.15.0-1047.51", + "4.15.0-1048.52", + "4.15.0-1050.54", + "4.15.0-1051.55", + "4.15.0-1053.57", + "4.15.0-1054.58", + "4.15.0-1057.62", + "4.15.0-1058.64", + "4.15.0-1059.65", + "4.15.0-1061.67", + "4.15.0-1062.68", + "4.15.0-1063.70", + "4.15.0-1064.71", + "4.15.0-1065.73", + "4.15.0-1066.74", + "4.15.0-1067.75", + "4.15.0-1068.76", + "4.15.0-1069.77", + "4.15.0-1070.78", + "4.15.0-1071.79", + "4.15.0-1072.80", + "4.15.0-1075.83", + "4.15.0-1078.86", + "4.15.0-1079.87", + "4.15.0-1080.88", + "4.15.0-1081.89", + "4.15.0-1082.90", + "4.15.0-1083.91", + "4.15.0-1084.92", + "4.15.0-1085.93", + "4.15.0-1086.94", + "4.15.0-1087.95", + "4.15.0-1089.98", + "4.15.0-1090.99", + "4.15.0-1091.100", + "4.15.0-1092.101", + "4.15.0-1093.102", + "4.15.0-1095.104", + "4.15.0-1098.108", + "4.15.0-1101.112", + "4.15.0-1102.113", + "4.15.0-1104.115", + "4.15.0-1105.116", + "4.15.0-1106.117", + "4.15.0-1107.118", + "4.15.0-1108.119", + "4.15.0-1111.122", + "4.15.0-1112.123", + "4.15.0-1113.124", + "4.15.0-1114.125", + "4.15.0-1115.126", + "4.15.0-1116.127", + "4.15.0-1117.128", + "4.15.0-1118.129", + "4.15.0-1119.130", + "4.15.0-1120.131", + "4.15.0-1121.132", + "4.15.0-1122.133", + "4.15.0-1123.134", + "4.15.0-1124.135", + "4.15.0-1125.136", + "4.15.0-1126.137", + "4.15.0-1127.138", + "4.15.0-1128.139", + "4.15.0-1129.140", + "4.15.0-1130.141", + "4.15.0-1131.142", + "4.15.0-1132.143", + "4.15.0-1133.144", + "4.15.0-1134.145", + "4.15.0-1135.146", + "4.15.0-1136.147", + "4.15.0-1137.148", + "4.15.0-1138.149", + "4.15.0-1139.150", + "4.15.0-1140.151", + "4.15.0-1141.152", + "4.15.0-1142.153", + "4.15.0-1143.154", + "4.15.0-1144.155", + "4.15.0-1145.156", + "4.15.0-1146.157", + "4.15.0-1147.158", + "4.15.0-1148.159", + "4.15.0-1149.160", + "4.15.0-1150.161" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-headers-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-modules-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-oracle-headers-4.15.0-1150", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-oracle-tools-4.15.0-1150", + "binary_version": "4.15.0-1150.161" + }, + { + "binary_name": "linux-tools-4.15.0-1150-oracle", + "binary_version": "4.15.0-1150.161" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oracle-5.0", + "purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.0.0-1007.12~18.04.1", + "5.0.0-1008.13~18.04.1", + "5.0.0-1009.14~18.04.1", + "5.0.0-1010.15~18.04.1", + "5.0.0-1011.16", + "5.0.0-1013.18", + "5.0.0-1014.19" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-headers-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-image-unsigned-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-modules-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-modules-extra-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-oracle-5.0-headers-5.0.0-1014", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-oracle-5.0-tools-5.0.0-1014", + "binary_version": "5.0.0-1014.19" + }, + { + "binary_name": "linux-tools-5.0.0-1014-oracle", + "binary_version": "5.0.0-1014.19" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:18.04:LTS", + "name": "linux-oracle-5.3", + "purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source&distro=bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1011.12~18.04.1", + "5.3.0-1013.14~18.04.1", + "5.3.0-1014.15~18.04.1", + "5.3.0-1016.18~18.04.1", + "5.3.0-1018.20~18.04.1", + "5.3.0-1024.26~18.04.1", + "5.3.0-1027.29~18.04.1", + "5.3.0-1028.30~18.04.1", + "5.3.0-1030.32~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-headers-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-modules-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-oracle-5.3-headers-5.3.0-1030", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-oracle-5.3-tools-5.3.0-1030", + "binary_version": "5.3.0-1030.32~18.04.1" + }, + { + "binary_name": "linux-tools-5.3.0-1030-oracle", + "binary_version": "5.3.0-1030.32~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-oracle-5.4", + "purl": "pkg:deb/ubuntu/linux-oracle-5.4@5.4.0-1151.161~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1019.19~18.04.1", + "5.4.0-1021.21~18.04.1", + "5.4.0-1022.22~18.04.1", + "5.4.0-1024.24~18.04.1", + "5.4.0-1025.25~18.04.1", + "5.4.0-1028.29~18.04.1", + "5.4.0-1029.31~18.04.1", + "5.4.0-1030.32~18.04.1", + "5.4.0-1033.35", + "5.4.0-1034.36~18.04.1", + "5.4.0-1035.38~18.04.1", + "5.4.0-1037.40~18.04.1", + "5.4.0-1038.41~18.04.1", + "5.4.0-1039.42~18.04.1", + "5.4.0-1041.44~18.04.1", + "5.4.0-1042.45~18.04.1", + "5.4.0-1043.46~18.04.1", + "5.4.0-1044.47~18.04.1", + "5.4.0-1046.50~18.04.2", + "5.4.0-1048.52~18.04.1", + "5.4.0-1049.53~18.04.1", + "5.4.0-1052.56~18.04.1", + "5.4.0-1053.57~18.04.1", + "5.4.0-1054.58~18.04.1", + "5.4.0-1055.59~18.04.1", + "5.4.0-1056.60~18.04.1", + "5.4.0-1057.61~18.04.1", + "5.4.0-1058.62~18.04.1", + "5.4.0-1059.63~18.04.1", + "5.4.0-1061.65~18.04.1", + "5.4.0-1062.66~18.04.1", + "5.4.0-1063.67~18.04.1", + "5.4.0-1064.68~18.04.1", + "5.4.0-1066.71~18.04.1", + "5.4.0-1067.72~18.04.1", + "5.4.0-1069.75~18.04.1", + "5.4.0-1070.76~18.04.1", + "5.4.0-1071.77~18.04.1", + "5.4.0-1073.79~18.04.1", + "5.4.0-1076.83~18.04.1", + "5.4.0-1078.86~18.04.1", + "5.4.0-1079.87~18.04.1", + "5.4.0-1081.89~18.04.1", + "5.4.0-1082.90~18.04.1", + "5.4.0-1083.91~18.04.1", + "5.4.0-1084.92~18.04.1", + "5.4.0-1086.95~18.04.1", + "5.4.0-1087.96~18.04.1", + "5.4.0-1090.99~18.04.2", + "5.4.0-1091.100~18.04.1", + "5.4.0-1092.101~18.04.1", + "5.4.0-1093.102~18.04.1", + "5.4.0-1094.103~18.04.1", + "5.4.0-1098.107~18.04.1", + "5.4.0-1099.108~18.04.1", + "5.4.0-1100.109~18.04.1", + "5.4.0-1101.110~18.04.1", + "5.4.0-1102.111~18.04.1", + "5.4.0-1103.112~18.04.1", + "5.4.0-1104.113~18.04.1", + "5.4.0-1105.114~18.04.1", + "5.4.0-1106.115~18.04.1", + "5.4.0-1107.116~18.04.1", + "5.4.0-1108.117~18.04.1", + "5.4.0-1109.118~18.04.1", + "5.4.0-1110.119~18.04.1", + "5.4.0-1111.120~18.04.1", + "5.4.0-1112.121~18.04.4", + "5.4.0-1113.122~18.04.1", + "5.4.0-1115.124~18.04.1", + "5.4.0-1116.125~18.04.1", + "5.4.0-1117.126~18.04.1", + "5.4.0-1118.127~18.04.1", + "5.4.0-1119.128~18.04.1", + "5.4.0-1120.129~18.04.1", + "5.4.0-1121.130~18.04.1", + "5.4.0-1122.131~18.04.1", + "5.4.0-1123.132~18.04.1", + "5.4.0-1124.133~18.04.1", + "5.4.0-1125.134~18.04.1", + "5.4.0-1126.135~18.04.1", + "5.4.0-1127.136~18.04.1", + "5.4.0-1129.138~18.04.1", + "5.4.0-1130.139~18.04.1", + "5.4.0-1131.140~18.04.1", + "5.4.0-1132.141~18.04.1", + "5.4.0-1133.142~18.04.1", + "5.4.0-1134.143~18.04.1", + "5.4.0-1135.144~18.04.1", + "5.4.0-1136.145~18.04.1", + "5.4.0-1137.146~18.04.1", + "5.4.0-1138.147~18.04.1", + "5.4.0-1140.149~18.04.1", + "5.4.0-1141.151~18.04.1", + "5.4.0-1142.152~18.04.1", + "5.4.0-1143.153~18.04.1", + "5.4.0-1144.154~18.04.1", + "5.4.0-1145.155~18.04.1", + "5.4.0-1146.156~18.04.1", + "5.4.0-1148.158~18.04.1", + "5.4.0-1149.159~18.04.1", + "5.4.0-1150.160~18.04.1", + "5.4.0-1151.161~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-oracle-5.4-headers-5.4.0-1151", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-oracle-5.4-tools-5.4.0-1151", + "binary_version": "5.4.0-1151.161~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:18.04:LTS", + "name": "linux-raspi-5.4", + "purl": "pkg:deb/ubuntu/linux-raspi-5.4@5.4.0-1136.149~18.04.1?arch=source&distro=esm-infra/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1013.13~18.04.1", + "5.4.0-1015.15~18.04.1", + "5.4.0-1016.17~18.04.1", + "5.4.0-1018.20~18.04.1", + "5.4.0-1019.21~18.04.1", + "5.4.0-1021.24~18.04.1", + "5.4.0-1022.25~18.04.1", + "5.4.0-1023.26~18.04.1", + "5.4.0-1025.28~18.04.1", + "5.4.0-1026.29~18.04.1", + "5.4.0-1028.31~18.04.1", + "5.4.0-1029.32~18.04.1", + "5.4.0-1030.33~18.04.1", + "5.4.0-1032.35~18.04.1", + "5.4.0-1033.36~18.04.1", + "5.4.0-1034.37~18.04.1", + "5.4.0-1035.38~18.04.1", + "5.4.0-1036.39~18.04.1", + "5.4.0-1038.41~18.04.1", + "5.4.0-1041.45~18.04.1", + "5.4.0-1042.46~18.04.3", + "5.4.0-1043.47~18.04.1", + "5.4.0-1044.48~18.04.1", + "5.4.0-1045.49~18.04.1", + "5.4.0-1046.50~18.04.1", + "5.4.0-1047.52~18.04.1", + "5.4.0-1048.53~18.04.1", + "5.4.0-1050.56~18.04.1", + "5.4.0-1052.58~18.04.1", + "5.4.0-1053.60~18.04.1", + "5.4.0-1055.62~18.04.1", + "5.4.0-1056.63~18.04.1", + "5.4.0-1058.65~18.04.1", + "5.4.0-1059.66~18.04.1", + "5.4.0-1060.68~18.04.1", + "5.4.0-1062.70~18.04.1", + "5.4.0-1065.75~18.04.1", + "5.4.0-1066.76~18.04.1", + "5.4.0-1068.78~18.04.1", + "5.4.0-1069.79~18.04.1", + "5.4.0-1070.80~18.04.1", + "5.4.0-1071.81~18.04.1", + "5.4.0-1073.84~18.04.1", + "5.4.0-1074.85~18.04.1", + "5.4.0-1077.88~18.04.2", + "5.4.0-1078.89~18.04.1", + "5.4.0-1079.90~18.04.1", + "5.4.0-1080.91~18.04.1", + "5.4.0-1081.92~18.04.1", + "5.4.0-1082.93~18.04.1", + "5.4.0-1083.94~18.04.1", + "5.4.0-1084.95~18.04.1", + "5.4.0-1085.96~18.04.1", + "5.4.0-1086.97~18.04.1", + "5.4.0-1088.99~18.04.1", + "5.4.0-1089.100~18.04.1", + "5.4.0-1090.101~18.04.1", + "5.4.0-1091.102~18.04.1", + "5.4.0-1092.103~18.04.1", + "5.4.0-1093.104~18.04.1", + "5.4.0-1094.105~18.04.1", + "5.4.0-1095.106~18.04.1", + "5.4.0-1096.107~18.04.1", + "5.4.0-1097.109~18.04.2", + "5.4.0-1098.110~18.04.2", + "5.4.0-1100.112~18.04.1", + "5.4.0-1101.113~18.04.1", + "5.4.0-1102.114~18.04.1", + "5.4.0-1103.115~18.04.1", + "5.4.0-1104.116~18.04.1", + "5.4.0-1105.117~18.04.1", + "5.4.0-1106.118~18.04.1", + "5.4.0-1107.119~18.04.1", + "5.4.0-1108.120~18.04.1", + "5.4.0-1109.121~18.04.1", + "5.4.0-1110.122~18.04.1", + "5.4.0-1111.123~18.04.1", + "5.4.0-1112.124~18.04.1", + "5.4.0-1114.126~18.04.1", + "5.4.0-1115.127~18.04.1", + "5.4.0-1116.128~18.04.1", + "5.4.0-1117.129~18.04.1", + "5.4.0-1118.130~18.04.1", + "5.4.0-1119.131~18.04.1", + "5.4.0-1120.132~18.04.1", + "5.4.0-1121.133~18.04.1", + "5.4.0-1122.134~18.04.1", + "5.4.0-1129.142~18.04.1", + "5.4.0-1130.143~18.04.1", + "5.4.0-1131.144~18.04.1", + "5.4.0-1132.145~18.04.1", + "5.4.0-1133.146~18.04.1", + "5.4.0-1134.147~18.04.1", + "5.4.0-1135.148~18.04.1", + "5.4.0-1136.149~18.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-headers-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-image-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-modules-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-raspi-5.4-headers-5.4.0-1136", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-raspi-5.4-tools-5.4.0-1136", + "binary_version": "5.4.0-1136.149~18.04.1" + }, + { + "binary_name": "linux-tools-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149~18.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2126.132?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-2000.4", + "4.15.0-2018.18", + "4.15.0-2021.21", + "4.15.0-2022.22", + "4.15.0-2024.24", + "4.15.0-2025.25", + "4.15.0-2026.26", + "4.15.0-2027.27", + "4.15.0-2030.31", + "4.15.0-2031.32", + "4.15.0-2033.34", + "4.15.0-2034.35", + "4.15.0-2035.37", + "4.15.0-2036.38", + "4.15.0-2037.39", + "4.15.0-2038.40", + "4.15.0-2039.41", + "4.15.0-2040.42", + "4.15.0-2041.43", + "4.15.0-2042.44", + "4.15.0-2044.46", + "4.15.0-2045.47", + "4.15.0-2048.50", + "4.15.0-2051.53", + "4.15.0-2052.54", + "4.15.0-2053.55", + "4.15.0-2054.56", + "4.15.0-2055.57", + "4.15.0-2056.58", + "4.15.0-2057.59", + "4.15.0-2059.61", + "4.15.0-2060.62", + "4.15.0-2061.63", + "4.15.0-2063.66", + "4.15.0-2064.67", + "4.15.0-2065.68", + "4.15.0-2066.69", + "4.15.0-2067.70", + "4.15.0-2069.72", + "4.15.0-2072.76", + "4.15.0-2075.80", + "4.15.0-2076.81", + "4.15.0-2078.83", + "4.15.0-2079.84", + "4.15.0-2080.85", + "4.15.0-2081.87", + "4.15.0-2082.88", + "4.15.0-2083.89", + "4.15.0-2085.91", + "4.15.0-2087.93", + "4.15.0-2089.95", + "4.15.0-2090.96", + "4.15.0-2092.98", + "4.15.0-2093.99", + "4.15.0-2094.100", + "4.15.0-2095.101", + "4.15.0-2096.102", + "4.15.0-2097.103", + "4.15.0-2098.104", + "4.15.0-2099.105", + "4.15.0-2100.106", + "4.15.0-2101.107", + "4.15.0-2102.108", + "4.15.0-2103.109", + "4.15.0-2104.110", + "4.15.0-2105.111", + "4.15.0-2106.112", + "4.15.0-2107.113", + "4.15.0-2108.114", + "4.15.0-2109.115", + "4.15.0-2110.116", + "4.15.0-2111.117", + "4.15.0-2112.118", + "4.15.0-2113.119", + "4.15.0-2114.120", + "4.15.0-2115.121", + "4.15.0-2116.122", + "4.15.0-2117.123", + "4.15.0-2118.124", + "4.15.0-2119.125", + "4.15.0-2120.126", + "4.15.0-2121.127", + "4.15.0-2122.128", + "4.15.0-2123.129", + "4.15.0-2124.130", + "4.15.0-2125.131", + "4.15.0-2126.132" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-4.15.0-2126", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-aws-fips-tools-4.15.0-2126", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-headers-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-modules-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + }, + { + "binary_name": "linux-tools-4.15.0-2126-aws-fips", + "binary_version": "4.15.0-2126.132" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-2104.110?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2", + "4.15.0-2006.7", + "4.15.0-2007.8", + "4.15.0-2008.9", + "4.15.0-2009.10", + "4.15.0-2012.14", + "4.15.0-2013.15", + "4.15.0-2015.17", + "4.15.0-2016.18", + "4.15.0-2017.20", + "4.15.0-2018.21", + "4.15.0-2020.23", + "4.15.0-2021.24", + "4.15.0-2022.25", + "4.15.0-2023.26", + "4.15.0-2024.27", + "4.15.0-2025.28", + "4.15.0-2026.29", + "4.15.0-2027.30", + "4.15.0-2030.33", + "4.15.0-2033.37", + "4.15.0-2034.38", + "4.15.0-2035.39", + "4.15.0-2036.40", + "4.15.0-2037.41", + "4.15.0-2038.42", + "4.15.0-2039.43", + "4.15.0-2041.45", + "4.15.0-2042.46", + "4.15.0-2043.47", + "4.15.0-2045.49", + "4.15.0-2046.50", + "4.15.0-2047.51", + "4.15.0-2048.52", + "4.15.0-2049.53", + "4.15.0-2050.54", + "4.15.0-2053.58", + "4.15.0-2056.62", + "4.15.0-2057.63", + "4.15.0-2059.65", + "4.15.0-2060.66", + "4.15.0-2062.68", + "4.15.0-2066.72", + "4.15.0-2067.73", + "4.15.0-2068.74", + "4.15.0-2070.76", + "4.15.0-2071.77", + "4.15.0-2072.78", + "4.15.0-2073.79", + "4.15.0-2074.80", + "4.15.0-2075.81", + "4.15.0-2076.82", + "4.15.0-2077.83", + "4.15.0-2078.84", + "4.15.0-2079.85", + "4.15.0-2080.86", + "4.15.0-2081.87", + "4.15.0-2082.88", + "4.15.0-2084.90", + "4.15.0-2085.91", + "4.15.0-2086.92", + "4.15.0-2087.93", + "4.15.0-2088.94", + "4.15.0-2089.95", + "4.15.0-2090.96", + "4.15.0-2091.97", + "4.15.0-2092.98", + "4.15.0-2093.99", + "4.15.0-2094.100", + "4.15.0-2095.101", + "4.15.0-2096.102", + "4.15.0-2097.103", + "4.15.0-2098.104", + "4.15.0-2099.105", + "4.15.0-2100.106", + "4.15.0-2101.107", + "4.15.0-2102.108", + "4.15.0-2104.110" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-4.15.0-2104", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-azure-fips-headers-4.15.0-2104", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-azure-fips-tools-4.15.0-2104", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-headers-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-modules-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + }, + { + "binary_name": "linux-tools-4.15.0-2104-azure-fips", + "binary_version": "4.15.0-2104.110" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.15.0-1143.155?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1027.32", + "4.15.0-1029.34", + "4.15.0-1034.39", + "4.15.0-1035.40", + "4.15.0-1037.42", + "4.15.0-1038.43", + "4.15.0-1039.44", + "4.15.0-1040.45", + "4.15.0-1041.46", + "4.15.0-1044.50", + "4.15.0-1045.52", + "4.15.0-1046.53", + "4.15.0-1048.55", + "4.15.0-1049.56", + "4.15.0-1050.58", + "4.15.0-1051.59", + "4.15.0-1052.60", + "4.15.0-1053.61", + "4.15.0-1054.62", + "4.15.0-1055.63", + "4.15.0-1056.64", + "4.15.0-1057.65", + "4.15.0-1058.66", + "4.15.0-1059.67", + "4.15.0-1060.68", + "4.15.0-1063.71", + "4.15.0-1066.75", + "4.15.0-1067.76", + "4.15.0-1068.77", + "4.15.0-1069.78", + "4.15.0-1070.79", + "4.15.0-1071.80", + "4.15.0-1072.81", + "4.15.0-1073.82", + "4.15.0-1075.84", + "4.15.0-1076.85", + "4.15.0-1078.87", + "4.15.0-1080.89", + "4.15.0-1081.90", + "4.15.0-1083.92", + "4.15.0-1084.93", + "4.15.0-1085.94", + "4.15.0-1087.96", + "4.15.0-1090.100", + "4.15.0-1093.104", + "4.15.0-1094.105", + "4.15.0-1096.107", + "4.15.0-1097.108", + "4.15.0-1098.109", + "4.15.0-1099.110", + "4.15.0-1100.111", + "4.15.0-1103.114", + "4.15.0-1104.115", + "4.15.0-1105.116", + "4.15.0-1107.118", + "4.15.0-1108.119", + "4.15.0-1109.120", + "4.15.0-1110.121", + "4.15.0-1111.122", + "4.15.0-1112.123", + "4.15.0-1113.124", + "4.15.0-1114.125", + "4.15.0-1115.126", + "4.15.0-1116.127", + "4.15.0-1117.128", + "4.15.0-1118.129", + "4.15.0-1119.130", + "4.15.0-1121.132", + "4.15.0-1122.133", + "4.15.0-1123.134", + "4.15.0-1124.135", + "4.15.0-1125.136", + "4.15.0-1126.137", + "4.15.0-1127.138", + "4.15.0-1128.139", + "4.15.0-1129.140", + "4.15.0-1130.141", + "4.15.0-1131.142", + "4.15.0-1132.143", + "4.15.0-1133.144", + "4.15.0-1134.145", + "4.15.0-1135.146", + "4.15.0-1136.147", + "4.15.0-1137.148", + "4.15.0-1138.149", + "4.15.0-1139.150", + "4.15.0-1140.151", + "4.15.0-1141.153", + "4.15.0-1142.154", + "4.15.0-1143.155" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-fips-headers-4.15.0-1143", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-fips-tools-4.15.0-1143", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-fips-tools-host", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-headers-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-image-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-image-hmac-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-modules-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + }, + { + "binary_name": "linux-tools-4.15.0-1143-fips", + "binary_version": "4.15.0-1143.155" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-2088.94?arch=source&distro=fips-updates/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-2013.14", + "4.15.0-2016.18", + "4.15.0-2017.19", + "4.15.0-2018.20", + "4.15.0-2019.21", + "4.15.0-2020.22", + "4.15.0-2021.23", + "4.15.0-2022.24", + "4.15.0-2024.26", + "4.15.0-2025.27", + "4.15.0-2026.28", + "4.15.0-2028.31", + "4.15.0-2029.32", + "4.15.0-2030.33", + "4.15.0-2031.34", + "4.15.0-2032.35", + "4.15.0-2034.37", + "4.15.0-2037.41", + "4.15.0-2040.45", + "4.15.0-2041.46", + "4.15.0-2043.48", + "4.15.0-2044.49", + "4.15.0-2045.50", + "4.15.0-2047.52", + "4.15.0-2050.55", + "4.15.0-2052.57", + "4.15.0-2054.59", + "4.15.0-2055.60", + "4.15.0-2056.61", + "4.15.0-2057.62", + "4.15.0-2058.63", + "4.15.0-2059.64", + "4.15.0-2060.65", + "4.15.0-2061.66", + "4.15.0-2062.67", + "4.15.0-2063.68", + "4.15.0-2064.69", + "4.15.0-2065.70", + "4.15.0-2066.71", + "4.15.0-2067.72", + "4.15.0-2068.73", + "4.15.0-2069.74", + "4.15.0-2070.75", + "4.15.0-2071.76", + "4.15.0-2072.77", + "4.15.0-2073.78", + "4.15.0-2074.79", + "4.15.0-2075.80", + "4.15.0-2076.81", + "4.15.0-2077.83", + "4.15.0-2078.84", + "4.15.0-2079.85", + "4.15.0-2080.86", + "4.15.0-2081.87", + "4.15.0-2082.88", + "4.15.0-2083.89", + "4.15.0-2084.90", + "4.15.0-2085.91", + "4.15.0-2086.92", + "4.15.0-2087.93", + "4.15.0-2088.94" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-gcp-fips-headers-4.15.0-2088", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-gcp-fips-tools-4.15.0-2088", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-headers-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-modules-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + }, + { + "binary_name": "linux-tools-4.15.0-2088-gcp-fips", + "binary_version": "4.15.0-2088.94" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2000.4?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-2000.4" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-4.15.0-2000", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-aws-fips-tools-4.15.0-2000", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-buildinfo-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-headers-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-modules-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-modules-extra-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + }, + { + "binary_name": "linux-tools-4.15.0-2000-aws-fips", + "binary_version": "4.15.0-2000.4" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-1002.2?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1002.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-azure-fips-headers-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-azure-fips-tools-4.15.0-1002", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-buildinfo-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-cloud-tools-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-headers-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-modules-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + }, + { + "binary_name": "linux-tools-4.15.0-1002-azure-fips", + "binary_version": "4.15.0-1002.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@4.15.0-1011.12?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1011.12" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-fips-headers-4.15.0-1011", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-fips-tools-4.15.0-1011", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-fips-tools-host", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-headers-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-image-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-image-hmac-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-modules-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + }, + { + "binary_name": "linux-tools-4.15.0-1011-fips", + "binary_version": "4.15.0-1011.12" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-1001.1?arch=source&distro=fips/bionic" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "4.15.0-1001.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-gcp-fips-headers-4.15.0-1001", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-gcp-fips-tools-4.15.0-1001", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-headers-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-image-unsigned-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-image-unsigned-hmac-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-modules-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-modules-extra-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + }, + { + "binary_name": "linux-tools-4.15.0-1001-gcp-fips", + "binary_version": "4.15.0-1001.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@5.4.0-225.245?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-18.19", + "5.3.0-24.26", + "5.4.0-9.12", + "5.4.0-18.22", + "5.4.0-21.25", + "5.4.0-24.28", + "5.4.0-25.29", + "5.4.0-26.30", + "5.4.0-28.32", + "5.4.0-29.33", + "5.4.0-31.35", + "5.4.0-33.37", + "5.4.0-37.41", + "5.4.0-39.43", + "5.4.0-40.44", + "5.4.0-42.46", + "5.4.0-45.49", + "5.4.0-47.51", + "5.4.0-48.52", + "5.4.0-51.56", + "5.4.0-52.57", + "5.4.0-53.59", + "5.4.0-54.60", + "5.4.0-56.62", + "5.4.0-58.64", + "5.4.0-59.65", + "5.4.0-60.67", + "5.4.0-62.70", + "5.4.0-64.72", + "5.4.0-65.73", + "5.4.0-66.74", + "5.4.0-67.75", + "5.4.0-70.78", + "5.4.0-71.79", + "5.4.0-72.80", + "5.4.0-73.82", + "5.4.0-74.83", + "5.4.0-77.86", + "5.4.0-80.90", + "5.4.0-81.91", + "5.4.0-84.94", + "5.4.0-86.97", + "5.4.0-88.99", + "5.4.0-89.100", + "5.4.0-90.101", + "5.4.0-91.102", + "5.4.0-92.103", + "5.4.0-94.106", + "5.4.0-96.109", + "5.4.0-97.110", + "5.4.0-99.112", + "5.4.0-100.113", + "5.4.0-104.118", + "5.4.0-105.119", + "5.4.0-107.121", + "5.4.0-109.123", + "5.4.0-110.124", + "5.4.0-113.127", + "5.4.0-117.132", + "5.4.0-120.136", + "5.4.0-121.137", + "5.4.0-122.138", + "5.4.0-124.140", + "5.4.0-125.141", + "5.4.0-126.142", + "5.4.0-128.144", + "5.4.0-131.147", + "5.4.0-132.148", + "5.4.0-135.152", + "5.4.0-136.153", + "5.4.0-137.154", + "5.4.0-139.156", + "5.4.0-144.161", + "5.4.0-146.163", + "5.4.0-147.164", + "5.4.0-148.165", + "5.4.0-149.166", + "5.4.0-150.167", + "5.4.0-152.169", + "5.4.0-153.170", + "5.4.0-155.172", + "5.4.0-156.173", + "5.4.0-159.176", + "5.4.0-162.179", + "5.4.0-163.180", + "5.4.0-164.181", + "5.4.0-165.182", + "5.4.0-166.183", + "5.4.0-167.184", + "5.4.0-169.187", + "5.4.0-170.188", + "5.4.0-171.189", + "5.4.0-172.190", + "5.4.0-173.191", + "5.4.0-174.193", + "5.4.0-176.196", + "5.4.0-177.197", + "5.4.0-181.201", + "5.4.0-182.202", + "5.4.0-186.206", + "5.4.0-187.207", + "5.4.0-189.209", + "5.4.0-190.210", + "5.4.0-192.212", + "5.4.0-193.213", + "5.4.0-195.215", + "5.4.0-196.216", + "5.4.0-198.218", + "5.4.0-200.220", + "5.4.0-202.222", + "5.4.0-204.224", + "5.4.0-205.225", + "5.4.0-208.228", + "5.4.0-211.231", + "5.4.0-212.232", + "5.4.0-214.234", + "5.4.0-215.235", + "5.4.0-216.236", + "5.4.0-218.238", + "5.4.0-219.239", + "5.4.0-220.240", + "5.4.0-221.241", + "5.4.0-222.242", + "5.4.0-223.243", + "5.4.0-224.244", + "5.4.0-225.245" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "block-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "crypto-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "crypto-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "dasd-extra-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "dasd-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fat-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fat-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "firewire-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "floppy-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fs-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fs-core-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fs-secondary-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "fs-secondary-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "input-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "input-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "ipmi-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "ipmi-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "kernel-image-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "kernel-image-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-buildinfo-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-buildinfo-5.4.0-225-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-buildinfo-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-225", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-headers-5.4.0-225", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-headers-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-headers-5.4.0-225-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-headers-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-image-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-image-5.4.0-225-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-modules-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-modules-5.4.0-225-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-modules-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-modules-extra-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-source-5.4.0", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-5.4.0-225", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-5.4.0-225-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-5.4.0-225-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-5.4.0-225-lowlatency", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "linux-udebs-generic-lpae", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "md-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "md-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "message-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "mouse-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "mouse-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "multipath-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "multipath-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nfs-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nfs-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-pcmcia-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-shared-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-shared-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-usb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "nic-usb-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "parport-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "parport-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "pata-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "pcmcia-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "pcmcia-storage-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "plip-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "plip-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "ppp-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "ppp-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "sata-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "sata-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "scsi-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "scsi-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "serial-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "storage-core-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "storage-core-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "usb-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "usb-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "virtio-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "vlan-modules-5.4.0-225-generic-di", + "binary_version": "5.4.0-225.245" + }, + { + "binary_name": "vlan-modules-5.4.0-225-generic-lpae-di", + "binary_version": "5.4.0-225.245" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@5.4.0-1154.164?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1003.3", + "5.3.0-1008.9", + "5.3.0-1009.10", + "5.3.0-1010.11", + "5.4.0-1005.5", + "5.4.0-1007.7", + "5.4.0-1008.8", + "5.4.0-1009.9", + "5.4.0-1011.11", + "5.4.0-1015.15", + "5.4.0-1017.17", + "5.4.0-1018.18", + "5.4.0-1020.20", + "5.4.0-1021.21", + "5.4.0-1022.22", + "5.4.0-1024.24", + "5.4.0-1025.25", + "5.4.0-1028.29", + "5.4.0-1029.30", + "5.4.0-1030.31", + "5.4.0-1032.33", + "5.4.0-1034.35", + "5.4.0-1035.37", + "5.4.0-1037.39", + "5.4.0-1038.40", + "5.4.0-1039.41", + "5.4.0-1041.43", + "5.4.0-1043.45", + "5.4.0-1045.47", + "5.4.0-1047.49", + "5.4.0-1048.50", + "5.4.0-1049.51", + "5.4.0-1051.53", + "5.4.0-1054.57", + "5.4.0-1055.58", + "5.4.0-1056.59", + "5.4.0-1057.60", + "5.4.0-1058.61", + "5.4.0-1059.62", + "5.4.0-1060.63", + "5.4.0-1061.64", + "5.4.0-1063.66", + "5.4.0-1064.67", + "5.4.0-1065.68", + "5.4.0-1066.69", + "5.4.0-1068.72", + "5.4.0-1069.73", + "5.4.0-1071.76", + "5.4.0-1072.77", + "5.4.0-1073.78", + "5.4.0-1075.80", + "5.4.0-1078.84", + "5.4.0-1080.87", + "5.4.0-1081.88", + "5.4.0-1083.90", + "5.4.0-1084.91", + "5.4.0-1085.92", + "5.4.0-1086.93", + "5.4.0-1088.96", + "5.4.0-1089.97", + "5.4.0-1092.100", + "5.4.0-1093.101", + "5.4.0-1094.102", + "5.4.0-1096.104", + "5.4.0-1097.105", + "5.4.0-1099.107", + "5.4.0-1100.108", + "5.4.0-1101.109", + "5.4.0-1102.110", + "5.4.0-1103.111", + "5.4.0-1104.112", + "5.4.0-1105.113", + "5.4.0-1106.114", + "5.4.0-1107.115", + "5.4.0-1108.116", + "5.4.0-1109.118", + "5.4.0-1110.119", + "5.4.0-1111.120", + "5.4.0-1112.121", + "5.4.0-1113.123", + "5.4.0-1114.124", + "5.4.0-1116.126", + "5.4.0-1117.127", + "5.4.0-1118.128", + "5.4.0-1119.129", + "5.4.0-1120.130", + "5.4.0-1121.131", + "5.4.0-1122.132", + "5.4.0-1123.133", + "5.4.0-1124.134", + "5.4.0-1125.135", + "5.4.0-1126.136", + "5.4.0-1127.137", + "5.4.0-1128.138", + "5.4.0-1129.139", + "5.4.0-1130.140", + "5.4.0-1131.141", + "5.4.0-1132.142", + "5.4.0-1133.143", + "5.4.0-1134.144", + "5.4.0-1135.145", + "5.4.0-1136.146", + "5.4.0-1137.147", + "5.4.0-1139.149", + "5.4.0-1140.150", + "5.4.0-1142.152", + "5.4.0-1144.154", + "5.4.0-1145.155", + "5.4.0-1146.156", + "5.4.0-1147.157", + "5.4.0-1148.158", + "5.4.0-1149.159", + "5.4.0-1150.160", + "5.4.0-1151.161", + "5.4.0-1152.162", + "5.4.0-1153.163", + "5.4.0-1154.164" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-5.4.0-1154", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-aws-headers-5.4.0-1154", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-aws-tools-5.4.0-1154", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-headers-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-modules-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + }, + { + "binary_name": "linux-tools-5.4.0-1154-aws", + "binary_version": "5.4.0-1154.164" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-aws-5.11", + "purl": "pkg:deb/ubuntu/linux-aws-5.11@5.11.0-1028.31~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-1009.9~20.04.2", + "5.11.0-1014.15~20.04.1", + "5.11.0-1016.17~20.04.1", + "5.11.0-1017.18~20.04.1", + "5.11.0-1019.20~20.04.1", + "5.11.0-1020.21~20.04.2", + "5.11.0-1021.22~20.04.2", + "5.11.0-1022.23~20.04.1", + "5.11.0-1023.24~20.04.1", + "5.11.0-1025.27~20.04.1", + "5.11.0-1027.30~20.04.1", + "5.11.0-1028.31~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.11-cloud-tools-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-aws-5.11-headers-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-aws-5.11-tools-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-1028-aws", + "binary_version": "5.11.0-1028.31~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-aws-5.13", + "purl": "pkg:deb/ubuntu/linux-aws-5.13@5.13.0-1031.35~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1008.9~20.04.2", + "5.13.0-1011.12~20.04.1", + "5.13.0-1012.13~20.04.1", + "5.13.0-1014.15~20.04.1", + "5.13.0-1017.19~20.04.1", + "5.13.0-1019.21~20.04.1", + "5.13.0-1021.23~20.04.2", + "5.13.0-1022.24~20.04.1", + "5.13.0-1023.25~20.04.1", + "5.13.0-1025.27~20.04.1", + "5.13.0-1028.31~20.04.1", + "5.13.0-1029.32~20.04.1", + "5.13.0-1031.35~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.13-cloud-tools-5.13.0-1031", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-aws-5.13-headers-5.13.0-1031", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-aws-5.13-tools-5.13.0-1031", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-1031-aws", + "binary_version": "5.13.0-1031.35~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-aws-5.15", + "purl": "pkg:deb/ubuntu/linux-aws-5.15@5.15.0-1098.105~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1014.18~20.04.1", + "5.15.0-1015.19~20.04.1", + "5.15.0-1017.21~20.04.1", + "5.15.0-1019.23~20.04.1", + "5.15.0-1020.24~20.04.1", + "5.15.0-1021.25~20.04.1", + "5.15.0-1022.26~20.04.1", + "5.15.0-1023.27~20.04.1", + "5.15.0-1026.30~20.04.2", + "5.15.0-1027.31~20.04.1", + "5.15.0-1028.32~20.04.1", + "5.15.0-1030.34~20.04.1", + "5.15.0-1031.35~20.04.1", + "5.15.0-1033.37~20.04.1", + "5.15.0-1034.38~20.04.1", + "5.15.0-1035.39~20.04.1", + "5.15.0-1036.40~20.04.1", + "5.15.0-1037.41~20.04.1", + "5.15.0-1038.43~20.04.1", + "5.15.0-1039.44~20.04.1", + "5.15.0-1040.45~20.04.1", + "5.15.0-1041.46~20.04.1", + "5.15.0-1043.48~20.04.1", + "5.15.0-1044.49~20.04.1", + "5.15.0-1045.50~20.04.1", + "5.15.0-1047.52~20.04.1", + "5.15.0-1048.53~20.04.1", + "5.15.0-1049.54~20.04.1", + "5.15.0-1050.55~20.04.1", + "5.15.0-1051.56~20.04.1", + "5.15.0-1052.57~20.04.1", + "5.15.0-1053.58~20.04.1", + "5.15.0-1055.60~20.04.1", + "5.15.0-1056.61~20.04.1", + "5.15.0-1057.63~20.04.1", + "5.15.0-1058.64~20.04.1", + "5.15.0-1061.67~20.04.1", + "5.15.0-1062.68~20.04.1", + "5.15.0-1063.69~20.04.1", + "5.15.0-1064.70~20.04.1", + "5.15.0-1065.71~20.04.1", + "5.15.0-1066.72~20.04.1", + "5.15.0-1067.73~20.04.1", + "5.15.0-1068.74~20.04.1", + "5.15.0-1069.75~20.04.1", + "5.15.0-1070.76~20.04.1", + "5.15.0-1071.77~20.04.1", + "5.15.0-1072.78~20.04.1", + "5.15.0-1073.79~20.04.1", + "5.15.0-1075.82~20.04.1", + "5.15.0-1077.84~20.04.1", + "5.15.0-1080.87~20.04.1", + "5.15.0-1081.88~20.04.1", + "5.15.0-1082.89~20.04.1", + "5.15.0-1083.90~20.04.1", + "5.15.0-1084.91~20.04.1", + "5.15.0-1086.93~20.04.1", + "5.15.0-1087.94~20.04.1", + "5.15.0-1088.95~20.04.1", + "5.15.0-1089.96~20.04.1", + "5.15.0-1090.97~20.04.1", + "5.15.0-1091.98~20.04.1", + "5.15.0-1092.99~20.04.1", + "5.15.0-1093.100~20.04.1", + "5.15.0-1095.102~20.04.1", + "5.15.0-1096.103~20.04.1", + "5.15.0-1097.104~20.04.1", + "5.15.0-1098.105~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.15-cloud-tools-5.15.0-1098", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-aws-5.15-headers-5.15.0-1098", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-aws-5.15-tools-5.15.0-1098", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1098-aws", + "binary_version": "5.15.0-1098.105~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-aws-5.8", + "purl": "pkg:deb/ubuntu/linux-aws-5.8@5.8.0-1042.44~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-1035.37~20.04.1", + "5.8.0-1038.40~20.04.1", + "5.8.0-1041.43~20.04.1", + "5.8.0-1042.44~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.8-cloud-tools-5.8.0-1042", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-aws-5.8-headers-5.8.0-1042", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-aws-5.8-tools-5.8.0-1042", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-image-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-1042-aws", + "binary_version": "5.8.0-1042.44~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@5.4.0-1156.163?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1003.3", + "5.3.0-1008.9", + "5.3.0-1009.10", + "5.4.0-1006.6", + "5.4.0-1008.8", + "5.4.0-1009.9", + "5.4.0-1010.10", + "5.4.0-1012.12", + "5.4.0-1016.16", + "5.4.0-1019.19", + "5.4.0-1020.20", + "5.4.0-1022.22", + "5.4.0-1023.23", + "5.4.0-1025.25", + "5.4.0-1026.26", + "5.4.0-1031.32", + "5.4.0-1032.33", + "5.4.0-1034.35", + "5.4.0-1035.36", + "5.4.0-1036.38", + "5.4.0-1039.41", + "5.4.0-1040.42", + "5.4.0-1041.43", + "5.4.0-1043.45", + "5.4.0-1044.46", + "5.4.0-1046.48", + "5.4.0-1047.49", + "5.4.0-1048.50", + "5.4.0-1049.51", + "5.4.0-1051.53", + "5.4.0-1055.57", + "5.4.0-1056.58", + "5.4.0-1058.60", + "5.4.0-1059.62", + "5.4.0-1061.64", + "5.4.0-1062.65", + "5.4.0-1063.66", + "5.4.0-1064.67", + "5.4.0-1065.68", + "5.4.0-1067.70", + "5.4.0-1068.71", + "5.4.0-1069.72", + "5.4.0-1070.73", + "5.4.0-1072.75", + "5.4.0-1073.76", + "5.4.0-1074.77", + "5.4.0-1077.80", + "5.4.0-1078.81", + "5.4.0-1080.83", + "5.4.0-1083.87", + "5.4.0-1085.90", + "5.4.0-1086.91", + "5.4.0-1089.94", + "5.4.0-1090.95", + "5.4.0-1091.96", + "5.4.0-1094.100", + "5.4.0-1095.101", + "5.4.0-1098.104", + "5.4.0-1100.106", + "5.4.0-1101.107", + "5.4.0-1103.109", + "5.4.0-1104.110", + "5.4.0-1105.111", + "5.4.0-1106.112", + "5.4.0-1107.113", + "5.4.0-1108.114", + "5.4.0-1109.115", + "5.4.0-1110.116", + "5.4.0-1111.117", + "5.4.0-1112.118", + "5.4.0-1113.119", + "5.4.0-1114.120", + "5.4.0-1115.122", + "5.4.0-1116.123", + "5.4.0-1117.124", + "5.4.0-1118.125", + "5.4.0-1119.126", + "5.4.0-1120.127", + "5.4.0-1121.128", + "5.4.0-1122.129", + "5.4.0-1123.130", + "5.4.0-1124.131", + "5.4.0-1126.133", + "5.4.0-1127.134", + "5.4.0-1128.135", + "5.4.0-1129.136", + "5.4.0-1130.137", + "5.4.0-1131.138", + "5.4.0-1132.139", + "5.4.0-1133.140", + "5.4.0-1134.141", + "5.4.0-1135.142", + "5.4.0-1136.143", + "5.4.0-1137.144", + "5.4.0-1138.145", + "5.4.0-1139.146", + "5.4.0-1140.147", + "5.4.0-1142.149", + "5.4.0-1143.150", + "5.4.0-1145.152", + "5.4.0-1147.154", + "5.4.0-1148.155", + "5.4.0-1149.156", + "5.4.0-1150.157", + "5.4.0-1151.158", + "5.4.0-1152.159", + "5.4.0-1153.160", + "5.4.0-1154.161", + "5.4.0-1156.163" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-5.4.0-1156", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-azure-headers-5.4.0-1156", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-azure-tools-5.4.0-1156", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-headers-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-modules-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + }, + { + "binary_name": "linux-tools-5.4.0-1156-azure", + "binary_version": "5.4.0-1156.163" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-azure-5.11", + "purl": "pkg:deb/ubuntu/linux-azure-5.11@5.11.0-1028.31~20.04.2?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-1007.7~20.04.2", + "5.11.0-1012.13~20.04.1", + "5.11.0-1013.14~20.04.1", + "5.11.0-1015.16~20.04.1", + "5.11.0-1017.18~20.04.1", + "5.11.0-1019.20~20.04.1", + "5.11.0-1020.21~20.04.1", + "5.11.0-1021.22~20.04.1", + "5.11.0-1022.23~20.04.1", + "5.11.0-1023.24~20.04.1", + "5.11.0-1025.27~20.04.1", + "5.11.0-1027.30~20.04.1", + "5.11.0-1028.31~20.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.11-cloud-tools-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-azure-5.11-headers-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-azure-5.11-tools-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-buildinfo-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-headers-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-modules-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-modules-extra-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + }, + { + "binary_name": "linux-tools-5.11.0-1028-azure", + "binary_version": "5.11.0-1028.31~20.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-azure-5.13", + "purl": "pkg:deb/ubuntu/linux-azure-5.13@5.13.0-1031.37~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1009.10~20.04.2", + "5.13.0-1012.14~20.04.1", + "5.13.0-1013.15~20.04.1", + "5.13.0-1014.16~20.04.1", + "5.13.0-1017.19~20.04.1", + "5.13.0-1021.24~20.04.1", + "5.13.0-1022.26~20.04.1", + "5.13.0-1023.27~20.04.1", + "5.13.0-1025.29~20.04.1", + "5.13.0-1028.33~20.04.1", + "5.13.0-1029.34~20.04.1", + "5.13.0-1031.37~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.13-cloud-tools-5.13.0-1031", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-azure-5.13-headers-5.13.0-1031", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-azure-5.13-tools-5.13.0-1031", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-1031-azure", + "binary_version": "5.13.0-1031.37~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-azure-5.15", + "purl": "pkg:deb/ubuntu/linux-azure-5.15@5.15.0-1102.111~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1007.8~20.04.1", + "5.15.0-1008.9~20.04.1", + "5.15.0-1013.16~20.04.1", + "5.15.0-1014.17~20.04.1", + "5.15.0-1017.20~20.04.1", + "5.15.0-1019.24~20.04.1", + "5.15.0-1020.25~20.04.1", + "5.15.0-1021.26~20.04.1", + "5.15.0-1022.27~20.04.1", + "5.15.0-1023.29~20.04.1", + "5.15.0-1029.36~20.04.1", + "5.15.0-1030.37~20.04.1", + "5.15.0-1031.38~20.04.1", + "5.15.0-1033.40~20.04.1", + "5.15.0-1034.41~20.04.1", + "5.15.0-1035.42~20.04.1", + "5.15.0-1036.43~20.04.1", + "5.15.0-1037.44~20.04.1", + "5.15.0-1038.45~20.04.1", + "5.15.0-1039.46~20.04.1", + "5.15.0-1040.47~20.04.1", + "5.15.0-1041.48~20.04.1", + "5.15.0-1042.49~20.04.1", + "5.15.0-1043.50~20.04.1", + "5.15.0-1045.52~20.04.1", + "5.15.0-1046.53~20.04.1", + "5.15.0-1047.54~20.04.1", + "5.15.0-1049.56~20.04.1", + "5.15.0-1050.57~20.04.1", + "5.15.0-1051.59~20.04.1", + "5.15.0-1052.60~20.04.1", + "5.15.0-1053.61~20.04.1", + "5.15.0-1054.62~20.04.1", + "5.15.0-1056.64~20.04.1", + "5.15.0-1057.65~20.04.1", + "5.15.0-1058.66~20.04.2", + "5.15.0-1059.67~20.04.1", + "5.15.0-1060.69~20.04.1", + "5.15.0-1061.70~20.04.1", + "5.15.0-1063.72~20.04.1", + "5.15.0-1064.73~20.04.1", + "5.15.0-1065.74~20.04.1", + "5.15.0-1067.76~20.04.1", + "5.15.0-1068.77~20.04.1", + "5.15.0-1070.79~20.04.1", + "5.15.0-1071.80~20.04.1", + "5.15.0-1072.81~20.04.1", + "5.15.0-1073.82~20.04.1", + "5.15.0-1074.83~20.04.1", + "5.15.0-1075.84~20.04.1", + "5.15.0-1078.87~20.04.1", + "5.15.0-1079.88~20.04.1", + "5.15.0-1081.90~20.04.1", + "5.15.0-1082.91~20.04.1", + "5.15.0-1086.95~20.04.1", + "5.15.0-1087.96~20.04.1", + "5.15.0-1088.97~20.04.1", + "5.15.0-1089.98~20.04.1", + "5.15.0-1091.100~20.04.1", + "5.15.0-1094.103~20.04.1", + "5.15.0-1095.104~20.04.1", + "5.15.0-1096.105~20.04.1", + "5.15.0-1097.106~20.04.1", + "5.15.0-1098.107~20.04.1", + "5.15.0-1102.111~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.15-cloud-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-azure-5.15-headers-5.15.0-1102", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-azure-5.15-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-modules-involflt-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-azure-5.8", + "purl": "pkg:deb/ubuntu/linux-azure-5.8@5.8.0-1043.46~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-1033.35~20.04.1", + "5.8.0-1036.38~20.04.1", + "5.8.0-1039.42~20.04.1", + "5.8.0-1040.43~20.04.1", + "5.8.0-1041.44~20.04.1", + "5.8.0-1042.45~20.04.1", + "5.8.0-1043.46~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.8-cloud-tools-5.8.0-1043", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-azure-5.8-headers-5.8.0-1043", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-azure-5.8-tools-5.8.0-1043", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-1043-azure", + "binary_version": "5.8.0-1043.46~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-azure-fde", + "purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1063.66+cvm2.2", + "5.4.0-1063.66+cvm3.2", + "5.4.0-1064.67+cvm1.1", + "5.4.0-1065.68+cvm2.1", + "5.4.0-1067.70+cvm1.1", + "5.4.0-1068.71+cvm1.1", + "5.4.0-1069.72+cvm1.1", + "5.4.0-1070.73+cvm1.1", + "5.4.0-1072.75+cvm1.1", + "5.4.0-1073.76+cvm1.1", + "5.4.0-1074.77+cvm1.1", + "5.4.0-1076.79+cvm1.1", + "5.4.0-1078.81+cvm1.1", + "5.4.0-1080.83+cvm1.1", + "5.4.0-1083.87+cvm1.1", + "5.4.0-1085.90+cvm1.1", + "5.4.0-1085.90+cvm2.1", + "5.4.0-1086.91+cvm1.1", + "5.4.0-1089.94+cvm1.2", + "5.4.0-1090.95+cvm1.1", + "5.4.0-1091.96+cvm1.1", + "5.4.0-1092.97+cvm1.1", + "5.4.0-1095.101+cvm1.1", + "5.4.0-1098.104+cvm1.1", + "5.4.0-1100.106+cvm1.1", + "5.4.0-1103.109+cvm1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde", + "binary_version": "5.4.0-1103.109+cvm1.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-azure-fde-5.15", + "purl": "pkg:deb/ubuntu/linux-azure-fde-5.15@5.15.0-1102.111~20.04.1.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1019.24~20.04.1.1", + "5.15.0-1020.25~20.04.1.1", + "5.15.0-1021.26~20.04.1.1", + "5.15.0-1029.36~20.04.1.1", + "5.15.0-1030.37~20.04.1.1", + "5.15.0-1031.38~20.04.1.1", + "5.15.0-1033.40~20.04.1.1", + "5.15.0-1034.41~20.04.1.2", + "5.15.0-1035.42~20.04.1.1", + "5.15.0-1036.43~20.04.1.1", + "5.15.0-1037.44~20.04.1.1", + "5.15.0-1038.45~20.04.1.1", + "5.15.0-1039.46~20.04.1.1", + "5.15.0-1040.47~20.04.1.1", + "5.15.0-1041.48~20.04.1.1", + "5.15.0-1042.49~20.04.1.1", + "5.15.0-1043.50~20.04.1.1", + "5.15.0-1046.53~20.04.1.1", + "5.15.0-1047.54~20.04.1.1", + "5.15.0-1049.56~20.04.1.1", + "5.15.0-1050.57~20.04.1.1", + "5.15.0-1051.59~20.04.1.1", + "5.15.0-1052.60~20.04.1.1", + "5.15.0-1053.61~20.04.1.1", + "5.15.0-1054.62~20.04.1.1", + "5.15.0-1056.64~20.04.1.1", + "5.15.0-1057.65~20.04.1.1", + "5.15.0-1058.66~20.04.2.1", + "5.15.0-1059.67~20.04.1.1", + "5.15.0-1060.69~20.04.1.1", + "5.15.0-1061.70~20.04.1.1", + "5.15.0-1063.72~20.04.1.1", + "5.15.0-1064.73~20.04.1.1", + "5.15.0-1065.74~20.04.1.1", + "5.15.0-1067.76~20.04.1.1", + "5.15.0-1068.77~20.04.1.1", + "5.15.0-1070.79~20.04.1.1", + "5.15.0-1071.80~20.04.1.1", + "5.15.0-1072.81~20.04.1.1", + "5.15.0-1073.82~20.04.1.1", + "5.15.0-1074.83~20.04.1.1", + "5.15.0-1076.85~20.04.1.1", + "5.15.0-1078.87~20.04.1.1", + "5.15.0-1081.90~20.04.1.1", + "5.15.0-1082.91~20.04.1.1", + "5.15.0-1086.95~20.04.1.1", + "5.15.0-1087.96~20.04.1.1", + "5.15.0-1088.97~20.04.1.1", + "5.15.0-1089.98~20.04.1.1", + "5.15.0-1091.100~20.04.1.1", + "5.15.0-1094.103~20.04.1.1", + "5.15.0-1096.105~20.04.1.1", + "5.15.0-1097.106~20.04.1.1", + "5.15.0-1098.107~20.04.1.1", + "5.15.0-1102.111~20.04.1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", + "binary_version": "5.15.0-1102.111~20.04.1.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-bluefield", + "purl": "pkg:deb/ubuntu/linux-bluefield@5.4.0-1112.119?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1007.10", + "5.4.0-1011.14", + "5.4.0-1012.15", + "5.4.0-1013.16", + "5.4.0-1016.19", + "5.4.0-1019.22", + "5.4.0-1020.23", + "5.4.0-1021.24", + "5.4.0-1022.25", + "5.4.0-1023.26", + "5.4.0-1025.28", + "5.4.0-1026.29", + "5.4.0-1028.31", + "5.4.0-1030.33", + "5.4.0-1032.35", + "5.4.0-1035.38", + "5.4.0-1036.39", + "5.4.0-1040.44", + "5.4.0-1042.47", + "5.4.0-1044.49", + "5.4.0-1045.50", + "5.4.0-1046.51", + "5.4.0-1047.52", + "5.4.0-1049.55", + "5.4.0-1050.56", + "5.4.0-1054.60", + "5.4.0-1058.64", + "5.4.0-1059.65", + "5.4.0-1060.66", + "5.4.0-1062.68", + "5.4.0-1064.70", + "5.4.0-1065.71", + "5.4.0-1066.72", + "5.4.0-1068.74", + "5.4.0-1070.76", + "5.4.0-1071.77", + "5.4.0-1072.78", + "5.4.0-1073.79", + "5.4.0-1074.80", + "5.4.0-1075.81", + "5.4.0-1076.82", + "5.4.0-1077.83", + "5.4.0-1078.84", + "5.4.0-1079.85", + "5.4.0-1080.87", + "5.4.0-1081.88", + "5.4.0-1082.89", + "5.4.0-1083.90", + "5.4.0-1084.91", + "5.4.0-1085.92", + "5.4.0-1086.93", + "5.4.0-1087.94", + "5.4.0-1088.95", + "5.4.0-1089.96", + "5.4.0-1090.97", + "5.4.0-1091.98", + "5.4.0-1092.99", + "5.4.0-1093.100", + "5.4.0-1094.101", + "5.4.0-1095.102", + "5.4.0-1096.103", + "5.4.0-1097.104", + "5.4.0-1098.105", + "5.4.0-1099.106", + "5.4.0-1101.108", + "5.4.0-1102.109", + "5.4.0-1103.110", + "5.4.0-1105.112", + "5.4.0-1106.113", + "5.4.0-1107.114", + "5.4.0-1108.115", + "5.4.0-1109.116", + "5.4.0-1110.117", + "5.4.0-1111.118", + "5.4.0-1112.119" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-bluefield-headers-5.4.0-1112", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-bluefield-tools-5.4.0-1112", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1112-bluefield", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-headers-5.4.0-1112-bluefield", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1112-bluefield", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-modules-5.4.0-1112-bluefield", + "binary_version": "5.4.0-1112.119" + }, + { + "binary_name": "linux-tools-5.4.0-1112-bluefield", + "binary_version": "5.4.0-1112.119" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@5.4.0-1157.166?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1004.4", + "5.3.0-1009.10", + "5.3.0-1011.12", + "5.4.0-1005.5", + "5.4.0-1007.7", + "5.4.0-1008.8", + "5.4.0-1009.9", + "5.4.0-1011.11", + "5.4.0-1015.15", + "5.4.0-1018.18", + "5.4.0-1019.19", + "5.4.0-1021.21", + "5.4.0-1022.22", + "5.4.0-1024.24", + "5.4.0-1025.25", + "5.4.0-1028.29", + "5.4.0-1029.31", + "5.4.0-1030.32", + "5.4.0-1032.34", + "5.4.0-1033.35", + "5.4.0-1034.37", + "5.4.0-1036.39", + "5.4.0-1037.40", + "5.4.0-1038.41", + "5.4.0-1040.43", + "5.4.0-1041.44", + "5.4.0-1042.45", + "5.4.0-1043.46", + "5.4.0-1044.47", + "5.4.0-1046.49", + "5.4.0-1049.53", + "5.4.0-1051.55", + "5.4.0-1052.56", + "5.4.0-1053.57", + "5.4.0-1055.59", + "5.4.0-1056.60", + "5.4.0-1057.61", + "5.4.0-1058.62", + "5.4.0-1059.63", + "5.4.0-1060.64", + "5.4.0-1062.66", + "5.4.0-1063.67", + "5.4.0-1064.68", + "5.4.0-1065.69", + "5.4.0-1067.71", + "5.4.0-1068.72", + "5.4.0-1069.73", + "5.4.0-1072.77", + "5.4.0-1073.78", + "5.4.0-1075.80", + "5.4.0-1078.84", + "5.4.0-1080.87", + "5.4.0-1083.91", + "5.4.0-1084.92", + "5.4.0-1086.94", + "5.4.0-1087.95", + "5.4.0-1089.97", + "5.4.0-1090.98", + "5.4.0-1092.101", + "5.4.0-1093.102", + "5.4.0-1096.105", + "5.4.0-1097.106", + "5.4.0-1098.107", + "5.4.0-1100.109", + "5.4.0-1101.110", + "5.4.0-1102.111", + "5.4.0-1103.112", + "5.4.0-1104.113", + "5.4.0-1105.114", + "5.4.0-1106.115", + "5.4.0-1107.116", + "5.4.0-1108.117", + "5.4.0-1109.118", + "5.4.0-1110.119", + "5.4.0-1111.120", + "5.4.0-1112.121", + "5.4.0-1113.122", + "5.4.0-1115.124", + "5.4.0-1116.125", + "5.4.0-1117.126", + "5.4.0-1118.127", + "5.4.0-1120.129", + "5.4.0-1121.130", + "5.4.0-1122.131", + "5.4.0-1123.132", + "5.4.0-1124.133", + "5.4.0-1125.134", + "5.4.0-1126.135", + "5.4.0-1127.136", + "5.4.0-1128.137", + "5.4.0-1129.138", + "5.4.0-1130.139", + "5.4.0-1131.140", + "5.4.0-1132.141", + "5.4.0-1133.142", + "5.4.0-1134.143", + "5.4.0-1135.144", + "5.4.0-1136.145", + "5.4.0-1137.146", + "5.4.0-1138.147", + "5.4.0-1139.148", + "5.4.0-1140.149", + "5.4.0-1141.150", + "5.4.0-1142.151", + "5.4.0-1143.152", + "5.4.0-1145.154", + "5.4.0-1146.155", + "5.4.0-1147.156", + "5.4.0-1148.157", + "5.4.0-1149.158", + "5.4.0-1150.159", + "5.4.0-1151.160", + "5.4.0-1152.161", + "5.4.0-1153.162", + "5.4.0-1154.163", + "5.4.0-1155.164", + "5.4.0-1156.165", + "5.4.0-1157.166" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-gcp-headers-5.4.0-1157", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-gcp-tools-5.4.0-1157", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-headers-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-modules-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + }, + { + "binary_name": "linux-tools-5.4.0-1157-gcp", + "binary_version": "5.4.0-1157.166" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gcp-5.11", + "purl": "pkg:deb/ubuntu/linux-gcp-5.11@5.11.0-1029.33~20.04.3?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-1009.10~20.04.1", + "5.11.0-1014.16~20.04.1", + "5.11.0-1017.19~20.04.1", + "5.11.0-1018.20~20.04.2", + "5.11.0-1020.22~20.04.1", + "5.11.0-1021.23~20.04.1", + "5.11.0-1022.24~20.04.1", + "5.11.0-1023.25~20.04.1", + "5.11.0-1024.26~20.04.1", + "5.11.0-1026.29~20.04.1", + "5.11.0-1028.32~20.04.1", + "5.11.0-1029.33~20.04.3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-gcp-5.11-headers-5.11.0-1029", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-gcp-5.11-tools-5.11.0-1029", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-headers-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-modules-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-modules-extra-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + }, + { + "binary_name": "linux-tools-5.11.0-1029-gcp", + "binary_version": "5.11.0-1029.33~20.04.3" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gcp-5.13", + "purl": "pkg:deb/ubuntu/linux-gcp-5.13@5.13.0-1033.40~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1008.9~20.04.3", + "5.13.0-1012.15~20.04.1", + "5.13.0-1013.16~20.04.1", + "5.13.0-1015.18~20.04.1", + "5.13.0-1019.23~20.04.1", + "5.13.0-1021.25~20.04.1", + "5.13.0-1023.28~20.04.1", + "5.13.0-1024.29~20.04.1", + "5.13.0-1025.30~20.04.1", + "5.13.0-1027.32~20.04.1", + "5.13.0-1030.36~20.04.1", + "5.13.0-1031.37~20.04.1", + "5.13.0-1033.40~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-gcp-5.13-headers-5.13.0-1033", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-gcp-5.13-tools-5.13.0-1033", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-1033-gcp", + "binary_version": "5.13.0-1033.40~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-gcp-5.15", + "purl": "pkg:deb/ubuntu/linux-gcp-5.15@5.15.0-1098.107~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1006.9~20.04.1", + "5.15.0-1012.17~20.04.1", + "5.15.0-1013.18~20.04.1", + "5.15.0-1016.21~20.04.1", + "5.15.0-1017.23~20.04.2", + "5.15.0-1018.24~20.04.1", + "5.15.0-1021.28~20.04.1", + "5.15.0-1022.29~20.04.1", + "5.15.0-1025.32~20.04.2", + "5.15.0-1026.33~20.04.1", + "5.15.0-1027.34~20.04.1", + "5.15.0-1029.36~20.04.1", + "5.15.0-1030.37~20.04.1", + "5.15.0-1031.38~20.04.1", + "5.15.0-1032.40~20.04.1", + "5.15.0-1033.41~20.04.1", + "5.15.0-1034.42~20.04.1", + "5.15.0-1035.43~20.04.1", + "5.15.0-1036.44~20.04.1", + "5.15.0-1037.45~20.04.1", + "5.15.0-1038.46~20.04.1", + "5.15.0-1039.47~20.04.1", + "5.15.0-1040.48~20.04.1", + "5.15.0-1041.49~20.04.1", + "5.15.0-1042.50~20.04.1", + "5.15.0-1044.52~20.04.1", + "5.15.0-1045.53~20.04.2", + "5.15.0-1046.54~20.04.1", + "5.15.0-1047.55~20.04.1", + "5.15.0-1048.56~20.04.1", + "5.15.0-1049.57~20.04.1", + "5.15.0-1051.59~20.04.1", + "5.15.0-1052.60~20.04.1", + "5.15.0-1053.61~20.04.1", + "5.15.0-1054.62~20.04.1", + "5.15.0-1055.63~20.04.1", + "5.15.0-1058.66~20.04.1", + "5.15.0-1059.67~20.04.1", + "5.15.0-1060.68~20.04.1", + "5.15.0-1062.70~20.04.1", + "5.15.0-1065.73~20.04.1", + "5.15.0-1066.74~20.04.1", + "5.15.0-1067.75~20.04.1", + "5.15.0-1068.76~20.04.1", + "5.15.0-1069.77~20.04.1", + "5.15.0-1070.78~20.04.1", + "5.15.0-1071.79~20.04.1", + "5.15.0-1072.80~20.04.1", + "5.15.0-1073.81~20.04.1", + "5.15.0-1074.83~20.04.1", + "5.15.0-1075.84~20.04.1", + "5.15.0-1077.86~20.04.1", + "5.15.0-1078.87~20.04.1", + "5.15.0-1081.90~20.04.1", + "5.15.0-1083.92~20.04.1", + "5.15.0-1085.94~20.04.1", + "5.15.0-1086.95~20.04.1", + "5.15.0-1087.96~20.04.2", + "5.15.0-1088.97~20.04.1", + "5.15.0-1090.99~20.04.1", + "5.15.0-1091.100~20.04.1", + "5.15.0-1092.101~20.04.1", + "5.15.0-1093.102~20.04.1", + "5.15.0-1095.104~20.04.1", + "5.15.0-1096.105~20.04.1", + "5.15.0-1097.106~20.04.1", + "5.15.0-1098.107~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-gcp-5.15-headers-5.15.0-1098", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-gcp-5.15-tools-5.15.0-1098", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1098-gcp", + "binary_version": "5.15.0-1098.107~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gcp-5.8", + "purl": "pkg:deb/ubuntu/linux-gcp-5.8@5.8.0-1039.41?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-1032.34~20.04.1", + "5.8.0-1035.37~20.04.1", + "5.8.0-1038.40~20.04.1", + "5.8.0-1039.41" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-gcp-5.8-headers-5.8.0-1039", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-gcp-5.8-tools-5.8.0-1039", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-headers-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-modules-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-modules-extra-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + }, + { + "binary_name": "linux-tools-5.8.0-1039-gcp", + "binary_version": "5.8.0-1039.41" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gke", + "purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1033.35", + "5.4.0-1035.37", + "5.4.0-1036.38", + "5.4.0-1037.39", + "5.4.0-1039.41", + "5.4.0-1041.43", + "5.4.0-1042.44", + "5.4.0-1043.45", + "5.4.0-1044.46", + "5.4.0-1046.48", + "5.4.0-1049.52", + "5.4.0-1051.54", + "5.4.0-1052.55", + "5.4.0-1053.56", + "5.4.0-1054.57", + "5.4.0-1055.58", + "5.4.0-1056.59", + "5.4.0-1057.60", + "5.4.0-1059.62", + "5.4.0-1061.64", + "5.4.0-1062.65", + "5.4.0-1063.66", + "5.4.0-1065.68", + "5.4.0-1066.69", + "5.4.0-1067.70", + "5.4.0-1068.71", + "5.4.0-1071.76", + "5.4.0-1072.77", + "5.4.0-1074.79", + "5.4.0-1076.82", + "5.4.0-1078.84", + "5.4.0-1080.86", + "5.4.0-1081.87", + "5.4.0-1083.89", + "5.4.0-1084.90", + "5.4.0-1086.93", + "5.4.0-1087.94", + "5.4.0-1090.97", + "5.4.0-1091.98", + "5.4.0-1094.101", + "5.4.0-1095.102", + "5.4.0-1096.103", + "5.4.0-1097.104", + "5.4.0-1098.105", + "5.4.0-1099.106", + "5.4.0-1100.107", + "5.4.0-1101.108", + "5.4.0-1102.109", + "5.4.0-1103.110", + "5.4.0-1104.111", + "5.4.0-1105.112" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-gke-headers-5.4.0-1105", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-gke-tools-5.4.0-1105", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-headers-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-modules-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + }, + { + "binary_name": "linux-tools-5.4.0-1105-gke", + "binary_version": "5.4.0-1105.112" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gke-5.15", + "purl": "pkg:deb/ubuntu/linux-gke-5.15@5.15.0-1039.44~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1011.14~20.04.1", + "5.15.0-1014.17~20.04.1", + "5.15.0-1015.18~20.04.1", + "5.15.0-1016.19~20.04.1", + "5.15.0-1019.23~20.04.1", + "5.15.0-1020.25~20.04.1", + "5.15.0-1023.28~20.04.2", + "5.15.0-1027.32~20.04.1", + "5.15.0-1028.33~20.04.1", + "5.15.0-1029.34~20.04.1", + "5.15.0-1031.36~20.04.1", + "5.15.0-1032.37~20.04.1", + "5.15.0-1033.38~20.04.1", + "5.15.0-1034.39~20.04.1", + "5.15.0-1036.41~20.04.1", + "5.15.0-1037.42~20.04.1", + "5.15.0-1038.43~20.04.1", + "5.15.0-1039.44~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-gke-5.15-headers-5.15.0-1039", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-gke-5.15-tools-5.15.0-1039", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1039-gke", + "binary_version": "5.15.0-1039.44~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gkeop", + "purl": "pkg:deb/ubuntu/linux-gkeop@5.4.0-1102.106?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1008.9", + "5.4.0-1009.10", + "5.4.0-1010.11", + "5.4.0-1011.12", + "5.4.0-1012.13", + "5.4.0-1013.14", + "5.4.0-1014.15", + "5.4.0-1015.16", + "5.4.0-1016.17", + "5.4.0-1018.19", + "5.4.0-1021.22", + "5.4.0-1022.23", + "5.4.0-1023.24", + "5.4.0-1024.25", + "5.4.0-1025.26", + "5.4.0-1026.27", + "5.4.0-1027.28", + "5.4.0-1029.30", + "5.4.0-1031.32", + "5.4.0-1032.33", + "5.4.0-1033.34", + "5.4.0-1034.35", + "5.4.0-1036.37", + "5.4.0-1037.38", + "5.4.0-1038.39", + "5.4.0-1039.40", + "5.4.0-1040.41", + "5.4.0-1043.44", + "5.4.0-1046.48", + "5.4.0-1048.51", + "5.4.0-1049.52", + "5.4.0-1051.54", + "5.4.0-1052.55", + "5.4.0-1053.56", + "5.4.0-1054.57", + "5.4.0-1056.60", + "5.4.0-1057.61", + "5.4.0-1060.64", + "5.4.0-1061.65", + "5.4.0-1062.66", + "5.4.0-1064.68", + "5.4.0-1065.69", + "5.4.0-1066.70", + "5.4.0-1067.71", + "5.4.0-1068.72", + "5.4.0-1069.73", + "5.4.0-1070.74", + "5.4.0-1071.75", + "5.4.0-1072.76", + "5.4.0-1073.77", + "5.4.0-1074.78", + "5.4.0-1075.79", + "5.4.0-1076.80", + "5.4.0-1077.81", + "5.4.0-1078.82", + "5.4.0-1079.83", + "5.4.0-1080.84", + "5.4.0-1081.85", + "5.4.0-1083.87", + "5.4.0-1084.88", + "5.4.0-1085.89", + "5.4.0-1086.90", + "5.4.0-1087.91", + "5.4.0-1088.92", + "5.4.0-1089.93", + "5.4.0-1090.94", + "5.4.0-1091.95", + "5.4.0-1092.96", + "5.4.0-1093.97", + "5.4.0-1094.98", + "5.4.0-1095.99", + "5.4.0-1096.100", + "5.4.0-1097.101", + "5.4.0-1098.102", + "5.4.0-1099.103", + "5.4.0-1100.104", + "5.4.0-1101.105", + "5.4.0-1102.106" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-gkeop-cloud-tools-5.4.0-1102", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-gkeop-headers-5.4.0-1102", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-gkeop-source-5.4.0", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-gkeop-tools-5.4.0-1102", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-headers-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-modules-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + }, + { + "binary_name": "linux-tools-5.4.0-1102-gkeop", + "binary_version": "5.4.0-1102.106" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-gkeop-5.15", + "purl": "pkg:deb/ubuntu/linux-gkeop-5.15@5.15.0-1055.62~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1003.5~20.04.2", + "5.15.0-1005.7~20.04.1", + "5.15.0-1007.10~20.04.1", + "5.15.0-1008.12~20.04.1", + "5.15.0-1011.15~20.04.2", + "5.15.0-1012.16~20.04.1", + "5.15.0-1013.17~20.04.1", + "5.15.0-1015.19~20.04.1", + "5.15.0-1016.21~20.04.1", + "5.15.0-1017.22~20.04.1", + "5.15.0-1018.23~20.04.1", + "5.15.0-1019.24~20.04.1", + "5.15.0-1020.25~20.04.1", + "5.15.0-1021.26~20.04.1", + "5.15.0-1022.27~20.04.1", + "5.15.0-1023.28~20.04.1", + "5.15.0-1024.29~20.04.1", + "5.15.0-1025.30~20.04.1", + "5.15.0-1026.31~20.04.1", + "5.15.0-1027.32~20.04.1", + "5.15.0-1028.33~20.04.1", + "5.15.0-1030.35~20.04.1", + "5.15.0-1031.37~20.04.1", + "5.15.0-1032.38~20.04.1", + "5.15.0-1033.39~20.04.1", + "5.15.0-1034.40~20.04.1", + "5.15.0-1035.41~20.04.1", + "5.15.0-1036.42~20.04.1", + "5.15.0-1037.43~20.04.1", + "5.15.0-1038.44~20.04.1", + "5.15.0-1039.45~20.04.1", + "5.15.0-1040.46~20.04.1", + "5.15.0-1043.50~20.04.1", + "5.15.0-1044.51~20.04.1", + "5.15.0-1045.52~20.04.1", + "5.15.0-1046.53~20.04.1", + "5.15.0-1047.54~20.04.1", + "5.15.0-1048.55~20.04.1", + "5.15.0-1049.56~20.04.1", + "5.15.0-1050.57~20.04.1", + "5.15.0-1051.58~20.04.1", + "5.15.0-1052.59~20.04.1", + "5.15.0-1053.60~20.04.1", + "5.15.0-1054.61~20.04.1", + "5.15.0-1055.62~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-gkeop-5.15-cloud-tools-5.15.0-1055", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-gkeop-5.15-headers-5.15.0-1055", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-gkeop-5.15-tools-5.15.0-1055", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1055-gkeop", + "binary_version": "5.15.0-1055.62~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-hwe-5.11", + "purl": "pkg:deb/ubuntu/linux-hwe-5.11@5.11.0-46.51~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-22.23~20.04.1", + "5.11.0-25.27~20.04.1", + "5.11.0-27.29~20.04.1", + "5.11.0-34.36~20.04.1", + "5.11.0-36.40~20.04.1", + "5.11.0-37.41~20.04.2", + "5.11.0-38.42~20.04.1", + "5.11.0-40.44~20.04.2", + "5.11.0-41.45~20.04.1", + "5.11.0-43.47~20.04.2", + "5.11.0-44.48~20.04.2", + "5.11.0-46.51~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "block-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "block-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "crypto-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "crypto-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "crypto-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "dasd-extra-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "dasd-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fat-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fat-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fat-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fb-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "firewire-core-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "floppy-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "input-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "input-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "input-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "kernel-image-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "kernel-image-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "kernel-image-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.11.0-46-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.11.0-46-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-46-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-46-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-cloud-tools-5.11.0-46", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-cloud-tools-common", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-headers-5.11.0-46", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-source-5.11.0", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-tools-5.11.0-46", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-tools-common", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-tools-host", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-udebs-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-udebs-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-hwe-5.11-udebs-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-image-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-image-5.11.0-46-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-46-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-46-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-46-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-46-generic", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-46-generic-64k", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-46-generic-lpae", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-46-lowlatency", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "md-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "md-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "md-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "message-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "message-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "mouse-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "mouse-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "mouse-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "multipath-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "multipath-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "multipath-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nfs-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nfs-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nfs-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "parport-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "parport-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "parport-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "pata-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "pcmcia-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "plip-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "plip-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "plip-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ppp-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ppp-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "ppp-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "sata-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "sata-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "sata-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "scsi-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "scsi-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "scsi-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "serial-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "usb-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "usb-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "usb-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "virtio-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "virtio-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "vlan-modules-5.11.0-46-generic-64k-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "vlan-modules-5.11.0-46-generic-di", + "binary_version": "5.11.0-46.51~20.04.1" + }, + { + "binary_name": "vlan-modules-5.11.0-46-generic-lpae-di", + "binary_version": "5.11.0-46.51~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-hwe-5.13", + "purl": "pkg:deb/ubuntu/linux-hwe-5.13@5.13.0-52.59~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-21.21~20.04.1", + "5.13.0-22.22~20.04.1", + "5.13.0-23.23~20.04.2", + "5.13.0-25.26~20.04.1", + "5.13.0-27.29~20.04.1", + "5.13.0-28.31~20.04.1", + "5.13.0-30.33~20.04.1", + "5.13.0-35.40~20.04.1", + "5.13.0-37.42~20.04.1", + "5.13.0-39.44~20.04.1", + "5.13.0-40.45~20.04.1", + "5.13.0-41.46~20.04.1", + "5.13.0-44.49~20.04.1", + "5.13.0-48.54~20.04.1", + "5.13.0-51.58~20.04.1", + "5.13.0-52.59~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "block-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "block-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "crypto-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "crypto-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "crypto-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "dasd-extra-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "dasd-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fat-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fat-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fat-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fb-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "firewire-core-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "floppy-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "input-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "input-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "input-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "kernel-image-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "kernel-image-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "kernel-image-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-52-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-52-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-52-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-52-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-cloud-tools-5.13.0-52", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-cloud-tools-common", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-headers-5.13.0-52", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-source-5.13.0", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-tools-5.13.0-52", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-tools-common", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-tools-host", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-udebs-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-udebs-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-hwe-5.13-udebs-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-image-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-image-5.13.0-52-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-52-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-52-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-52-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-52-generic", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-52-generic-64k", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-52-generic-lpae", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-52-lowlatency", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "md-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "md-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "md-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "message-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "message-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "mouse-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "mouse-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "mouse-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "multipath-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "multipath-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "multipath-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nfs-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nfs-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nfs-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "parport-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "parport-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "parport-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "pata-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "pcmcia-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "plip-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "plip-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "plip-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ppp-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ppp-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "ppp-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "sata-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "sata-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "sata-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "scsi-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "scsi-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "scsi-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "serial-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "usb-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "usb-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "usb-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "virtio-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "virtio-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "vlan-modules-5.13.0-52-generic-64k-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "vlan-modules-5.13.0-52-generic-di", + "binary_version": "5.13.0-52.59~20.04.1" + }, + { + "binary_name": "vlan-modules-5.13.0-52-generic-lpae-di", + "binary_version": "5.13.0-52.59~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-hwe-5.15", + "purl": "pkg:deb/ubuntu/linux-hwe-5.15@5.15.0-168.178~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-33.34~20.04.1", + "5.15.0-41.44~20.04.1", + "5.15.0-43.46~20.04.1", + "5.15.0-46.49~20.04.1", + "5.15.0-48.54~20.04.1", + "5.15.0-50.56~20.04.1", + "5.15.0-52.58~20.04.1", + "5.15.0-53.59~20.04.1", + "5.15.0-56.62~20.04.1", + "5.15.0-57.63~20.04.1", + "5.15.0-58.64~20.04.1", + "5.15.0-60.66~20.04.1", + "5.15.0-67.74~20.04.1", + "5.15.0-69.76~20.04.1", + "5.15.0-70.77~20.04.1", + "5.15.0-71.78~20.04.1", + "5.15.0-72.79~20.04.1", + "5.15.0-73.80~20.04.1", + "5.15.0-75.82~20.04.1", + "5.15.0-76.83~20.04.1", + "5.15.0-78.85~20.04.1", + "5.15.0-79.86~20.04.2", + "5.15.0-82.91~20.04.1", + "5.15.0-83.92~20.04.1", + "5.15.0-84.93~20.04.1", + "5.15.0-86.96~20.04.1", + "5.15.0-87.97~20.04.1", + "5.15.0-88.98~20.04.1", + "5.15.0-89.99~20.04.1", + "5.15.0-91.101~20.04.1", + "5.15.0-92.102~20.04.1", + "5.15.0-94.104~20.04.1", + "5.15.0-97.107~20.04.1", + "5.15.0-100.110~20.04.1", + "5.15.0-101.111~20.04.1", + "5.15.0-102.112~20.04.1", + "5.15.0-105.115~20.04.1", + "5.15.0-106.116~20.04.1", + "5.15.0-107.117~20.04.1", + "5.15.0-113.123~20.04.1", + "5.15.0-116.126~20.04.1", + "5.15.0-117.127~20.04.1", + "5.15.0-118.128~20.04.1", + "5.15.0-119.129~20.04.1", + "5.15.0-121.131~20.04.1", + "5.15.0-122.132~20.04.1", + "5.15.0-124.134~20.04.1", + "5.15.0-125.135~20.04.1", + "5.15.0-126.136~20.04.1", + "5.15.0-127.137~20.04.1", + "5.15.0-130.140~20.04.1", + "5.15.0-131.141~20.04.1", + "5.15.0-134.145~20.04.1", + "5.15.0-136.147~20.04.1", + "5.15.0-138.148~20.04.1", + "5.15.0-139.149~20.04.1", + "5.15.0-142.152~20.04.1", + "5.15.0-143.153~20.04.1", + "5.15.0-144.157~20.04.1", + "5.15.0-145.158~20.04.1", + "5.15.0-151.161~20.04.1", + "5.15.0-152.162~20.04.1", + "5.15.0-153.163~20.04.1", + "5.15.0-156.166~20.04.1", + "5.15.0-157.167~20.04.1", + "5.15.0-160.170~20.04.1", + "5.15.0-161.171~20.04.1", + "5.15.0-163.173~20.04.1", + "5.15.0-164.174~20.04.1", + "5.15.0-168.178~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-hwe-5.15-cloud-tools-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-hwe-5.15-headers-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-hwe-5.15-tools-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-hwe-5.8", + "purl": "pkg:deb/ubuntu/linux-hwe-5.8@5.8.0-63.71~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-23.24~20.04.1", + "5.8.0-25.26~20.04.1", + "5.8.0-28.30~20.04.1", + "5.8.0-29.31~20.04.1", + "5.8.0-31.33~20.04.1", + "5.8.0-33.36~20.04.1", + "5.8.0-34.37~20.04.2", + "5.8.0-36.40~20.04.1", + "5.8.0-38.43~20.04.1", + "5.8.0-40.45~20.04.1", + "5.8.0-41.46~20.04.1", + "5.8.0-43.49~20.04.1", + "5.8.0-44.50~20.04.1", + "5.8.0-45.51~20.04.1", + "5.8.0-48.54~20.04.1", + "5.8.0-49.55~20.04.1", + "5.8.0-50.56~20.04.1", + "5.8.0-53.60~20.04.1", + "5.8.0-55.62~20.04.1", + "5.8.0-59.66~20.04.1", + "5.8.0-63.71~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "block-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "block-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "crypto-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "crypto-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "crypto-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "dasd-extra-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "dasd-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fat-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fat-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fat-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fb-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "firewire-core-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "floppy-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "input-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "input-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "input-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "kernel-image-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "kernel-image-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "kernel-image-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-63-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-63-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-63-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-63-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-cloud-tools-5.8.0-63", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-cloud-tools-common", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-headers-5.8.0-63", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-source-5.8.0", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-tools-5.8.0-63", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-tools-common", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-tools-host", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-udebs-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-udebs-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-hwe-5.8-udebs-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-image-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-image-5.8.0-63-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-63-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-63-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-63-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-63-generic", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-63-generic-64k", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-63-generic-lpae", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-63-lowlatency", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "md-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "md-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "md-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "message-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "message-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "mouse-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "mouse-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "mouse-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "multipath-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "multipath-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "multipath-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nfs-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nfs-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nfs-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-pcmcia-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "parport-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "parport-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "parport-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "pata-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "pcmcia-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "pcmcia-storage-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "plip-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "plip-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "plip-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ppp-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ppp-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "ppp-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "sata-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "sata-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "sata-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "scsi-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "scsi-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "scsi-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "serial-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "usb-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "usb-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "usb-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "virtio-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "virtio-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "vlan-modules-5.8.0-63-generic-64k-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "vlan-modules-5.8.0-63-generic-di", + "binary_version": "5.8.0-63.71~20.04.1" + }, + { + "binary_name": "vlan-modules-5.8.0-63-generic-lpae-di", + "binary_version": "5.8.0-63.71~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-ibm", + "purl": "pkg:deb/ubuntu/linux-ibm@5.4.0-1100.105?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1003.4", + "5.4.0-1004.5", + "5.4.0-1005.6", + "5.4.0-1006.7", + "5.4.0-1007.8", + "5.4.0-1008.9", + "5.4.0-1010.11", + "5.4.0-1012.13", + "5.4.0-1013.14", + "5.4.0-1014.15", + "5.4.0-1015.16", + "5.4.0-1017.19", + "5.4.0-1018.20", + "5.4.0-1019.21", + "5.4.0-1020.22", + "5.4.0-1021.23", + "5.4.0-1023.25", + "5.4.0-1026.29", + "5.4.0-1028.32", + "5.4.0-1029.33", + "5.4.0-1031.35", + "5.4.0-1032.36", + "5.4.0-1033.37", + "5.4.0-1034.38", + "5.4.0-1036.41", + "5.4.0-1037.42", + "5.4.0-1040.45", + "5.4.0-1041.46", + "5.4.0-1042.47", + "5.4.0-1044.49", + "5.4.0-1045.50", + "5.4.0-1046.51", + "5.4.0-1047.52", + "5.4.0-1048.53", + "5.4.0-1049.54", + "5.4.0-1050.55", + "5.4.0-1051.56", + "5.4.0-1052.57", + "5.4.0-1053.58", + "5.4.0-1054.59", + "5.4.0-1056.61", + "5.4.0-1057.62", + "5.4.0-1058.63", + "5.4.0-1059.64", + "5.4.0-1060.65", + "5.4.0-1061.66", + "5.4.0-1063.68", + "5.4.0-1064.69", + "5.4.0-1065.70", + "5.4.0-1066.71", + "5.4.0-1067.72", + "5.4.0-1068.73", + "5.4.0-1069.74", + "5.4.0-1070.75", + "5.4.0-1071.76", + "5.4.0-1072.77", + "5.4.0-1073.78", + "5.4.0-1074.79", + "5.4.0-1075.80", + "5.4.0-1076.81", + "5.4.0-1077.82", + "5.4.0-1078.83", + "5.4.0-1079.84", + "5.4.0-1080.85", + "5.4.0-1081.86", + "5.4.0-1082.87", + "5.4.0-1083.88", + "5.4.0-1084.89", + "5.4.0-1085.90", + "5.4.0-1086.91", + "5.4.0-1088.93", + "5.4.0-1089.94", + "5.4.0-1090.95", + "5.4.0-1091.96", + "5.4.0-1092.97", + "5.4.0-1093.98", + "5.4.0-1094.99", + "5.4.0-1095.100", + "5.4.0-1096.101", + "5.4.0-1097.102", + "5.4.0-1098.103", + "5.4.0-1099.104", + "5.4.0-1100.105" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-headers-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-ibm-cloud-tools-common", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-ibm-headers-5.4.0-1100", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-ibm-source-5.4.0", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-ibm-tools-5.4.0-1100", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-ibm-tools-common", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-modules-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + }, + { + "binary_name": "linux-tools-5.4.0-1100-ibm", + "binary_version": "5.4.0-1100.105" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-ibm-5.15", + "purl": "pkg:deb/ubuntu/linux-ibm-5.15@5.15.0-1093.96~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1033.36~20.04.1", + "5.15.0-1034.37~20.04.1", + "5.15.0-1035.38~20.04.1", + "5.15.0-1036.39~20.04.1", + "5.15.0-1037.40~20.04.1", + "5.15.0-1038.41~20.04.1", + "5.15.0-1040.43~20.04.1", + "5.15.0-1041.44~20.04.1", + "5.15.0-1042.45~20.04.1", + "5.15.0-1043.46~20.04.1", + "5.15.0-1044.47~20.04.1", + "5.15.0-1045.48~20.04.1", + "5.15.0-1046.49~20.04.1", + "5.15.0-1047.50~20.04.1", + "5.15.0-1048.51~20.04.1", + "5.15.0-1049.52~20.04.1", + "5.15.0-1050.53~20.04.1", + "5.15.0-1053.56~20.04.1", + "5.15.0-1054.57~20.04.1", + "5.15.0-1055.58~20.04.1", + "5.15.0-1057.60~20.04.1", + "5.15.0-1058.61~20.04.1", + "5.15.0-1059.62~20.04.1", + "5.15.0-1060.63~20.04.1", + "5.15.0-1061.64~20.04.1", + "5.15.0-1062.65~20.04.1", + "5.15.0-1063.66~20.04.1", + "5.15.0-1064.67~20.04.1", + "5.15.0-1065.68~20.04.1", + "5.15.0-1066.69~20.04.1", + "5.15.0-1067.70~20.04.1", + "5.15.0-1068.71~20.04.1", + "5.15.0-1069.72~20.04.1", + "5.15.0-1074.77~20.04.1", + "5.15.0-1075.78~20.04.1", + "5.15.0-1076.79~20.04.1", + "5.15.0-1078.81~20.04.1", + "5.15.0-1079.82~20.04.1", + "5.15.0-1080.83~20.04.1", + "5.15.0-1081.84~20.04.1", + "5.15.0-1083.86~20.04.1", + "5.15.0-1085.88~20.04.1", + "5.15.0-1086.89~20.04.1", + "5.15.0-1087.90~20.04.1", + "5.15.0-1089.92~20.04.1", + "5.15.0-1090.93~20.04.1", + "5.15.0-1091.94~20.04.1", + "5.15.0-1092.95~20.04.1", + "5.15.0-1093.96~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-ibm-5.15-headers-5.15.0-1093", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-ibm-5.15-source-5.15.0", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-ibm-5.15-tools-5.15.0-1093", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-intel-5.13", + "purl": "pkg:deb/ubuntu/linux-intel-5.13@5.13.0-1017.19?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1007.7", + "5.13.0-1008.8", + "5.13.0-1009.9", + "5.13.0-1010.10", + "5.13.0-1011.11", + "5.13.0-1014.15", + "5.13.0-1017.19" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-cloud-tools-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-headers-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-cloud-tools-5.13.0-1017", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-cloud-tools-common", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-headers-5.13.0-1017", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-source-5.13.0", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-tools-5.13.0-1017", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-tools-common", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-intel-5.13-tools-host", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-modules-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-modules-extra-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + }, + { + "binary_name": "linux-tools-5.13.0-1017-intel", + "binary_version": "5.13.0-1017.19" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-intel-iotg-5.15", + "purl": "pkg:deb/ubuntu/linux-intel-iotg-5.15@5.15.0-1094.100~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1003.5~20.04.1", + "5.15.0-1008.11~20.04.1", + "5.15.0-1010.14~20.04.1", + "5.15.0-1015.20~20.04.2", + "5.15.0-1016.21~20.04.1", + "5.15.0-1017.22~20.04.1", + "5.15.0-1018.23~20.04.1", + "5.15.0-1021.26~20.04.1", + "5.15.0-1023.28~20.04.1", + "5.15.0-1025.30~20.04.1", + "5.15.0-1026.31~20.04.1", + "5.15.0-1027.32~20.04.1", + "5.15.0-1030.35~20.04.1", + "5.15.0-1031.36~20.04.1", + "5.15.0-1033.38~20.04.1", + "5.15.0-1034.39~20.04.1", + "5.15.0-1036.41~20.04.1", + "5.15.0-1037.42~20.04.1", + "5.15.0-1038.43~20.04.1", + "5.15.0-1040.46~20.04.1", + "5.15.0-1043.49~20.04.1", + "5.15.0-1045.51~20.04.1", + "5.15.0-1046.52~20.04.1", + "5.15.0-1048.54~20.04.1", + "5.15.0-1049.55~20.04.1", + "5.15.0-1050.56~20.04.1", + "5.15.0-1051.57~20.04.1", + "5.15.0-1052.58~20.04.1", + "5.15.0-1055.61~20.04.1", + "5.15.0-1058.64~20.04.1", + "5.15.0-1059.65~20.04.1", + "5.15.0-1060.66~20.04.1", + "5.15.0-1061.67~20.04.1", + "5.15.0-1062.68~20.04.1", + "5.15.0-1063.69~20.04.1", + "5.15.0-1064.70~20.04.1", + "5.15.0-1065.71~20.04.1", + "5.15.0-1066.72~20.04.1", + "5.15.0-1067.73~20.04.1", + "5.15.0-1071.77~20.04.1", + "5.15.0-1072.78~20.04.1", + "5.15.0-1073.79~20.04.2", + "5.15.0-1074.80~20.04.1", + "5.15.0-1077.83~20.04.1", + "5.15.0-1078.84~20.04.1", + "5.15.0-1079.85~20.04.1", + "5.15.0-1083.89~20.04.1", + "5.15.0-1084.90~20.04.1", + "5.15.0-1085.91~20.04.1", + "5.15.0-1086.92~20.04.1", + "5.15.0-1087.93~20.04.1", + "5.15.0-1088.94~20.04.1", + "5.15.0-1090.96~20.04.1", + "5.15.0-1091.97~20.04.1", + "5.15.0-1092.98~20.04.1", + "5.15.0-1093.99~20.04.1", + "5.15.0-1094.100~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-cloud-tools-5.15.0-1094", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-cloud-tools-common", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-headers-5.15.0-1094", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-tools-5.15.0-1094", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-tools-common", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-intel-iotg-5.15-tools-host", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-iot", + "purl": "pkg:deb/ubuntu/linux-iot@5.4.0-1058.61?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1001.3", + "5.4.0-1004.6", + "5.4.0-1005.7", + "5.4.0-1006.8", + "5.4.0-1009.11", + "5.4.0-1010.12", + "5.4.0-1011.13", + "5.4.0-1012.14", + "5.4.0-1013.15", + "5.4.0-1014.16", + "5.4.0-1017.18", + "5.4.0-1018.19", + "5.4.0-1019.20", + "5.4.0-1021.22", + "5.4.0-1022.23", + "5.4.0-1023.24", + "5.4.0-1024.25", + "5.4.0-1025.26", + "5.4.0-1026.27", + "5.4.0-1028.29", + "5.4.0-1029.30", + "5.4.0-1030.31", + "5.4.0-1031.32", + "5.4.0-1032.33", + "5.4.0-1033.34", + "5.4.0-1034.35", + "5.4.0-1035.36", + "5.4.0-1036.37", + "5.4.0-1037.38", + "5.4.0-1038.39", + "5.4.0-1039.40", + "5.4.0-1040.41", + "5.4.0-1041.42", + "5.4.0-1042.43", + "5.4.0-1043.44", + "5.4.0-1044.45", + "5.4.0-1045.46", + "5.4.0-1048.51", + "5.4.0-1049.52", + "5.4.0-1051.54", + "5.4.0-1052.55", + "5.4.0-1053.56", + "5.4.0-1054.57", + "5.4.0-1055.58", + "5.4.0-1056.59", + "5.4.0-1057.60", + "5.4.0-1058.61" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1058-iot", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-headers-5.4.0-1058-iot", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1058-iot", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-iot-headers-5.4.0-1058", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-iot-tools-5.4.0-1058", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-modules-5.4.0-1058-iot", + "binary_version": "5.4.0-1058.61" + }, + { + "binary_name": "linux-tools-5.4.0-1058-iot", + "binary_version": "5.4.0-1058.61" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@5.4.0-1141.150?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1003.3", + "5.3.0-1008.9", + "5.3.0-1009.10", + "5.4.0-1004.4", + "5.4.0-1006.6", + "5.4.0-1007.7", + "5.4.0-1008.8", + "5.4.0-1009.9", + "5.4.0-1011.11", + "5.4.0-1015.15", + "5.4.0-1018.18", + "5.4.0-1020.20", + "5.4.0-1021.21", + "5.4.0-1023.23", + "5.4.0-1024.24", + "5.4.0-1026.27", + "5.4.0-1028.29", + "5.4.0-1030.31", + "5.4.0-1031.32", + "5.4.0-1032.33", + "5.4.0-1033.34", + "5.4.0-1034.35", + "5.4.0-1036.37", + "5.4.0-1037.38", + "5.4.0-1038.39", + "5.4.0-1039.40", + "5.4.0-1040.41", + "5.4.0-1041.42", + "5.4.0-1044.46", + "5.4.0-1045.47", + "5.4.0-1046.48", + "5.4.0-1047.49", + "5.4.0-1048.50", + "5.4.0-1049.51", + "5.4.0-1050.52", + "5.4.0-1051.53", + "5.4.0-1053.55", + "5.4.0-1054.56", + "5.4.0-1055.57", + "5.4.0-1056.58", + "5.4.0-1058.61", + "5.4.0-1059.62", + "5.4.0-1061.64", + "5.4.0-1062.65", + "5.4.0-1063.66", + "5.4.0-1065.68", + "5.4.0-1068.72", + "5.4.0-1070.75", + "5.4.0-1071.76", + "5.4.0-1073.78", + "5.4.0-1074.79", + "5.4.0-1075.80", + "5.4.0-1076.81", + "5.4.0-1078.84", + "5.4.0-1079.85", + "5.4.0-1082.88", + "5.4.0-1083.89", + "5.4.0-1084.90", + "5.4.0-1086.92", + "5.4.0-1087.93", + "5.4.0-1088.94", + "5.4.0-1089.95", + "5.4.0-1090.96", + "5.4.0-1091.97", + "5.4.0-1092.98", + "5.4.0-1093.99", + "5.4.0-1094.100", + "5.4.0-1095.101", + "5.4.0-1096.102", + "5.4.0-1097.103", + "5.4.0-1098.104", + "5.4.0-1099.105", + "5.4.0-1100.106", + "5.4.0-1101.107", + "5.4.0-1102.108", + "5.4.0-1103.110", + "5.4.0-1104.111", + "5.4.0-1105.112", + "5.4.0-1106.113", + "5.4.0-1107.114", + "5.4.0-1108.115", + "5.4.0-1109.116", + "5.4.0-1110.117", + "5.4.0-1111.118", + "5.4.0-1112.119", + "5.4.0-1113.120", + "5.4.0-1114.121", + "5.4.0-1115.122", + "5.4.0-1116.123", + "5.4.0-1117.124", + "5.4.0-1118.125", + "5.4.0-1119.127", + "5.4.0-1120.128", + "5.4.0-1121.129", + "5.4.0-1122.130", + "5.4.0-1123.131", + "5.4.0-1124.132", + "5.4.0-1125.133", + "5.4.0-1126.134", + "5.4.0-1127.136", + "5.4.0-1129.138", + "5.4.0-1130.139", + "5.4.0-1131.140", + "5.4.0-1132.141", + "5.4.0-1133.142", + "5.4.0-1134.143", + "5.4.0-1135.144", + "5.4.0-1136.145", + "5.4.0-1137.146", + "5.4.0-1138.147", + "5.4.0-1139.148", + "5.4.0-1140.149", + "5.4.0-1141.150" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1141-kvm", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-headers-5.4.0-1141-kvm", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1141-kvm", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-kvm-headers-5.4.0-1141", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-kvm-tools-5.4.0-1141", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-modules-5.4.0-1141-kvm", + "binary_version": "5.4.0-1141.150" + }, + { + "binary_name": "linux-tools-5.4.0-1141-kvm", + "binary_version": "5.4.0-1141.150" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-lowlatency-hwe-5.15", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.15@5.15.0-168.178~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-33.34~20.04.1", + "5.15.0-42.45~20.04.1", + "5.15.0-43.46~20.04.1", + "5.15.0-46.49~20.04.1", + "5.15.0-48.54~20.04.1", + "5.15.0-50.56~20.04.1", + "5.15.0-52.58~20.04.1", + "5.15.0-53.59~20.04.1", + "5.15.0-56.62~20.04.1", + "5.15.0-58.64~20.04.1", + "5.15.0-60.66~20.04.1", + "5.15.0-67.74~20.04.1", + "5.15.0-69.76~20.04.1", + "5.15.0-70.77~20.04.1", + "5.15.0-71.78~20.04.1", + "5.15.0-72.79~20.04.1", + "5.15.0-73.80~20.04.1", + "5.15.0-75.82~20.04.1", + "5.15.0-76.83~20.04.1", + "5.15.0-78.85~20.04.1", + "5.15.0-79.88~20.04.1", + "5.15.0-82.91~20.04.1", + "5.15.0-83.92~20.04.1", + "5.15.0-84.93~20.04.1", + "5.15.0-86.95~20.04.1", + "5.15.0-87.96~20.04.1", + "5.15.0-88.98~20.04.1", + "5.15.0-89.99~20.04.1", + "5.15.0-91.101~20.04.1", + "5.15.0-92.102~20.04.1", + "5.15.0-94.104~20.04.1", + "5.15.0-97.107~20.04.1", + "5.15.0-100.110~20.04.1", + "5.15.0-101.111~20.04.1", + "5.15.0-102.112~20.04.1", + "5.15.0-105.115~20.04.1", + "5.15.0-106.116~20.04.1", + "5.15.0-107.117~20.04.1", + "5.15.0-110.120~20.04.1", + "5.15.0-113.123~20.04.1", + "5.15.0-116.126~20.04.1", + "5.15.0-117.127~20.04.1", + "5.15.0-118.128~20.04.1", + "5.15.0-119.129~20.04.1", + "5.15.0-121.131~20.04.1", + "5.15.0-122.132~20.04.1", + "5.15.0-124.134~20.04.1", + "5.15.0-125.135~20.04.1", + "5.15.0-126.136~20.04.1", + "5.15.0-127.137~20.04.1", + "5.15.0-128.138~20.04.1", + "5.15.0-129.139~20.04.1", + "5.15.0-131.141~20.04.1", + "5.15.0-133.143~20.04.1", + "5.15.0-134.145~20.04.1", + "5.15.0-135.146~20.04.1", + "5.15.0-136.147~20.04.1", + "5.15.0-138.148~20.04.1", + "5.15.0-139.149~20.04.1", + "5.15.0-140.150~20.04.1", + "5.15.0-142.152~20.04.1", + "5.15.0-143.153~20.04.1", + "5.15.0-144.157~20.04.1", + "5.15.0-145.158~20.04.1", + "5.15.0-152.162~20.04.1", + "5.15.0-153.163~20.04.1", + "5.15.0-156.166~20.04.1", + "5.15.0-157.167~20.04.1", + "5.15.0-160.170~20.04.1", + "5.15.0-161.171~20.04.1", + "5.15.0-163.173~20.04.1", + "5.15.0-164.174~20.04.1", + "5.15.0-168.178~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-5.15-cloud-tools-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-5.15-headers-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-5.15-tools-5.15.0-168", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-nvidia-tegra-5.15", + "purl": "pkg:deb/ubuntu/linux-nvidia-tegra-5.15@5.15.0-1051.51~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1009.9~20.04.1", + "5.15.0-1010.10~20.04.1", + "5.15.0-1012.12~20.04.1", + "5.15.0-1014.14~20.04.1", + "5.15.0-1015.15~20.04.1", + "5.15.0-1016.16~20.04.1", + "5.15.0-1017.17~20.04.1", + "5.15.0-1018.18~20.04.1", + "5.15.0-1019.19~20.04.1", + "5.15.0-1020.20~20.04.1", + "5.15.0-1022.22~20.04.1", + "5.15.0-1025.25~20.04.1", + "5.15.0-1027.27~20.04.1", + "5.15.0-1030.30~20.04.1", + "5.15.0-1032.32~20.04.1", + "5.15.0-1039.39~20.04.1", + "5.15.0-1040.40~20.04.1", + "5.15.0-1041.41~20.04.1", + "5.15.0-1042.42~20.04.1", + "5.15.0-1043.43~20.04.1", + "5.15.0-1044.44~20.04.1", + "5.15.0-1045.45~20.04.1", + "5.15.0-1046.46~20.04.1", + "5.15.0-1047.47~20.04.1", + "5.15.0-1048.48~20.04.1", + "5.15.0-1049.49~20.04.1", + "5.15.0-1050.50~20.04.1", + "5.15.0-1051.51~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-nvidia-tegra-5.15-headers-5.15.0-1051", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-nvidia-tegra-5.15-tools-5.15.0-1051", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oem-5.10", + "purl": "pkg:deb/ubuntu/linux-oem-5.10@5.10.0-1057.61?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.10.0-1008.9", + "5.10.0-1011.12", + "5.10.0-1013.14", + "5.10.0-1014.15", + "5.10.0-1016.17", + "5.10.0-1017.18", + "5.10.0-1019.20", + "5.10.0-1021.22", + "5.10.0-1022.23", + "5.10.0-1023.24", + "5.10.0-1025.26", + "5.10.0-1026.27", + "5.10.0-1029.30", + "5.10.0-1032.33", + "5.10.0-1033.34", + "5.10.0-1034.35", + "5.10.0-1038.40", + "5.10.0-1044.46", + "5.10.0-1045.47", + "5.10.0-1049.51", + "5.10.0-1050.52", + "5.10.0-1051.53", + "5.10.0-1052.54", + "5.10.0-1053.55", + "5.10.0-1055.58", + "5.10.0-1057.61" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.10.0-1057-oem", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-headers-5.10.0-1057-oem", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-image-unsigned-5.10.0-1057-oem", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-modules-5.10.0-1057-oem", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-oem-5.10-headers-5.10.0-1057", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-oem-5.10-tools-5.10.0-1057", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-oem-5.10-tools-host", + "binary_version": "5.10.0-1057.61" + }, + { + "binary_name": "linux-tools-5.10.0-1057-oem", + "binary_version": "5.10.0-1057.61" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oem-5.13", + "purl": "pkg:deb/ubuntu/linux-oem-5.13@5.13.0-1029.36?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1009.10", + "5.13.0-1010.11", + "5.13.0-1012.16", + "5.13.0-1014.18", + "5.13.0-1017.21", + "5.13.0-1019.23", + "5.13.0-1020.24", + "5.13.0-1021.25", + "5.13.0-1022.26", + "5.13.0-1026.32", + "5.13.0-1028.35", + "5.13.0-1029.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.13.0-1029-oem", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-headers-5.13.0-1029-oem", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1029-oem", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-modules-5.13.0-1029-oem", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-oem-5.13-headers-5.13.0-1029", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-oem-5.13-tools-5.13.0-1029", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-oem-5.13-tools-host", + "binary_version": "5.13.0-1029.36" + }, + { + "binary_name": "linux-tools-5.13.0-1029-oem", + "binary_version": "5.13.0-1029.36" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oem-5.14", + "purl": "pkg:deb/ubuntu/linux-oem-5.14@5.14.0-1059.67?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.14.0-1004.4", + "5.14.0-1005.5", + "5.14.0-1007.7", + "5.14.0-1008.8", + "5.14.0-1010.10", + "5.14.0-1011.11", + "5.14.0-1013.13", + "5.14.0-1018.19", + "5.14.0-1020.22", + "5.14.0-1022.24", + "5.14.0-1024.26", + "5.14.0-1027.30", + "5.14.0-1029.32", + "5.14.0-1031.34", + "5.14.0-1032.35", + "5.14.0-1033.36", + "5.14.0-1034.37", + "5.14.0-1036.40", + "5.14.0-1038.42", + "5.14.0-1042.47", + "5.14.0-1044.49", + "5.14.0-1045.51", + "5.14.0-1046.53", + "5.14.0-1047.54", + "5.14.0-1048.55", + "5.14.0-1049.56", + "5.14.0-1050.57", + "5.14.0-1051.58", + "5.14.0-1052.59", + "5.14.0-1054.61", + "5.14.0-1055.62", + "5.14.0-1056.63", + "5.14.0-1057.64", + "5.14.0-1058.66", + "5.14.0-1059.67" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-headers-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-image-unsigned-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-modules-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-modules-iwlwifi-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-oem-5.14-headers-5.14.0-1059", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-oem-5.14-tools-5.14.0-1059", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-oem-5.14-tools-host", + "binary_version": "5.14.0-1059.67" + }, + { + "binary_name": "linux-tools-5.14.0-1059-oem", + "binary_version": "5.14.0-1059.67" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oem-5.6", + "purl": "pkg:deb/ubuntu/linux-oem-5.6@5.6.0-1056.60?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.6.0-1007.7", + "5.6.0-1008.8", + "5.6.0-1010.10", + "5.6.0-1011.11", + "5.6.0-1013.13", + "5.6.0-1017.17", + "5.6.0-1018.18", + "5.6.0-1020.20", + "5.6.0-1021.21", + "5.6.0-1023.23", + "5.6.0-1026.26", + "5.6.0-1027.27", + "5.6.0-1028.28", + "5.6.0-1031.32", + "5.6.0-1032.33", + "5.6.0-1033.35", + "5.6.0-1034.36", + "5.6.0-1035.37", + "5.6.0-1036.39", + "5.6.0-1039.43", + "5.6.0-1042.46", + "5.6.0-1047.51", + "5.6.0-1048.52", + "5.6.0-1050.54", + "5.6.0-1052.56", + "5.6.0-1053.57", + "5.6.0-1054.58", + "5.6.0-1055.59", + "5.6.0-1056.60" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.6.0-1056-oem", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-headers-5.6.0-1056-oem", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-image-unsigned-5.6.0-1056-oem", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-modules-5.6.0-1056-oem", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-oem-5.6-headers-5.6.0-1056", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-oem-5.6-tools-5.6.0-1056", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-oem-5.6-tools-host", + "binary_version": "5.6.0-1056.60" + }, + { + "binary_name": "linux-tools-5.6.0-1056-oem", + "binary_version": "5.6.0-1056.60" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@5.4.0-1151.161?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1002.2", + "5.3.0-1007.8", + "5.3.0-1008.9", + "5.4.0-1005.5", + "5.4.0-1007.7", + "5.4.0-1008.8", + "5.4.0-1009.9", + "5.4.0-1011.11", + "5.4.0-1015.15", + "5.4.0-1018.18", + "5.4.0-1019.19", + "5.4.0-1021.21", + "5.4.0-1022.22", + "5.4.0-1024.24", + "5.4.0-1025.25", + "5.4.0-1028.29", + "5.4.0-1029.31", + "5.4.0-1030.32", + "5.4.0-1032.34", + "5.4.0-1034.36", + "5.4.0-1035.38", + "5.4.0-1037.40", + "5.4.0-1038.41", + "5.4.0-1039.42", + "5.4.0-1041.44", + "5.4.0-1042.45", + "5.4.0-1043.46", + "5.4.0-1045.49", + "5.4.0-1046.50", + "5.4.0-1048.52", + "5.4.0-1049.53", + "5.4.0-1052.56", + "5.4.0-1053.57", + "5.4.0-1054.58", + "5.4.0-1055.59", + "5.4.0-1056.60", + "5.4.0-1057.61", + "5.4.0-1058.62", + "5.4.0-1059.63", + "5.4.0-1061.65", + "5.4.0-1062.66", + "5.4.0-1063.67", + "5.4.0-1064.68", + "5.4.0-1066.71", + "5.4.0-1067.72", + "5.4.0-1069.75", + "5.4.0-1070.76", + "5.4.0-1071.77", + "5.4.0-1073.79", + "5.4.0-1076.83", + "5.4.0-1078.86", + "5.4.0-1079.87", + "5.4.0-1081.89", + "5.4.0-1082.90", + "5.4.0-1083.91", + "5.4.0-1084.92", + "5.4.0-1086.95", + "5.4.0-1087.96", + "5.4.0-1090.99", + "5.4.0-1091.100", + "5.4.0-1092.101", + "5.4.0-1093.102", + "5.4.0-1094.103", + "5.4.0-1097.106", + "5.4.0-1098.107", + "5.4.0-1099.108", + "5.4.0-1100.109", + "5.4.0-1101.110", + "5.4.0-1102.111", + "5.4.0-1103.112", + "5.4.0-1104.113", + "5.4.0-1105.114", + "5.4.0-1106.115", + "5.4.0-1107.116", + "5.4.0-1108.117", + "5.4.0-1109.118", + "5.4.0-1110.119", + "5.4.0-1111.120", + "5.4.0-1112.121", + "5.4.0-1113.122", + "5.4.0-1115.124", + "5.4.0-1116.125", + "5.4.0-1117.126", + "5.4.0-1118.127", + "5.4.0-1119.128", + "5.4.0-1120.129", + "5.4.0-1121.130", + "5.4.0-1122.131", + "5.4.0-1123.132", + "5.4.0-1124.133", + "5.4.0-1125.134", + "5.4.0-1126.135", + "5.4.0-1127.136", + "5.4.0-1129.138", + "5.4.0-1130.139", + "5.4.0-1131.140", + "5.4.0-1132.141", + "5.4.0-1133.142", + "5.4.0-1134.143", + "5.4.0-1135.144", + "5.4.0-1136.145", + "5.4.0-1137.146", + "5.4.0-1138.147", + "5.4.0-1140.150", + "5.4.0-1141.151", + "5.4.0-1142.152", + "5.4.0-1143.153", + "5.4.0-1144.154", + "5.4.0-1145.155", + "5.4.0-1146.156", + "5.4.0-1147.157", + "5.4.0-1149.159", + "5.4.0-1150.160", + "5.4.0-1151.161" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-headers-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-modules-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-oracle-headers-5.4.0-1151", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-oracle-tools-5.4.0-1151", + "binary_version": "5.4.0-1151.161" + }, + { + "binary_name": "linux-tools-5.4.0-1151-oracle", + "binary_version": "5.4.0-1151.161" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oracle-5.11", + "purl": "pkg:deb/ubuntu/linux-oracle-5.11@5.11.0-1028.31~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-1008.8~20.04.1", + "5.11.0-1013.14~20.04.1", + "5.11.0-1016.17~20.04.1", + "5.11.0-1017.18~20.04.1", + "5.11.0-1019.20~20.04.1", + "5.11.0-1020.21~20.04.1", + "5.11.0-1021.22~20.04.1", + "5.11.0-1022.23~20.04.1", + "5.11.0-1023.24~20.04.1", + "5.11.0-1025.27~20.04.1", + "5.11.0-1027.30~20.04.1", + "5.11.0-1028.31~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-headers-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-modules-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-oracle-5.11-headers-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-oracle-5.11-tools-5.11.0-1028", + "binary_version": "5.11.0-1028.31~20.04.1" + }, + { + "binary_name": "linux-tools-5.11.0-1028-oracle", + "binary_version": "5.11.0-1028.31~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oracle-5.13", + "purl": "pkg:deb/ubuntu/linux-oracle-5.13@5.13.0-1036.43~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1011.13~20.04.2", + "5.13.0-1015.19~20.04.1", + "5.13.0-1016.20~20.04.1", + "5.13.0-1018.22~20.04.1", + "5.13.0-1021.26~20.04.1", + "5.13.0-1025.30~20.04.1", + "5.13.0-1027.32~20.04.1", + "5.13.0-1028.33~20.04.1", + "5.13.0-1030.35~20.04.1", + "5.13.0-1033.39~20.04.1", + "5.13.0-1034.40~20.04.1", + "5.13.0-1036.43~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-headers-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-modules-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-oracle-5.13-headers-5.13.0-1036", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-oracle-5.13-tools-5.13.0-1036", + "binary_version": "5.13.0-1036.43~20.04.1" + }, + { + "binary_name": "linux-tools-5.13.0-1036-oracle", + "binary_version": "5.13.0-1036.43~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-oracle-5.15", + "purl": "pkg:deb/ubuntu/linux-oracle-5.15@5.15.0-1095.101~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1007.9~20.04.1", + "5.15.0-1013.17~20.04.1", + "5.15.0-1016.20~20.04.1", + "5.15.0-1017.22~20.04.1", + "5.15.0-1018.23~20.04.1", + "5.15.0-1019.24~20.04.1", + "5.15.0-1021.27~20.04.1", + "5.15.0-1022.28~20.04.1", + "5.15.0-1025.31~20.04.2", + "5.15.0-1027.33~20.04.1", + "5.15.0-1029.35~20.04.1", + "5.15.0-1030.36~20.04.1", + "5.15.0-1032.38~20.04.1", + "5.15.0-1033.39~20.04.1", + "5.15.0-1034.40~20.04.1", + "5.15.0-1035.41~20.04.1", + "5.15.0-1036.42~20.04.1", + "5.15.0-1037.43~20.04.1", + "5.15.0-1038.44~20.04.1", + "5.15.0-1039.45~20.04.1", + "5.15.0-1040.46~20.04.1", + "5.15.0-1041.47~20.04.1", + "5.15.0-1042.48~20.04.1", + "5.15.0-1044.50~20.04.1", + "5.15.0-1045.51~20.04.1", + "5.15.0-1046.52~20.04.1", + "5.15.0-1047.53~20.04.1", + "5.15.0-1048.54~20.04.1", + "5.15.0-1049.55~20.04.1", + "5.15.0-1050.56~20.04.1", + "5.15.0-1051.57~20.04.1", + "5.15.0-1052.58~20.04.1", + "5.15.0-1053.59~20.04.1", + "5.15.0-1054.60~20.04.1", + "5.15.0-1055.61~20.04.1", + "5.15.0-1058.64~20.04.1", + "5.15.0-1059.65~20.04.1", + "5.15.0-1061.67~20.04.1", + "5.15.0-1062.68~20.04.1", + "5.15.0-1063.69~20.04.1", + "5.15.0-1065.71~20.04.1", + "5.15.0-1066.72~20.04.1", + "5.15.0-1067.73~20.04.1", + "5.15.0-1068.74~20.04.1", + "5.15.0-1069.75~20.04.1", + "5.15.0-1070.76~20.04.1", + "5.15.0-1071.77~20.04.1", + "5.15.0-1072.78~20.04.1", + "5.15.0-1073.79~20.04.1", + "5.15.0-1074.80~20.04.1", + "5.15.0-1075.81~20.04.1", + "5.15.0-1076.82~20.04.1", + "5.15.0-1077.83~20.04.1", + "5.15.0-1078.84~20.04.1", + "5.15.0-1079.85~20.04.1", + "5.15.0-1080.86~20.04.1", + "5.15.0-1081.87~20.04.1", + "5.15.0-1083.89~20.04.1", + "5.15.0-1084.90~20.04.1", + "5.15.0-1085.91~20.04.3", + "5.15.0-1086.92~20.04.1", + "5.15.0-1088.94~20.04.1", + "5.15.0-1090.96~20.04.1", + "5.15.0-1091.97~20.04.1", + "5.15.0-1092.98~20.04.1", + "5.15.0-1093.99~20.04.1", + "5.15.0-1094.100~20.04.1", + "5.15.0-1095.101~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-oracle-5.15-headers-5.15.0-1095", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-oracle-5.15-tools-5.15.0-1095", + "binary_version": "5.15.0-1095.101~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1095-oracle", + "binary_version": "5.15.0-1095.101~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-oracle-5.8", + "purl": "pkg:deb/ubuntu/linux-oracle-5.8@5.8.0-1038.39~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-1031.32~20.04.2", + "5.8.0-1033.34~20.04.1", + "5.8.0-1034.35~20.04.2", + "5.8.0-1037.38~20.04.1", + "5.8.0-1038.39~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-oracle-5.8-headers-5.8.0-1038", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-oracle-5.8-tools-5.8.0-1038", + "binary_version": "5.8.0-1038.39~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-1038-oracle", + "binary_version": "5.8.0-1038.39~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-raspi", + "purl": "pkg:deb/ubuntu/linux-raspi@5.4.0-1136.149?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1007.7", + "5.4.0-1008.8", + "5.4.0-1011.11", + "5.4.0-1012.12", + "5.4.0-1013.13", + "5.4.0-1015.15", + "5.4.0-1016.17", + "5.4.0-1018.20", + "5.4.0-1019.21", + "5.4.0-1021.24", + "5.4.0-1022.25", + "5.4.0-1023.26", + "5.4.0-1025.28", + "5.4.0-1026.29", + "5.4.0-1028.31", + "5.4.0-1029.32", + "5.4.0-1030.33", + "5.4.0-1032.35", + "5.4.0-1033.36", + "5.4.0-1034.37", + "5.4.0-1035.38", + "5.4.0-1036.39", + "5.4.0-1038.41", + "5.4.0-1041.45", + "5.4.0-1042.46", + "5.4.0-1043.47", + "5.4.0-1044.48", + "5.4.0-1045.49", + "5.4.0-1046.50", + "5.4.0-1047.52", + "5.4.0-1048.53", + "5.4.0-1050.56", + "5.4.0-1052.58", + "5.4.0-1053.60", + "5.4.0-1055.62", + "5.4.0-1056.63", + "5.4.0-1058.65", + "5.4.0-1059.67", + "5.4.0-1060.68", + "5.4.0-1062.70", + "5.4.0-1065.75", + "5.4.0-1066.76", + "5.4.0-1068.78", + "5.4.0-1069.79", + "5.4.0-1070.80", + "5.4.0-1071.81", + "5.4.0-1073.84", + "5.4.0-1074.85", + "5.4.0-1077.88", + "5.4.0-1078.89", + "5.4.0-1079.90", + "5.4.0-1080.91", + "5.4.0-1081.92", + "5.4.0-1082.93", + "5.4.0-1083.94", + "5.4.0-1084.95", + "5.4.0-1085.96", + "5.4.0-1086.97", + "5.4.0-1088.99", + "5.4.0-1089.100", + "5.4.0-1090.101", + "5.4.0-1091.102", + "5.4.0-1092.103", + "5.4.0-1093.104", + "5.4.0-1094.105", + "5.4.0-1095.106", + "5.4.0-1096.107", + "5.4.0-1097.109", + "5.4.0-1098.110", + "5.4.0-1100.112", + "5.4.0-1101.113", + "5.4.0-1102.114", + "5.4.0-1103.115", + "5.4.0-1104.116", + "5.4.0-1105.117", + "5.4.0-1106.118", + "5.4.0-1107.119", + "5.4.0-1108.120", + "5.4.0-1109.121", + "5.4.0-1110.122", + "5.4.0-1111.123", + "5.4.0-1112.124", + "5.4.0-1113.125", + "5.4.0-1114.126", + "5.4.0-1115.127", + "5.4.0-1116.128", + "5.4.0-1117.129", + "5.4.0-1118.130", + "5.4.0-1119.131", + "5.4.0-1120.132", + "5.4.0-1121.133", + "5.4.0-1122.134", + "5.4.0-1129.142", + "5.4.0-1130.143", + "5.4.0-1131.144", + "5.4.0-1132.145", + "5.4.0-1133.146", + "5.4.0-1134.147", + "5.4.0-1135.148", + "5.4.0-1136.149" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-headers-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-image-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-modules-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-raspi-headers-5.4.0-1136", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-raspi-tools-5.4.0-1136", + "binary_version": "5.4.0-1136.149" + }, + { + "binary_name": "linux-tools-5.4.0-1136-raspi", + "binary_version": "5.4.0-1136.149" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-raspi2", + "purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.3.0-1007.8", + "5.3.0-1014.16", + "5.3.0-1015.17", + "5.3.0-1017.19", + "5.4.0-1004.4", + "5.4.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-headers-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-image-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-modules-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-raspi2-headers-5.4.0-1006", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-raspi2-tools-5.4.0-1006", + "binary_version": "5.4.0-1006.6" + }, + { + "binary_name": "linux-tools-5.4.0-1006-raspi2", + "binary_version": "5.4.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-riscv", + "purl": "pkg:deb/ubuntu/linux-riscv@5.4.0-40.45?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-24.28", + "5.4.0-26.30", + "5.4.0-27.31", + "5.4.0-28.32", + "5.4.0-30.34", + "5.4.0-31.35", + "5.4.0-33.37", + "5.4.0-34.38", + "5.4.0-36.41", + "5.4.0-37.42", + "5.4.0-39.44", + "5.4.0-40.45" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "crypto-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "fat-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "firewire-core-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "fs-core-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "fs-secondary-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "input-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "ipmi-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "kernel-image-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-buildinfo-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-headers-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-image-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-modules-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-modules-extra-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-riscv-headers-5.4.0-40", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-riscv-tools-5.4.0-40", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-tools-5.4.0-40-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "md-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "message-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "mouse-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "multipath-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "nfs-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "nic-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "nic-shared-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "nic-usb-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "parport-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "pata-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "plip-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "ppp-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "sata-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "scsi-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "storage-core-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "usb-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "virtio-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + }, + { + "binary_name": "vlan-modules-5.4.0-40-generic-di", + "binary_version": "5.4.0-40.45" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-riscv-5.11", + "purl": "pkg:deb/ubuntu/linux-riscv-5.11@5.11.0-1031.35?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.11.0-1015.16~20.04.1", + "5.11.0-1017.18~20.04.1", + "5.11.0-1018.19~20.04.2", + "5.11.0-1020.21~20.04.1", + "5.11.0-1021.22~20.04.1", + "5.11.0-1022.23~20.04.1", + "5.11.0-1023.24~20.04.1", + "5.11.0-1024.25~20.04.1", + "5.11.0-1026.28~20.04.1", + "5.11.0-1028.31~20.04.1", + "5.11.0-1029.32~20.04.1", + "5.11.0-1030.34", + "5.11.0-1031.35" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-headers-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-image-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-modules-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-modules-extra-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-riscv-5.11-headers-5.11.0-1031", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-riscv-5.11-tools-5.11.0-1031", + "binary_version": "5.11.0-1031.35" + }, + { + "binary_name": "linux-tools-5.11.0-1031-generic", + "binary_version": "5.11.0-1031.35" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-riscv-5.15", + "purl": "pkg:deb/ubuntu/linux-riscv-5.15@5.15.0-1094.98~20.04.1?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1015.17~20.04.1", + "5.15.0-1017.19~20.04.1", + "5.15.0-1018.21~20.04.1", + "5.15.0-1019.22~20.04.1", + "5.15.0-1022.26~20.04.1", + "5.15.0-1023.27~20.04.1", + "5.15.0-1026.30~20.04.2", + "5.15.0-1027.31~20.04.1", + "5.15.0-1028.32~20.04.1", + "5.15.0-1029.33~20.04.1", + "5.15.0-1030.34~20.04.1", + "5.15.0-1031.35~20.04.1", + "5.15.0-1032.36~20.04.1", + "5.15.0-1033.37~20.04.1", + "5.15.0-1034.38~20.04.1", + "5.15.0-1035.39~20.04.1", + "5.15.0-1036.40~20.04.2", + "5.15.0-1037.41~20.04.2", + "5.15.0-1038.42~20.04.2", + "5.15.0-1039.43~20.04.2", + "5.15.0-1040.44~20.04.3", + "5.15.0-1041.45~20.04.1", + "5.15.0-1043.47~20.04.1", + "5.15.0-1044.48~20.04.1", + "5.15.0-1045.49~20.04.1", + "5.15.0-1046.50~20.04.1", + "5.15.0-1047.51~20.04.1", + "5.15.0-1048.52~20.04.1", + "5.15.0-1049.53~20.04.2", + "5.15.0-1050.54~20.04.1", + "5.15.0-1051.55~20.04.1", + "5.15.0-1052.56~20.04.1", + "5.15.0-1053.57~20.04.1", + "5.15.0-1056.60~20.04.1", + "5.15.0-1057.61~20.04.1", + "5.15.0-1058.62~20.04.1", + "5.15.0-1059.63~20.04.1", + "5.15.0-1060.64~20.04.1", + "5.15.0-1061.65~20.04.1", + "5.15.0-1062.66~20.04.1", + "5.15.0-1063.67~20.04.1", + "5.15.0-1064.68~20.04.1", + "5.15.0-1065.69~20.04.1", + "5.15.0-1066.70~20.04.1", + "5.15.0-1067.71~20.04.1", + "5.15.0-1068.72~20.04.1", + "5.15.0-1069.73~20.04.1", + "5.15.0-1070.74~20.04.1", + "5.15.0-1071.75~20.04.1", + "5.15.0-1072.76~20.04.1", + "5.15.0-1073.77~20.04.1", + "5.15.0-1074.78~20.04.1", + "5.15.0-1075.79~20.04.1", + "5.15.0-1076.80~20.04.1", + "5.15.0-1077.81~20.04.1", + "5.15.0-1078.82~20.04.1", + "5.15.0-1079.83~20.04.1", + "5.15.0-1081.85~20.04.1", + "5.15.0-1082.86~20.04.1", + "5.15.0-1083.87~20.04.1", + "5.15.0-1084.88~20.04.1", + "5.15.0-1085.89~20.04.1", + "5.15.0-1086.90~20.04.1", + "5.15.0-1087.91~20.04.1", + "5.15.0-1088.92~20.04.1", + "5.15.0-1090.94~20.04.1", + "5.15.0-1091.95~20.04.1", + "5.15.0-1092.96~20.04.1", + "5.15.0-1093.97~20.04.2", + "5.15.0-1094.98~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-headers-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-image-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-modules-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-riscv-5.15-headers-5.15.0-1094", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-riscv-5.15-tools-5.15.0-1094", + "binary_version": "5.15.0-1094.98~20.04.1" + }, + { + "binary_name": "linux-tools-5.15.0-1094-generic", + "binary_version": "5.15.0-1094.98~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:20.04:LTS", + "name": "linux-riscv-5.8", + "purl": "pkg:deb/ubuntu/linux-riscv-5.8@5.8.0-29.31~20.04.1?arch=source&distro=focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.8.0-14.16~20.04.1", + "5.8.0-14.16~20.04.3", + "5.8.0-16.18~20.04.1", + "5.8.0-17.19~20.04.1", + "5.8.0-18.20~20.04.1", + "5.8.0-20.22~20.04.1", + "5.8.0-22.24~20.04.1", + "5.8.0-25.27~20.04.1", + "5.8.0-26.28~20.04.1", + "5.8.0-29.31~20.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "block-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "crypto-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "fat-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "firewire-core-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "fs-core-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "fs-secondary-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "input-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "ipmi-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "kernel-image-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-buildinfo-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-headers-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-image-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-modules-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-modules-extra-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-riscv-5.8-headers-5.8.0-29", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-riscv-5.8-tools-5.8.0-29", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-tools-5.8.0-29-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "linux-udebs-generic", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "md-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "message-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "mouse-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "multipath-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "nfs-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "nic-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "nic-shared-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "nic-usb-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "parport-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "pata-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "plip-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "ppp-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "sata-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "scsi-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "storage-core-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "usb-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "virtio-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + }, + { + "binary_name": "vlan-modules-5.8.0-29-generic-di", + "binary_version": "5.8.0-29.31~20.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:20.04:LTS", + "name": "linux-xilinx-zynqmp", + "purl": "pkg:deb/ubuntu/linux-xilinx-zynqmp@5.4.0-1071.75?arch=source&distro=esm-infra/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1020.24", + "5.4.0-1021.25", + "5.4.0-1022.26", + "5.4.0-1023.27", + "5.4.0-1024.28", + "5.4.0-1025.29", + "5.4.0-1026.30", + "5.4.0-1027.31", + "5.4.0-1028.32", + "5.4.0-1029.33", + "5.4.0-1030.34", + "5.4.0-1031.35", + "5.4.0-1032.36", + "5.4.0-1033.37", + "5.4.0-1034.38", + "5.4.0-1035.39", + "5.4.0-1036.40", + "5.4.0-1037.41", + "5.4.0-1038.42", + "5.4.0-1039.43", + "5.4.0-1040.44", + "5.4.0-1041.45", + "5.4.0-1042.46", + "5.4.0-1043.47", + "5.4.0-1044.48", + "5.4.0-1045.49", + "5.4.0-1046.50", + "5.4.0-1047.51", + "5.4.0-1048.52", + "5.4.0-1049.53", + "5.4.0-1050.54", + "5.4.0-1051.55", + "5.4.0-1052.56", + "5.4.0-1053.57", + "5.4.0-1054.58", + "5.4.0-1055.59", + "5.4.0-1056.60", + "5.4.0-1058.62", + "5.4.0-1060.64", + "5.4.0-1061.65", + "5.4.0-1062.66", + "5.4.0-1064.68", + "5.4.0-1065.69", + "5.4.0-1066.70", + "5.4.0-1067.71", + "5.4.0-1068.72", + "5.4.0-1069.73", + "5.4.0-1070.74", + "5.4.0-1071.75" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1071-xilinx-zynqmp", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-headers-5.4.0-1071-xilinx-zynqmp", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-image-5.4.0-1071-xilinx-zynqmp", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-modules-5.4.0-1071-xilinx-zynqmp", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-tools-5.4.0-1071-xilinx-zynqmp", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-xilinx-zynqmp-headers-5.4.0-1071", + "binary_version": "5.4.0-1071.75" + }, + { + "binary_name": "linux-xilinx-zynqmp-tools-5.4.0-1071", + "binary_version": "5.4.0-1071.75" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@5.4.0-1154.164+fips1?arch=source&distro=fips-updates/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1021.21+fips2", + "5.4.0-1069.73+fips2", + "5.4.0-1071.76+fips1", + "5.4.0-1072.77+fips1", + "5.4.0-1073.78+fips1", + "5.4.0-1078.84+fips1", + "5.4.0-1080.87+fips1", + "5.4.0-1081.88+fips1", + "5.4.0-1083.90+fips1", + "5.4.0-1085.92+fips1", + "5.4.0-1086.93+fips1", + "5.4.0-1088.96+fips1", + "5.4.0-1089.97+fips1", + "5.4.0-1092.100+fips1", + "5.4.0-1093.101+fips1", + "5.4.0-1094.102+fips1", + "5.4.0-1096.104+fips1", + "5.4.0-1099.107+fips1", + "5.4.0-1100.108+fips1", + "5.4.0-1101.109+fips1", + "5.4.0-1102.110+fips1", + "5.4.0-1103.111+fips1", + "5.4.0-1104.112+fips1", + "5.4.0-1105.113+fips1", + "5.4.0-1106.114+fips1", + "5.4.0-1107.115+fips1", + "5.4.0-1108.116+fips1", + "5.4.0-1109.118+fips1", + "5.4.0-1110.119+fips1", + "5.4.0-1111.120+fips1", + "5.4.0-1112.121+fips1", + "5.4.0-1113.123+fips1", + "5.4.0-1114.124+fips1", + "5.4.0-1116.126+fips1", + "5.4.0-1117.127+fips1", + "5.4.0-1118.128+fips1", + "5.4.0-1119.129+fips1", + "5.4.0-1120.130+fips1", + "5.4.0-1121.131+fips1", + "5.4.0-1122.132+fips1", + "5.4.0-1123.133+fips1", + "5.4.0-1124.134+fips1", + "5.4.0-1125.135+fips1", + "5.4.0-1126.136+fips2", + "5.4.0-1127.137+fips1", + "5.4.0-1128.138+fips1", + "5.4.0-1129.139+fips1", + "5.4.0-1130.140+fips1", + "5.4.0-1131.141+fips1", + "5.4.0-1132.142+fips1", + "5.4.0-1133.143+fips1", + "5.4.0-1134.144+fips1", + "5.4.0-1135.145+fips1", + "5.4.0-1136.146+fips1", + "5.4.0-1137.147+fips1", + "5.4.0-1139.149+fips1", + "5.4.0-1140.151+fips1", + "5.4.0-1142.153+fips1", + "5.4.0-1144.155+fips1", + "5.4.0-1145.156+fips1", + "5.4.0-1146.156+fips1", + "5.4.0-1147.157+fips1", + "5.4.0-1148.158+fips1", + "5.4.0-1149.159+fips1", + "5.4.0-1150.160+fips1", + "5.4.0-1151.161+fips1", + "5.4.0-1152.162+fips1", + "5.4.0-1153.163+fips1", + "5.4.0-1154.164+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-5.4.0-1154", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-aws-fips-tools-5.4.0-1154", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-headers-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-modules-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + }, + { + "binary_name": "linux-tools-5.4.0-1154-aws-fips", + "binary_version": "5.4.0-1154.164+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@5.4.0-1157.164+fips1?arch=source&distro=fips-updates/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1022.22+fips1", + "5.4.0-1073.76+fips1", + "5.4.0-1074.77+fips1", + "5.4.0-1076.79+fips1", + "5.4.0-1078.81+fips1", + "5.4.0-1080.83+fips1", + "5.4.0-1083.87+fips1", + "5.4.0-1085.90+fips1", + "5.4.0-1086.91+fips1", + "5.4.0-1089.94+fips1", + "5.4.0-1090.95+fips1", + "5.4.0-1091.96+fips1", + "5.4.0-1094.100+fips1", + "5.4.0-1095.101+fips1", + "5.4.0-1098.104+fips1", + "5.4.0-1100.106+fips1", + "5.4.0-1101.107+fips1", + "5.4.0-1103.109+fips1", + "5.4.0-1104.110+fips1", + "5.4.0-1105.111+fips1", + "5.4.0-1106.112+fips1", + "5.4.0-1107.113+fips1", + "5.4.0-1108.114+fips1", + "5.4.0-1109.115+fips1", + "5.4.0-1110.116+fips1", + "5.4.0-1111.117+fips1", + "5.4.0-1112.118+fips1", + "5.4.0-1113.119+fips1", + "5.4.0-1114.120+fips1", + "5.4.0-1115.122+fips1", + "5.4.0-1116.123+fips1", + "5.4.0-1117.124+fips1", + "5.4.0-1118.125+fips1", + "5.4.0-1119.126+fips1", + "5.4.0-1121.128+fips1", + "5.4.0-1122.129+fips1", + "5.4.0-1123.130+fips1", + "5.4.0-1124.131+fips1", + "5.4.0-1126.133+fips1", + "5.4.0-1127.134+fips1", + "5.4.0-1128.135+fips1", + "5.4.0-1129.136+fips1", + "5.4.0-1130.137+fips1", + "5.4.0-1131.138+fips1", + "5.4.0-1132.139+fips1", + "5.4.0-1133.140+fips1", + "5.4.0-1134.141+fips1", + "5.4.0-1135.142+fips1", + "5.4.0-1136.143+fips1", + "5.4.0-1137.144+fips1", + "5.4.0-1138.145+fips1", + "5.4.0-1139.146+fips1", + "5.4.0-1140.147+fips1", + "5.4.0-1142.149+fips1", + "5.4.0-1143.150+fips1", + "5.4.0-1145.152+fips1", + "5.4.0-1147.154+fips1", + "5.4.0-1148.156+fips1", + "5.4.0-1149.157+fips1", + "5.4.0-1151.158+fips1", + "5.4.0-1152.159+fips1", + "5.4.0-1153.160+fips1", + "5.4.0-1154.161+fips1", + "5.4.0-1155.162+fips1", + "5.4.0-1157.164+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-5.4.0-1157", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-azure-fips-headers-5.4.0-1157", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-azure-fips-tools-5.4.0-1157", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-headers-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-modules-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + }, + { + "binary_name": "linux-tools-5.4.0-1157-azure-fips", + "binary_version": "5.4.0-1157.164+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@5.4.0-1128.138?arch=source&distro=fips-updates/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1026.30", + "5.4.0-1028.32", + "5.4.0-1031.36", + "5.4.0-1032.37", + "5.4.0-1033.38", + "5.4.0-1034.40", + "5.4.0-1035.41", + "5.4.0-1036.42", + "5.4.0-1037.43", + "5.4.0-1038.44", + "5.4.0-1040.46", + "5.4.0-1041.47", + "5.4.0-1042.48", + "5.4.0-1043.49", + "5.4.0-1045.51", + "5.4.0-1046.52", + "5.4.0-1047.53", + "5.4.0-1048.54", + "5.4.0-1049.55", + "5.4.0-1051.57", + "5.4.0-1054.61", + "5.4.0-1056.64", + "5.4.0-1057.65", + "5.4.0-1059.67", + "5.4.0-1060.68", + "5.4.0-1061.69", + "5.4.0-1062.70", + "5.4.0-1064.73", + "5.4.0-1065.74", + "5.4.0-1068.77", + "5.4.0-1069.78", + "5.4.0-1070.79", + "5.4.0-1072.81", + "5.4.0-1073.82", + "5.4.0-1074.83", + "5.4.0-1075.84", + "5.4.0-1076.85", + "5.4.0-1077.86", + "5.4.0-1078.87", + "5.4.0-1079.88", + "5.4.0-1080.89", + "5.4.0-1081.90", + "5.4.0-1082.91", + "5.4.0-1083.92", + "5.4.0-1084.93", + "5.4.0-1085.94", + "5.4.0-1086.95", + "5.4.0-1087.96", + "5.4.0-1088.97", + "5.4.0-1089.98", + "5.4.0-1090.100", + "5.4.0-1091.101", + "5.4.0-1092.102", + "5.4.0-1094.104", + "5.4.0-1095.105", + "5.4.0-1096.106", + "5.4.0-1097.107", + "5.4.0-1098.108", + "5.4.0-1099.109", + "5.4.0-1100.110", + "5.4.0-1101.111", + "5.4.0-1102.112", + "5.4.0-1103.113", + "5.4.0-1104.114", + "5.4.0-1105.115", + "5.4.0-1106.116", + "5.4.0-1107.117", + "5.4.0-1108.118", + "5.4.0-1109.119", + "5.4.0-1110.120", + "5.4.0-1111.121", + "5.4.0-1112.122", + "5.4.0-1116.126", + "5.4.0-1117.127", + "5.4.0-1118.128", + "5.4.0-1119.129", + "5.4.0-1120.130", + "5.4.0-1121.131", + "5.4.0-1122.132", + "5.4.0-1123.133", + "5.4.0-1124.134", + "5.4.0-1125.135", + "5.4.0-1126.136", + "5.4.0-1127.137", + "5.4.0-1128.138" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-fips-headers-5.4.0-1128", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-fips-tools-5.4.0-1128", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-fips-tools-host", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-headers-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-modules-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + }, + { + "binary_name": "linux-tools-5.4.0-1128-fips", + "binary_version": "5.4.0-1128.138" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.4.0-1157.166+fips1?arch=source&distro=fips-updates/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1021.21+fips1", + "5.4.0-1067.71~20.04.1", + "5.4.0-1069.73+fips2", + "5.4.0-1071.75+fips1", + "5.4.0-1073.78+fips1", + "5.4.0-1075.80+fips1", + "5.4.0-1078.84+fips1", + "5.4.0-1080.87+fips1", + "5.4.0-1081.88+fips1", + "5.4.0-1086.94+fips1", + "5.4.0-1087.95+fips1", + "5.4.0-1089.97+fips1", + "5.4.0-1092.101+fips1", + "5.4.0-1093.102+fips1", + "5.4.0-1096.105+fips1", + "5.4.0-1097.106+fips1", + "5.4.0-1098.107+fips1", + "5.4.0-1100.109+fips1", + "5.4.0-1101.110+fips1", + "5.4.0-1102.111+fips1", + "5.4.0-1103.112+fips1", + "5.4.0-1104.113+fips1", + "5.4.0-1105.114+fips1", + "5.4.0-1106.115+fips1", + "5.4.0-1107.116+fips1", + "5.4.0-1108.117+fips1", + "5.4.0-1109.118+fips1", + "5.4.0-1110.119+fips1", + "5.4.0-1111.120+fips1", + "5.4.0-1112.121+fips1", + "5.4.0-1113.122+fips1", + "5.4.0-1115.124+fips1", + "5.4.0-1116.125+fips1", + "5.4.0-1117.126+fips1", + "5.4.0-1118.127+fips1", + "5.4.0-1120.129+fips1", + "5.4.0-1121.130+fips1", + "5.4.0-1122.131+fips1", + "5.4.0-1124.133+fips1", + "5.4.0-1125.134+fips1", + "5.4.0-1126.135+fips1", + "5.4.0-1127.136+fips1", + "5.4.0-1128.137+fips1", + "5.4.0-1129.138+fips1", + "5.4.0-1130.139+fips1", + "5.4.0-1131.140+fips1", + "5.4.0-1132.141+fips1", + "5.4.0-1133.142+fips1", + "5.4.0-1134.143+fips1", + "5.4.0-1135.144+fips1", + "5.4.0-1136.145+fips1", + "5.4.0-1137.146+fips1", + "5.4.0-1138.147+fips1", + "5.4.0-1139.148+fips1", + "5.4.0-1140.149+fips1", + "5.4.0-1141.150+fips1", + "5.4.0-1142.151+fips1", + "5.4.0-1143.152+fips1", + "5.4.0-1145.154+fips1", + "5.4.0-1146.155+fips1", + "5.4.0-1147.156+fips1", + "5.4.0-1148.157+fips1", + "5.4.0-1149.158+fips1", + "5.4.0-1150.159+fips1", + "5.4.0-1151.160+fips1", + "5.4.0-1152.161+fips1", + "5.4.0-1153.162+fips1", + "5.4.0-1154.163+fips1", + "5.4.0-1155.164+fips1", + "5.4.0-1156.165+fips1", + "5.4.0-1157.166+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-gcp-fips-headers-5.4.0-1157", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-gcp-fips-tools-5.4.0-1157", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-headers-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-modules-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + }, + { + "binary_name": "linux-tools-5.4.0-1157-gcp-fips", + "binary_version": "5.4.0-1157.166+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@5.4.0-1021.21+fips2?arch=source&distro=fips/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1021.21+fips2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-headers-5.4.0-1021", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-aws-fips-tools-5.4.0-1021", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-headers-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-modules-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + }, + { + "binary_name": "linux-tools-5.4.0-1021-aws-fips", + "binary_version": "5.4.0-1021.21+fips2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@5.4.0-1022.22+fips1?arch=source&distro=fips/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1022.22+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-5.4.0-1022", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-azure-fips-headers-5.4.0-1022", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-azure-fips-tools-5.4.0-1022", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-buildinfo-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-headers-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-modules-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + }, + { + "binary_name": "linux-tools-5.4.0-1022-azure-fips", + "binary_version": "5.4.0-1022.22+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@5.4.0-1007.8?arch=source&distro=fips/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1007.8" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-fips-headers-5.4.0-1007", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-fips-tools-5.4.0-1007", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-fips-tools-host", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-headers-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-modules-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + }, + { + "binary_name": "linux-tools-5.4.0-1007-fips", + "binary_version": "5.4.0-1007.8" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.4.0-1021.21+fips1?arch=source&distro=fips/focal" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.4.0-1021.21+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-gcp-fips-headers-5.4.0-1021", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-gcp-fips-tools-5.4.0-1021", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-headers-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-modules-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-modules-extra-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + }, + { + "binary_name": "linux-tools-5.4.0-1021-gcp-fips", + "binary_version": "5.4.0-1021.21+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@5.15.0-168.178?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-19.19", + "5.15.0-17.17", + "5.15.0-18.18", + "5.15.0-22.22", + "5.15.0-23.23", + "5.15.0-25.25", + "5.15.0-27.28", + "5.15.0-30.31", + "5.15.0-33.34", + "5.15.0-35.36", + "5.15.0-37.39", + "5.15.0-39.42", + "5.15.0-40.43", + "5.15.0-41.44", + "5.15.0-43.46", + "5.15.0-46.49", + "5.15.0-47.51", + "5.15.0-48.54", + "5.15.0-50.56", + "5.15.0-52.58", + "5.15.0-53.59", + "5.15.0-56.62", + "5.15.0-57.63", + "5.15.0-58.64", + "5.15.0-60.66", + "5.15.0-67.74", + "5.15.0-69.76", + "5.15.0-70.77", + "5.15.0-71.78", + "5.15.0-72.79", + "5.15.0-73.80", + "5.15.0-75.82", + "5.15.0-76.83", + "5.15.0-78.85", + "5.15.0-79.86", + "5.15.0-82.91", + "5.15.0-83.92", + "5.15.0-84.93", + "5.15.0-86.96", + "5.15.0-87.97", + "5.15.0-88.98", + "5.15.0-89.99", + "5.15.0-91.101", + "5.15.0-92.102", + "5.15.0-94.104", + "5.15.0-97.107", + "5.15.0-100.110", + "5.15.0-101.111", + "5.15.0-102.112", + "5.15.0-105.115", + "5.15.0-106.116", + "5.15.0-107.117", + "5.15.0-112.122", + "5.15.0-113.123", + "5.15.0-116.126", + "5.15.0-117.127", + "5.15.0-118.128", + "5.15.0-119.129", + "5.15.0-121.131", + "5.15.0-122.132", + "5.15.0-124.134", + "5.15.0-125.135", + "5.15.0-126.136", + "5.15.0-127.137", + "5.15.0-128.138", + "5.15.0-130.140", + "5.15.0-131.141", + "5.15.0-133.144", + "5.15.0-134.145", + "5.15.0-135.146", + "5.15.0-136.147", + "5.15.0-138.148", + "5.15.0-139.149", + "5.15.0-140.150", + "5.15.0-141.151", + "5.15.0-142.152", + "5.15.0-143.153", + "5.15.0-144.157", + "5.15.0-151.161", + "5.15.0-152.162", + "5.15.0-153.163", + "5.15.0-156.166", + "5.15.0-157.167", + "5.15.0-160.170", + "5.15.0-161.171", + "5.15.0-163.173", + "5.15.0-164.174", + "5.15.0-168.178" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-extra-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-source-5.15.0", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168-generic-lpae", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "5.15.0-168.178" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-allwinner-5.19", + "purl": "pkg:deb/ubuntu/linux-allwinner-5.19@5.19.0-1015.15~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1007.7~22.04.1", + "5.19.0-1009.9~22.04.1", + "5.19.0-1010.10~22.04.1", + "5.19.0-1011.11~22.04.1", + "5.19.0-1012.12~22.04.1", + "5.19.0-1013.13~22.04.1", + "5.19.0-1014.14~22.04.1", + "5.19.0-1015.15~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-allwinner-5.19-headers-5.19.0-1015", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-allwinner-5.19-tools-5.19.0-1015", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-buildinfo-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-headers-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-image-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-modules-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + }, + { + "binary_name": "linux-tools-5.19.0-1015-allwinner", + "binary_version": "5.19.0-1015.15~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@5.15.0-1099.106?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1005.6", + "5.15.0-1002.4", + "5.15.0-1003.5", + "5.15.0-1004.6", + "5.15.0-1005.7", + "5.15.0-1008.10", + "5.15.0-1009.11", + "5.15.0-1011.14", + "5.15.0-1013.17", + "5.15.0-1014.18", + "5.15.0-1015.19", + "5.15.0-1017.21", + "5.15.0-1019.23", + "5.15.0-1020.24", + "5.15.0-1021.25", + "5.15.0-1022.26", + "5.15.0-1023.27", + "5.15.0-1026.30", + "5.15.0-1027.31", + "5.15.0-1028.32", + "5.15.0-1030.34", + "5.15.0-1031.35", + "5.15.0-1033.37", + "5.15.0-1034.38", + "5.15.0-1035.39", + "5.15.0-1036.40", + "5.15.0-1037.41", + "5.15.0-1038.43", + "5.15.0-1039.44", + "5.15.0-1040.45", + "5.15.0-1042.47", + "5.15.0-1043.48", + "5.15.0-1044.49", + "5.15.0-1045.50", + "5.15.0-1047.52", + "5.15.0-1048.53", + "5.15.0-1049.54", + "5.15.0-1050.55", + "5.15.0-1051.56", + "5.15.0-1052.57", + "5.15.0-1053.58", + "5.15.0-1055.60", + "5.15.0-1056.61", + "5.15.0-1057.63", + "5.15.0-1060.66", + "5.15.0-1061.67", + "5.15.0-1062.68", + "5.15.0-1063.69", + "5.15.0-1064.70", + "5.15.0-1065.71", + "5.15.0-1066.72", + "5.15.0-1067.73", + "5.15.0-1068.74", + "5.15.0-1069.75", + "5.15.0-1070.76", + "5.15.0-1071.77", + "5.15.0-1072.78", + "5.15.0-1073.79", + "5.15.0-1076.83", + "5.15.0-1078.85", + "5.15.0-1079.86", + "5.15.0-1080.87", + "5.15.0-1081.88", + "5.15.0-1082.89", + "5.15.0-1083.90", + "5.15.0-1084.91", + "5.15.0-1085.92", + "5.15.0-1086.93", + "5.15.0-1087.94", + "5.15.0-1088.95", + "5.15.0-1089.96", + "5.15.0-1090.97", + "5.15.0-1091.98", + "5.15.0-1092.99", + "5.15.0-1093.100", + "5.15.0-1095.102", + "5.15.0-1096.103", + "5.15.0-1097.104", + "5.15.0-1098.105", + "5.15.0-1099.106" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-aws-headers-5.15.0-1099", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-aws-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-headers-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-headers-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-modules-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-modules-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-tools-5.15.0-1099-aws", + "binary_version": "5.15.0-1099.106" + }, + { + "binary_name": "linux-tools-5.15.0-1099-aws-64k", + "binary_version": "5.15.0-1099.106" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-aws-5.19", + "purl": "pkg:deb/ubuntu/linux-aws-5.19@5.19.0-1029.30~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1019.20~22.04.1", + "5.19.0-1020.21~22.04.1", + "5.19.0-1022.23~22.04.1", + "5.19.0-1023.24~22.04.1", + "5.19.0-1024.25~22.04.1", + "5.19.0-1025.26~22.04.1", + "5.19.0-1026.27~22.04.1", + "5.19.0-1027.28~22.04.1", + "5.19.0-1028.29~22.04.1", + "5.19.0-1029.30~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-5.19-cloud-tools-5.19.0-1029", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-aws-5.19-headers-5.19.0-1029", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-aws-5.19-tools-5.19.0-1029", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-buildinfo-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-headers-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-modules-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + }, + { + "binary_name": "linux-tools-5.19.0-1029-aws", + "binary_version": "5.19.0-1029.30~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-aws-6.2", + "purl": "pkg:deb/ubuntu/linux-aws-6.2@6.2.0-1018.18~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1005.5~22.04.1", + "6.2.0-1006.6~22.04.1", + "6.2.0-1007.7~22.04.1", + "6.2.0-1008.8~22.04.1", + "6.2.0-1009.9~22.04.3", + "6.2.0-1010.10~22.04.1", + "6.2.0-1011.11~22.04.1", + "6.2.0-1012.12~22.04.1", + "6.2.0-1013.13~22.04.1", + "6.2.0-1014.14~22.04.1", + "6.2.0-1015.15~22.04.1", + "6.2.0-1016.16~22.04.1", + "6.2.0-1017.17~22.04.1", + "6.2.0-1018.18~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-6.2-cloud-tools-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-aws-6.2-headers-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-aws-6.2-tools-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1018-aws", + "binary_version": "6.2.0-1018.18~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-aws-6.5", + "purl": "pkg:deb/ubuntu/linux-aws-6.5@6.5.0-1024.24~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1008.8~22.04.1", + "6.5.0-1010.10~22.04.1", + "6.5.0-1011.11~22.04.1", + "6.5.0-1012.12~22.04.1", + "6.5.0-1014.14~22.04.1", + "6.5.0-1015.15~22.04.1", + "6.5.0-1016.16~22.04.1", + "6.5.0-1017.17~22.04.2", + "6.5.0-1018.18~22.04.1", + "6.5.0-1020.20~22.04.1", + "6.5.0-1021.21~22.04.1", + "6.5.0-1022.22~22.04.1", + "6.5.0-1023.23~22.04.1", + "6.5.0-1024.24~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-6.5-cloud-tools-6.5.0-1024", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-aws-6.5-headers-6.5.0-1024", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-aws-6.5-tools-6.5.0-1024", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1024-aws", + "binary_version": "6.5.0-1024.24~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-aws-6.8", + "purl": "pkg:deb/ubuntu/linux-aws-6.8@6.8.0-1044.46~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1009.9~22.04.2", + "6.8.0-1010.10~22.04.2", + "6.8.0-1011.12~22.04.1", + "6.8.0-1013.14~22.04.1", + "6.8.0-1014.15~22.04.1", + "6.8.0-1015.16~22.04.1", + "6.8.0-1016.17~22.04.2", + "6.8.0-1017.18~22.04.1", + "6.8.0-1018.19~22.04.1", + "6.8.0-1019.21~22.04.1", + "6.8.0-1020.22~22.04.1", + "6.8.0-1021.23~22.04.1", + "6.8.0-1023.25~22.04.1", + "6.8.0-1024.26~22.04.1", + "6.8.0-1027.29~22.04.1", + "6.8.0-1028.30~22.04.1", + "6.8.0-1029.31~22.04.1", + "6.8.0-1030.32~22.04.1", + "6.8.0-1031.33~22.04.1", + "6.8.0-1032.34~22.04.1", + "6.8.0-1033.35~22.04.1", + "6.8.0-1035.37~22.04.1", + "6.8.0-1036.38~22.04.1", + "6.8.0-1039.41~22.04.1", + "6.8.0-1040.42~22.04.1", + "6.8.0-1041.43~22.04.1", + "6.8.0-1042.44~22.04.1", + "6.8.0-1043.45~22.04.1", + "6.8.0-1044.46~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-6.8-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-aws-6.8-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-aws-6.8-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@5.15.0-1102.111?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1006.7", + "5.15.0-1001.2", + "5.15.0-1002.3", + "5.15.0-1003.4", + "5.15.0-1005.6", + "5.15.0-1007.8", + "5.15.0-1008.9", + "5.15.0-1010.12", + "5.15.0-1012.15", + "5.15.0-1013.16", + "5.15.0-1014.17", + "5.15.0-1017.20", + "5.15.0-1019.24", + "5.15.0-1020.25", + "5.15.0-1021.26", + "5.15.0-1022.27", + "5.15.0-1023.29", + "5.15.0-1024.30", + "5.15.0-1029.36", + "5.15.0-1030.37", + "5.15.0-1031.38", + "5.15.0-1033.40", + "5.15.0-1034.41", + "5.15.0-1035.42", + "5.15.0-1036.43", + "5.15.0-1037.44", + "5.15.0-1038.45", + "5.15.0-1039.46", + "5.15.0-1040.47", + "5.15.0-1041.48", + "5.15.0-1042.49", + "5.15.0-1044.51", + "5.15.0-1045.52", + "5.15.0-1046.53", + "5.15.0-1047.54", + "5.15.0-1049.56", + "5.15.0-1050.57", + "5.15.0-1051.59", + "5.15.0-1052.60", + "5.15.0-1053.61", + "5.15.0-1054.62", + "5.15.0-1056.64", + "5.15.0-1057.65", + "5.15.0-1058.66", + "5.15.0-1059.67", + "5.15.0-1060.69", + "5.15.0-1061.70", + "5.15.0-1063.72", + "5.15.0-1064.73", + "5.15.0-1066.75", + "5.15.0-1067.76", + "5.15.0-1068.77", + "5.15.0-1070.79", + "5.15.0-1071.80", + "5.15.0-1072.81", + "5.15.0-1073.82", + "5.15.0-1074.83", + "5.15.0-1075.84", + "5.15.0-1078.87", + "5.15.0-1079.88", + "5.15.0-1081.90", + "5.15.0-1082.91", + "5.15.0-1084.93", + "5.15.0-1086.95", + "5.15.0-1087.96", + "5.15.0-1088.97", + "5.15.0-1089.98", + "5.15.0-1090.99", + "5.15.0-1091.100", + "5.15.0-1092.101", + "5.15.0-1094.103", + "5.15.0-1095.104", + "5.15.0-1096.105", + "5.15.0-1097.106", + "5.15.0-1098.107", + "5.15.0-1099.108", + "5.15.0-1101.110", + "5.15.0-1102.111" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-azure-headers-5.15.0-1102", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-azure-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-headers-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-modules-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-modules-involflt-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + }, + { + "binary_name": "linux-tools-5.15.0-1102-azure", + "binary_version": "5.15.0-1102.111" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-5.19", + "purl": "pkg:deb/ubuntu/linux-azure-5.19@5.19.0-1027.30~22.04.2?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1020.21~22.04.1", + "5.19.0-1021.22~22.04.1", + "5.19.0-1022.23~22.04.1", + "5.19.0-1023.24~22.04.1", + "5.19.0-1025.28~22.04.1", + "5.19.0-1026.29~22.04.1", + "5.19.0-1027.30~22.04.2" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-5.19-cloud-tools-5.19.0-1027", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-azure-5.19-headers-5.19.0-1027", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-azure-5.19-tools-5.19.0-1027", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-buildinfo-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-cloud-tools-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-headers-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-modules-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + }, + { + "binary_name": "linux-tools-5.19.0-1027-azure", + "binary_version": "5.19.0-1027.30~22.04.2" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-6.2", + "purl": "pkg:deb/ubuntu/linux-azure-6.2@6.2.0-1019.19~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1005.5~22.04.1", + "6.2.0-1006.6~22.04.1", + "6.2.0-1007.7~22.04.1", + "6.2.0-1008.8~22.04.1", + "6.2.0-1009.9~22.04.3", + "6.2.0-1011.11~22.04.1", + "6.2.0-1012.12~22.04.1", + "6.2.0-1014.14~22.04.1", + "6.2.0-1015.15~22.04.1", + "6.2.0-1016.16~22.04.1", + "6.2.0-1017.17~22.04.1", + "6.2.0-1018.18~22.04.1", + "6.2.0-1019.19~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-6.2-cloud-tools-6.2.0-1019", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-azure-6.2-headers-6.2.0-1019", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-azure-6.2-tools-6.2.0-1019", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1019-azure", + "binary_version": "6.2.0-1019.19~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-6.5", + "purl": "pkg:deb/ubuntu/linux-azure-6.5@6.5.0-1025.26~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1007.7~22.04.1", + "6.5.0-1009.9~22.04.1", + "6.5.0-1010.10~22.04.1", + "6.5.0-1011.11~22.04.1", + "6.5.0-1015.15~22.04.1", + "6.5.0-1016.16~22.04.1", + "6.5.0-1017.17~22.04.1", + "6.5.0-1018.19~22.04.2", + "6.5.0-1019.20~22.04.1", + "6.5.0-1021.22~22.04.1", + "6.5.0-1022.23~22.04.1", + "6.5.0-1023.24~22.04.1", + "6.5.0-1024.25~22.04.1", + "6.5.0-1025.26~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-6.5-cloud-tools-6.5.0-1025", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-azure-6.5-headers-6.5.0-1025", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-azure-6.5-tools-6.5.0-1025", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1025-azure", + "binary_version": "6.5.0-1025.26~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-6.8", + "purl": "pkg:deb/ubuntu/linux-azure-6.8@6.8.0-1044.50~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1008.8~22.04.1", + "6.8.0-1009.9~22.04.1", + "6.8.0-1010.10~22.04.1", + "6.8.0-1012.14~22.04.1", + "6.8.0-1013.15~22.04.1", + "6.8.0-1014.16~22.04.1", + "6.8.0-1015.17~22.04.2", + "6.8.0-1017.20~22.04.1", + "6.8.0-1018.21~22.04.1", + "6.8.0-1020.23~22.04.1", + "6.8.0-1021.25~22.04.1", + "6.8.0-1025.30~22.04.1", + "6.8.0-1026.31~22.04.1", + "6.8.0-1027.32~22.04.1", + "6.8.0-1028.33~22.04.1", + "6.8.0-1029.34~22.04.1", + "6.8.0-1030.35~22.04.1", + "6.8.0-1031.36~22.04.1", + "6.8.0-1034.39~22.04.1", + "6.8.0-1036.42~22.04.1", + "6.8.0-1040.46~22.04.1", + "6.8.0-1041.47~22.04.1", + "6.8.0-1044.50~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-6.8-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-azure-6.8-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-azure-6.8-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-modules-involflt-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-fde", + "purl": "pkg:deb/ubuntu/linux-azure-fde@5.15.0-1102.111.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1019.24.1", + "5.15.0-1024.30.1", + "5.15.0-1029.36.1", + "5.15.0-1030.37.1", + "5.15.0-1031.38.1", + "5.15.0-1033.40.1", + "5.15.0-1034.41.1", + "5.15.0-1035.42.1", + "5.15.0-1036.43.1", + "5.15.0-1037.44.1", + "5.15.0-1038.45.1", + "5.15.0-1039.46.1", + "5.15.0-1041.48.1", + "5.15.0-1042.49.1", + "5.15.0-1044.51.1", + "5.15.0-1045.52.1", + "5.15.0-1046.53.1", + "5.15.0-1047.54.1", + "5.15.0-1049.56.1", + "5.15.0-1050.57.1", + "5.15.0-1051.59.1", + "5.15.0-1052.60.1", + "5.15.0-1053.61.1", + "5.15.0-1054.62.1", + "5.15.0-1056.64.1", + "5.15.0-1057.65.1", + "5.15.0-1058.66.1", + "5.15.0-1059.67.1", + "5.15.0-1060.69.1", + "5.15.0-1061.70.1", + "5.15.0-1063.72.1", + "5.15.0-1064.73.1", + "5.15.0-1065.74.1", + "5.15.0-1067.76.1", + "5.15.0-1068.77.1", + "5.15.0-1070.79.1", + "5.15.0-1071.80.1", + "5.15.0-1072.81.1", + "5.15.0-1073.82.1", + "5.15.0-1076.85.1", + "5.15.0-1078.87.1", + "5.15.0-1081.90.1", + "5.15.0-1082.91.1", + "5.15.0-1084.93.1", + "5.15.0-1086.95.1", + "5.15.0-1087.96.1", + "5.15.0-1088.97.1", + "5.15.0-1089.98.1", + "5.15.0-1090.99.1", + "5.15.0-1091.100.1", + "5.15.0-1092.101.1", + "5.15.0-1094.103.1", + "5.15.0-1095.104.1", + "5.15.0-1096.105.1", + "5.15.0-1097.106.1", + "5.15.0-1098.107.1", + "5.15.0-1102.111.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", + "binary_version": "5.15.0-1102.111.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-fde-5.19", + "purl": "pkg:deb/ubuntu/linux-azure-fde-5.19@5.19.0-1027.30~22.04.2.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1025.28~22.04.1.1", + "5.19.0-1026.29~22.04.1.1", + "5.19.0-1027.30~22.04.2.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-5.19.0-1027-azure-fde", + "binary_version": "5.19.0-1027.30~22.04.2.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-fde-6.2", + "purl": "pkg:deb/ubuntu/linux-azure-fde-6.2@6.2.0-1019.19~22.04.1.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1008.8~22.04.1.1", + "6.2.0-1009.9~22.04.3.1", + "6.2.0-1011.11~22.04.1.1", + "6.2.0-1012.12~22.04.1.1", + "6.2.0-1014.14~22.04.1.1", + "6.2.0-1015.15~22.04.1.1", + "6.2.0-1016.16~22.04.1.1", + "6.2.0-1017.17~22.04.1.1", + "6.2.0-1018.18~22.04.1.1", + "6.2.0-1019.19~22.04.1.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-image-unsigned-6.2.0-1019-azure-fde", + "binary_version": "6.2.0-1019.19~22.04.1.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-azure-fde-6.8", + "purl": "pkg:deb/ubuntu/linux-azure-fde-6.8@6.8.0-1044.51~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1041.48~22.04.1", + "6.8.0-1042.49~22.04.1", + "6.8.0-1044.51~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fde-6.8-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-azure-fde-6.8-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-azure-fde-6.8-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@5.15.0-1099.108?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1005.6", + "5.15.0-1001.3", + "5.15.0-1002.5", + "5.15.0-1003.6", + "5.15.0-1004.7", + "5.15.0-1005.8", + "5.15.0-1006.9", + "5.15.0-1008.12", + "5.15.0-1010.15", + "5.15.0-1013.18", + "5.15.0-1016.21", + "5.15.0-1017.23", + "5.15.0-1018.24", + "5.15.0-1019.25", + "5.15.0-1021.28", + "5.15.0-1022.29", + "5.15.0-1025.32", + "5.15.0-1026.33", + "5.15.0-1027.34", + "5.15.0-1029.36", + "5.15.0-1030.37", + "5.15.0-1031.38", + "5.15.0-1032.40", + "5.15.0-1034.42", + "5.15.0-1035.43", + "5.15.0-1036.44", + "5.15.0-1037.45", + "5.15.0-1038.46", + "5.15.0-1039.47", + "5.15.0-1040.48", + "5.15.0-1041.49", + "5.15.0-1042.50", + "5.15.0-1044.52", + "5.15.0-1045.53", + "5.15.0-1046.54", + "5.15.0-1047.55", + "5.15.0-1048.56", + "5.15.0-1049.57", + "5.15.0-1051.59", + "5.15.0-1052.60", + "5.15.0-1053.61", + "5.15.0-1054.62", + "5.15.0-1055.63", + "5.15.0-1058.66", + "5.15.0-1059.67", + "5.15.0-1060.68", + "5.15.0-1062.70", + "5.15.0-1063.71", + "5.15.0-1064.72", + "5.15.0-1065.73", + "5.15.0-1066.74", + "5.15.0-1067.75", + "5.15.0-1068.76", + "5.15.0-1069.77", + "5.15.0-1070.78", + "5.15.0-1071.79", + "5.15.0-1072.80", + "5.15.0-1073.81", + "5.15.0-1074.83", + "5.15.0-1075.84", + "5.15.0-1077.86", + "5.15.0-1078.87", + "5.15.0-1079.88", + "5.15.0-1080.89", + "5.15.0-1081.90", + "5.15.0-1082.91", + "5.15.0-1083.92", + "5.15.0-1084.93", + "5.15.0-1085.94", + "5.15.0-1086.95", + "5.15.0-1087.96", + "5.15.0-1088.97", + "5.15.0-1090.99", + "5.15.0-1091.100", + "5.15.0-1092.101", + "5.15.0-1093.102", + "5.15.0-1095.104", + "5.15.0-1096.105", + "5.15.0-1097.106", + "5.15.0-1098.107", + "5.15.0-1099.108" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-gcp-headers-5.15.0-1099", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-gcp-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-headers-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-modules-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + }, + { + "binary_name": "linux-tools-5.15.0-1099-gcp", + "binary_version": "5.15.0-1099.108" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gcp-5.19", + "purl": "pkg:deb/ubuntu/linux-gcp-5.19@5.19.0-1030.32~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1020.22~22.04.2", + "5.19.0-1021.23~22.04.1", + "5.19.0-1022.24~22.04.1", + "5.19.0-1024.26~22.04.1", + "5.19.0-1025.27~22.04.1", + "5.19.0-1026.28~22.04.1", + "5.19.0-1027.29~22.04.1", + "5.19.0-1030.32~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-gcp-5.19-headers-5.19.0-1030", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-gcp-5.19-tools-5.19.0-1030", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-headers-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-modules-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + }, + { + "binary_name": "linux-tools-5.19.0-1030-gcp", + "binary_version": "5.19.0-1030.32~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gcp-6.2", + "purl": "pkg:deb/ubuntu/linux-gcp-6.2@6.2.0-1021.23~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1009.9~22.04.3", + "6.2.0-1010.10~22.04.1", + "6.2.0-1011.11~22.04.1", + "6.2.0-1011.11~22.04.3", + "6.2.0-1012.12~22.04.1", + "6.2.0-1013.13~22.04.1", + "6.2.0-1014.14~22.04.1", + "6.2.0-1016.18~22.04.1", + "6.2.0-1017.19~22.04.1", + "6.2.0-1018.20~22.04.1", + "6.2.0-1019.21~22.04.1", + "6.2.0-1021.23~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-gcp-6.2-headers-6.2.0-1021", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-gcp-6.2-tools-6.2.0-1021", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1021-gcp", + "binary_version": "6.2.0-1021.23~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gcp-6.5", + "purl": "pkg:deb/ubuntu/linux-gcp-6.5@6.5.0-1025.27~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1010.10~22.04.3", + "6.5.0-1011.11~22.04.1", + "6.5.0-1013.13~22.04.1", + "6.5.0-1014.14~22.04.1", + "6.5.0-1015.15~22.04.1", + "6.5.0-1016.16~22.04.1", + "6.5.0-1017.17~22.04.1", + "6.5.0-1018.18~22.04.1", + "6.5.0-1020.20~22.04.1", + "6.5.0-1022.24~22.04.1", + "6.5.0-1023.25~22.04.1", + "6.5.0-1024.26~22.04.1", + "6.5.0-1025.27~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-gcp-6.5-headers-6.5.0-1025", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-gcp-6.5-tools-6.5.0-1025", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1025-gcp", + "binary_version": "6.5.0-1025.27~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gcp-6.8", + "purl": "pkg:deb/ubuntu/linux-gcp-6.8@6.8.0-1045.48~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1010.11~22.04.1", + "6.8.0-1011.12~22.04.1", + "6.8.0-1012.13~22.04.1", + "6.8.0-1013.14~22.04.1", + "6.8.0-1014.16~22.04.1", + "6.8.0-1015.17~22.04.1", + "6.8.0-1016.18~22.04.1", + "6.8.0-1017.19~22.04.1", + "6.8.0-1018.20~22.04.1", + "6.8.0-1019.21~22.04.1", + "6.8.0-1020.22~22.04.1", + "6.8.0-1021.23~22.04.1", + "6.8.0-1024.26~22.04.1", + "6.8.0-1025.27~22.04.1", + "6.8.0-1026.28~22.04.1", + "6.8.0-1027.29~22.04.1", + "6.8.0-1028.30~22.04.1", + "6.8.0-1029.31~22.04.1", + "6.8.0-1030.32~22.04.1", + "6.8.0-1031.33~22.04.1", + "6.8.0-1032.34~22.04.1", + "6.8.0-1033.35~22.04.1", + "6.8.0-1034.36~22.04.2", + "6.8.0-1036.38~22.04.1", + "6.8.0-1037.39~22.04.1", + "6.8.0-1040.42~22.04.1", + "6.8.0-1041.43~22.04.1", + "6.8.0-1042.45~22.04.1", + "6.8.0-1043.46~22.04.1", + "6.8.0-1044.47~22.04.1", + "6.8.0-1045.48~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-gcp-6.8-headers-6.8.0-1045", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-gcp-6.8-tools-6.8.0-1045", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gke", + "purl": "pkg:deb/ubuntu/linux-gke@5.15.0-1095.101?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1002.2", + "5.15.0-1003.3", + "5.15.0-1004.5", + "5.15.0-1005.6", + "5.15.0-1006.7", + "5.15.0-1008.10", + "5.15.0-1010.13", + "5.15.0-1011.14", + "5.15.0-1014.17", + "5.15.0-1015.18", + "5.15.0-1016.19", + "5.15.0-1017.20", + "5.15.0-1019.23", + "5.15.0-1020.25", + "5.15.0-1023.28", + "5.15.0-1024.29", + "5.15.0-1027.32", + "5.15.0-1028.33", + "5.15.0-1030.35", + "5.15.0-1031.36", + "5.15.0-1032.37", + "5.15.0-1033.38", + "5.15.0-1034.39", + "5.15.0-1035.40", + "5.15.0-1036.41", + "5.15.0-1037.42", + "5.15.0-1038.43", + "5.15.0-1039.44", + "5.15.0-1040.45", + "5.15.0-1041.46", + "5.15.0-1042.47", + "5.15.0-1044.49", + "5.15.0-1045.50", + "5.15.0-1046.51", + "5.15.0-1047.52", + "5.15.0-1048.53", + "5.15.0-1049.54", + "5.15.0-1050.55", + "5.15.0-1051.56", + "5.15.0-1052.57", + "5.15.0-1053.58", + "5.15.0-1054.59", + "5.15.0-1057.62", + "5.15.0-1058.63", + "5.15.0-1059.64", + "5.15.0-1060.66", + "5.15.0-1061.67", + "5.15.0-1062.68", + "5.15.0-1063.69", + "5.15.0-1064.70", + "5.15.0-1065.71", + "5.15.0-1066.72", + "5.15.0-1067.73", + "5.15.0-1068.74", + "5.15.0-1069.75", + "5.15.0-1070.76", + "5.15.0-1071.77", + "5.15.0-1072.78", + "5.15.0-1073.79", + "5.15.0-1075.81", + "5.15.0-1076.82", + "5.15.0-1077.83", + "5.15.0-1078.84", + "5.15.0-1079.85", + "5.15.0-1080.86", + "5.15.0-1081.87", + "5.15.0-1082.88", + "5.15.0-1083.89", + "5.15.0-1084.90", + "5.15.0-1085.91", + "5.15.0-1086.92", + "5.15.0-1087.93", + "5.15.0-1088.94", + "5.15.0-1089.95", + "5.15.0-1090.96", + "5.15.0-1091.97", + "5.15.0-1092.98", + "5.15.0-1093.99", + "5.15.0-1094.100", + "5.15.0-1095.101" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-gke-headers-5.15.0-1095", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-gke-tools-5.15.0-1095", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-headers-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-modules-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + }, + { + "binary_name": "linux-tools-5.15.0-1095-gke", + "binary_version": "5.15.0-1095.101" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-gkeop", + "purl": "pkg:deb/ubuntu/linux-gkeop@5.15.0-1082.90?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1001.2", + "5.15.0-1002.4", + "5.15.0-1003.5", + "5.15.0-1004.6", + "5.15.0-1005.7", + "5.15.0-1007.10", + "5.15.0-1008.12", + "5.15.0-1011.15", + "5.15.0-1012.16", + "5.15.0-1013.17", + "5.15.0-1015.19", + "5.15.0-1016.21", + "5.15.0-1017.22", + "5.15.0-1018.23", + "5.15.0-1019.24", + "5.15.0-1020.25", + "5.15.0-1021.26", + "5.15.0-1022.27", + "5.15.0-1023.28", + "5.15.0-1024.29", + "5.15.0-1025.30", + "5.15.0-1026.31", + "5.15.0-1027.32", + "5.15.0-1028.33", + "5.15.0-1030.35", + "5.15.0-1031.37", + "5.15.0-1032.38", + "5.15.0-1033.39", + "5.15.0-1034.40", + "5.15.0-1035.41", + "5.15.0-1036.42", + "5.15.0-1037.43", + "5.15.0-1038.44", + "5.15.0-1039.45", + "5.15.0-1040.46", + "5.15.0-1043.50", + "5.15.0-1044.51", + "5.15.0-1045.52", + "5.15.0-1046.53", + "5.15.0-1047.54", + "5.15.0-1048.55", + "5.15.0-1049.56", + "5.15.0-1050.57", + "5.15.0-1051.58", + "5.15.0-1052.59", + "5.15.0-1053.60", + "5.15.0-1054.61", + "5.15.0-1055.62", + "5.15.0-1056.63", + "5.15.0-1057.64", + "5.15.0-1058.66", + "5.15.0-1059.67", + "5.15.0-1060.68", + "5.15.0-1061.69", + "5.15.0-1062.70", + "5.15.0-1063.71", + "5.15.0-1064.72", + "5.15.0-1065.73", + "5.15.0-1066.74", + "5.15.0-1067.75", + "5.15.0-1068.76", + "5.15.0-1069.77", + "5.15.0-1070.78", + "5.15.0-1071.79", + "5.15.0-1073.81", + "5.15.0-1074.82", + "5.15.0-1075.83", + "5.15.0-1076.84", + "5.15.0-1078.86", + "5.15.0-1079.87", + "5.15.0-1080.88", + "5.15.0-1081.89", + "5.15.0-1082.90" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-gkeop-cloud-tools-5.15.0-1082", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-gkeop-headers-5.15.0-1082", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-gkeop-tools-5.15.0-1082", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-headers-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-modules-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + }, + { + "binary_name": "linux-tools-5.15.0-1082-gkeop", + "binary_version": "5.15.0-1082.90" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-hwe-5.19", + "purl": "pkg:deb/ubuntu/linux-hwe-5.19@5.19.0-50.50?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-28.29~22.04.1", + "5.19.0-32.33~22.04.1", + "5.19.0-35.36~22.04.1", + "5.19.0-38.39~22.04.1", + "5.19.0-40.41~22.04.1", + "5.19.0-41.42~22.04.1", + "5.19.0-42.43~22.04.1", + "5.19.0-43.44~22.04.1", + "5.19.0-45.46~22.04.1", + "5.19.0-46.47~22.04.1", + "5.19.0-50.50" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-buildinfo-5.19.0-50-generic-64k", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-buildinfo-5.19.0-50-generic-lpae", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-cloud-tools-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-headers-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-headers-5.19.0-50-generic-64k", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-headers-5.19.0-50-generic-lpae", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-cloud-tools-5.19.0-50", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-cloud-tools-common", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-headers-5.19.0-50", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-tools-5.19.0-50", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-tools-common", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-hwe-5.19-tools-host", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-image-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-image-5.19.0-50-generic-lpae", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-50-generic-64k", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-5.19.0-50-generic-64k", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-5.19.0-50-generic-lpae", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-extra-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-ipu6-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-ivsc-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-modules-iwlwifi-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-source-5.19.0", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-tools-5.19.0-50-generic", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-tools-5.19.0-50-generic-64k", + "binary_version": "5.19.0-50.50" + }, + { + "binary_name": "linux-tools-5.19.0-50-generic-lpae", + "binary_version": "5.19.0-50.50" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-hwe-6.2", + "purl": "pkg:deb/ubuntu/linux-hwe-6.2@6.2.0-39.40~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-25.25~22.04.2", + "6.2.0-26.26~22.04.1", + "6.2.0-31.31~22.04.1", + "6.2.0-32.32~22.04.1", + "6.2.0-33.33~22.04.1", + "6.2.0-34.34~22.04.1", + "6.2.0-35.35~22.04.1", + "6.2.0-36.37~22.04.1", + "6.2.0-37.38~22.04.1", + "6.2.0-39.40~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.2.0-39-generic-64k", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.2.0-39-generic-lpae", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-39-generic-64k", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-39-generic-lpae", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-cloud-tools-6.2.0-39", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-cloud-tools-common", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-headers-6.2.0-39", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-tools-6.2.0-39", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-tools-common", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-hwe-6.2-tools-host", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-image-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-image-6.2.0-39-generic-lpae", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-39-generic-64k", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-39-generic-64k", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-39-generic-lpae", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-ivsc-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-source-6.2.0", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-39-generic", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-39-generic-64k", + "binary_version": "6.2.0-39.40~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-39-generic-lpae", + "binary_version": "6.2.0-39.40~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-hwe-6.5", + "purl": "pkg:deb/ubuntu/linux-hwe-6.5@6.5.0-45.45~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-14.14~22.04.1", + "6.5.0-15.15~22.04.1", + "6.5.0-17.17~22.04.1", + "6.5.0-18.18~22.04.1", + "6.5.0-21.21~22.04.1", + "6.5.0-25.25~22.04.1", + "6.5.0-26.26~22.04.1", + "6.5.0-27.28~22.04.1", + "6.5.0-28.29~22.04.1", + "6.5.0-35.35~22.04.1", + "6.5.0-41.41~22.04.2", + "6.5.0-44.44~22.04.1", + "6.5.0-45.45~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.5.0-45-generic-64k", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-45-generic-64k", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-cloud-tools-6.5.0-45", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-cloud-tools-common", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-headers-6.5.0-45", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-tools-6.5.0-45", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-tools-common", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-hwe-6.5-tools-host", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-image-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-45-generic-64k", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-45-generic-64k", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-ivsc-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-source-6.5.0", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-45-generic", + "binary_version": "6.5.0-45.45~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-45-generic-64k", + "binary_version": "6.5.0-45.45~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-hwe-6.8", + "purl": "pkg:deb/ubuntu/linux-hwe-6.8@6.8.0-94.96~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-38.38~22.04.1", + "6.8.0-39.39~22.04.1", + "6.8.0-40.40~22.04.3", + "6.8.0-45.45~22.04.1", + "6.8.0-47.47~22.04.1", + "6.8.0-48.48~22.04.1", + "6.8.0-49.49~22.04.1", + "6.8.0-50.51~22.04.1", + "6.8.0-51.52~22.04.1", + "6.8.0-52.53~22.04.1", + "6.8.0-57.59~22.04.1", + "6.8.0-58.60~22.04.1", + "6.8.0-59.61~22.04.1", + "6.8.0-60.63~22.04.1", + "6.8.0-64.67~22.04.1", + "6.8.0-65.68~22.04.1", + "6.8.0-78.78~22.04.1", + "6.8.0-79.79~22.04.1", + "6.8.0-83.83~22.04.1", + "6.8.0-84.84~22.04.1", + "6.8.0-85.85~22.04.1", + "6.8.0-86.87~22.04.1", + "6.8.0-87.88~22.04.1", + "6.8.0-88.89~22.04.2", + "6.8.0-90.91~22.04.1", + "6.8.0-94.96~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-hwe-6.8-cloud-tools-6.8.0-94", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-hwe-6.8-headers-6.8.0-94", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-hwe-6.8-tools-6.8.0-94", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-image-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-modules-usbio-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-94-generic", + "binary_version": "6.8.0-94.96~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-ibm", + "purl": "pkg:deb/ubuntu/linux-ibm@5.15.0-1093.96?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1002.2", + "5.15.0-1003.3", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1007.8", + "5.15.0-1009.11", + "5.15.0-1010.12", + "5.15.0-1012.14", + "5.15.0-1013.15", + "5.15.0-1015.17", + "5.15.0-1017.20", + "5.15.0-1018.21", + "5.15.0-1021.24", + "5.15.0-1022.25", + "5.15.0-1023.26", + "5.15.0-1025.28", + "5.15.0-1026.29", + "5.15.0-1027.30", + "5.15.0-1028.31", + "5.15.0-1029.32", + "5.15.0-1030.33", + "5.15.0-1031.34", + "5.15.0-1032.35", + "5.15.0-1033.36", + "5.15.0-1034.37", + "5.15.0-1035.38", + "5.15.0-1036.39", + "5.15.0-1037.40", + "5.15.0-1038.41", + "5.15.0-1040.43", + "5.15.0-1041.44", + "5.15.0-1042.45", + "5.15.0-1043.46", + "5.15.0-1044.47", + "5.15.0-1045.48", + "5.15.0-1046.49", + "5.15.0-1047.50", + "5.15.0-1048.51", + "5.15.0-1049.52", + "5.15.0-1050.53", + "5.15.0-1053.56", + "5.15.0-1054.57", + "5.15.0-1055.58", + "5.15.0-1056.59", + "5.15.0-1057.60", + "5.15.0-1058.61", + "5.15.0-1059.62", + "5.15.0-1060.63", + "5.15.0-1061.64", + "5.15.0-1062.65", + "5.15.0-1063.66", + "5.15.0-1064.67", + "5.15.0-1065.68", + "5.15.0-1066.69", + "5.15.0-1067.70", + "5.15.0-1068.71", + "5.15.0-1069.72", + "5.15.0-1070.73", + "5.15.0-1071.74", + "5.15.0-1072.75", + "5.15.0-1073.76", + "5.15.0-1074.77", + "5.15.0-1075.78", + "5.15.0-1076.79", + "5.15.0-1077.80", + "5.15.0-1078.81", + "5.15.0-1079.82", + "5.15.0-1080.83", + "5.15.0-1081.84", + "5.15.0-1084.87", + "5.15.0-1085.88", + "5.15.0-1086.89", + "5.15.0-1087.90", + "5.15.0-1089.92", + "5.15.0-1090.93", + "5.15.0-1091.94", + "5.15.0-1092.95", + "5.15.0-1093.96" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-headers-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-ibm-cloud-tools-common", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-ibm-headers-5.15.0-1093", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-ibm-source-5.15.0", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-ibm-tools-5.15.0-1093", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-ibm-tools-common", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-modules-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-tools-5.15.0-1093-ibm", + "binary_version": "5.15.0-1093.96" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-ibm-6.8", + "purl": "pkg:deb/ubuntu/linux-ibm-6.8@6.8.0-1042.42~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1008.8~22.04.1", + "6.8.0-1010.10~22.04.1", + "6.8.0-1011.11~22.04.1", + "6.8.0-1012.12~22.04.1", + "6.8.0-1013.13~22.04.1", + "6.8.0-1014.14~22.04.1", + "6.8.0-1015.15~22.04.1", + "6.8.0-1016.16~22.04.1", + "6.8.0-1017.17~22.04.1", + "6.8.0-1018.18~22.04.1", + "6.8.0-1019.19~22.04.1", + "6.8.0-1023.23~22.04.1", + "6.8.0-1024.24~22.04.1", + "6.8.0-1025.25~22.04.1", + "6.8.0-1026.26~22.04.1", + "6.8.0-1027.27~22.04.1", + "6.8.0-1028.28~22.04.1", + "6.8.0-1029.29~22.04.1", + "6.8.0-1030.30~22.04.1", + "6.8.0-1033.33~22.04.1", + "6.8.0-1036.36~22.04.1", + "6.8.0-1037.37~22.04.1", + "6.8.0-1038.38~22.04.1", + "6.8.0-1039.39~22.04.1", + "6.8.0-1040.40~22.04.1", + "6.8.0-1041.41~22.04.1", + "6.8.0-1042.42~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-ibm-6.8-headers-6.8.0-1042", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-ibm-6.8-tools-6.8.0-1042", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-intel-iot-realtime", + "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1073.75" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-common", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-common", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-host", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + }, + { + "binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime", + "binary_version": "5.15.0-1073.75" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-intel-iotg", + "purl": "pkg:deb/ubuntu/linux-intel-iotg@5.15.0-1094.100?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1004.6", + "5.15.0-1008.11", + "5.15.0-1010.14", + "5.15.0-1013.17", + "5.15.0-1015.20", + "5.15.0-1016.21", + "5.15.0-1017.22", + "5.15.0-1018.23", + "5.15.0-1021.26", + "5.15.0-1023.28", + "5.15.0-1025.30", + "5.15.0-1026.31", + "5.15.0-1027.32", + "5.15.0-1028.33", + "5.15.0-1030.35", + "5.15.0-1031.36", + "5.15.0-1033.38", + "5.15.0-1034.39", + "5.15.0-1035.40", + "5.15.0-1036.41", + "5.15.0-1037.42", + "5.15.0-1038.43", + "5.15.0-1039.45", + "5.15.0-1040.46", + "5.15.0-1043.49", + "5.15.0-1045.51", + "5.15.0-1046.52", + "5.15.0-1047.53", + "5.15.0-1048.54", + "5.15.0-1049.55", + "5.15.0-1050.56", + "5.15.0-1051.57", + "5.15.0-1052.58", + "5.15.0-1055.61", + "5.15.0-1057.63", + "5.15.0-1058.64", + "5.15.0-1059.65", + "5.15.0-1060.66", + "5.15.0-1061.67", + "5.15.0-1062.68", + "5.15.0-1063.69", + "5.15.0-1064.70", + "5.15.0-1065.71", + "5.15.0-1066.72", + "5.15.0-1067.73", + "5.15.0-1071.77", + "5.15.0-1072.78", + "5.15.0-1073.79", + "5.15.0-1074.80", + "5.15.0-1075.81", + "5.15.0-1076.82", + "5.15.0-1077.83", + "5.15.0-1078.84", + "5.15.0-1079.85", + "5.15.0-1080.86", + "5.15.0-1081.87", + "5.15.0-1082.88", + "5.15.0-1083.89", + "5.15.0-1084.90", + "5.15.0-1085.91", + "5.15.0-1086.92", + "5.15.0-1087.93", + "5.15.0-1088.94", + "5.15.0-1090.96", + "5.15.0-1091.97", + "5.15.0-1092.98", + "5.15.0-1093.99", + "5.15.0-1094.100" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-headers-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-cloud-tools-5.15.0-1094", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-cloud-tools-common", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-headers-5.15.0-1094", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-tools-5.15.0-1094", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-tools-common", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-intel-iotg-tools-host", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-modules-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + }, + { + "binary_name": "linux-tools-5.15.0-1094-intel-iotg", + "binary_version": "5.15.0-1094.100" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-kvm", + "purl": "pkg:deb/ubuntu/linux-kvm@5.15.0-1091.96?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1004.4", + "5.13.0-1006.6+22.04.1", + "5.13.0-1007.7+22.04.1", + "5.13.0-1010.11+22.04.1", + "5.15.0-1002.2", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1007.7", + "5.15.0-1008.8", + "5.15.0-1010.11", + "5.15.0-1012.14", + "5.15.0-1013.16", + "5.15.0-1016.19", + "5.15.0-1017.21", + "5.15.0-1018.22", + "5.15.0-1019.23", + "5.15.0-1020.24", + "5.15.0-1021.26", + "5.15.0-1024.29", + "5.15.0-1025.30", + "5.15.0-1026.31", + "5.15.0-1028.33", + "5.15.0-1029.34", + "5.15.0-1030.35", + "5.15.0-1031.36", + "5.15.0-1032.37", + "5.15.0-1033.38", + "5.15.0-1034.39", + "5.15.0-1035.40", + "5.15.0-1037.42", + "5.15.0-1038.43", + "5.15.0-1039.44", + "5.15.0-1040.45", + "5.15.0-1041.46", + "5.15.0-1042.47", + "5.15.0-1044.49", + "5.15.0-1045.50", + "5.15.0-1046.51", + "5.15.0-1047.52", + "5.15.0-1048.53", + "5.15.0-1049.54", + "5.15.0-1050.55", + "5.15.0-1051.56", + "5.15.0-1052.57", + "5.15.0-1053.58", + "5.15.0-1054.59", + "5.15.0-1057.62", + "5.15.0-1058.63", + "5.15.0-1059.64", + "5.15.0-1060.65", + "5.15.0-1061.66", + "5.15.0-1062.67", + "5.15.0-1063.68", + "5.15.0-1064.69", + "5.15.0-1065.70", + "5.15.0-1066.71", + "5.15.0-1067.72", + "5.15.0-1068.73", + "5.15.0-1069.74", + "5.15.0-1070.75", + "5.15.0-1071.76", + "5.15.0-1072.77", + "5.15.0-1073.78", + "5.15.0-1076.81", + "5.15.0-1077.82", + "5.15.0-1078.83", + "5.15.0-1079.84", + "5.15.0-1080.85", + "5.15.0-1081.86", + "5.15.0-1082.87", + "5.15.0-1083.88", + "5.15.0-1084.89", + "5.15.0-1085.90", + "5.15.0-1086.91", + "5.15.0-1087.92", + "5.15.0-1088.93", + "5.15.0-1089.94", + "5.15.0-1090.95", + "5.15.0-1091.96" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1091-kvm", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-headers-5.15.0-1091-kvm", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1091-kvm", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-kvm-headers-5.15.0-1091", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-kvm-tools-5.15.0-1091", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-modules-5.15.0-1091-kvm", + "binary_version": "5.15.0-1091.96" + }, + { + "binary_name": "linux-tools-5.15.0-1091-kvm", + "binary_version": "5.15.0-1091.96" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-lowlatency", + "purl": "pkg:deb/ubuntu/linux-lowlatency@5.15.0-168.178?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-22.22", + "5.15.0-23.23", + "5.15.0-24.24", + "5.15.0-27.28", + "5.15.0-30.31", + "5.15.0-33.34", + "5.15.0-35.36", + "5.15.0-37.39", + "5.15.0-39.42", + "5.15.0-40.43", + "5.15.0-41.44", + "5.15.0-43.46", + "5.15.0-46.49", + "5.15.0-47.53", + "5.15.0-48.54", + "5.15.0-50.56", + "5.15.0-52.58", + "5.15.0-53.59", + "5.15.0-56.62", + "5.15.0-57.63", + "5.15.0-58.64", + "5.15.0-60.66", + "5.15.0-67.74", + "5.15.0-69.76", + "5.15.0-70.77", + "5.15.0-71.78", + "5.15.0-72.79", + "5.15.0-73.80", + "5.15.0-75.82", + "5.15.0-76.83", + "5.15.0-78.85", + "5.15.0-79.88", + "5.15.0-82.91", + "5.15.0-83.92", + "5.15.0-84.93", + "5.15.0-86.95", + "5.15.0-87.96", + "5.15.0-88.98", + "5.15.0-89.99", + "5.15.0-91.101", + "5.15.0-92.102", + "5.15.0-94.104", + "5.15.0-97.107", + "5.15.0-100.110", + "5.15.0-101.111", + "5.15.0-102.112", + "5.15.0-105.115", + "5.15.0-106.116", + "5.15.0-107.117", + "5.15.0-110.120", + "5.15.0-113.123", + "5.15.0-116.126", + "5.15.0-117.127", + "5.15.0-118.128", + "5.15.0-119.129", + "5.15.0-121.131", + "5.15.0-122.132", + "5.15.0-124.134", + "5.15.0-125.135", + "5.15.0-126.136", + "5.15.0-127.137", + "5.15.0-128.138", + "5.15.0-129.139", + "5.15.0-131.141", + "5.15.0-133.143", + "5.15.0-134.145", + "5.15.0-135.146", + "5.15.0-136.147", + "5.15.0-138.148", + "5.15.0-139.149", + "5.15.0-140.150", + "5.15.0-141.151", + "5.15.0-142.152", + "5.15.0-143.153", + "5.15.0-144.157", + "5.15.0-145.158", + "5.15.0-152.162", + "5.15.0-153.163", + "5.15.0-156.166", + "5.15.0-157.167", + "5.15.0-160.170", + "5.15.0-161.171", + "5.15.0-163.173", + "5.15.0-164.174", + "5.15.0-168.178" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-buildinfo-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-headers-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-lowlatency-cloud-tools-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-lowlatency-headers-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-lowlatency-tools-5.15.0-168", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168-lowlatency", + "binary_version": "5.15.0-168.178" + }, + { + "binary_name": "linux-tools-5.15.0-168-lowlatency-64k", + "binary_version": "5.15.0-168.178" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-lowlatency-hwe-5.19", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.19@5.19.0-1030.30?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1017.18~22.04.1", + "5.19.0-1018.19~22.04.1", + "5.19.0-1021.22~22.04.1", + "5.19.0-1022.23~22.04.1", + "5.19.0-1023.24~22.04.1", + "5.19.0-1024.25~22.04.1", + "5.19.0-1025.26~22.04.1", + "5.19.0-1027.28~22.04.1", + "5.19.0-1028.29~22.04.1", + "5.19.0-1030.30" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-buildinfo-5.19.0-1030-lowlatency-64k", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-cloud-tools-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-headers-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-headers-5.19.0-1030-lowlatency-64k", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency-64k", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-5.19.0-1030", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-common", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-headers-5.19.0-1030", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-tools-5.19.0-1030", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-tools-common", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-lowlatency-hwe-5.19-tools-host", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-modules-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-modules-5.19.0-1030-lowlatency-64k", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-modules-ipu6-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-modules-ivsc-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-modules-iwlwifi-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-tools-5.19.0-1030-lowlatency", + "binary_version": "5.19.0-1030.30" + }, + { + "binary_name": "linux-tools-5.19.0-1030-lowlatency-64k", + "binary_version": "5.19.0-1030.30" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-lowlatency-hwe-6.2", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.2@6.2.0-1018.18~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1008.8~22.04.1", + "6.2.0-1009.9~22.04.1", + "6.2.0-1011.11~22.04.1", + "6.2.0-1012.12~22.04.1", + "6.2.0-1013.13~22.04.1", + "6.2.0-1014.14~22.04.1", + "6.2.0-1015.15~22.04.1", + "6.2.0-1016.16~22.04.1", + "6.2.0-1017.17~22.04.1", + "6.2.0-1018.18~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.2.0-1018-lowlatency-64k", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1018-lowlatency-64k", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency-64k", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-common", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-headers-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-tools-6.2.0-1018", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-tools-common", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.2-tools-host", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1018-lowlatency-64k", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-ivsc-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1018-lowlatency", + "binary_version": "6.2.0-1018.18~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1018-lowlatency-64k", + "binary_version": "6.2.0-1018.18~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-lowlatency-hwe-6.5", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.5@6.5.0-45.45.1~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-14.14.1~22.04.1", + "6.5.0-15.15.1.1~22.04.1", + "6.5.0-17.17.1.1.1~22.04.1", + "6.5.0-21.21.1~22.04.1", + "6.5.0-25.25.1~22.04.1", + "6.5.0-26.26.1~22.04.1", + "6.5.0-27.28.1~22.04.1", + "6.5.0-28.29.1~22.04.1", + "6.5.0-35.35.1~22.04.1", + "6.5.0-41.41.1~22.04.1", + "6.5.0-42.42.1~22.04.1", + "6.5.0-44.44.1~22.04.1", + "6.5.0-45.45.1~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.5.0-45-lowlatency-64k", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-45-lowlatency-64k", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-45-lowlatency-64k", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-6.5.0-45", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-common", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-headers-6.5.0-45", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-lib-rust-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-tools-6.5.0-45", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-tools-common", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.5-tools-host", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-45-lowlatency-64k", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-45-lowlatency", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-45-lowlatency-64k", + "binary_version": "6.5.0-45.45.1~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-lowlatency-hwe-6.8", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.8@6.8.0-90.91.1~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-38.38.1~22.04.2", + "6.8.0-40.40.1~22.04.1", + "6.8.0-44.44.1~22.04.1", + "6.8.0-45.45.1~22.04.1", + "6.8.0-47.47.1~22.04.1", + "6.8.0-48.48.3~22.04.1", + "6.8.0-49.49.1~22.04.1", + "6.8.0-50.51.1~22.04.1", + "6.8.0-51.52.1~22.04.1", + "6.8.0-52.53.1~22.04.1", + "6.8.0-54.56.1~22.04.1", + "6.8.0-55.57.1~22.04.1", + "6.8.0-56.58.1~22.04.1", + "6.8.0-57.59.1~22.04.1", + "6.8.0-58.60.1~22.04.1", + "6.8.0-59.61.1~22.04.1", + "6.8.0-60.63.1~22.04.1", + "6.8.0-62.65.1~22.04.1", + "6.8.0-63.66.1~22.04.1", + "6.8.0-64.67.1~22.04.1", + "6.8.0-65.68.1~22.04.1", + "6.8.0-78.78.1~22.04.1", + "6.8.0-79.79.1~22.04.1", + "6.8.0-83.83.1~22.04.1", + "6.8.0-84.84.1~22.04.1", + "6.8.0-85.85.1~22.04.1", + "6.8.0-86.87.1~22.04.1", + "6.8.0-87.88.1~22.04.1", + "6.8.0-88.89.1~22.04.1", + "6.8.0-90.91.1~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.8-cloud-tools-6.8.0-90", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.8-headers-6.8.0-90", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.8-lib-rust-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.8-tools-6.8.0-90", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia", + "purl": "pkg:deb/ubuntu/linux-nvidia@5.15.0-1093.94?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1005.5", + "5.15.0-1007.7", + "5.15.0-1010.10", + "5.15.0-1015.15", + "5.15.0-1017.17", + "5.15.0-1018.18", + "5.15.0-1023.23", + "5.15.0-1025.25", + "5.15.0-1026.26", + "5.15.0-1027.27", + "5.15.0-1028.28", + "5.15.0-1029.29", + "5.15.0-1030.30", + "5.15.0-1031.31", + "5.15.0-1032.32", + "5.15.0-1033.33", + "5.15.0-1037.37", + "5.15.0-1039.39", + "5.15.0-1040.40", + "5.15.0-1041.41", + "5.15.0-1042.42", + "5.15.0-1043.43", + "5.15.0-1044.44", + "5.15.0-1045.45", + "5.15.0-1046.46", + "5.15.0-1047.47", + "5.15.0-1048.48", + "5.15.0-1053.54", + "5.15.0-1054.55", + "5.15.0-1055.56", + "5.15.0-1058.59", + "5.15.0-1059.60", + "5.15.0-1060.61", + "5.15.0-1061.62", + "5.15.0-1062.63", + "5.15.0-1063.64", + "5.15.0-1064.65", + "5.15.0-1065.66", + "5.15.0-1066.67", + "5.15.0-1067.68", + "5.15.0-1068.69", + "5.15.0-1069.70", + "5.15.0-1070.71", + "5.15.0-1071.72", + "5.15.0-1072.73", + "5.15.0-1073.74", + "5.15.0-1074.75", + "5.15.0-1075.76", + "5.15.0-1076.77", + "5.15.0-1077.78", + "5.15.0-1078.79", + "5.15.0-1079.80", + "5.15.0-1080.81", + "5.15.0-1081.82", + "5.15.0-1082.83", + "5.15.0-1083.84", + "5.15.0-1085.86", + "5.15.0-1086.87", + "5.15.0-1087.88", + "5.15.0-1088.89", + "5.15.0-1090.91", + "5.15.0-1091.92", + "5.15.0-1092.93", + "5.15.0-1093.94" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-headers-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-headers-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-modules-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-modules-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-modules-nvidia-fs-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-modules-nvidia-fs-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-cloud-tools-5.15.0-1093", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-cloud-tools-common", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-headers-5.15.0-1093", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-tools-5.15.0-1093", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-tools-common", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-nvidia-tools-host", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-tools-5.15.0-1093-nvidia", + "binary_version": "5.15.0-1093.94" + }, + { + "binary_name": "linux-tools-5.15.0-1093-nvidia-lowlatency", + "binary_version": "5.15.0-1093.94" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia-6.2", + "purl": "pkg:deb/ubuntu/linux-nvidia-6.2@6.2.0-1015.15?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1003.3~22.04.1", + "6.2.0-1009.9", + "6.2.0-1010.10", + "6.2.0-1011.11", + "6.2.0-1012.12", + "6.2.0-1013.13", + "6.2.0-1015.15" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-buildinfo-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-headers-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-headers-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-image-unsigned-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-modules-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-modules-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-modules-extra-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-nvidia-6.2-headers-6.2.0-1015", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-nvidia-6.2-tools-6.2.0-1015", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-nvidia-6.2-tools-host", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-tools-6.2.0-1015-nvidia", + "binary_version": "6.2.0-1015.15" + }, + { + "binary_name": "linux-tools-6.2.0-1015-nvidia-64k", + "binary_version": "6.2.0-1015.15" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia-6.5", + "purl": "pkg:deb/ubuntu/linux-nvidia-6.5@6.5.0-1024.25?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1004.4", + "6.5.0-1007.7", + "6.5.0-1013.13", + "6.5.0-1014.14", + "6.5.0-1015.15", + "6.5.0-1018.18", + "6.5.0-1019.19", + "6.5.0-1021.22", + "6.5.0-1022.23", + "6.5.0-1023.24", + "6.5.0-1024.25" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-buildinfo-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-headers-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-headers-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-modules-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-modules-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-nvidia-6.5-headers-6.5.0-1024", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-nvidia-6.5-tools-6.5.0-1024", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-nvidia-6.5-tools-host", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-tools-6.5.0-1024-nvidia", + "binary_version": "6.5.0-1024.25" + }, + { + "binary_name": "linux-tools-6.5.0-1024-nvidia-64k", + "binary_version": "6.5.0-1024.25" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia-6.8", + "purl": "pkg:deb/ubuntu/linux-nvidia-6.8@6.8.0-1044.47~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1008.8~22.04.1", + "6.8.0-1009.9~22.04.1", + "6.8.0-1010.10~22.04.1", + "6.8.0-1011.11~22.04.1", + "6.8.0-1012.12~22.04.1", + "6.8.0-1013.14~22.04.1", + "6.8.0-1014.15~22.04.1", + "6.8.0-1015.16~22.04.1", + "6.8.0-1017.19~22.04.1", + "6.8.0-1018.20~22.04.1", + "6.8.0-1019.21~22.04.1", + "6.8.0-1020.22~22.04.1", + "6.8.0-1021.23~22.04.1", + "6.8.0-1022.25~22.04.2", + "6.8.0-1023.26~22.04.1", + "6.8.0-1024.27~22.04.1", + "6.8.0-1025.28~22.04.1", + "6.8.0-1026.29~22.04.1", + "6.8.0-1027.30~22.04.1", + "6.8.0-1028.31~22.04.1", + "6.8.0-1029.32~22.04.1", + "6.8.0-1030.33~22.04.1", + "6.8.0-1031.34~22.04.1", + "6.8.0-1032.35~22.04.1", + "6.8.0-1035.38~22.04.1", + "6.8.0-1036.39~22.04.1", + "6.8.0-1038.41~22.04.1", + "6.8.0-1039.42~22.04.1", + "6.8.0-1040.43~22.04.1", + "6.8.0-1041.44~22.04.2", + "6.8.0-1042.45~22.04.1", + "6.8.0-1043.46~22.04.1", + "6.8.0-1044.47~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-nvidia-6.8-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-nvidia-6.8-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia-tegra", + "purl": "pkg:deb/ubuntu/linux-nvidia-tegra@5.15.0-1051.51?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1009.9", + "5.15.0-1010.10", + "5.15.0-1012.12", + "5.15.0-1013.13", + "5.15.0-1014.14", + "5.15.0-1015.15", + "5.15.0-1016.16", + "5.15.0-1017.17", + "5.15.0-1018.18", + "5.15.0-1019.19", + "5.15.0-1020.20", + "5.15.0-1021.21", + "5.15.0-1022.22", + "5.15.0-1025.25", + "5.15.0-1026.26", + "5.15.0-1027.27", + "5.15.0-1028.28", + "5.15.0-1030.30", + "5.15.0-1032.32", + "5.15.0-1033.33", + "5.15.0-1034.34", + "5.15.0-1035.35", + "5.15.0-1036.36", + "5.15.0-1037.37", + "5.15.0-1038.38", + "5.15.0-1039.39", + "5.15.0-1040.40", + "5.15.0-1041.41", + "5.15.0-1042.42", + "5.15.0-1043.43", + "5.15.0-1044.44", + "5.15.0-1045.45", + "5.15.0-1046.46", + "5.15.0-1047.47", + "5.15.0-1048.48", + "5.15.0-1049.49", + "5.15.0-1050.50", + "5.15.0-1051.51" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-nvidia-tegra-headers-5.15.0-1051", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-nvidia-tegra-tools-5.15.0-1051", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra", + "binary_version": "5.15.0-1051.51" + }, + { + "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra-rt", + "binary_version": "5.15.0-1051.51" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-nvidia-tegra-igx", + "purl": "pkg:deb/ubuntu/linux-nvidia-tegra-igx@5.15.0-1039.39?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1001.1", + "5.15.0-1002.2", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1006.6", + "5.15.0-1007.7", + "5.15.0-1008.8", + "5.15.0-1009.9", + "5.15.0-1012.12", + "5.15.0-1013.13", + "5.15.0-1015.15", + "5.15.0-1016.16", + "5.15.0-1018.18", + "5.15.0-1019.19", + "5.15.0-1020.20", + "5.15.0-1021.21", + "5.15.0-1022.22", + "5.15.0-1023.23", + "5.15.0-1024.24", + "5.15.0-1026.26", + "5.15.0-1027.27", + "5.15.0-1028.28", + "5.15.0-1029.29", + "5.15.0-1030.30", + "5.15.0-1031.31", + "5.15.0-1032.32", + "5.15.0-1033.33", + "5.15.0-1034.34", + "5.15.0-1035.35", + "5.15.0-1036.36", + "5.15.0-1037.37", + "5.15.0-1038.38", + "5.15.0-1039.39" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1039-nvidia-tegra-igx-rt", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-headers-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-headers-5.15.0-1039-nvidia-tegra-igx-rt", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1039-nvidia-tegra-igx-rt", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-modules-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-modules-5.15.0-1039-nvidia-tegra-igx-rt", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-nvidia-tegra-igx-headers-5.15.0-1039", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-nvidia-tegra-igx-tools-5.15.0-1039", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-tools-5.15.0-1039-nvidia-tegra-igx", + "binary_version": "5.15.0-1039.39" + }, + { + "binary_name": "linux-tools-5.15.0-1039-nvidia-tegra-igx-rt", + "binary_version": "5.15.0-1039.39" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oem-5.17", + "purl": "pkg:deb/ubuntu/linux-oem-5.17@5.17.0-1035.36?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.17.0-1003.3", + "5.17.0-1004.4", + "5.17.0-1006.6", + "5.17.0-1011.12", + "5.17.0-1012.13", + "5.17.0-1013.14", + "5.17.0-1014.15", + "5.17.0-1015.16", + "5.17.0-1016.17", + "5.17.0-1017.18", + "5.17.0-1018.19", + "5.17.0-1019.20", + "5.17.0-1020.21", + "5.17.0-1021.22", + "5.17.0-1024.25", + "5.17.0-1025.26", + "5.17.0-1026.27", + "5.17.0-1027.28", + "5.17.0-1028.29", + "5.17.0-1029.30", + "5.17.0-1030.31", + "5.17.0-1031.32", + "5.17.0-1032.33", + "5.17.0-1033.34", + "5.17.0-1034.35", + "5.17.0-1035.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-headers-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-image-unsigned-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-modules-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-modules-ipu6-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-modules-ivsc-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-modules-iwlwifi-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-oem-5.17-headers-5.17.0-1035", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-oem-5.17-tools-5.17.0-1035", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-oem-5.17-tools-host", + "binary_version": "5.17.0-1035.36" + }, + { + "binary_name": "linux-tools-5.17.0-1035-oem", + "binary_version": "5.17.0-1035.36" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oem-6.0", + "purl": "pkg:deb/ubuntu/linux-oem-6.0@6.0.0-1021.21?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.0.0-1006.6", + "6.0.0-1007.7", + "6.0.0-1008.8", + "6.0.0-1009.9", + "6.0.0-1010.10", + "6.0.0-1011.11", + "6.0.0-1012.12", + "6.0.0-1013.13", + "6.0.0-1014.14", + "6.0.0-1015.15", + "6.0.0-1016.16", + "6.0.0-1017.17", + "6.0.0-1018.18", + "6.0.0-1019.19", + "6.0.0-1020.20", + "6.0.0-1021.21" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-headers-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-image-unsigned-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-modules-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-modules-ipu6-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-modules-ivsc-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-modules-iwlwifi-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-oem-6.0-headers-6.0.0-1021", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-oem-6.0-tools-6.0.0-1021", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-oem-6.0-tools-host", + "binary_version": "6.0.0-1021.21" + }, + { + "binary_name": "linux-tools-6.0.0-1021-oem", + "binary_version": "6.0.0-1021.21" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oem-6.1", + "purl": "pkg:deb/ubuntu/linux-oem-6.1@6.1.0-1036.36?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.1.0-1004.4", + "6.1.0-1006.6", + "6.1.0-1007.7", + "6.1.0-1008.8", + "6.1.0-1009.9", + "6.1.0-1010.10", + "6.1.0-1012.12", + "6.1.0-1013.13", + "6.1.0-1014.14", + "6.1.0-1015.15", + "6.1.0-1016.16", + "6.1.0-1017.17", + "6.1.0-1019.19", + "6.1.0-1020.20", + "6.1.0-1021.21", + "6.1.0-1022.22", + "6.1.0-1023.23", + "6.1.0-1024.24", + "6.1.0-1025.25", + "6.1.0-1026.26", + "6.1.0-1027.27", + "6.1.0-1028.28", + "6.1.0-1029.29", + "6.1.0-1033.33", + "6.1.0-1034.34", + "6.1.0-1035.35", + "6.1.0-1036.36" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-headers-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-image-unsigned-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-modules-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-modules-ipu6-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-modules-ivsc-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-modules-iwlwifi-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-oem-6.1-headers-6.1.0-1036", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-oem-6.1-tools-6.1.0-1036", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-oem-6.1-tools-host", + "binary_version": "6.1.0-1036.36" + }, + { + "binary_name": "linux-tools-6.1.0-1036-oem", + "binary_version": "6.1.0-1036.36" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oem-6.5", + "purl": "pkg:deb/ubuntu/linux-oem-6.5@6.5.0-1027.28?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1003.3", + "6.5.0-1004.4", + "6.5.0-1006.6", + "6.5.0-1007.7", + "6.5.0-1008.8", + "6.5.0-1009.10", + "6.5.0-1011.12", + "6.5.0-1013.14", + "6.5.0-1014.15", + "6.5.0-1015.16", + "6.5.0-1016.17", + "6.5.0-1018.19", + "6.5.0-1019.20", + "6.5.0-1020.21", + "6.5.0-1022.23", + "6.5.0-1023.24", + "6.5.0-1024.25", + "6.5.0-1025.26", + "6.5.0-1027.28" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-headers-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-modules-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-modules-ipu6-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-modules-ivsc-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-modules-iwlwifi-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-modules-usbio-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-oem-6.5-headers-6.5.0-1027", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-oem-6.5-lib-rust-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-oem-6.5-tools-6.5.0-1027", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-oem-6.5-tools-host", + "binary_version": "6.5.0-1027.28" + }, + { + "binary_name": "linux-tools-6.5.0-1027-oem", + "binary_version": "6.5.0-1027.28" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@5.15.0-1096.102?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1008.10", + "5.15.0-1001.3", + "5.15.0-1002.4", + "5.15.0-1003.5", + "5.15.0-1006.8", + "5.15.0-1007.9", + "5.15.0-1009.12", + "5.15.0-1011.15", + "5.15.0-1013.17", + "5.15.0-1016.20", + "5.15.0-1017.22", + "5.15.0-1018.23", + "5.15.0-1019.24", + "5.15.0-1021.27", + "5.15.0-1022.28", + "5.15.0-1025.31", + "5.15.0-1026.32", + "5.15.0-1027.33", + "5.15.0-1029.35", + "5.15.0-1030.36", + "5.15.0-1032.38", + "5.15.0-1033.39", + "5.15.0-1034.40", + "5.15.0-1035.41", + "5.15.0-1036.42", + "5.15.0-1037.43", + "5.15.0-1038.44", + "5.15.0-1039.45", + "5.15.0-1040.46", + "5.15.0-1041.47", + "5.15.0-1042.48", + "5.15.0-1044.50", + "5.15.0-1045.51", + "5.15.0-1046.52", + "5.15.0-1047.53", + "5.15.0-1048.54", + "5.15.0-1049.55", + "5.15.0-1050.56", + "5.15.0-1051.57", + "5.15.0-1052.58", + "5.15.0-1053.59", + "5.15.0-1054.60", + "5.15.0-1055.61", + "5.15.0-1058.64", + "5.15.0-1059.65", + "5.15.0-1060.66", + "5.15.0-1061.67", + "5.15.0-1062.68", + "5.15.0-1063.69", + "5.15.0-1064.70", + "5.15.0-1065.71", + "5.15.0-1066.72", + "5.15.0-1067.73", + "5.15.0-1068.74", + "5.15.0-1069.75", + "5.15.0-1070.76", + "5.15.0-1071.77", + "5.15.0-1072.78", + "5.15.0-1073.79", + "5.15.0-1074.80", + "5.15.0-1075.81", + "5.15.0-1076.82", + "5.15.0-1077.83", + "5.15.0-1078.84", + "5.15.0-1079.85", + "5.15.0-1080.86", + "5.15.0-1081.87", + "5.15.0-1082.88", + "5.15.0-1083.89", + "5.15.0-1084.90", + "5.15.0-1085.91", + "5.15.0-1086.92", + "5.15.0-1088.94", + "5.15.0-1089.95", + "5.15.0-1090.96", + "5.15.0-1091.97", + "5.15.0-1092.98", + "5.15.0-1093.99", + "5.15.0-1094.100", + "5.15.0-1095.101", + "5.15.0-1096.102" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-headers-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-modules-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-oracle-headers-5.15.0-1096", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-oracle-tools-5.15.0-1096", + "binary_version": "5.15.0-1096.102" + }, + { + "binary_name": "linux-tools-5.15.0-1096-oracle", + "binary_version": "5.15.0-1096.102" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oracle-6.5", + "purl": "pkg:deb/ubuntu/linux-oracle-6.5@6.5.0-1027.27~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1013.13~22.04.4", + "6.5.0-1014.14~22.04.1", + "6.5.0-1015.15~22.04.1", + "6.5.0-1016.16~22.04.1", + "6.5.0-1018.18~22.04.1", + "6.5.0-1019.19~22.04.1", + "6.5.0-1020.20~22.04.1", + "6.5.0-1021.21~22.04.1", + "6.5.0-1023.23~22.04.1", + "6.5.0-1024.24~22.04.1", + "6.5.0-1025.25~22.04.1", + "6.5.0-1026.26~22.04.1", + "6.5.0-1027.27~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-oracle-6.5-headers-6.5.0-1027", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-oracle-6.5-tools-6.5.0-1027", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1027-oracle", + "binary_version": "6.5.0-1027.27~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1027-oracle-64k", + "binary_version": "6.5.0-1027.27~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-oracle-6.8", + "purl": "pkg:deb/ubuntu/linux-oracle-6.8@6.8.0-1042.43~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1006.6~22.04.3", + "6.8.0-1008.8~22.04.1", + "6.8.0-1010.10~22.04.1", + "6.8.0-1011.11~22.04.1", + "6.8.0-1012.12~22.04.1", + "6.8.0-1013.13~22.04.1", + "6.8.0-1014.14~22.04.1", + "6.8.0-1015.15~22.04.1", + "6.8.0-1016.17~22.04.1", + "6.8.0-1017.18~22.04.1", + "6.8.0-1018.19~22.04.1", + "6.8.0-1019.20~22.04.1", + "6.8.0-1020.21~22.04.1", + "6.8.0-1021.22~22.04.1", + "6.8.0-1022.23~22.04.1", + "6.8.0-1023.24~22.04.1", + "6.8.0-1024.25~22.04.1", + "6.8.0-1025.26~22.04.1", + "6.8.0-1026.27~22.04.1", + "6.8.0-1027.28~22.04.1", + "6.8.0-1028.29~22.04.1", + "6.8.0-1029.30~22.04.1", + "6.8.0-1030.31~22.04.1", + "6.8.0-1032.33~22.04.1", + "6.8.0-1033.34~22.04.1", + "6.8.0-1035.36~22.04.1", + "6.8.0-1037.38~22.04.1", + "6.8.0-1038.39~22.04.1", + "6.8.0-1039.40~22.04.1", + "6.8.0-1040.41~22.04.1", + "6.8.0-1041.42~22.04.1", + "6.8.0-1042.43~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-oracle-6.8-headers-6.8.0-1042", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-oracle-6.8-tools-6.8.0-1042", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-raspi", + "purl": "pkg:deb/ubuntu/linux-raspi@5.15.0-1093.96?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1008.9", + "5.15.0-1002.2", + "5.15.0-1003.3", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1006.6", + "5.15.0-1008.8", + "5.15.0-1011.13", + "5.15.0-1012.14", + "5.15.0-1013.15", + "5.15.0-1014.16", + "5.15.0-1015.17", + "5.15.0-1016.18", + "5.15.0-1017.19", + "5.15.0-1018.20", + "5.15.0-1021.23", + "5.15.0-1022.24", + "5.15.0-1023.25", + "5.15.0-1024.26", + "5.15.0-1025.27", + "5.15.0-1026.28", + "5.15.0-1027.29", + "5.15.0-1028.30", + "5.15.0-1029.31", + "5.15.0-1030.32", + "5.15.0-1032.35", + "5.15.0-1033.36", + "5.15.0-1034.37", + "5.15.0-1035.38", + "5.15.0-1036.39", + "5.15.0-1037.40", + "5.15.0-1038.41", + "5.15.0-1040.43", + "5.15.0-1041.44", + "5.15.0-1042.45", + "5.15.0-1043.46", + "5.15.0-1044.47", + "5.15.0-1045.48", + "5.15.0-1046.49", + "5.15.0-1047.50", + "5.15.0-1048.51", + "5.15.0-1049.52", + "5.15.0-1050.53", + "5.15.0-1053.56", + "5.15.0-1054.57", + "5.15.0-1055.58", + "5.15.0-1058.61", + "5.15.0-1059.62", + "5.15.0-1060.63", + "5.15.0-1061.64", + "5.15.0-1062.65", + "5.15.0-1063.66", + "5.15.0-1064.67", + "5.15.0-1065.68", + "5.15.0-1066.69", + "5.15.0-1067.70", + "5.15.0-1070.73", + "5.15.0-1071.74", + "5.15.0-1072.75", + "5.15.0-1073.76", + "5.15.0-1074.77", + "5.15.0-1075.78", + "5.15.0-1076.79", + "5.15.0-1077.80", + "5.15.0-1078.81", + "5.15.0-1079.82", + "5.15.0-1080.83", + "5.15.0-1083.86", + "5.15.0-1084.87", + "5.15.0-1085.88", + "5.15.0-1086.89", + "5.15.0-1087.90", + "5.15.0-1089.92", + "5.15.0-1090.93", + "5.15.0-1091.94", + "5.15.0-1092.95", + "5.15.0-1093.96" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-headers-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-image-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-modules-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-raspi-headers-5.15.0-1093", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-raspi-tools-5.15.0-1093", + "binary_version": "5.15.0-1093.96" + }, + { + "binary_name": "linux-tools-5.15.0-1093-raspi", + "binary_version": "5.15.0-1093.96" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1032.35" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-headers-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-modules-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-cloud-tools-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-cloud-tools-common", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-headers-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-5.15.0-1032", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-common", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-realtime-tools-host", + "binary_version": "5.15.0-1032.35" + }, + { + "binary_name": "linux-tools-5.15.0-1032-realtime", + "binary_version": "5.15.0-1032.35" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-riscv", + "purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.13.0-1004.4", + "5.13.0-1006.6+22.04.1", + "5.13.0-1007.7+22.04.1", + "5.13.0-1010.11+22.04.1", + "5.15.0-1004.4", + "5.15.0-1005.5", + "5.15.0-1006.6", + "5.15.0-1007.7", + "5.15.0-1008.8", + "5.15.0-1011.12", + "5.15.0-1012.13", + "5.15.0-1014.16", + "5.15.0-1015.17", + "5.15.0-1016.18", + "5.15.0-1017.19", + "5.15.0-1018.21", + "5.15.0-1019.22", + "5.15.0-1020.23", + "5.15.0-1022.26", + "5.15.0-1023.27", + "5.15.0-1026.30", + "5.15.0-1027.31", + "5.15.0-1028.32" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-headers-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-image-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-modules-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-riscv-headers-5.15.0-1028", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-riscv-tools-5.15.0-1028", + "binary_version": "5.15.0-1028.32" + }, + { + "binary_name": "linux-tools-5.15.0-1028-generic", + "binary_version": "5.15.0-1028.32" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-riscv-5.19", + "purl": "pkg:deb/ubuntu/linux-riscv-5.19@5.19.0-1021.23~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1012.13~22.04.1", + "5.19.0-1015.16~22.04.1", + "5.19.0-1016.17~22.04.1", + "5.19.0-1017.18~22.04.1", + "5.19.0-1018.19~22.04.1", + "5.19.0-1019.21~22.04.1", + "5.19.0-1020.22~22.04.1", + "5.19.0-1021.23~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-headers-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-image-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-modules-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-riscv-5.19-headers-5.19.0-1021", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-riscv-5.19-tools-5.19.0-1021", + "binary_version": "5.19.0-1021.23~22.04.1" + }, + { + "binary_name": "linux-tools-5.19.0-1021-generic", + "binary_version": "5.19.0-1021.23~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-riscv-6.5", + "purl": "pkg:deb/ubuntu/linux-riscv-6.5@6.5.0-45.45.1~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-17.17.1.1~22.04.1", + "6.5.0-21.21.1~22.04.1", + "6.5.0-25.25.1~22.04.1", + "6.5.0-26.26.1~22.04.1", + "6.5.0-27.28.1~22.04.1", + "6.5.0-28.29.1~22.04.1", + "6.5.0-35.35.1~22.04.1", + "6.5.0-40.40.1~22.04.1", + "6.5.0-42.42.1~22.04.1", + "6.5.0-45.45.1~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-image-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-riscv-6.5-headers-6.5.0-45", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-riscv-6.5-tools-6.5.0-45", + "binary_version": "6.5.0-45.45.1~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-45-generic", + "binary_version": "6.5.0-45.45.1~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-riscv-6.8", + "purl": "pkg:deb/ubuntu/linux-riscv-6.8@6.8.0-90.91~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-38.38.1~22.04.1", + "6.8.0-39.39.1~22.04.1", + "6.8.0-40.40.1~22.04.1", + "6.8.0-41.41.1~22.04.1", + "6.8.0-44.44.1~22.04.1", + "6.8.0-47.47.1~22.04.1", + "6.8.0-48.48.1~22.04.2", + "6.8.0-49.49.1~22.04.1", + "6.8.0-50.51.1~22.04.1", + "6.8.0-51.52.1~22.04.1", + "6.8.0-52.53.1~22.04.1", + "6.8.0-53.55.1~22.04.1", + "6.8.0-55.57.1~22.04.1", + "6.8.0-56.58.1~22.04.1", + "6.8.0-57.59.1~22.04.1", + "6.8.0-58.60.1~22.04.1", + "6.8.0-59.61.1~22.04.1", + "6.8.0-62.65~22.04.1", + "6.8.0-63.66~22.04.1", + "6.8.0-64.67~22.04.1", + "6.8.0-71.71~22.04.1", + "6.8.0-78.78~22.04.1", + "6.8.0-79.79~22.04.1", + "6.8.0-83.83~22.04.1", + "6.8.0-84.84~22.04.1", + "6.8.0-86.87~22.04.1", + "6.8.0-87.88~22.04.1", + "6.8.0-88.89~22.04.1", + "6.8.0-90.91~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-90-generic", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.0-90-generic", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-image-6.8.0-90-generic", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.0-90-generic", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-riscv-6.8-headers-6.8.0-90", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-riscv-6.8-tools-6.8.0-90", + "binary_version": "6.8.0-90.91~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.0-90-generic", + "binary_version": "6.8.0-90.91~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-starfive-5.19", + "purl": "pkg:deb/ubuntu/linux-starfive-5.19@5.19.0-1020.22~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.19.0-1014.16~22.04.1", + "5.19.0-1015.17~22.04.1", + "5.19.0-1016.18~22.04.1", + "5.19.0-1017.19~22.04.1", + "5.19.0-1018.20~22.04.1", + "5.19.0-1019.21~22.04.1", + "5.19.0-1020.22~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-headers-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-image-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-modules-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-modules-extra-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-starfive-5.19-headers-5.19.0-1020", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-starfive-5.19-tools-5.19.0-1020", + "binary_version": "5.19.0-1020.22~22.04.1" + }, + { + "binary_name": "linux-tools-5.19.0-1020-starfive", + "binary_version": "5.19.0-1020.22~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-starfive-6.2", + "purl": "pkg:deb/ubuntu/linux-starfive-6.2@6.2.0-1009.10~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.2.0-1006.7~22.04.1", + "6.2.0-1007.8~22.04.1", + "6.2.0-1009.10~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-headers-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-image-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-modules-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-starfive-6.2-headers-6.2.0-1009", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-starfive-6.2-tools-6.2.0-1009", + "binary_version": "6.2.0-1009.10~22.04.1" + }, + { + "binary_name": "linux-tools-6.2.0-1009-starfive", + "binary_version": "6.2.0-1009.10~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-starfive-6.5", + "purl": "pkg:deb/ubuntu/linux-starfive-6.5@6.5.0-1018.19~22.04.1?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1007.8~22.04.1", + "6.5.0-1008.9~22.04.1", + "6.5.0-1009.10~22.04.1", + "6.5.0-1010.11~22.04.1", + "6.5.0-1011.12~22.04.1", + "6.5.0-1012.13~22.04.1", + "6.5.0-1014.15~22.04.1", + "6.5.0-1015.16~22.04.1", + "6.5.0-1016.17~22.04.1", + "6.5.0-1017.18~22.04.1", + "6.5.0-1018.19~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-headers-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-image-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-modules-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-starfive-6.5-headers-6.5.0-1018", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-starfive-6.5-tools-6.5.0-1018", + "binary_version": "6.5.0-1018.19~22.04.1" + }, + { + "binary_name": "linux-tools-6.5.0-1018-starfive", + "binary_version": "6.5.0-1018.19~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS", + "name": "linux-xilinx-zynqmp", + "purl": "pkg:deb/ubuntu/linux-xilinx-zynqmp@5.15.0-1062.66?arch=source&distro=jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1022.26", + "5.15.0-1023.27", + "5.15.0-1025.29", + "5.15.0-1027.31", + "5.15.0-1030.34", + "5.15.0-1031.35", + "5.15.0-1035.39", + "5.15.0-1036.40", + "5.15.0-1037.41", + "5.15.0-1038.42", + "5.15.0-1039.43", + "5.15.0-1041.45", + "5.15.0-1044.48", + "5.15.0-1046.50", + "5.15.0-1050.54", + "5.15.0-1051.55", + "5.15.0-1052.56", + "5.15.0-1053.57", + "5.15.0-1054.58", + "5.15.0-1055.59", + "5.15.0-1056.60", + "5.15.0-1057.61", + "5.15.0-1059.63", + "5.15.0-1060.64", + "5.15.0-1061.65", + "5.15.0-1062.66" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1062-xilinx-zynqmp", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-headers-5.15.0-1062-xilinx-zynqmp", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-image-5.15.0-1062-xilinx-zynqmp", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-modules-5.15.0-1062-xilinx-zynqmp", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-tools-5.15.0-1062-xilinx-zynqmp", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-xilinx-zynqmp-headers-5.15.0-1062", + "binary_version": "5.15.0-1062.66" + }, + { + "binary_name": "linux-xilinx-zynqmp-tools-5.15.0-1062", + "binary_version": "5.15.0-1062.66" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:22.04:LTS:for:NVIDIA:BlueField", + "name": "linux-bluefield", + "purl": "pkg:deb/ubuntu/linux-bluefield@5.15.0-1082.84?arch=source&distro=bluefield/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1011.13", + "5.15.0-1014.16", + "5.15.0-1015.17", + "5.15.0-1017.19", + "5.15.0-1019.21", + "5.15.0-1021.23", + "5.15.0-1022.24", + "5.15.0-1023.25", + "5.15.0-1024.26", + "5.15.0-1027.29", + "5.15.0-1028.30", + "5.15.0-1031.33", + "5.15.0-1032.34", + "5.15.0-1033.35", + "5.15.0-1035.37", + "5.15.0-1036.38", + "5.15.0-1037.39", + "5.15.0-1038.40", + "5.15.0-1040.42", + "5.15.0-1042.44", + "5.15.0-1043.45", + "5.15.0-1044.46", + "5.15.0-1045.47", + "5.15.0-1047.49", + "5.15.0-1048.50", + "5.15.0-1050.52", + "5.15.0-1051.53", + "5.15.0-1052.54", + "5.15.0-1053.55", + "5.15.0-1054.56", + "5.15.0-1056.58", + "5.15.0-1057.59", + "5.15.0-1058.60", + "5.15.0-1059.61", + "5.15.0-1060.62", + "5.15.0-1061.63", + "5.15.0-1062.64", + "5.15.0-1063.65", + "5.15.0-1064.66", + "5.15.0-1065.67", + "5.15.0-1066.68", + "5.15.0-1067.69", + "5.15.0-1069.71", + "5.15.0-1070.72", + "5.15.0-1072.74", + "5.15.0-1074.76", + "5.15.0-1075.77", + "5.15.0-1076.78", + "5.15.0-1077.79", + "5.15.0-1079.81", + "5.15.0-1080.82", + "5.15.0-1081.83", + "5.15.0-1082.84" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-bluefield-cloud-tools-common", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-bluefield-headers-5.15.0-1082", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-bluefield-tools-5.15.0-1082", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-bluefield-tools-host", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-headers-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-modules-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + }, + { + "binary_name": "linux-tools-5.15.0-1082-bluefield", + "binary_version": "5.15.0-1082.84" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@5.15.0-1051.56+fips1?arch=source&distro=fips-preview/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1042.47+fips1", + "5.15.0-1051.56+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-cloud-tools-5.15.0-1051", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-aws-fips-headers-5.15.0-1051", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-aws-fips-tools-5.15.0-1051", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1051-aws-fips", + "binary_version": "5.15.0-1051.56+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@5.15.0-1053.61+fips1?arch=source&distro=fips-preview/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1053.61+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-5.15.0-1053", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-azure-fips-headers-5.15.0-1053", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-azure-fips-tools-5.15.0-1053", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1053-azure-fips", + "binary_version": "5.15.0-1053.61+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@5.15.0-73.80+fips1?arch=source&distro=fips-preview/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-73.80+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-fips-headers-5.15.0-73", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-fips-tools-5.15.0-73", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-fips-tools-host", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-73-fips", + "binary_version": "5.15.0-73.80+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.15.0-1048.56+fips1?arch=source&distro=fips-preview/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1048.56+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-gcp-fips-headers-5.15.0-1048", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-gcp-fips-tools-5.15.0-1048", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1048-gcp-fips", + "binary_version": "5.15.0-1048.56+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@5.15.0-1099.106+fips1?arch=source&distro=fips-updates/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1051.56+fips1", + "5.15.0-1052.57+fips1", + "5.15.0-1053.58+fips1", + "5.15.0-1055.60+fips1", + "5.15.0-1056.61+fips1", + "5.15.0-1057.63+fips1", + "5.15.0-1060.66+fips1", + "5.15.0-1061.67+fips1", + "5.15.0-1062.68+fips1", + "5.15.0-1063.69+fips1", + "5.15.0-1064.70+fips1", + "5.15.0-1065.71+fips1", + "5.15.0-1066.72+fips1", + "5.15.0-1067.73+fips1", + "5.15.0-1068.74+fips1", + "5.15.0-1069.75+fips1", + "5.15.0-1070.76+fips1", + "5.15.0-1071.77+fips1", + "5.15.0-1072.78+fips1", + "5.15.0-1073.79+fips1", + "5.15.0-1076.83+fips1", + "5.15.0-1077.84+fips1", + "5.15.0-1078.85+fips1", + "5.15.0-1079.86+fips1", + "5.15.0-1080.87+fips1", + "5.15.0-1081.88+fips1", + "5.15.0-1082.89+fips1", + "5.15.0-1083.90+fips1", + "5.15.0-1084.91+fips1", + "5.15.0-1085.92+fips1", + "5.15.0-1086.93+fips1", + "5.15.0-1087.94+fips1", + "5.15.0-1088.95+fips1", + "5.15.0-1089.96+fips1", + "5.15.0-1090.97+fips1", + "5.15.0-1091.98+fips1", + "5.15.0-1092.99+fips1", + "5.15.0-1093.100+fips1", + "5.15.0-1095.102+fips1", + "5.15.0-1096.103+fips1", + "5.15.0-1097.104+fips1", + "5.15.0-1098.105+fips1", + "5.15.0-1099.106+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-cloud-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-aws-fips-headers-5.15.0-1099", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-aws-fips-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1099-aws-fips", + "binary_version": "5.15.0-1099.106+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@5.15.0-1102.111+fips1?arch=source&distro=fips-updates/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1053.61+fips1", + "5.15.0-1058.66+fips1", + "5.15.0-1059.67+fips1", + "5.15.0-1060.69+fips1", + "5.15.0-1061.70+fips1", + "5.15.0-1063.72+fips1", + "5.15.0-1064.73+fips1", + "5.15.0-1065.74+fips1", + "5.15.0-1067.76+fips1", + "5.15.0-1068.77+fips1", + "5.15.0-1070.79+fips1", + "5.15.0-1071.80+fips1", + "5.15.0-1072.81+fips1", + "5.15.0-1073.82+fips1", + "5.15.0-1074.83+fips1", + "5.15.0-1075.84+fips1", + "5.15.0-1078.87+fips1", + "5.15.0-1079.88+fips1", + "5.15.0-1080.89+fips1", + "5.15.0-1082.91+fips1", + "5.15.0-1083.92+fips1", + "5.15.0-1085.94+fips1", + "5.15.0-1087.96+fips1", + "5.15.0-1088.97+fips1", + "5.15.0-1089.98+fips1", + "5.15.0-1090.99+fips1", + "5.15.0-1091.100+fips1", + "5.15.0-1094.103+fips1", + "5.15.0-1095.104+fips1", + "5.15.0-1096.105+fips1", + "5.15.0-1097.106+fips1", + "5.15.0-1098.107+fips1", + "5.15.0-1101.110+fips1", + "5.15.0-1102.111+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-azure-fips-headers-5.15.0-1102", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-azure-fips-tools-5.15.0-1102", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-buildinfo-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-modules-involflt-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1102-azure-fips", + "binary_version": "5.15.0-1102.111+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@5.15.0-168.178+fips1?arch=source&distro=fips-updates/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-73.80+fips1", + "5.15.0-92.102+fips1", + "5.15.0-94.104+fips1", + "5.15.0-97.107+fips1", + "5.15.0-100.110+fips1", + "5.15.0-101.111+fips1", + "5.15.0-102.112+fips1", + "5.15.0-105.115+fips1", + "5.15.0-106.116+fips1", + "5.15.0-107.117+fips1", + "5.15.0-111.121+fips1", + "5.15.0-113.123+fips1", + "5.15.0-115.125+fips1", + "5.15.0-117.127+fips1", + "5.15.0-118.128+fips1", + "5.15.0-119.129+fips1", + "5.15.0-121.131+fips1", + "5.15.0-122.132+fips1", + "5.15.0-124.134+fips1", + "5.15.0-125.135+fips1", + "5.15.0-127.137+fips1", + "5.15.0-128.138+fips1", + "5.15.0-130.140+fips1", + "5.15.0-131.141+fips1", + "5.15.0-133.144+fips1", + "5.15.0-134.145+fips1", + "5.15.0-135.146+fips1", + "5.15.0-136.147+fips1", + "5.15.0-138.148+fips1", + "5.15.0-139.149+fips1", + "5.15.0-140.150+fips1", + "5.15.0-141.151+fips1", + "5.15.0-142.152+fips1", + "5.15.0-143.153+fips1", + "5.15.0-144.157+fips1", + "5.15.0-145.158+fips1", + "5.15.0-152.162+fips1", + "5.15.0-153.163+fips1", + "5.15.0-156.166+fips1", + "5.15.0-157.167+fips1", + "5.15.0-160.170+fips1", + "5.15.0-161.171+fips1", + "5.15.0-163.173+fips1", + "5.15.0-164.174+fips1", + "5.15.0-168.178+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-fips-cloud-tools-5.15.0-168", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-fips-headers-5.15.0-168", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-fips-tools-5.15.0-168", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-168-fips", + "binary_version": "5.15.0-168.178+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.15.0-1099.108+fips1?arch=source&distro=fips-updates/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1048.56+fips1", + "5.15.0-1055.63+fips2", + "5.15.0-1058.66+fips1", + "5.15.0-1059.67+fips1", + "5.15.0-1060.68+fips1", + "5.15.0-1062.70+fips1", + "5.15.0-1063.71+fips1", + "5.15.0-1064.72+fips1", + "5.15.0-1065.73+fips1", + "5.15.0-1066.74+fips1", + "5.15.0-1067.75+fips1", + "5.15.0-1068.76+fips1", + "5.15.0-1069.77+fips1", + "5.15.0-1070.78+fips1", + "5.15.0-1071.79+fips1", + "5.15.0-1072.80+fips1", + "5.15.0-1073.81+fips1", + "5.15.0-1074.83+fips1", + "5.15.0-1075.84+fips1", + "5.15.0-1077.86+fips1", + "5.15.0-1078.87+fips1", + "5.15.0-1079.88+fips1", + "5.15.0-1080.89+fips1", + "5.15.0-1081.90+fips1", + "5.15.0-1082.91+fips1", + "5.15.0-1083.92+fips1", + "5.15.0-1084.93+fips1", + "5.15.0-1085.94+fips1", + "5.15.0-1086.95+fips1", + "5.15.0-1087.96+fips1", + "5.15.0-1088.97+fips1", + "5.15.0-1090.99+fips1", + "5.15.0-1091.100+fips1", + "5.15.0-1092.101+fips1", + "5.15.0-1093.102+fips1", + "5.15.0-1095.104+fips1", + "5.15.0-1096.105+fips1", + "5.15.0-1097.106+fips1", + "5.15.0-1098.107+fips1", + "5.15.0-1099.108+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-gcp-fips-headers-5.15.0-1099", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-gcp-fips-tools-5.15.0-1099", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-headers-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-modules-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + }, + { + "binary_name": "linux-tools-5.15.0-1099-gcp-fips", + "binary_version": "5.15.0-1099.108+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", + "name": "linux-intel-iot-realtime", + "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1091.93?arch=source&distro=realtime/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1021.26", + "5.15.0-1022.27", + "5.15.0-1023.28", + "5.15.0-1024.29", + "5.15.0-1028.33", + "5.15.0-1033.35", + "5.15.0-1034.36", + "5.15.0-1035.37", + "5.15.0-1036.38", + "5.15.0-1037.39", + "5.15.0-1038.40", + "5.15.0-1039.41", + "5.15.0-1040.42", + "5.15.0-1041.43", + "5.15.0-1042.44", + "5.15.0-1043.45", + "5.15.0-1044.46", + "5.15.0-1046.48", + "5.15.0-1047.49", + "5.15.0-1048.50", + "5.15.0-1049.51", + "5.15.0-1050.52", + "5.15.0-1053.55", + "5.15.0-1054.56", + "5.15.0-1055.57", + "5.15.0-1056.58", + "5.15.0-1057.59", + "5.15.0-1058.60", + "5.15.0-1059.61", + "5.15.0-1060.62", + "5.15.0-1061.63", + "5.15.0-1063.65", + "5.15.0-1064.66", + "5.15.0-1066.68", + "5.15.0-1071.73", + "5.15.0-1072.74", + "5.15.0-1073.75", + "5.15.0-1074.76", + "5.15.0-1075.77", + "5.15.0-1076.78", + "5.15.0-1077.79", + "5.15.0-1078.80", + "5.15.0-1079.81", + "5.15.0-1080.82", + "5.15.0-1081.83", + "5.15.0-1082.84", + "5.15.0-1083.85", + "5.15.0-1084.86", + "5.15.0-1085.87", + "5.15.0-1086.88", + "5.15.0-1087.89", + "5.15.0-1088.90", + "5.15.0-1089.91", + "5.15.0-1090.92", + "5.15.0-1091.93" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-headers-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1091", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-cloud-tools-common", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1091", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1091", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-common", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-intel-iot-realtime-tools-host", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-modules-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + }, + { + "binary_name": "linux-tools-5.15.0-1091-intel-iot-realtime", + "binary_version": "5.15.0-1091.93" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1098.107?arch=source&distro=realtime/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "5.15.0-1006.6", + "5.15.0-1007.7", + "5.15.0-1009.9", + "5.15.0-1011.11", + "5.15.0-1014.14", + "5.15.0-1015.15", + "5.15.0-1016.16", + "5.15.0-1019.19", + "5.15.0-1020.20", + "5.15.0-1021.21", + "5.15.0-1022.22", + "5.15.0-1024.25", + "5.15.0-1025.28", + "5.15.0-1028.31", + "5.15.0-1029.32", + "5.15.0-1030.33", + "5.15.0-1032.35", + "5.15.0-1033.36", + "5.15.0-1034.37", + "5.15.0-1036.39", + "5.15.0-1037.40", + "5.15.0-1038.41", + "5.15.0-1039.42", + "5.15.0-1040.45", + "5.15.0-1041.46", + "5.15.0-1042.47", + "5.15.0-1043.48", + "5.15.0-1044.49", + "5.15.0-1045.50", + "5.15.0-1046.52", + "5.15.0-1048.54", + "5.15.0-1049.55", + "5.15.0-1050.56", + "5.15.0-1051.57", + "5.15.0-1052.58", + "5.15.0-1053.59", + "5.15.0-1054.60", + "5.15.0-1055.62", + "5.15.0-1056.63", + "5.15.0-1057.64", + "5.15.0-1058.66", + "5.15.0-1061.69", + "5.15.0-1062.70", + "5.15.0-1063.71", + "5.15.0-1064.72", + "5.15.0-1065.73", + "5.15.0-1066.74", + "5.15.0-1067.75", + "5.15.0-1068.76", + "5.15.0-1069.77", + "5.15.0-1070.78", + "5.15.0-1071.79", + "5.15.0-1072.80", + "5.15.0-1073.81", + "5.15.0-1074.82", + "5.15.0-1075.83", + "5.15.0-1076.84", + "5.15.0-1077.85", + "5.15.0-1078.86", + "5.15.0-1079.87", + "5.15.0-1080.88", + "5.15.0-1081.89", + "5.15.0-1082.91", + "5.15.0-1083.92", + "5.15.0-1084.93", + "5.15.0-1085.94", + "5.15.0-1086.95", + "5.15.0-1087.96", + "5.15.0-1088.97", + "5.15.0-1089.98", + "5.15.0-1090.99", + "5.15.0-1091.100", + "5.15.0-1092.101", + "5.15.0-1093.102", + "5.15.0-1094.103", + "5.15.0-1095.104", + "5.15.0-1096.105", + "5.15.0-1097.106", + "5.15.0-1098.107" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-cloud-tools-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-headers-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-image-unsigned-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-modules-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-modules-extra-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-modules-iwlwifi-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-cloud-tools-5.15.0-1098", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-cloud-tools-common", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-headers-5.15.0-1098", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-tools-5.15.0-1098", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-tools-common", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-realtime-tools-host", + "binary_version": "5.15.0-1098.107" + }, + { + "binary_name": "linux-tools-5.15.0-1098-realtime", + "binary_version": "5.15.0-1098.107" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", + "name": "linux-realtime-6.8", + "purl": "pkg:deb/ubuntu/linux-realtime-6.8@6.8.1-1040.41~22.04.1?arch=source&distro=realtime/jammy" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.1-1004.4~22.04.1", + "6.8.1-1005.5~22.04.2", + "6.8.1-1006.6~22.04.1", + "6.8.1-1007.7~22.04.1", + "6.8.1-1008.8~22.04.1", + "6.8.1-1009.9~22.04.1", + "6.8.1-1010.10~22.04.1", + "6.8.1-1011.11~22.04.1", + "6.8.1-1012.12~22.04.1", + "6.8.1-1013.14~22.04.1", + "6.8.1-1014.15~22.04.1", + "6.8.1-1015.16~22.04.1", + "6.8.1-1016.17~22.04.1", + "6.8.1-1017.18~22.04.1", + "6.8.1-1018.19~22.04.1", + "6.8.1-1019.20~22.04.1", + "6.8.1-1020.21~22.04.1", + "6.8.1-1021.22~22.04.1", + "6.8.1-1022.23~22.04.1", + "6.8.1-1023.24~22.04.1", + "6.8.1-1024.25~22.04.1", + "6.8.1-1025.26~22.04.1", + "6.8.1-1026.27~22.04.1", + "6.8.1-1030.31~22.04.1", + "6.8.1-1031.32~22.04.1", + "6.8.1-1034.35~22.04.1", + "6.8.1-1035.36~22.04.1", + "6.8.1-1036.37~22.04.1", + "6.8.1-1037.38~22.04.1", + "6.8.1-1038.39~22.04.1", + "6.8.1-1039.40~22.04.1", + "6.8.1-1040.41~22.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-headers-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-modules-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-modules-extra-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-realtime-6.8-cloud-tools-6.8.1-1040", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-realtime-6.8-headers-6.8.1-1040", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-realtime-6.8-tools-6.8.1-1040", + "binary_version": "6.8.1-1040.41~22.04.1" + }, + { + "binary_name": "linux-tools-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41~22.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@6.8.0-94.96?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-9.9", + "6.6.0-14.14", + "6.8.0-11.11", + "6.8.0-20.20", + "6.8.0-22.22", + "6.8.0-28.28", + "6.8.0-31.31", + "6.8.0-35.35", + "6.8.0-36.36", + "6.8.0-38.38", + "6.8.0-39.39", + "6.8.0-40.40", + "6.8.0-41.41", + "6.8.0-44.44", + "6.8.0-45.45", + "6.8.0-47.47", + "6.8.0-48.48", + "6.8.0-49.49", + "6.8.0-50.51", + "6.8.0-51.52", + "6.8.0-52.53", + "6.8.0-53.55", + "6.8.0-54.56", + "6.8.0-55.57", + "6.8.0-56.58", + "6.8.0-57.59", + "6.8.0-58.60", + "6.8.0-59.61", + "6.8.0-60.63", + "6.8.0-62.65", + "6.8.0-63.66", + "6.8.0-64.67", + "6.8.0-71.71", + "6.8.0-78.78", + "6.8.0-79.79", + "6.8.0-83.83", + "6.8.0-84.84", + "6.8.0-85.85", + "6.8.0-86.87", + "6.8.0-87.88", + "6.8.0-88.89", + "6.8.0-90.91", + "6.8.0-94.96" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-bpf-dev", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-buildinfo-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-buildinfo-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-94", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-headers-6.8.0-94", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-headers-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-headers-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-image-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-lib-rust-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-extra-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-ipu6-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-modules-usbio-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-source-6.8.0", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-tools-6.8.0-94", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-tools-6.8.0-94-generic", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-tools-6.8.0-94-generic-64k", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "6.8.0-94.96" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "6.8.0-94.96" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@6.8.0-1044.46?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1008.8", + "6.6.0-1001.1", + "6.8.0-1001.1", + "6.8.0-1006.6", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1011.12", + "6.8.0-1012.13", + "6.8.0-1013.14", + "6.8.0-1014.15", + "6.8.0-1015.16", + "6.8.0-1016.17", + "6.8.0-1017.18", + "6.8.0-1018.20", + "6.8.0-1019.21", + "6.8.0-1020.22", + "6.8.0-1021.23", + "6.8.0-1023.25", + "6.8.0-1024.26", + "6.8.0-1025.27", + "6.8.0-1026.28", + "6.8.0-1027.29", + "6.8.0-1028.30", + "6.8.0-1029.31", + "6.8.0-1030.32", + "6.8.0-1031.33", + "6.8.0-1032.34", + "6.8.0-1033.35", + "6.8.0-1035.37", + "6.8.0-1036.38", + "6.8.0-1038.40", + "6.8.0-1039.41", + "6.8.0-1040.42", + "6.8.0-1041.43", + "6.8.0-1042.44", + "6.8.0-1043.45", + "6.8.0-1044.46" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-aws-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-aws-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-headers-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-headers-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-modules-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-modules-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-tools-6.8.0-1044-aws", + "binary_version": "6.8.0-1044.46" + }, + { + "binary_name": "linux-tools-6.8.0-1044-aws-64k", + "binary_version": "6.8.0-1044.46" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-aws-6.14", + "purl": "pkg:deb/ubuntu/linux-aws-6.14@6.14.0-1018.18~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1007.7~24.04.1", + "6.14.0-1009.9~24.04.1", + "6.14.0-1010.10~24.04.1", + "6.14.0-1011.11~24.04.1", + "6.14.0-1012.12~24.04.1", + "6.14.0-1013.13~24.04.1", + "6.14.0-1014.14~24.04.1", + "6.14.0-1015.15~24.04.1", + "6.14.0-1016.16~24.04.1", + "6.14.0-1017.17~24.04.1", + "6.14.0-1018.18~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-6.14-cloud-tools-6.14.0-1018", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-aws-6.14-headers-6.14.0-1018", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-aws-6.14-tools-6.14.0-1018", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1018-aws", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1018-aws-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@6.8.0-1044.50?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1007.7", + "6.6.0-1001.1", + "6.8.0-1001.1", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1007.7", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1012.14", + "6.8.0-1013.15", + "6.8.0-1014.16", + "6.8.0-1015.17", + "6.8.0-1016.18", + "6.8.0-1017.20", + "6.8.0-1018.21", + "6.8.0-1020.23", + "6.8.0-1021.25", + "6.8.0-1025.30", + "6.8.0-1026.31", + "6.8.0-1027.32", + "6.8.0-1028.33", + "6.8.0-1029.34", + "6.8.0-1030.35", + "6.8.0-1031.36", + "6.8.0-1034.39", + "6.8.0-1038.44", + "6.8.0-1040.46", + "6.8.0-1041.47", + "6.8.0-1042.48", + "6.8.0-1044.50" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-azure-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-azure-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-headers-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-modules-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-modules-involflt-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + }, + { + "binary_name": "linux-tools-6.8.0-1044-azure", + "binary_version": "6.8.0-1044.50" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-6.11", + "purl": "pkg:deb/ubuntu/linux-azure-6.11@6.11.0-1018.18~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-1008.8~24.04.1", + "6.11.0-1012.12~24.04.1", + "6.11.0-1013.13~24.04.1", + "6.11.0-1014.14~24.04.1", + "6.11.0-1015.15~24.04.1", + "6.11.0-1017.17~24.04.1", + "6.11.0-1018.18~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-6.11-cloud-tools-6.11.0-1018", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-azure-6.11-headers-6.11.0-1018", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-azure-6.11-tools-6.11.0-1018", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-1018-azure", + "binary_version": "6.11.0-1018.18~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-6.14", + "purl": "pkg:deb/ubuntu/linux-azure-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1010.10~24.04.1", + "6.14.0-1012.12~24.04.1", + "6.14.0-1013.13~24.04.1", + "6.14.0-1014.14~24.04.1", + "6.14.0-1017.17~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-6.14-cloud-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-azure-6.14-headers-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-azure-6.14-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1017-azure", + "binary_version": "6.14.0-1017.17~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-fde", + "purl": "pkg:deb/ubuntu/linux-azure-fde@6.8.0-1044.51?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1041.48", + "6.8.0-1044.51" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fde-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-azure-fde-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-azure-fde-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-headers-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-modules-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + }, + { + "binary_name": "linux-tools-6.8.0-1044-azure-fde", + "binary_version": "6.8.0-1044.51" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-fde-6.14", + "purl": "pkg:deb/ubuntu/linux-azure-fde-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1012.12~24.04.1", + "6.14.0-1013.13~24.04.1", + "6.14.0-1014.14~24.04.1", + "6.14.0-1015.15~24.04.1", + "6.14.0-1017.17~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fde-6.14-cloud-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-azure-fde-6.14-headers-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-azure-fde-6.14-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1017-azure-fde", + "binary_version": "6.14.0-1017.17~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-nvidia", + "purl": "pkg:deb/ubuntu/linux-azure-nvidia@6.8.0-1029.32?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1013.14", + "6.8.0-1014.15", + "6.8.0-1016.17", + "6.8.0-1018.19", + "6.8.0-1019.20", + "6.8.0-1022.23", + "6.8.0-1025.27", + "6.8.0-1027.30", + "6.8.0-1029.32" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-nvidia-cloud-tools-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-azure-nvidia-headers-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-azure-nvidia-tools-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-headers-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-modules-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-tools-6.8.0-1029-azure-nvidia", + "binary_version": "6.8.0-1029.32" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-azure-nvidia-6.14", + "purl": "pkg:deb/ubuntu/linux-azure-nvidia-6.14@6.14.0-1007.7?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1003.3", + "6.14.0-1006.6", + "6.14.0-1007.7" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-nvidia-6.14-cloud-tools-6.14.0-1007", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-azure-nvidia-6.14-headers-6.14.0-1007", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-azure-nvidia-6.14-tools-6.14.0-1007", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-headers-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-modules-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + }, + { + "binary_name": "linux-tools-6.14.0-1007-azure-nvidia", + "binary_version": "6.14.0-1007.7" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@6.8.0-1045.48?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1007.7", + "6.6.0-1001.1", + "6.8.0-1002.2", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1007.7", + "6.8.0-1008.9", + "6.8.0-1009.10", + "6.8.0-1010.11", + "6.8.0-1011.12", + "6.8.0-1012.13", + "6.8.0-1013.14", + "6.8.0-1014.16", + "6.8.0-1015.17", + "6.8.0-1016.18", + "6.8.0-1017.19", + "6.8.0-1018.20", + "6.8.0-1019.21", + "6.8.0-1020.22", + "6.8.0-1021.23", + "6.8.0-1024.26", + "6.8.0-1025.27", + "6.8.0-1026.28", + "6.8.0-1027.29", + "6.8.0-1028.30", + "6.8.0-1029.31", + "6.8.0-1030.32", + "6.8.0-1031.33", + "6.8.0-1032.34", + "6.8.0-1033.35", + "6.8.0-1034.36", + "6.8.0-1036.38", + "6.8.0-1037.39", + "6.8.0-1039.41", + "6.8.0-1040.42", + "6.8.0-1041.43", + "6.8.0-1042.45", + "6.8.0-1043.46", + "6.8.0-1044.47", + "6.8.0-1045.48" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-gcp-headers-6.8.0-1045", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-gcp-tools-6.8.0-1045", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-headers-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-headers-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-modules-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-modules-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-tools-6.8.0-1045-gcp", + "binary_version": "6.8.0-1045.48" + }, + { + "binary_name": "linux-tools-6.8.0-1045-gcp-64k", + "binary_version": "6.8.0-1045.48" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-gcp-6.11", + "purl": "pkg:deb/ubuntu/linux-gcp-6.11@6.11.0-1017.17~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-1006.6~24.04.2", + "6.11.0-1011.11~24.04.1", + "6.11.0-1013.13~24.04.1", + "6.11.0-1014.14~24.04.1", + "6.11.0-1015.15~24.04.1", + "6.11.0-1016.16~24.04.1", + "6.11.0-1017.17~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-gcp-6.11-headers-6.11.0-1017", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-gcp-6.11-lib-rust-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-gcp-6.11-tools-6.11.0-1017", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-1017-gcp", + "binary_version": "6.11.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-1017-gcp-64k", + "binary_version": "6.11.0-1017.17~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-gcp-6.14", + "purl": "pkg:deb/ubuntu/linux-gcp-6.14@6.14.0-1021.22~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1007.7~24.04.1", + "6.14.0-1011.11~24.04.1", + "6.14.0-1012.12~24.04.1", + "6.14.0-1014.15~24.04.1", + "6.14.0-1015.16~24.04.1", + "6.14.0-1016.17~24.04.1", + "6.14.0-1017.18~24.04.1", + "6.14.0-1018.19~24.04.1", + "6.14.0-1019.20~24.04.1", + "6.14.0-1020.21~24.04.1", + "6.14.0-1021.22~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-gcp-6.14-headers-6.14.0-1021", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-gcp-6.14-tools-6.14.0-1021", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-lib-rust-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1021-gcp", + "binary_version": "6.14.0-1021.22~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1021-gcp-64k", + "binary_version": "6.14.0-1021.22~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-gke", + "purl": "pkg:deb/ubuntu/linux-gke@6.8.0-1042.47?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1003.5", + "6.8.0-1004.7", + "6.8.0-1005.8", + "6.8.0-1006.9", + "6.8.0-1007.10", + "6.8.0-1008.11", + "6.8.0-1009.12", + "6.8.0-1010.13", + "6.8.0-1011.14", + "6.8.0-1012.15", + "6.8.0-1013.17", + "6.8.0-1014.18", + "6.8.0-1015.19", + "6.8.0-1016.20", + "6.8.0-1017.21", + "6.8.0-1019.23", + "6.8.0-1020.24", + "6.8.0-1021.25", + "6.8.0-1022.26", + "6.8.0-1023.27", + "6.8.0-1024.28", + "6.8.0-1025.29", + "6.8.0-1026.30", + "6.8.0-1027.31", + "6.8.0-1028.32", + "6.8.0-1029.33", + "6.8.0-1032.36", + "6.8.0-1033.37", + "6.8.0-1035.39", + "6.8.0-1036.40", + "6.8.0-1037.41", + "6.8.0-1038.43", + "6.8.0-1039.44", + "6.8.0-1040.45", + "6.8.0-1041.46", + "6.8.0-1042.47" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-gke-headers-6.8.0-1042", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-gke-tools-6.8.0-1042", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-headers-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-headers-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-modules-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-modules-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-tools-6.8.0-1042-gke", + "binary_version": "6.8.0-1042.47" + }, + { + "binary_name": "linux-tools-6.8.0-1042-gke-64k", + "binary_version": "6.8.0-1042.47" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-gkeop", + "purl": "pkg:deb/ubuntu/linux-gkeop@6.8.0-1029.32?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1001.3", + "6.8.0-1002.4", + "6.8.0-1003.5", + "6.8.0-1004.6", + "6.8.0-1006.8", + "6.8.0-1007.9", + "6.8.0-1008.10", + "6.8.0-1009.11", + "6.8.0-1010.12", + "6.8.0-1011.13", + "6.8.0-1012.14", + "6.8.0-1013.15", + "6.8.0-1014.16", + "6.8.0-1015.17", + "6.8.0-1016.18", + "6.8.0-1019.21", + "6.8.0-1020.22", + "6.8.0-1022.24", + "6.8.0-1023.25", + "6.8.0-1024.26", + "6.8.0-1025.28", + "6.8.0-1026.29", + "6.8.0-1027.30", + "6.8.0-1028.31", + "6.8.0-1029.32" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-gkeop-cloud-tools-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-gkeop-headers-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-gkeop-tools-6.8.0-1029", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-headers-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-modules-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + }, + { + "binary_name": "linux-tools-6.8.0-1029-gkeop", + "binary_version": "6.8.0-1029.32" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-hwe-6.11", + "purl": "pkg:deb/ubuntu/linux-hwe-6.11@6.11.0-29.29~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-17.17~24.04.2", + "6.11.0-19.19~24.04.1", + "6.11.0-21.21~24.04.1", + "6.11.0-24.24~24.04.1", + "6.11.0-25.25~24.04.1", + "6.11.0-26.26~24.04.1", + "6.11.0-28.28~24.04.1", + "6.11.0-29.29~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.11.0-29-generic-64k", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-29-generic-64k", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-hwe-6.11-cloud-tools-6.11.0-29", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-hwe-6.11-headers-6.11.0-29", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-hwe-6.11-lib-rust-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-hwe-6.11-tools-6.11.0-29", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-image-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-29-generic-64k", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-29-generic-64k", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-ipu7-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-usbio-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-modules-vision-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-29-generic", + "binary_version": "6.11.0-29.29~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-29-generic-64k", + "binary_version": "6.11.0-29.29~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-hwe-6.14", + "purl": "pkg:deb/ubuntu/linux-hwe-6.14@6.14.0-37.37~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-24.24~24.04.3", + "6.14.0-27.27~24.04.1", + "6.14.0-28.28~24.04.1", + "6.14.0-29.29~24.04.1", + "6.14.0-32.32~24.04.1", + "6.14.0-33.33~24.04.1", + "6.14.0-34.34~24.04.1", + "6.14.0-35.35~24.04.1", + "6.14.0-36.36~24.04.1", + "6.14.0-37.37~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-37-generic-64k", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-37-generic-64k", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-hwe-6.14-cloud-tools-6.14.0-37", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-hwe-6.14-headers-6.14.0-37", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-hwe-6.14-tools-6.14.0-37", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-image-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-37-generic-64k", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-lib-rust-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-37-generic-64k", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-ipu6-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-ipu7-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-usbio-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-modules-vision-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-37-generic", + "binary_version": "6.14.0-37.37~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-37-generic-64k", + "binary_version": "6.14.0-37.37~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-ibm", + "purl": "pkg:deb/ubuntu/linux-ibm@6.8.0-1042.42?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1009.9", + "6.8.0-1001.1", + "6.8.0-1003.3", + "6.8.0-1004.4", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1007.7", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1011.11", + "6.8.0-1012.12", + "6.8.0-1013.13", + "6.8.0-1014.14", + "6.8.0-1015.15", + "6.8.0-1016.16", + "6.8.0-1017.17", + "6.8.0-1018.18", + "6.8.0-1019.19", + "6.8.0-1022.22", + "6.8.0-1023.23", + "6.8.0-1024.24", + "6.8.0-1025.25", + "6.8.0-1026.26", + "6.8.0-1027.27", + "6.8.0-1028.28", + "6.8.0-1029.29", + "6.8.0-1030.30", + "6.8.0-1033.33", + "6.8.0-1036.36", + "6.8.0-1037.37", + "6.8.0-1038.38", + "6.8.0-1039.39", + "6.8.0-1040.40", + "6.8.0-1041.41", + "6.8.0-1042.42" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-headers-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-ibm-headers-6.8.0-1042", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-ibm-tools-6.8.0-1042", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-modules-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + }, + { + "binary_name": "linux-tools-6.8.0-1042-ibm", + "binary_version": "6.8.0-1042.42" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-lowlatency", + "purl": "pkg:deb/ubuntu/linux-lowlatency@6.8.0-90.91.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-9.9.1", + "6.6.0-14.14.1", + "6.8.0-7.7.1", + "6.8.0-25.25.3", + "6.8.0-28.28.1", + "6.8.0-31.31.1", + "6.8.0-35.35.1", + "6.8.0-36.36.1", + "6.8.0-38.38.1", + "6.8.0-39.39.1", + "6.8.0-40.40.1", + "6.8.0-41.41.1", + "6.8.0-44.44.1", + "6.8.0-45.45.1", + "6.8.0-47.47.1", + "6.8.0-48.48.3", + "6.8.0-49.49.1", + "6.8.0-50.51.1", + "6.8.0-51.52.1", + "6.8.0-52.53.1", + "6.8.0-53.55.2", + "6.8.0-54.56.1", + "6.8.0-55.57.1", + "6.8.0-56.58.1", + "6.8.0-57.59.1", + "6.8.0-58.60.1", + "6.8.0-59.61.1", + "6.8.0-60.63.1", + "6.8.0-62.65.1", + "6.8.0-63.66.1", + "6.8.0-64.67.1", + "6.8.0-65.68.1", + "6.8.0-78.78.1", + "6.8.0-79.79.1", + "6.8.0-83.83.1", + "6.8.0-84.84.1", + "6.8.0-85.85.1", + "6.8.0-86.87.1", + "6.8.0-87.88.1", + "6.8.0-88.89.1", + "6.8.0-90.91.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-headers-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-headers-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-lowlatency-cloud-tools-6.8.0-90", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-lowlatency-headers-6.8.0-90", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-lowlatency-lib-rust-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-lowlatency-tools-6.8.0-90", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-modules-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-modules-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-tools-6.8.0-90-lowlatency", + "binary_version": "6.8.0-90.91.1" + }, + { + "binary_name": "linux-tools-6.8.0-90-lowlatency-64k", + "binary_version": "6.8.0-90.91.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-lowlatency-hwe-6.11", + "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.11@6.11.0-1016.17~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-1009.10~24.04.1", + "6.11.0-1011.12~24.04.1", + "6.11.0-1012.13~24.04.1", + "6.11.0-1013.14~24.04.1", + "6.11.0-1014.15~24.04.1", + "6.11.0-1015.16~24.04.2", + "6.11.0-1016.17~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.11.0-1016-lowlatency-64k", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.11.0-1016-lowlatency-64k", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency-64k", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.11-cloud-tools-6.11.0-1016", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.11-headers-6.11.0-1016", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.11-lib-rust-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-lowlatency-hwe-6.11-tools-6.11.0-1016", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.11.0-1016-lowlatency-64k", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-1016-lowlatency", + "binary_version": "6.11.0-1016.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.11.0-1016-lowlatency-64k", + "binary_version": "6.11.0-1016.17~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-nvidia", + "purl": "pkg:deb/ubuntu/linux-nvidia@6.8.0-1044.47?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1007.7", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1011.11", + "6.8.0-1012.12", + "6.8.0-1013.14", + "6.8.0-1014.15", + "6.8.0-1015.16", + "6.8.0-1017.19", + "6.8.0-1018.20", + "6.8.0-1019.21", + "6.8.0-1020.22", + "6.8.0-1021.23", + "6.8.0-1022.25", + "6.8.0-1023.26", + "6.8.0-1024.27", + "6.8.0-1025.28", + "6.8.0-1026.29", + "6.8.0-1027.30", + "6.8.0-1028.31", + "6.8.0-1029.32", + "6.8.0-1030.33", + "6.8.0-1031.34", + "6.8.0-1032.35", + "6.8.0-1035.38", + "6.8.0-1036.39", + "6.8.0-1038.41", + "6.8.0-1039.42", + "6.8.0-1040.43", + "6.8.0-1041.44", + "6.8.0-1042.45", + "6.8.0-1043.46", + "6.8.0-1044.47" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-nvidia-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-nvidia-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia", + "binary_version": "6.8.0-1044.47" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia-64k", + "binary_version": "6.8.0-1044.47" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-nvidia-6.11", + "purl": "pkg:deb/ubuntu/linux-nvidia-6.11@6.11.0-1016.16?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-1002.2", + "6.11.0-1003.3", + "6.11.0-1007.7", + "6.11.0-1010.10", + "6.11.0-1011.11", + "6.11.0-1012.12", + "6.11.0-1013.13", + "6.11.0-1016.16" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-buildinfo-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-headers-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-headers-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-extra-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-extra-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-nvidia-6.11-headers-6.11.0-1016", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-nvidia-6.11-lib-rust-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-nvidia-6.11-tools-6.11.0-1016", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-tools-6.11.0-1016-nvidia", + "binary_version": "6.11.0-1016.16" + }, + { + "binary_name": "linux-tools-6.11.0-1016-nvidia-64k", + "binary_version": "6.11.0-1016.16" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-nvidia-lowlatency", + "purl": "pkg:deb/ubuntu/linux-nvidia-lowlatency@6.8.0-1044.47.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1009.9.1", + "6.8.0-1011.11.1", + "6.8.0-1012.12.1", + "6.8.0-1013.14.1", + "6.8.0-1014.15.1", + "6.8.0-1015.16.1", + "6.8.0-1017.19.1", + "6.8.0-1018.20.1", + "6.8.0-1019.21.1", + "6.8.0-1020.22.1", + "6.8.0-1021.23.1", + "6.8.0-1022.25.2", + "6.8.0-1023.26.1", + "6.8.0-1024.27.1", + "6.8.0-1025.28.1", + "6.8.0-1026.29.1", + "6.8.0-1027.30.1", + "6.8.0-1028.31.1", + "6.8.0-1029.32.1", + "6.8.0-1030.33.1", + "6.8.0-1031.34.1", + "6.8.0-1032.35.1", + "6.8.0-1035.38.1", + "6.8.0-1036.39.1", + "6.8.0-1038.41.1", + "6.8.0-1039.42.1", + "6.8.0-1040.43.1", + "6.8.0-1041.44.1", + "6.8.0-1042.45.1", + "6.8.0-1043.46.1", + "6.8.0-1044.47.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-nvidia-lowlatency-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-nvidia-lowlatency-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia-lowlatency", + "binary_version": "6.8.0-1044.47.1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-nvidia-lowlatency-64k", + "binary_version": "6.8.0-1044.47.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-nvidia-tegra", + "purl": "pkg:deb/ubuntu/linux-nvidia-tegra@6.8.0-1013.13?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1003.3", + "6.8.0-1004.4", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1012.12", + "6.8.0-1013.13" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-headers-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-headers-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-modules-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-modules-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-nvidia-tegra-headers-6.8.0-1013", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-nvidia-tegra-tools-6.8.0-1013", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-tools-6.8.0-1013-nvidia-tegra", + "binary_version": "6.8.0-1013.13" + }, + { + "binary_name": "linux-tools-6.8.0-1013-nvidia-tegra-rt", + "binary_version": "6.8.0-1013.13" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oem-6.11", + "purl": "pkg:deb/ubuntu/linux-oem-6.11@6.11.0-1027.27?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.11.0-1007.7", + "6.11.0-1008.8", + "6.11.0-1009.9", + "6.11.0-1010.10", + "6.11.0-1011.11", + "6.11.0-1012.12", + "6.11.0-1013.13", + "6.11.0-1015.15", + "6.11.0-1016.16", + "6.11.0-1017.17", + "6.11.0-1018.18", + "6.11.0-1020.20", + "6.11.0-1021.21", + "6.11.0-1022.22", + "6.11.0-1023.23", + "6.11.0-1024.24", + "6.11.0-1025.25", + "6.11.0-1027.27" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-headers-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-image-unsigned-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-ipu6-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-ipu7-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-iwlwifi-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-usbio-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-modules-vision-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-oem-6.11-headers-6.11.0-1027", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-oem-6.11-tools-6.11.0-1027", + "binary_version": "6.11.0-1027.27" + }, + { + "binary_name": "linux-tools-6.11.0-1027-oem", + "binary_version": "6.11.0-1027.27" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oem-6.14", + "purl": "pkg:deb/ubuntu/linux-oem-6.14@6.14.0-1020.20?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1004.4", + "6.14.0-1005.5", + "6.14.0-1006.6", + "6.14.0-1007.7", + "6.14.0-1008.8", + "6.14.0-1010.10", + "6.14.0-1011.11", + "6.14.0-1012.12", + "6.14.0-1013.13", + "6.14.0-1014.14", + "6.14.0-1015.15", + "6.14.0-1016.16", + "6.14.0-1017.17", + "6.14.0-1018.18", + "6.14.0-1019.19", + "6.14.0-1020.20" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-headers-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-ipu6-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-ipu7-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-iwlwifi-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-usbio-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-modules-vision-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-oem-6.14-headers-6.14.0-1020", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-oem-6.14-tools-6.14.0-1020", + "binary_version": "6.14.0-1020.20" + }, + { + "binary_name": "linux-tools-6.14.0-1020-oem", + "binary_version": "6.14.0-1020.20" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oem-6.17", + "purl": "pkg:deb/ubuntu/linux-oem-6.17@6.17.0-1010.10?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.17.0-1005.5", + "6.17.0-1006.6", + "6.17.0-1007.7", + "6.17.0-1008.8", + "6.17.0-1009.9", + "6.17.0-1010.10" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-headers-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-ipu6-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-ipu7-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-iwlwifi-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-usbio-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-modules-vision-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-oem-6.17-headers-6.17.0-1010", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-oem-6.17-tools-6.17.0-1010", + "binary_version": "6.17.0-1010.10" + }, + { + "binary_name": "linux-tools-6.17.0-1010-oem", + "binary_version": "6.17.0-1010.10" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oem-6.8", + "purl": "pkg:deb/ubuntu/linux-oem-6.8@6.8.0-1032.32?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1003.3", + "6.8.0-1004.4", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1007.7", + "6.8.0-1008.8", + "6.8.0-1009.9", + "6.8.0-1010.10", + "6.8.0-1011.11", + "6.8.0-1012.12", + "6.8.0-1013.13", + "6.8.0-1014.14", + "6.8.0-1016.16", + "6.8.0-1017.17", + "6.8.0-1018.18", + "6.8.0-1019.19", + "6.8.0-1020.20", + "6.8.0-1024.24", + "6.8.0-1025.25", + "6.8.0-1026.26", + "6.8.0-1027.27", + "6.8.0-1028.28", + "6.8.0-1029.29", + "6.8.0-1030.30", + "6.8.0-1031.31", + "6.8.0-1032.32" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-headers-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-modules-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-modules-ipu6-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-modules-usbio-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-oem-6.8-headers-6.8.0-1032", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-oem-6.8-tools-6.8.0-1032", + "binary_version": "6.8.0-1032.32" + }, + { + "binary_name": "linux-tools-6.8.0-1032-oem", + "binary_version": "6.8.0-1032.32" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@6.8.0-1042.43?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1010.10", + "6.6.0-1001.1", + "6.8.0-1001.1", + "6.8.0-1004.4", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1008.8", + "6.8.0-1010.10", + "6.8.0-1011.11", + "6.8.0-1012.12", + "6.8.0-1013.13", + "6.8.0-1014.14", + "6.8.0-1015.16", + "6.8.0-1016.17", + "6.8.0-1017.18", + "6.8.0-1018.19", + "6.8.0-1019.20", + "6.8.0-1020.21", + "6.8.0-1021.22", + "6.8.0-1022.23", + "6.8.0-1023.24", + "6.8.0-1024.25", + "6.8.0-1025.26", + "6.8.0-1026.27", + "6.8.0-1027.28", + "6.8.0-1028.29", + "6.8.0-1029.30", + "6.8.0-1030.31", + "6.8.0-1032.33", + "6.8.0-1033.34", + "6.8.0-1035.36", + "6.8.0-1037.38", + "6.8.0-1038.39", + "6.8.0-1039.40", + "6.8.0-1040.41", + "6.8.0-1041.42", + "6.8.0-1042.43" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-headers-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-headers-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-modules-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-modules-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-oracle-headers-6.8.0-1042", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-oracle-tools-6.8.0-1042", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-tools-6.8.0-1042-oracle", + "binary_version": "6.8.0-1042.43" + }, + { + "binary_name": "linux-tools-6.8.0-1042-oracle-64k", + "binary_version": "6.8.0-1042.43" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-oracle-6.14", + "purl": "pkg:deb/ubuntu/linux-oracle-6.14@6.14.0-1018.18~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1007.7~24.04.1", + "6.14.0-1009.9~24.04.1", + "6.14.0-1010.10~24.04.1", + "6.14.0-1011.11~24.04.1", + "6.14.0-1012.12~24.04.1", + "6.14.0-1013.13~24.04.1", + "6.14.0-1014.14~24.04.1", + "6.14.0-1015.15~24.04.1", + "6.14.0-1016.16~24.04.1", + "6.14.0-1017.17~24.04.1", + "6.14.0-1018.18~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-buildinfo-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-oracle-6.14-headers-6.14.0-1018", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-oracle-6.14-tools-6.14.0-1018", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1018-oracle", + "binary_version": "6.14.0-1018.18~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1018-oracle-64k", + "binary_version": "6.14.0-1018.18~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-raspi", + "purl": "pkg:deb/ubuntu/linux-raspi@6.8.0-1045.49?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-1005.7", + "6.7.0-1001.1", + "6.8.0-1001.1", + "6.8.0-1002.2", + "6.8.0-1003.3", + "6.8.0-1004.4", + "6.8.0-1005.5", + "6.8.0-1006.6", + "6.8.0-1007.7", + "6.8.0-1008.8", + "6.8.0-1009.10", + "6.8.0-1010.11", + "6.8.0-1011.12", + "6.8.0-1012.13", + "6.8.0-1013.14", + "6.8.0-1014.16", + "6.8.0-1015.17", + "6.8.0-1016.18", + "6.8.0-1017.19", + "6.8.0-1018.20", + "6.8.0-1019.23", + "6.8.0-1020.24", + "6.8.0-1024.28", + "6.8.0-1028.32", + "6.8.0-1029.33", + "6.8.0-1030.34", + "6.8.0-1031.35", + "6.8.0-1032.36", + "6.8.0-1035.39", + "6.8.0-1036.40", + "6.8.0-1038.42", + "6.8.0-1039.43", + "6.8.0-1040.44", + "6.8.0-1041.45", + "6.8.0-1042.46", + "6.8.0-1043.47", + "6.8.0-1044.48", + "6.8.0-1045.49" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1045-raspi", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-headers-6.8.0-1045-raspi", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-image-6.8.0-1045-raspi", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-modules-6.8.0-1045-raspi", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-raspi-headers-6.8.0-1045", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-raspi-tools-6.8.0-1045", + "binary_version": "6.8.0-1045.49" + }, + { + "binary_name": "linux-tools-6.8.0-1045-raspi", + "binary_version": "6.8.0-1045.49" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-raspi-realtime", + "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-2019.20" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-headers-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-image-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-modules-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-raspi-realtime-headers-6.8.0-2019", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-raspi-realtime-tools-6.8.0-2019", + "binary_version": "6.8.0-2019.20" + }, + { + "binary_name": "linux-tools-6.8.0-2019-raspi-realtime", + "binary_version": "6.8.0-2019.20" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1015.16?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.1-1015.16" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-cloud-tools-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-headers-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-image-unsigned-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-modules-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-modules-extra-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-realtime-cloud-tools-6.8.1-1015", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-realtime-headers-6.8.1-1015", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-realtime-tools-6.8.1-1015", + "binary_version": "6.8.1-1015.16" + }, + { + "binary_name": "linux-tools-6.8.1-1015-realtime", + "binary_version": "6.8.1-1015.16" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-riscv", + "purl": "pkg:deb/ubuntu/linux-riscv@6.8.0-60.63.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.5.0-9.9.1", + "6.8.0-20.20.1", + "6.8.0-28.28.1", + "6.8.0-31.31.1", + "6.8.0-35.35.1", + "6.8.0-36.36.1", + "6.8.0-38.38.1", + "6.8.0-39.39.1", + "6.8.0-40.40.1", + "6.8.0-41.41.1", + "6.8.0-44.44.1", + "6.8.0-47.47.1", + "6.8.0-48.48.1", + "6.8.0-49.49.1", + "6.8.0-50.51.1", + "6.8.0-51.52.1", + "6.8.0-52.53.1", + "6.8.0-53.55.1", + "6.8.0-55.57.1", + "6.8.0-56.58.1", + "6.8.0-57.59.1", + "6.8.0-58.60.1", + "6.8.0-59.61.1", + "6.8.0-60.63.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-60-generic", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-headers-6.8.0-60-generic", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-image-6.8.0-60-generic", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-modules-6.8.0-60-generic", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-riscv-headers-6.8.0-60", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-riscv-tools-6.8.0-60", + "binary_version": "6.8.0-60.63.1" + }, + { + "binary_name": "linux-tools-6.8.0-60-generic", + "binary_version": "6.8.0-60.63.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-riscv-6.14", + "purl": "pkg:deb/ubuntu/linux-riscv-6.14@6.14.0-37.37.1~24.04.1?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-22.22.1~24.04.1", + "6.14.0-23.23.1~24.04.1", + "6.14.0-24.24.1~24.04.1", + "6.14.0-27.27.1~24.04.1", + "6.14.0-28.28.1~24.04.1", + "6.14.0-29.29.1~24.04.1", + "6.14.0-32.32.1~24.04.1", + "6.14.0-33.33.1~24.04.1", + "6.14.0-34.34.1~24.04.1", + "6.14.0-35.35.1~24.04.1", + "6.14.0-36.36.1~24.04.1", + "6.14.0-37.37.1~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-37-generic", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-37-generic", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-image-6.14.0-37-generic", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-37-generic", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-riscv-6.14-headers-6.14.0-37", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-riscv-6.14-tools-6.14.0-37", + "binary_version": "6.14.0-37.37.1~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-37-generic", + "binary_version": "6.14.0-37.37.1~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:24.04:LTS", + "name": "linux-xilinx", + "purl": "pkg:deb/ubuntu/linux-xilinx@6.8.0-1021.22?arch=source&distro=noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1008.9", + "6.8.0-1009.10", + "6.8.0-1011.12", + "6.8.0-1012.13", + "6.8.0-1013.14", + "6.8.0-1014.15", + "6.8.0-1015.16", + "6.8.0-1017.18", + "6.8.0-1018.19", + "6.8.0-1019.20", + "6.8.0-1020.21", + "6.8.0-1021.22" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1021-xilinx", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-headers-6.8.0-1021-xilinx", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-image-6.8.0-1021-xilinx", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-modules-6.8.0-1021-xilinx", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-tools-6.8.0-1021-xilinx", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-xilinx-headers-6.8.0-1021", + "binary_version": "6.8.0-1021.22" + }, + { + "binary_name": "linux-xilinx-tools-6.8.0-1021", + "binary_version": "6.8.0-1021.22" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", + "name": "linux-aws-fips", + "purl": "pkg:deb/ubuntu/linux-aws-fips@6.8.0-1044.46+fips1?arch=source&distro=fips-updates/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1035.37+fips1", + "6.8.0-1036.38+fips1", + "6.8.0-1038.40+fips1", + "6.8.0-1039.41+fips1", + "6.8.0-1040.42+fips1", + "6.8.0-1041.43+fips1", + "6.8.0-1042.44+fips1", + "6.8.0-1043.45+fips1", + "6.8.0-1044.46+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-fips-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-aws-fips-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-aws-fips-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-aws-fips", + "binary_version": "6.8.0-1044.46+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", + "name": "linux-azure-fips", + "purl": "pkg:deb/ubuntu/linux-azure-fips@6.8.0-1044.50+fips1?arch=source&distro=fips-updates/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1034.39+fips1", + "6.8.0-1040.46+fips1", + "6.8.0-1044.50+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fips-cloud-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-azure-fips-headers-6.8.0-1044", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-azure-fips-tools-6.8.0-1044", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-buildinfo-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-headers-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-modules-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + }, + { + "binary_name": "linux-tools-6.8.0-1044-azure-fips", + "binary_version": "6.8.0-1044.50+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", + "name": "linux-fips", + "purl": "pkg:deb/ubuntu/linux-fips@6.8.0-90.91+fips1?arch=source&distro=fips-updates/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-38.38+fips4", + "6.8.0-78.78+fips1", + "6.8.0-79.79+fips1", + "6.8.0-83.83+fips1", + "6.8.0-84.84+fips1", + "6.8.0-85.85+fips1", + "6.8.0-86.87+fips1", + "6.8.0-87.88+fips1", + "6.8.0-88.89+fips1", + "6.8.0-90.91+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-cloud-tools-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-fips-cloud-tools-6.8.0-90", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-fips-headers-6.8.0-90", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-fips-lib-rust-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-fips-tools-6.8.0-90", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-headers-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-image-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-image-hmac-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-modules-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-modules-ipu6-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-modules-usbio-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + }, + { + "binary_name": "linux-tools-6.8.0-90-fips", + "binary_version": "6.8.0-90.91+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", + "name": "linux-gcp-fips", + "purl": "pkg:deb/ubuntu/linux-gcp-fips@6.8.0-1045.48+fips1?arch=source&distro=fips-updates/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1036.38+fips1", + "6.8.0-1037.39+fips1", + "6.8.0-1039.41+fips1", + "6.8.0-1040.42+fips1", + "6.8.0-1041.43+fips1", + "6.8.0-1042.45+fips1", + "6.8.0-1043.46+fips1", + "6.8.0-1044.47+fips1", + "6.8.0-1045.48+fips1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-gcp-fips-headers-6.8.0-1045", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-gcp-fips-tools-6.8.0-1045", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-headers-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-image-unsigned-hmac-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-modules-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-modules-extra-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + }, + { + "binary_name": "linux-tools-6.8.0-1045-gcp-fips", + "binary_version": "6.8.0-1045.48+fips1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", + "name": "linux-raspi-realtime", + "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2036.37?arch=source&distro=realtime/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.7.0-2001.1", + "6.8.0-2001.1", + "6.8.0-2002.2", + "6.8.0-2004.4", + "6.8.0-2005.5", + "6.8.0-2006.6", + "6.8.0-2007.7", + "6.8.0-2008.8", + "6.8.0-2009.9", + "6.8.0-2010.10", + "6.8.0-2011.11", + "6.8.0-2012.12", + "6.8.0-2013.14", + "6.8.0-2014.15", + "6.8.0-2015.16", + "6.8.0-2016.17", + "6.8.0-2017.18", + "6.8.0-2018.19", + "6.8.0-2019.20", + "6.8.0-2022.23", + "6.8.0-2023.24", + "6.8.0-2024.25", + "6.8.0-2025.26", + "6.8.0-2026.27", + "6.8.0-2028.29", + "6.8.0-2029.30", + "6.8.0-2030.31", + "6.8.0-2031.32", + "6.8.0-2032.33", + "6.8.0-2033.34", + "6.8.0-2034.35", + "6.8.0-2035.36", + "6.8.0-2036.37" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.0-2036-raspi-realtime", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-headers-6.8.0-2036-raspi-realtime", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-image-6.8.0-2036-raspi-realtime", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-modules-6.8.0-2036-raspi-realtime", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-raspi-realtime-headers-6.8.0-2036", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-raspi-realtime-tools-6.8.0-2036", + "binary_version": "6.8.0-2036.37" + }, + { + "binary_name": "linux-tools-6.8.0-2036-raspi-realtime", + "binary_version": "6.8.0-2036.37" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1040.41?arch=source&distro=realtime/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.8.0-1008.19", + "6.8.1-1001.1", + "6.8.1-1002.2", + "6.8.1-1003.3", + "6.8.1-1004.4", + "6.8.1-1005.5", + "6.8.1-1006.6", + "6.8.1-1007.7", + "6.8.1-1008.8", + "6.8.1-1009.9", + "6.8.1-1010.10", + "6.8.1-1011.11", + "6.8.1-1012.12", + "6.8.1-1013.14", + "6.8.1-1014.15", + "6.8.1-1015.16", + "6.8.1-1016.17", + "6.8.1-1017.18", + "6.8.1-1018.19", + "6.8.1-1019.20", + "6.8.1-1020.21", + "6.8.1-1021.22", + "6.8.1-1022.23", + "6.8.1-1023.24", + "6.8.1-1024.25", + "6.8.1-1025.26", + "6.8.1-1026.27", + "6.8.1-1030.31", + "6.8.1-1031.32", + "6.8.1-1033.34", + "6.8.1-1034.35", + "6.8.1-1035.36", + "6.8.1-1036.37", + "6.8.1-1037.38", + "6.8.1-1038.39", + "6.8.1-1039.40", + "6.8.1-1040.41" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-cloud-tools-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-headers-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-image-unsigned-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-modules-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-modules-extra-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-modules-iwlwifi-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-realtime-cloud-tools-6.8.1-1040", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-realtime-headers-6.8.1-1040", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-realtime-tools-6.8.1-1040", + "binary_version": "6.8.1-1040.41" + }, + { + "binary_name": "linux-tools-6.8.1-1040-realtime", + "binary_version": "6.8.1-1040.41" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", + "name": "linux-realtime-6.14", + "purl": "pkg:deb/ubuntu/linux-realtime-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=realtime/noble" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1003.3~24.04.3", + "6.14.0-1010.10~24.04.1", + "6.14.0-1011.11~24.04.1", + "6.14.0-1012.12~24.04.1", + "6.14.0-1013.13~24.04.1", + "6.14.0-1014.14~24.04.1", + "6.14.0-1015.15~24.04.1", + "6.14.0-1016.16~24.04.1", + "6.14.0-1017.17~24.04.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-cloud-tools-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-headers-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-image-unsigned-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-extra-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-modules-iwlwifi-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-realtime-6.14-cloud-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-realtime-6.14-headers-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-realtime-6.14-tools-6.14.0-1017", + "binary_version": "6.14.0-1017.17~24.04.1" + }, + { + "binary_name": "linux-tools-6.14.0-1017-realtime", + "binary_version": "6.14.0-1017.17~24.04.1" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux", + "purl": "pkg:deb/ubuntu/linux@6.17.0-12.12?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-15.15", + "6.15.0-3.3", + "6.15.0-4.4", + "6.16.0-13.13", + "6.16.0-16.16", + "6.17.0-3.3", + "6.17.0-4.4", + "6.17.0-5.5", + "6.17.0-6.6", + "6.17.0-7.7", + "6.17.0-8.8", + "6.17.0-12.12" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "bpftool", + "binary_version": "7.7.0+6.17.0-12.12" + }, + { + "binary_name": "linux-bpf-dev", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-buildinfo-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-buildinfo-6.17.0-12-generic-64k", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-12", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-cloud-tools-common", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-headers-6.17.0-12", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-headers-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-headers-6.17.0-12-generic-64k", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-image-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-12-generic-64k", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-lib-rust-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-libc-dev", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-6.17.0-12-generic-64k", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-ipu6-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-ipu7-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-iwlwifi-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-usbio-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-modules-vision-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-perf", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-source-6.17.0", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-tools-6.17.0-12", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-tools-6.17.0-12-generic", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-tools-6.17.0-12-generic-64k", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-tools-common", + "binary_version": "6.17.0-12.12" + }, + { + "binary_name": "linux-tools-host", + "binary_version": "6.17.0-12.12" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-aws", + "purl": "pkg:deb/ubuntu/linux-aws@6.17.0-1006.6?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1005.5", + "6.14.0-1007.7+25.10.2", + "6.16.0-1001.1", + "6.17.0-1001.1", + "6.17.0-1002.2", + "6.17.0-1003.3", + "6.17.0-1004.4", + "6.17.0-1005.5", + "6.17.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-aws-cloud-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-aws-headers-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-aws-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-aws", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-aws-64k", + "binary_version": "6.17.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-azure", + "purl": "pkg:deb/ubuntu/linux-azure@6.17.0-1006.6?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1004.4", + "6.14.0-1007.7+25.10.1", + "6.16.0-1001.1", + "6.17.0-1002.2", + "6.17.0-1003.3", + "6.17.0-1004.4", + "6.17.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-cloud-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-azure-headers-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-azure-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-azure", + "binary_version": "6.17.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-azure-fde", + "purl": "pkg:deb/ubuntu/linux-azure-fde@6.17.0-1003.3?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.17.0-1003.3" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-azure-fde-cloud-tools-6.17.0-1003", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-azure-fde-headers-6.17.0-1003", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-azure-fde-tools-6.17.0-1003", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-headers-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-modules-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + }, + { + "binary_name": "linux-tools-6.17.0-1003-azure-fde", + "binary_version": "6.17.0-1003.3" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-gcp", + "purl": "pkg:deb/ubuntu/linux-gcp@6.17.0-1006.6?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1006.6", + "6.14.0-1009.9+25.10.1", + "6.16.0-1001.1", + "6.17.0-1001.1", + "6.17.0-1002.2", + "6.17.0-1003.3", + "6.17.0-1004.4", + "6.17.0-1005.5", + "6.17.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-1006-gcp", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1006-gcp-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-gcp-headers-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-gcp-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-gcp", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-gcp-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-gcp", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-gcp-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-gcp", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-gcp-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-gcp", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-gcp-64k", + "binary_version": "6.17.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-oracle", + "purl": "pkg:deb/ubuntu/linux-oracle@6.17.0-1006.6?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1005.5", + "6.14.0-1007.7+25.10.1", + "6.16.0-1001.1", + "6.17.0-1001.1", + "6.17.0-1002.2", + "6.17.0-1003.3", + "6.17.0-1005.5", + "6.17.0-1006.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-1006-oracle", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-buildinfo-6.17.0-1006-oracle-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-oracle", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-headers-6.17.0-1006-oracle-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-oracle", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1006-oracle-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-oracle", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-modules-6.17.0-1006-oracle-64k", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-oracle-headers-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-oracle-tools-6.17.0-1006", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-oracle", + "binary_version": "6.17.0-1006.6" + }, + { + "binary_name": "linux-tools-6.17.0-1006-oracle-64k", + "binary_version": "6.17.0-1006.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-raspi", + "purl": "pkg:deb/ubuntu/linux-raspi@6.17.0-1007.7?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1005.5", + "6.17.0-1003.3", + "6.17.0-1004.4", + "6.17.0-1005.5", + "6.17.0-1006.6", + "6.17.0-1007.7" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-1007-raspi", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-headers-6.17.0-1007-raspi", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-image-6.17.0-1007-raspi", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-modules-6.17.0-1007-raspi", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-raspi-headers-6.17.0-1007", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-raspi-tools-6.17.0-1007", + "binary_version": "6.17.0-1007.7" + }, + { + "binary_name": "linux-tools-6.17.0-1007-raspi", + "binary_version": "6.17.0-1007.7" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-realtime", + "purl": "pkg:deb/ubuntu/linux-realtime@6.17.0-1005.6?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-1002.2", + "6.17.0-1001.2", + "6.17.0-1002.3", + "6.17.0-1003.4", + "6.17.0-1004.5", + "6.17.0-1005.6" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-cloud-tools-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-headers-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-image-unsigned-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-modules-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-modules-iwlwifi-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-realtime-cloud-tools-6.17.0-1005", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-realtime-headers-6.17.0-1005", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-realtime-tools-6.17.0-1005", + "binary_version": "6.17.0-1005.6" + }, + { + "binary_name": "linux-tools-6.17.0-1005-realtime", + "binary_version": "6.17.0-1005.6" + } + ] + } + }, + { + "package": { + "ecosystem": "Ubuntu:25.10", + "name": "linux-riscv", + "purl": "pkg:deb/ubuntu/linux-riscv@6.17.0-8.8.1?arch=source&distro=questing" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + } + ] + } + ], + "versions": [ + "6.14.0-13.13.2", + "6.17.0-4.4.1", + "6.17.0-5.5.1", + "6.17.0-6.6.1", + "6.17.0-7.7.1", + "6.17.0-8.8.1" + ], + "ecosystem_specific": { + "binaries": [ + { + "binary_name": "linux-buildinfo-6.17.0-8-generic", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-headers-6.17.0-8-generic", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-image-6.17.0-8-generic", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-modules-6.17.0-8-generic", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-riscv-headers-6.17.0-8", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-riscv-tools-6.17.0-8", + "binary_version": "6.17.0-8.8.1" + }, + { + "binary_name": "linux-tools-6.17.0-8-generic", + "binary_version": "6.17.0-8.8.1" + } + ] + } + } + ], + "references": [ + { + "type": "REPORT", + "url": "https://ubuntu.com/security/CVE-2025-71115" + }, + { + "type": "REPORT", + "url": "https://www.cve.org/CVERecord?id=CVE-2025-71115" + }, + { + "type": "REPORT", + "url": "https://git.kernel.org/stable/c/7b5d4416964c07c902163822a30a622111172b01" + }, + { + "type": "REPORT", + "url": "https://git.kernel.org/stable/c/dbbf6d47130674640cd12a0781a0fb2a575d0e44" + } + ] +} \ No newline at end of file From c01bbbffcbcbff23392236b3247355c6ed1613c2 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Wed, 4 Feb 2026 22:18:36 +0530 Subject: [PATCH 09/10] Collect upstream aliases in osv advisory Signed-off-by: Keshav Priyadarshi --- vulnerabilities/pipes/osv_v2.py | 1 + .../v2_importers/test_openssl_importer.py | 2 +- .../v2_importers/test_ubuntu_osv_importer.py | 6 +- .../ubuntu_osv_advisoryv2-expected.json | 5820 +-- .../osv/cve/2010/UBUNTU-CVE-2010-1824.json | 320 - .../osv/cve/2010/UBUNTU-CVE-2010-2496.json | 325 - .../osv/cve/2015/UBUNTU-CVE-2015-0222.json | 80 - .../osv/cve/2015/UBUNTU-CVE-2015-0244.json | 174 - .../osv/cve/2015/UBUNTU-CVE-2015-0261.json | 74 - .../osv/cve/2015/UBUNTU-CVE-2015-0295.json | 393 - .../osv/cve/2020/UBUNTU-CVE-2020-0305.json | 8566 ----- .../osv/cve/2020/UBUNTU-CVE-2020-0556.json | 176 - .../osv/cve/2020/UBUNTU-CVE-2020-1739.json | 223 - .../osv/cve/2020/UBUNTU-CVE-2020-1770.json | 157 - .../osv/cve/2020/UBUNTU-CVE-2020-2590.json | 581 - .../osv/cve/2020/UBUNTU-CVE-2020-6537.json | 306 - .../osv/cve/2025/UBUNTU-CVE-2025-0245.json | 428 - .../osv/cve/2025/UBUNTU-CVE-2025-0677.json | 839 - .../osv/cve/2025/UBUNTU-CVE-2025-1179.json | 1490 - .../osv/cve/2025/UBUNTU-CVE-2025-71115.json | 29143 ---------------- 20 files changed, 98 insertions(+), 49006 deletions(-) delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json delete mode 100644 vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json diff --git a/vulnerabilities/pipes/osv_v2.py b/vulnerabilities/pipes/osv_v2.py index 88d34fedf..777c1a4e1 100644 --- a/vulnerabilities/pipes/osv_v2.py +++ b/vulnerabilities/pipes/osv_v2.py @@ -67,6 +67,7 @@ def parse_advisory_data_v3( details = raw_data.get("details") or "" summary = build_description(summary=summary, description=details) aliases = raw_data.get("aliases") or [] + aliases.extend(raw_data.get("upstream", [])) date_published = get_published_date(raw_data=raw_data) severities = list(get_severities(raw_data=raw_data, url=advisory_url)) diff --git a/vulnerabilities/tests/pipelines/v2_importers/test_openssl_importer.py b/vulnerabilities/tests/pipelines/v2_importers/test_openssl_importer.py index 1535f1fe7..3e2bd1b94 100644 --- a/vulnerabilities/tests/pipelines/v2_importers/test_openssl_importer.py +++ b/vulnerabilities/tests/pipelines/v2_importers/test_openssl_importer.py @@ -26,7 +26,7 @@ def setUp(self): self.logger = TestLogger() @patch("vulnerabilities.pipelines.v2_importers.openssl_importer.OpenSSLImporterPipeline.clone") - def test_redhat_advisories_v2(self, mock_clone): + def test_openssl_advisories_v2(self, mock_clone): mock_clone.__name__ = "clone" pipeline = OpenSSLImporterPipeline() pipeline.advisory_path = TEST_DATA diff --git a/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py b/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py index 6fa74717f..d1b6853c2 100644 --- a/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py +++ b/vulnerabilities/tests/pipelines/v2_importers/test_ubuntu_osv_importer.py @@ -28,7 +28,7 @@ def setUp(self): @patch( "vulnerabilities.pipelines.v2_importers.ubuntu_osv_importer.UbuntuOSVImporterPipeline.clone" ) - def test_redhat_advisories_v2(self, mock_clone): + def test_ubuntu_advisories_v2(self, mock_clone): mock_clone.__name__ = "clone" pipeline = UbuntuOSVImporterPipeline() pipeline.advisories_path = TEST_DATA / "ubuntu_security_notices" @@ -36,8 +36,8 @@ def test_redhat_advisories_v2(self, mock_clone): pipeline.log = self.logger.write pipeline.execute() - self.assertEqual(AdvisoryV2.objects.count(), 22) + self.assertEqual(AdvisoryV2.objects.count(), 6) expected_file = TEST_DATA / "ubuntu_osv_advisoryv2-expected.json" result = [adv.to_advisory_data().to_dict() for adv in AdvisoryV2.objects.all()] - util_tests.check_results_against_json(result, expected_file, regen=True) + util_tests.check_results_against_json(result, expected_file) diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json index 840508897..ba10bc272 100644 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json @@ -1,7 +1,9 @@ [ { "advisory_id": "UBUNTU-CVE-2001-1593", - "aliases": [], + "aliases": [ + "CVE-2001-1593" + ], "summary": "Jakub Wilk found that a2ps, a tool to convert text and other types of files to PostScript, insecurely used a temporary file in spy_user(). A local attacker could use this flaw to perform a symbolic link attack to modify an arbitrary file accessible to the user running a2ps.", "affected_packages": [ { @@ -45,7 +47,9 @@ }, { "advisory_id": "UBUNTU-CVE-2005-1515", - "aliases": [], + "aliases": [ + "CVE-2005-1515" + ], "summary": "Integer signedness error in the qmail_put and substdio_put functions in qmail, when running on 64 bit platforms with a large amount of virtual memory, allows remote attackers to cause a denial of service and possibly execute arbitrary code via a large number of SMTP RCPT TO commands.", "affected_packages": [ { @@ -146,7 +150,9 @@ }, { "advisory_id": "UBUNTU-CVE-2010-0751", - "aliases": [], + "aliases": [ + "CVE-2010-0751" + ], "summary": "The ip_evictor function in ip_fragment.c in libnids before 1.24, as used in dsniff and possibly other products, allows remote attackers to cause a denial of service (NULL pointer dereference and crash) via crafted fragmented packets.", "affected_packages": [ { @@ -203,35 +209,23 @@ "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-0751.json" }, { - "advisory_id": "UBUNTU-CVE-2010-1824", - "aliases": [], - "summary": "Use-after-free vulnerability in WebKit, as used in Apple iTunes before 10.2 on Windows, Apple Safari, and Google Chrome before 6.0.472.59, allows remote attackers to execute arbitrary code or cause a denial of service via vectors related to SVG styles, the DOM tree, and error messages.", + "advisory_id": "UBUNTU-CVE-2015-0209", + "aliases": [ + "CVE-2015-0209" + ], + "summary": "Use-after-free vulnerability in the d2i_ECPrivateKey function in crypto/ec/ec_asn1.c in OpenSSL before 0.9.8zf, 1.0.0 before 1.0.0r, 1.0.1 before 1.0.1m, and 1.0.2 before 1.0.2a might allow remote attackers to cause a denial of service (memory corruption and application crash) or possibly have unspecified other impact via a malformed Elliptic Curve (EC) private-key file that is improperly handled during import.", "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "webkitgtk", + "name": "openssl", "version": "", "qualifiers": "arch=source&distro=trusty", "subpath": "" }, - "affected_version_range": "vers:deb/2.2.1-2ubuntu2|2.3.2-1ubuntu2|2.3.2-1ubuntu3|2.3.2-1ubuntu4|2.3.2-1ubuntu5|2.3.2-1ubuntu6|2.3.4-1ubuntu2|2.3.90-1ubuntu1|2.3.91-0ubuntu1|2.4.0-1ubuntu2|2.4.2-1ubuntu0.1|2.4.3-1ubuntu2|2.4.4-1~ubuntu1|2.4.7-1~ubuntu1", - "fixed_version_range": "vers:deb/2.4.8-1ubuntu1~ubuntu14.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "webkitgtk", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/<2.4.9-2ubuntu2", - "fixed_version_range": "vers:deb/2.4.9-2ubuntu2", + "affected_version_range": "vers:deb/1.0.1e-3ubuntu1|1.0.1e-4ubuntu1|1.0.1e-4ubuntu2|1.0.1e-4ubuntu3|1.0.1e-4ubuntu4|1.0.1f-1ubuntu1|1.0.1f-1ubuntu2|1.0.1f-1ubuntu2.1|1.0.1f-1ubuntu2.2|1.0.1f-1ubuntu2.3|1.0.1f-1ubuntu2.4|1.0.1f-1ubuntu2.5|1.0.1f-1ubuntu2.7|1.0.1f-1ubuntu2.8", + "fixed_version_range": "vers:deb/1.0.1f-1ubuntu2.11", "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] } @@ -240,17 +234,17 @@ { "reference_id": "", "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2010-1824" + "url": "https://ubuntu.com/security/CVE-2015-0209" }, { "reference_id": "", "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-1195-1" + "url": "https://ubuntu.com/security/notices/USN-2537-1" }, { "reference_id": "", "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2010-1824" + "url": "https://www.cve.org/CVERecord?id=CVE-2015-0209" } ], "patches": [], @@ -261,26 +255,28 @@ "scoring_elements": "" } ], - "date_published": "2010-09-24T00:00:00+00:00", + "date_published": "2015-03-17T00:00:00+00:00", "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-1824.json" + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0209.json" }, { - "advisory_id": "UBUNTU-CVE-2010-2496", - "aliases": [], - "summary": "stonith-ng in pacemaker and cluster-glue passed passwords as commandline parameters, making it possible for local attackers to gain access to passwords of the HA stack and potentially influence its operations. This is fixed in cluster-glue 1.0.6 and newer, and pacemaker 1.1.3 and newer.", + "advisory_id": "UBUNTU-CVE-2020-1944", + "aliases": [ + "CVE-2020-1944" + ], + "summary": "There is a vulnerability in Apache Traffic Server 6.0.0 to 6.2.3, 7.0.0 to 7.1.8, and 8.0.0 to 8.0.5 with a smuggling attack and Transfer-Encoding and Content length headers. Upgrade to versions 7.1.9 and 8.0.6 or later versions.", "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "cluster-glue", + "name": "trafficserver", "version": "", - "qualifiers": "arch=source&distro=bionic", + "qualifiers": "arch=source&distro=xenial", "subpath": "" }, - "affected_version_range": "vers:deb/1.0.12-5ubuntu2|1.0.12-7", - "fixed_version_range": "vers:deb/1.0.12-7build1", + "affected_version_range": "vers:deb/5.3.0-2ubuntu1|5.3.0-2ubuntu2", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] }, @@ -288,126 +284,41 @@ "package": { "type": "deb", "namespace": "ubuntu", - "name": "pacemaker", + "name": "trafficserver", "version": "", "qualifiers": "arch=source&distro=bionic", "subpath": "" }, - "affected_version_range": "vers:deb/1.1.16-1ubuntu1|1.1.18~rc3-1ubuntu1|1.1.18~rc4-1ubuntu1|1.1.18-0ubuntu1|1.1.18-0ubuntu1.1|1.1.18-0ubuntu1.2", - "fixed_version_range": "vers:deb/1.1.18-0ubuntu1.3", + "affected_version_range": "vers:deb/7.0.0-5|7.1.2+ds-2|7.1.2+ds-2build1|7.1.2+ds-3", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://bugzilla.suse.com/show_bug.cgi?id=620781" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://github.com/ClusterLabs/cluster-glue/commit/3d7b464439ee0271da76e0ee9480f3dc14005879" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://github.com/ClusterLabs/pacemaker/commit/7901f43c5800374d41ae2287fe122692fe045664" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2010-2496" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2010-2496" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" }, - { - "system": "cvssv3.1", - "value": "5.5", - "scoring_elements": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" - } - ], - "date_published": "2021-10-18T13:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2010/UBUNTU-CVE-2010-2496.json" - }, - { - "advisory_id": "UBUNTU-CVE-2015-0209", - "aliases": [], - "summary": "Use-after-free vulnerability in the d2i_ECPrivateKey function in crypto/ec/ec_asn1.c in OpenSSL before 0.9.8zf, 1.0.0 before 1.0.0r, 1.0.1 before 1.0.1m, and 1.0.2 before 1.0.2a might allow remote attackers to cause a denial of service (memory corruption and application crash) or possibly have unspecified other impact via a malformed Elliptic Curve (EC) private-key file that is improperly handled during import.", - "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "openssl", + "name": "trafficserver", "version": "", - "qualifiers": "arch=source&distro=trusty", + "qualifiers": "arch=source&distro=esm-apps/focal", "subpath": "" }, - "affected_version_range": "vers:deb/1.0.1e-3ubuntu1|1.0.1e-4ubuntu1|1.0.1e-4ubuntu2|1.0.1e-4ubuntu3|1.0.1e-4ubuntu4|1.0.1f-1ubuntu1|1.0.1f-1ubuntu2|1.0.1f-1ubuntu2.1|1.0.1f-1ubuntu2.2|1.0.1f-1ubuntu2.3|1.0.1f-1ubuntu2.4|1.0.1f-1ubuntu2.5|1.0.1f-1ubuntu2.7|1.0.1f-1ubuntu2.8", - "fixed_version_range": "vers:deb/1.0.1f-1ubuntu2.11", + "affected_version_range": "vers:deb/8.0.5+ds-1|8.0.5+ds-2|8.0.5+ds-2build1|8.0.5+ds-2ubuntu1|8.0.5+ds-3|8.0.5+ds-3ubuntu0.1~esm1", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2015-0209" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-2537-1" }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0209" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "low", - "scoring_elements": "" - } - ], - "date_published": "2015-03-17T00:00:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0209.json" - }, - { - "advisory_id": "UBUNTU-CVE-2015-0222", - "aliases": [], - "summary": "ModelMultipleChoiceField in Django 1.6.x before 1.6.10 and 1.7.x before 1.7.3, when show_hidden_initial is set to True, allows remote attackers to cause a denial of service by submitting duplicate values, which triggers a large number of SQL queries.", - "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "python-django", + "name": "trafficserver", "version": "", - "qualifiers": "arch=source&distro=trusty", + "qualifiers": "arch=source&distro=esm-apps/jammy", "subpath": "" }, - "affected_version_range": "vers:deb/1.5.4-1ubuntu1|1.6-1|1.6.1-1|1.6.1-2|1.6.1-2ubuntu0.1|1.6.1-2ubuntu0.2|1.6.1-2ubuntu0.3|1.6.1-2ubuntu0.4|1.6.1-2ubuntu0.5", - "fixed_version_range": "vers:deb/1.6.1-2ubuntu0.6", + "affected_version_range": "vers:deb/8.1.1+ds-1.1|9.1.1+ds-2build1|9.1.1+ds-2ubuntu0.1~esm1", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] } @@ -416,22 +327,17 @@ { "reference_id": "", "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2015-0222" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-2469-1" + "url": "https://lists.apache.org/thread.html/r99d18d0bc4daa05e7d0e5a63e0e22701a421b2ef5a8f4f7694c43869%40%3Cannounce.trafficserver.apache.org%3E" }, { "reference_id": "", "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0222" + "url": "https://ubuntu.com/security/CVE-2020-1944" }, { "reference_id": "", "reference_type": "", - "url": "https://www.djangoproject.com/weblog/2015/jan/13/security/" + "url": "https://www.cve.org/CVERecord?id=CVE-2020-1944" } ], "patches": [], @@ -440,150 +346,63 @@ "system": "ubuntu", "value": "medium", "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "9.8", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" } ], - "date_published": "2015-01-13T00:00:00+00:00", + "date_published": "2020-03-23T22:15:00+00:00", "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0222.json" + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1944.json" }, { - "advisory_id": "UBUNTU-CVE-2015-0244", - "aliases": [], - "summary": "PostgreSQL before 9.0.19, 9.1.x before 9.1.15, 9.2.x before 9.2.10, 9.3.x before 9.3.6, and 9.4.x before 9.4.1 does not properly handle errors while reading a protocol message, which allows remote attackers to conduct SQL injection attacks via crafted binary data in a parameter and causing an error, which triggers the loss of synchronization and part of the protocol message to be treated as a new message, as demonstrated by causing a timeout or query cancellation.", + "advisory_id": "UBUNTU-CVE-2025-14345", + "aliases": [ + "CVE-2025-14345" + ], + "summary": "A post-authentication\u00a0flaw in the network two-phase commit protocol used for cross-shard transactions in MongoDB Server may lead to logical data inconsistencies under specific conditions which are not predictable and exist for a very short period of time. This error can cause the transaction coordination logic to misinterpret the transaction as committed, resulting in inconsistent state on those shards. This may lead to low integrity and availability impact. This issue impacts MongoDB Server v8.0 versions prior to 8.0.16, MongoDB Server v7.0 versions prior to 7.0.26 and MongoDB server v8.2 versions prior to 8.2.2.", "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "postgresql-9.1", - "version": "", - "qualifiers": "arch=source&distro=trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/9.1.10-1|9.1.10-1bzr1|9.1.11-1|9.1.11-2|9.1.12-1|9.1.13-1|9.1.14-0ubuntu0.14.04", - "fixed_version_range": "vers:deb/9.1.15-0ubuntu0.14.04", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "postgresql-9.3", + "name": "mongodb", "version": "", "qualifiers": "arch=source&distro=trusty", "subpath": "" }, - "affected_version_range": "vers:deb/9.3.1-1|9.3.2-1|9.3.2-1ubuntu1|9.3.2-1ubuntu2|9.3.3-1|9.3.3-1bzr1|9.3.3-1bzr2|9.3.4-1|9.3.5-0ubuntu0.14.04.1", - "fixed_version_range": "vers:deb/9.3.6-0ubuntu0.14.04", + "affected_version_range": "vers:deb/1:2.4.6-0ubuntu5|1:2.4.6-0ubuntu6|1:2.4.8-1ubuntu1|1:2.4.8-2|1:2.4.9-1|1:2.4.9-1ubuntu1|1:2.4.9-1ubuntu2", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2015-0244" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-2499-1" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0244" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" }, - { - "system": "cvssv3.1", - "value": "9.8", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" - } - ], - "date_published": "2015-02-06T00:00:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0244.json" - }, - { - "advisory_id": "UBUNTU-CVE-2015-0261", - "aliases": [], - "summary": "Integer signedness error in the mobility_opt_print function in the IPv6 mobility printer in tcpdump before 4.7.2 allows remote attackers to cause a denial of service (out-of-bounds read and crash) or possibly execute arbitrary code via a negative length value.", - "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "tcpdump", + "name": "mongodb", "version": "", - "qualifiers": "arch=source&distro=trusty", + "qualifiers": "arch=source&distro=xenial", "subpath": "" }, - "affected_version_range": "vers:deb/4.4.0-1ubuntu1|4.5.1-2ubuntu1|4.5.1-2ubuntu1.1", - "fixed_version_range": "vers:deb/4.5.1-2ubuntu1.2", + "affected_version_range": "vers:deb/1:2.6.10-0ubuntu1", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "http://seclists.org/bugtraq/2015/Mar/33" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2015-0261" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-2580-1" }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0261" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - } - ], - "date_published": "2015-03-24T00:00:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0261.json" - }, - { - "advisory_id": "UBUNTU-CVE-2015-0295", - "aliases": [], - "summary": "The BMP decoder in QtGui in QT before 5.5 does not properly calculate the masks used to extract the color components, which allows remote attackers to cause a denial of service (divide-by-zero and crash) via a crafted BMP file.", - "affected_packages": [ { "package": { "type": "deb", "namespace": "ubuntu", - "name": "qt4-x11", + "name": "mongodb", "version": "", - "qualifiers": "arch=source&distro=trusty", + "qualifiers": "arch=source&distro=bionic", "subpath": "" }, - "affected_version_range": "vers:deb/4:4.8.4+dfsg-0ubuntu18|4:4.8.4+dfsg-0ubuntu19|4:4.8.4+dfsg-0ubuntu20|4:4.8.4+dfsg-0ubuntu21|4:4.8.4+dfsg-0ubuntu22|4:4.8.5+git192-g085f851+dfsg-2ubuntu3|4:4.8.5+git192-g085f851+dfsg-2ubuntu4", - "fixed_version_range": "vers:deb/4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1", + "affected_version_range": "vers:deb/1:3.4.7-1|1:3.4.7-1ubuntu1|1:3.4.7-1ubuntu2|1:3.4.7-1ubuntu4|1:3.4.14-3ubuntu1|1:3.4.14-3ubuntu2|1:3.6.3-0ubuntu1|1:3.6.3-0ubuntu1.1|1:3.6.3-0ubuntu1.3|1:3.6.3-0ubuntu1.4", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] }, @@ -591,13 +410,13 @@ "package": { "type": "deb", "namespace": "ubuntu", - "name": "qtbase-opensource-src", + "name": "mongodb", "version": "", - "qualifiers": "arch=source&distro=trusty", + "qualifiers": "arch=source&distro=focal", "subpath": "" }, - "affected_version_range": "vers:deb/5.0.2+dfsg1-7ubuntu11|5.0.2+dfsg1-7ubuntu12|5.0.2+dfsg1-7ubuntu13|5.0.2+dfsg1-7ubuntu14|5.0.2+dfsg1-7ubuntu15|5.0.2+dfsg1-7ubuntu16|5.0.2+dfsg1-7ubuntu17|5.0.2+dfsg1-7ubuntu18|5.2.1+dfsg-1ubuntu7|5.2.1+dfsg-1ubuntu8|5.2.1+dfsg-1ubuntu9|5.2.1+dfsg-1ubuntu10|5.2.1+dfsg-1ubuntu11|5.2.1+dfsg-1ubuntu13|5.2.1+dfsg-1ubuntu14|5.2.1+dfsg-1ubuntu14.2", - "fixed_version_range": "vers:deb/5.2.1+dfsg-1ubuntu14.3", + "affected_version_range": "vers:deb/1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3", + "fixed_version_range": null, "introduced_by_commit_patches": [], "fixed_by_commit_patches": [] } @@ -606,5497 +425,44 @@ { "reference_id": "", "reference_type": "", - "url": "http://lists.qt-project.org/pipermail/announce/2015-February/000059.html" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2015-0295" + "url": "https://jira.mongodb.org/browse/SERVER-106075" }, { "reference_id": "", "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-2626-1" + "url": "https://ubuntu.com/security/CVE-2025-14345" }, { "reference_id": "", "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0295" + "url": "https://www.cve.org/CVERecord?id=CVE-2025-14345" } ], "patches": [], "severities": [ { "system": "ubuntu", - "value": "low", + "value": "medium", "scoring_elements": "" + }, + { + "system": "cvssv3.1", + "value": "4.2", + "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N" + }, + { + "system": "cvssv3.1", + "value": "5.4", + "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L" + }, + { + "system": "cvssv4", + "value": "2.3", + "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N" } ], - "date_published": "2015-03-25T00:00:00+00:00", + "date_published": "2025-12-09T16:17:00+00:00", "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2015/UBUNTU-CVE-2015-0295.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-0305", - "aliases": [], - "summary": "In cdev_get of char_dev.c, there is a possible use-after-free due to a race condition. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-153467744", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-snapdragon", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1077.82|4.4.0-1078.83|4.4.0-1079.84|4.4.0-1081.86|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1055.59|4.15.0-1057.62|4.15.0-1058.64|4.15.0-1060.66|4.15.0-1062.69|4.15.0-1064.71|4.15.0-1065.72|4.15.0-1066.73|4.15.0-1067.74|4.15.0-1069.76|4.15.0-1070.77|4.15.0-1071.78|4.15.0-1072.79", - "fixed_version_range": "vers:deb/4.15.0-1074.81", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.0", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1021.24~18.04.1|5.0.0-1022.25~18.04.1|5.0.0-1023.26~18.04.1|5.0.0-1024.27~18.04.1|5.0.0-1025.28|5.0.0-1027.30", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=trusty/esm", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1002.2|4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1009.9|4.4.0-1010.10|4.4.0-1011.11|4.4.0-1012.12|4.4.0-1014.14|4.4.0-1016.16|4.4.0-1017.17|4.4.0-1019.19|4.4.0-1022.22|4.4.0-1023.23|4.4.0-1024.25|4.4.0-1025.26|4.4.0-1027.30|4.4.0-1028.31|4.4.0-1029.32|4.4.0-1031.34|4.4.0-1032.35|4.4.0-1034.37|4.4.0-1036.39|4.4.0-1037.40|4.4.0-1038.41|4.4.0-1039.42|4.4.0-1040.43|4.4.0-1042.45|4.4.0-1044.47|4.4.0-1045.48|4.4.0-1046.50|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1052.56|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1056.60|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1060.64|4.4.0-1061.65", - "fixed_version_range": "vers:deb/4.4.0-1062.66", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=trusty/esm", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1023.24~14.04.1|4.15.0-1030.31~14.04.1|4.15.0-1031.32~14.04.1|4.15.0-1032.33~14.04.2|4.15.0-1035.36~14.04.2|4.15.0-1036.38~14.04.2|4.15.0-1037.39~14.04.2|4.15.0-1039.41~14.04.2|4.15.0-1040.44~14.04.1|4.15.0-1041.45~14.04.1|4.15.0-1042.46~14.04.1|4.15.0-1045.49~14.04.1|4.15.0-1046.50~14.04.1|4.15.0-1047.51~14.04.1|4.15.0-1049.54~14.04.1|4.15.0-1050.55~14.04.1|4.15.0-1051.56~14.04.1|4.15.0-1052.57~14.04.1|4.15.0-1055.60~14.04.1|4.15.0-1056.61~14.04.1|4.15.0-1057.62~14.04.1|4.15.0-1059.64~14.04.1|4.15.0-1060.65~14.04.1|4.15.0-1061.66~14.04.1|4.15.0-1063.68~14.04.1|4.15.0-1064.69~14.04.1|4.15.0-1066.71~14.04.1|4.15.0-1067.72~14.04.1|4.15.0-1069.74~14.04.1|4.15.0-1071.76~14.04.1", - "fixed_version_range": "vers:deb/4.15.0-1074.79~14.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lts-xenial", - "version": "", - "qualifiers": "arch=source&distro=trusty/esm", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-13.29~14.04.1|4.4.0-14.30~14.04.2|4.4.0-15.31~14.04.1|4.4.0-18.34~14.04.1|4.4.0-21.37~14.04.1|4.4.0-22.39~14.04.1|4.4.0-22.40~14.04.1|4.4.0-24.43~14.04.1|4.4.0-28.47~14.04.1|4.4.0-31.50~14.04.1|4.4.0-34.53~14.04.1|4.4.0-36.55~14.04.1|4.4.0-38.57~14.04.1|4.4.0-42.62~14.04.1|4.4.0-45.66~14.04.1|4.4.0-47.68~14.04.1|4.4.0-51.72~14.04.1|4.4.0-53.74~14.04.1|4.4.0-57.78~14.04.1|4.4.0-59.80~14.04.1|4.4.0-62.83~14.04.1|4.4.0-63.84~14.04.2|4.4.0-64.85~14.04.1|4.4.0-66.87~14.04.1|4.4.0-67.88~14.04.1|4.4.0-70.91~14.04.1|4.4.0-71.92~14.04.1|4.4.0-72.93~14.04.1|4.4.0-75.96~14.04.1|4.4.0-78.99~14.04.2|4.4.0-79.100~14.04.1|4.4.0-81.104~14.04.1|4.4.0-83.106~14.04.1|4.4.0-87.110~14.04.1|4.4.0-89.112~14.04.1|4.4.0-91.114~14.04.1|4.4.0-92.115~14.04.1|4.4.0-93.116~14.04.1|4.4.0-96.119~14.04.1|4.4.0-97.120~14.04.1|4.4.0-98.121~14.04.1|4.4.0-101.124~14.04.1|4.4.0-103.126~14.04.1|4.4.0-104.127~14.04.1|4.4.0-108.131~14.04.1|4.4.0-109.132~14.04.1|4.4.0-111.134~14.04.1|4.4.0-112.135~14.04.1|4.4.0-116.140~14.04.1|4.4.0-119.143~14.04.1|4.4.0-121.145~14.04.1|4.4.0-124.148~14.04.1|4.4.0-127.153~14.04.1|4.4.0-128.154~14.04.1|4.4.0-130.156~14.04.1|4.4.0-131.157~14.04.1|4.4.0-133.159~14.04.1|4.4.0-134.160~14.04.1|4.4.0-135.161~14.04.1|4.4.0-137.163~14.04.1|4.4.0-138.164~14.04.1|4.4.0-139.165~14.04.1|4.4.0-140.166~14.04.1|4.4.0-141.167~14.04.1|4.4.0-142.168~14.04.1|4.4.0-143.169~14.04.2|4.4.0-144.170~14.04.1|4.4.0-146.172~14.04.1|4.4.0-148.174~14.04.1|4.4.0-150.176~14.04.1|4.4.0-151.178~14.04.1|4.4.0-154.181~14.04.1|4.4.0-157.185~14.04.1|4.4.0-159.187~14.04.1|4.4.0-161.189~14.04.1|4.4.0-164.192~14.04.1|4.4.0-165.193~14.04.1|4.4.0-166.195~14.04.1|4.4.0-168.197~14.04.1|4.4.0-169.198~14.04.1|4.4.0-170.199~14.04.1|4.4.0-171.200~14.04.1|4.4.0-173.203~14.04.1", - "fixed_version_range": "vers:deb/4.4.0-174.204~14.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/3.11.0-12.19|3.12.0-1.3|3.12.0-2.5|3.12.0-2.7|3.12.0-3.8|3.12.0-3.9|3.12.0-4.10|3.12.0-4.12|3.12.0-5.13|3.12.0-7.15|3.13.0-1.16|3.13.0-2.17|3.13.0-3.18|3.13.0-4.19|3.13.0-5.20|3.13.0-6.23|3.13.0-7.25|3.13.0-7.26|3.13.0-8.27|3.13.0-8.28|3.13.0-10.30|3.13.0-11.31|3.13.0-12.32|3.13.0-13.33|3.13.0-14.34|3.13.0-15.35|3.13.0-16.36|3.13.0-17.37|3.13.0-18.38|3.13.0-19.39|3.13.0-19.40|3.13.0-20.42|3.13.0-21.43|3.13.0-22.44|3.13.0-23.45|3.13.0-24.46|3.13.0-24.47|3.13.0-27.50|3.13.0-29.53|3.13.0-30.54|3.13.0-30.55|3.13.0-32.57|3.13.0-33.58|3.13.0-34.60|3.13.0-35.62|3.13.0-36.63|3.13.0-37.64|3.13.0-39.66|3.13.0-40.69|3.13.0-41.70|3.13.0-43.72|3.13.0-44.73|3.13.0-45.74|3.13.0-46.75|3.13.0-46.76|3.13.0-46.77|3.13.0-46.79|3.13.0-48.80|3.13.0-49.81|3.13.0-49.83|3.13.0-51.84|3.13.0-52.85|3.13.0-52.86|3.13.0-53.88|3.13.0-53.89|3.13.0-54.91|3.13.0-55.92|3.13.0-55.94|3.13.0-57.95|3.13.0-58.97|3.13.0-59.98|3.13.0-61.100|3.13.0-62.102|3.13.0-63.103|3.13.0-65.105|3.13.0-65.106|3.13.0-66.108|3.13.0-67.110|3.13.0-68.111|3.13.0-70.113|3.13.0-71.114|3.13.0-73.116|3.13.0-74.118|3.13.0-76.120|3.13.0-77.121|3.13.0-79.123|3.13.0-83.127|3.13.0-85.129|3.13.0-86.130|3.13.0-86.131|3.13.0-87.133|3.13.0-88.135|3.13.0-91.138|3.13.0-92.139|3.13.0-93.140|3.13.0-95.142|3.13.0-96.143|3.13.0-98.145|3.13.0-100.147|3.13.0-101.148|3.13.0-103.150|3.13.0-105.152|3.13.0-106.153|3.13.0-107.154|3.13.0-108.155|3.13.0-109.156|3.13.0-110.157|3.13.0-111.158|3.13.0-112.159|3.13.0-113.160|3.13.0-115.162|3.13.0-116.163|3.13.0-117.164|3.13.0-119.166|3.13.0-121.170|3.13.0-123.172|3.13.0-125.174|3.13.0-126.175|3.13.0-128.177|3.13.0-129.178|3.13.0-132.181|3.13.0-133.182|3.13.0-135.184|3.13.0-137.186|3.13.0-139.188|3.13.0-141.190|3.13.0-142.191|3.13.0-143.192|3.13.0-144.193|3.13.0-145.194|3.13.0-147.196|3.13.0-149.199|3.13.0-151.201|3.13.0-153.203|3.13.0-155.205|3.13.0-156.206|3.13.0-157.207|3.13.0-158.208|3.13.0-160.210|3.13.0-161.211|3.13.0-162.212|3.13.0-163.213|3.13.0-164.214|3.13.0-165.215|3.13.0-166.216|3.13.0-167.217|3.13.0-168.218|3.13.0-169.219|3.13.0-170.220|3.13.0-171.222|3.13.0-172.223|3.13.0-173.224|3.13.0-174.225|3.13.0-175.226|3.13.0-176.227|3.13.0-180.231|3.13.0-181.232|3.13.0-182.233|3.13.0-183.234|3.13.0-184.235|3.13.0-185.236|3.13.0-186.237|3.13.0-187.238|3.13.0-188.239|3.13.0-189.240|3.13.0-190.241|3.13.0-191.242|3.13.0-192.243|3.13.0-193.244|3.13.0-194.245|3.13.0-195.246|3.13.0-196.247|3.13.0-197.248|3.13.0-198.249|3.13.0-199.250|3.13.0-200.251|3.13.0-201.252|3.13.0-202.253|3.13.0-203.254|3.13.0-204.255|3.13.0-205.256|3.13.0-206.257|3.13.0-207.258|3.13.0-208.259|3.13.0-209.260|3.13.0-210.261", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi2", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.2.0-1013.19|4.2.0-1014.21|4.3.0-1006.6|4.4.0-1003.4|4.4.0-1004.5|4.4.0-1009.10|4.4.0-1010.12|4.4.0-1010.13|4.4.0-1012.16|4.4.0-1016.22|4.4.0-1017.23|4.4.0-1019.25|4.4.0-1021.27|4.4.0-1023.29|4.4.0-1027.33|4.4.0-1029.36|4.4.0-1034.41|4.4.0-1038.45|4.4.0-1040.47|4.4.0-1042.49|4.4.0-1044.51|4.4.0-1046.53|4.4.0-1048.55|4.4.0-1050.57|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1055.62|4.4.0-1057.64|4.4.0-1059.67|4.4.0-1061.69|4.4.0-1065.73|4.4.0-1067.75|4.4.0-1069.77|4.4.0-1070.78|4.4.0-1071.79|4.4.0-1074.82|4.4.0-1075.83|4.4.0-1076.84|4.4.0-1077.85|4.4.0-1079.87|4.4.0-1080.88|4.4.0-1082.90|4.4.0-1085.93|4.4.0-1086.94|4.4.0-1087.95|4.4.0-1089.97|4.4.0-1090.98|4.4.0-1091.99|4.4.0-1092.100|4.4.0-1094.102|4.4.0-1095.103|4.4.0-1096.104|4.4.0-1098.106|4.4.0-1099.107|4.4.0-1100.108|4.4.0-1101.109|4.4.0-1102.110|4.4.0-1103.111|4.4.0-1104.112|4.4.0-1106.114|4.4.0-1107.115|4.4.0-1109.117|4.4.0-1110.118|4.4.0-1111.120|4.4.0-1114.123|4.4.0-1117.126|4.4.0-1118.127|4.4.0-1120.129|4.4.0-1122.131|4.4.0-1123.132|4.4.0-1124.133|4.4.0-1125.134|4.4.0-1126.135|4.4.0-1127.136|4.4.0-1128.137", - "fixed_version_range": "vers:deb/4.4.0-1129.138", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.2.0-16.19|4.2.0-17.21|4.2.0-19.23|4.3.0-1.10|4.3.0-2.11|4.3.0-5.16|4.3.0-6.17|4.3.0-7.18|4.4.0-2.16|4.4.0-4.19|4.4.0-6.21|4.4.0-7.22|4.4.0-8.23|4.4.0-9.24|4.4.0-10.25|4.4.0-11.26|4.4.0-12.28|4.4.0-13.29|4.4.0-14.30|4.4.0-15.31|4.4.0-16.32|4.4.0-17.33|4.4.0-18.34|4.4.0-21.37|4.4.0-22.39|4.4.0-22.40|4.4.0-24.43|4.4.0-28.47|4.4.0-31.50|4.4.0-34.53|4.4.0-36.55|4.4.0-38.57|4.4.0-42.62|4.4.0-43.63|4.4.0-45.66|4.4.0-47.68|4.4.0-51.72|4.4.0-53.74|4.4.0-57.78|4.4.0-59.80|4.4.0-62.83|4.4.0-63.84|4.4.0-64.85|4.4.0-65.86|4.4.0-66.87|4.4.0-67.88|4.4.0-70.91|4.4.0-71.92|4.4.0-72.93|4.4.0-75.96|4.4.0-77.98|4.4.0-78.99|4.4.0-79.100|4.4.0-81.104|4.4.0-83.106|4.4.0-87.110|4.4.0-89.112|4.4.0-91.114|4.4.0-92.115|4.4.0-93.116|4.4.0-96.119|4.4.0-97.120|4.4.0-98.121|4.4.0-101.124|4.4.0-103.126|4.4.0-104.127|4.4.0-108.131|4.4.0-109.132|4.4.0-112.135|4.4.0-116.140|4.4.0-119.143|4.4.0-121.145|4.4.0-122.146|4.4.0-124.148|4.4.0-127.153|4.4.0-128.154|4.4.0-130.156|4.4.0-131.157|4.4.0-133.159|4.4.0-134.160|4.4.0-135.161|4.4.0-137.163|4.4.0-138.164|4.4.0-139.165|4.4.0-140.166|4.4.0-141.167|4.4.0-142.168|4.4.0-143.169|4.4.0-145.171|4.4.0-146.172|4.4.0-148.174|4.4.0-150.176|4.4.0-151.178|4.4.0-154.181|4.4.0-157.185|4.4.0-159.187|4.4.0-161.189|4.4.0-164.192|4.4.0-165.193|4.4.0-166.195|4.4.0-168.197|4.4.0-169.198|4.4.0-170.199|4.4.0-171.200|4.4.0-173.203", - "fixed_version_range": "vers:deb/4.4.0-174.204", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1001.10|4.4.0-1003.12|4.4.0-1004.13|4.4.0-1007.16|4.4.0-1009.18|4.4.0-1011.20|4.4.0-1012.21|4.4.0-1013.22|4.4.0-1016.25|4.4.0-1017.26|4.4.0-1018.27|4.4.0-1020.29|4.4.0-1022.31|4.4.0-1026.35|4.4.0-1028.37|4.4.0-1030.39|4.4.0-1031.40|4.4.0-1032.41|4.4.0-1035.44|4.4.0-1037.46|4.4.0-1038.47|4.4.0-1039.48|4.4.0-1041.50|4.4.0-1043.52|4.4.0-1044.53|4.4.0-1047.56|4.4.0-1048.57|4.4.0-1049.58|4.4.0-1050.59|4.4.0-1052.61|4.4.0-1054.63|4.4.0-1055.64|4.4.0-1057.66|4.4.0-1060.69|4.4.0-1061.70|4.4.0-1062.71|4.4.0-1063.72|4.4.0-1065.75|4.4.0-1066.76|4.4.0-1067.77|4.4.0-1069.79|4.4.0-1070.80|4.4.0-1072.82|4.4.0-1073.83|4.4.0-1074.84|4.4.0-1075.85|4.4.0-1077.87|4.4.0-1079.89|4.4.0-1081.91|4.4.0-1083.93|4.4.0-1084.94|4.4.0-1085.96|4.4.0-1087.98|4.4.0-1088.99|4.4.0-1090.101|4.4.0-1092.103|4.4.0-1094.105|4.4.0-1095.106|4.4.0-1096.107|4.4.0-1098.109|4.4.0-1099.110|4.4.0-1100.111|4.4.0-1101.112", - "fixed_version_range": "vers:deb/4.4.0-1102.113", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-hwe", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1030.31~16.04.1|4.15.0-1031.33~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1035.37~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1039.41~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43~16.04.1|4.15.0-1043.45~16.04.1|4.15.0-1044.46~16.04.1|4.15.0-1045.47~16.04.1|4.15.0-1047.49~16.04.1|4.15.0-1048.50~16.04.1|4.15.0-1050.52~16.04.1|4.15.0-1051.53~16.04.1|4.15.0-1052.54~16.04.1|4.15.0-1054.56~16.04.1|4.15.0-1056.58~16.04.1|4.15.0-1057.59~16.04.1|4.15.0-1058.60~16.04.1|4.15.0-1060.62~16.04.1", - "fixed_version_range": "vers:deb/4.15.0-1063.67~16.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.11.0-1009.9|4.11.0-1011.11|4.11.0-1013.13|4.11.0-1014.14|4.11.0-1015.15|4.11.0-1016.16|4.13.0-1005.7|4.13.0-1006.8|4.13.0-1007.9|4.13.0-1009.12|4.13.0-1011.14|4.13.0-1012.15|4.13.0-1014.17|4.13.0-1016.19|4.13.0-1018.21|4.15.0-1013.13~16.04.2|4.15.0-1014.14~16.04.1|4.15.0-1018.18~16.04.1|4.15.0-1019.19~16.04.1|4.15.0-1021.21~16.04.1|4.15.0-1022.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1025.26~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1030.31~16.04.1|4.15.0-1031.32~16.04.1|4.15.0-1032.33~16.04.1|4.15.0-1035.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1039.43|4.15.0-1040.44|4.15.0-1041.45|4.15.0-1042.46|4.15.0-1045.49|4.15.0-1046.50|4.15.0-1047.51|4.15.0-1049.54|4.15.0-1050.55|4.15.0-1051.56|4.15.0-1052.57|4.15.0-1055.60|4.15.0-1056.61|4.15.0-1057.62|4.15.0-1059.64|4.15.0-1060.65|4.15.0-1061.66|4.15.0-1063.68|4.15.0-1064.69|4.15.0-1066.71|4.15.0-1067.72|4.15.0-1069.74|4.15.0-1071.76", - "fixed_version_range": "vers:deb/4.15.0-1075.80", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.10.0-1004.4|4.10.0-1006.6|4.10.0-1007.7|4.10.0-1008.8|4.10.0-1009.9|4.13.0-1002.5|4.13.0-1006.9|4.13.0-1007.10|4.13.0-1008.11|4.13.0-1011.15|4.13.0-1012.16|4.13.0-1013.17|4.13.0-1015.19|4.13.0-1017.21|4.13.0-1019.23|4.15.0-1014.14~16.04.1|4.15.0-1015.15~16.04.1|4.15.0-1017.18~16.04.1|4.15.0-1018.19~16.04.2|4.15.0-1019.20~16.04.1|4.15.0-1021.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1024.25~16.04.2|4.15.0-1025.26~16.04.1|4.15.0-1026.27~16.04.1|4.15.0-1027.28~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1029.31~16.04.1|4.15.0-1030.32~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1034.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1046.49|4.15.0-1047.50|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.56|4.15.0-1055.59", - "fixed_version_range": "vers:deb/4.15.0-1058.62", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.8.0-36.36~16.04.1|4.8.0-39.42~16.04.1|4.8.0-41.44~16.04.1|4.8.0-42.45~16.04.1|4.8.0-44.47~16.04.1|4.8.0-45.48~16.04.1|4.8.0-46.49~16.04.1|4.8.0-49.52~16.04.1|4.8.0-51.54~16.04.1|4.8.0-52.55~16.04.1|4.8.0-53.56~16.04.1|4.8.0-54.57~16.04.1|4.8.0-56.61~16.04.1|4.8.0-58.63~16.04.1|4.10.0-27.30~16.04.2|4.10.0-28.32~16.04.2|4.10.0-30.34~16.04.1|4.10.0-32.36~16.04.1|4.10.0-33.37~16.04.1|4.10.0-35.39~16.04.1|4.10.0-37.41~16.04.1|4.10.0-38.42~16.04.1|4.10.0-40.44~16.04.1|4.10.0-42.46~16.04.1|4.13.0-26.29~16.04.2|4.13.0-31.34~16.04.1|4.13.0-32.35~16.04.1|4.13.0-36.40~16.04.1|4.13.0-37.42~16.04.1|4.13.0-38.43~16.04.1|4.13.0-39.44~16.04.1|4.13.0-41.46~16.04.1|4.13.0-43.48~16.04.1|4.13.0-45.50~16.04.1|4.15.0-24.26~16.04.1|4.15.0-29.31~16.04.1|4.15.0-30.32~16.04.1|4.15.0-32.35~16.04.1|4.15.0-33.36~16.04.1|4.15.0-34.37~16.04.1|4.15.0-36.39~16.04.1|4.15.0-38.41~16.04.1|4.15.0-39.42~16.04.1|4.15.0-42.45~16.04.1|4.15.0-43.46~16.04.1|4.15.0-45.48~16.04.1|4.15.0-46.49~16.04.1|4.15.0-47.50~16.04.1|4.15.0-48.51~16.04.1|4.15.0-50.54~16.04.1|4.15.0-51.55~16.04.1|4.15.0-52.56~16.04.1|4.15.0-54.58~16.04.1|4.15.0-55.60~16.04.2|4.15.0-58.64~16.04.1|4.15.0-60.67~16.04.1|4.15.0-62.69~16.04.1|4.15.0-64.73~16.04.1|4.15.0-65.74~16.04.1|4.15.0-66.75~16.04.1|4.15.0-69.78~16.04.1|4.15.0-70.79~16.04.1|4.15.0-72.81~16.04.1|4.15.0-74.83~16.04.1|4.15.0-76.86~16.04.1|4.15.0-88.88~16.04.1", - "fixed_version_range": "vers:deb/4.15.0-91.92~16.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1004.9|4.4.0-1007.12|4.4.0-1008.13|4.4.0-1009.14|4.4.0-1010.15|4.4.0-1012.17|4.4.0-1013.18|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1020.25|4.4.0-1021.26|4.4.0-1023.28|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1029.34|4.4.0-1031.37|4.4.0-1032.38|4.4.0-1033.39|4.4.0-1035.41|4.4.0-1036.42|4.4.0-1037.43|4.4.0-1038.44|4.4.0-1039.45|4.4.0-1040.46|4.4.0-1041.47|4.4.0-1043.49|4.4.0-1044.50|4.4.0-1046.52|4.4.0-1047.53|4.4.0-1048.55|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1056.63|4.4.0-1058.65|4.4.0-1059.66|4.4.0-1060.67|4.4.0-1062.69|4.4.0-1063.70|4.4.0-1064.71|4.4.0-1065.72", - "fixed_version_range": "vers:deb/4.4.0-1066.73", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1007.9~16.04.1|4.15.0-1008.10~16.04.1|4.15.0-1009.11~16.04.1|4.15.0-1010.12~16.04.1|4.15.0-1011.13~16.04.1|4.15.0-1013.15~16.04.1|4.15.0-1014.16~16.04.1|4.15.0-1015.17~16.04.1|4.15.0-1017.19~16.04.2|4.15.0-1018.20~16.04.1|4.15.0-1021.23~16.04.1|4.15.0-1022.25~16.04.1|4.15.0-1023.26~16.04.1|4.15.0-1025.28~16.04.1|4.15.0-1026.29~16.04.1|4.15.0-1027.30~16.04.1|4.15.0-1029.32~16.04.1|4.15.0-1030.33~16.04.1|4.15.0-1031.34~16.04.1|4.15.0-1033.36~16.04.1", - "fixed_version_range": "vers:deb/4.15.0-1035.38~16.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-snapdragon", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1012.12|4.4.0-1013.14|4.4.0-1013.15|4.4.0-1015.18|4.4.0-1019.22|4.4.0-1020.23|4.4.0-1022.25|4.4.0-1024.27|4.4.0-1026.29|4.4.0-1030.33|4.4.0-1032.36|4.4.0-1035.39|4.4.0-1039.43|4.4.0-1042.46|4.4.0-1044.48|4.4.0-1046.50|4.4.0-1047.51|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1051.55|4.4.0-1053.57|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1057.61|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1061.66|4.4.0-1063.68|4.4.0-1067.72|4.4.0-1069.74|4.4.0-1071.76|4.4.0-1072.77|4.4.0-1073.78|4.4.0-1076.81|4.4.0-1077.82|4.4.0-1078.83|4.4.0-1079.84|4.4.0-1081.86|4.4.0-1082.87|4.4.0-1084.89|4.4.0-1087.92|4.4.0-1088.93|4.4.0-1090.95|4.4.0-1092.97|4.4.0-1093.98|4.4.0-1094.99|4.4.0-1095.100|4.4.0-1096.101|4.4.0-1098.103|4.4.0-1099.104|4.4.0-1100.105|4.4.0-1102.107|4.4.0-1103.108|4.4.0-1104.109|4.4.0-1105.110|4.4.0-1106.111|4.4.0-1107.112|4.4.0-1108.113|4.4.0-1110.115|4.4.0-1111.116|4.4.0-1113.118|4.4.0-1114.119|4.4.0-1115.121|4.4.0-1118.124|4.4.0-1121.127|4.4.0-1122.128|4.4.0-1124.130|4.4.0-1126.132|4.4.0-1127.135|4.4.0-1128.136|4.4.0-1129.137|4.4.0-1130.138|4.4.0-1131.139|4.4.0-1132.140", - "fixed_version_range": "vers:deb/4.4.0-1133.141", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-edge", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.8.0-28.30~16.04.1|4.8.0-30.32~16.04.1|4.8.0-32.34~16.04.1|4.8.0-34.36~16.04.1|4.10.0-14.16~16.04.1|4.10.0-19.21~16.04.1|4.10.0-20.22~16.04.1|4.10.0-21.23~16.04.1|4.10.0-22.24~16.04.1|4.10.0-24.28~16.04.1|4.10.0-26.30~16.04.1|4.11.0-13.19~16.04.1|4.11.0-14.20~16.04.1|4.13.0-16.19~16.04.3|4.13.0-17.20~16.04.1|4.13.0-19.22~16.04.1|4.13.0-21.24~16.04.1|4.13.0-25.29~16.04.2|4.15.0-13.14~16.04.1|4.15.0-15.16~16.04.1|4.15.0-20.21~16.04.1|4.15.0-22.24~16.04.1|4.15.0-23.25~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1008.10|4.4.0-1010.13|4.4.0-1011.14|4.4.0-1012.16|4.4.0-1013.17|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1021.26|4.4.0-1022.27|4.4.0-1023.28|4.4.0-1025.30|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1028.33", - "fixed_version_range": "vers:deb/4.4.0-1029.34", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1001.1|4.4.0-1002.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.13.0-16.19|4.13.0-17.20|4.13.0-25.29|4.13.0-32.35|4.15.0-10.11|4.15.0-12.13|4.15.0-13.14|4.15.0-15.16|4.15.0-19.20|4.15.0-20.21|4.15.0-22.24|4.15.0-23.25|4.15.0-24.26|4.15.0-29.31|4.15.0-30.32|4.15.0-32.35|4.15.0-33.36|4.15.0-34.37|4.15.0-36.39|4.15.0-38.41|4.15.0-39.42|4.15.0-42.45|4.15.0-43.46|4.15.0-44.47|4.15.0-45.48|4.15.0-46.49|4.15.0-47.50|4.15.0-48.51|4.15.0-50.54|4.15.0-51.55|4.15.0-52.56|4.15.0-54.58|4.15.0-55.60|4.15.0-58.64|4.15.0-60.67|4.15.0-62.69|4.15.0-64.73|4.15.0-65.74|4.15.0-66.75|4.15.0-69.78|4.15.0-70.79|4.15.0-72.81|4.15.0-74.84|4.15.0-76.86|4.15.0-88.88", - "fixed_version_range": "vers:deb/4.15.0-91.92", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1007.7|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1027.27|4.15.0-1029.30|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1035.37|4.15.0-1037.39|4.15.0-1039.41|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1043.45|4.15.0-1044.46|4.15.0-1045.47|4.15.0-1047.49|4.15.0-1048.50|4.15.0-1050.52|4.15.0-1051.53|4.15.0-1052.54|4.15.0-1054.56|4.15.0-1056.58|4.15.0-1057.59|4.15.0-1058.60|4.15.0-1060.62", - "fixed_version_range": "vers:deb/4.15.0-1063.67", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-4.15", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1045.48|4.15.0-1046.49|4.15.0-1048.51|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.55", - "fixed_version_range": "vers:deb/4.15.0-1055.58", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-5.0", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1011.11~18.04.1|5.0.0-1013.13~18.04.1|5.0.0-1015.15~18.04.1|5.0.0-1017.17~18.04.1|5.0.0-1020.20~18.04.1|5.0.0-1022.22~18.04.3|5.0.0-1023.23~18.04.2|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.2|5.0.0-1027.28~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1030.31", - "fixed_version_range": "vers:deb/5.0.0-1032.33", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1012.13~18.04.1", - "fixed_version_range": "vers:deb/5.3.0-1014.15~18.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1012.12|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1026.26|4.15.0-1027.27|4.15.0-1028.28|4.15.0-1029.29|4.15.0-1030.30|4.15.0-1031.31|4.15.0-1032.32|4.15.0-1034.34|4.15.0-1035.35|4.15.0-1036.36|4.15.0-1038.38|4.15.0-1039.39|4.15.0-1042.42|4.15.0-1043.43|4.15.0-1044.44|4.15.0-1046.46|4.15.0-1047.47|4.15.0-1048.48|4.15.0-1050.50|4.15.0-1051.51|4.15.0-1052.52|4.15.0-1053.53", - "fixed_version_range": "vers:deb/4.15.0-1056.57", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.3|4.15.0-1004.5|4.15.0-1006.9|4.15.0-1008.11|4.15.0-1009.12|4.15.0-1012.15|4.15.0-1013.16|4.15.0-1015.18|4.15.0-1017.20|4.15.0-1018.21|4.15.0-1021.24|4.15.0-1024.29|4.15.0-1026.31|4.15.0-1028.33|4.15.0-1030.35|4.15.0-1033.38|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1036.41|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1043.48|4.15.0-1045.50|4.15.0-1050.57|4.15.0-1056.65|4.15.0-1057.66|4.15.0-1059.68|4.15.0-1063.72|4.15.0-1064.73|4.15.0-1065.75|4.15.0-1066.76|4.15.0-1067.77|4.15.0-1069.79|4.15.0-1073.83", - "fixed_version_range": "vers:deb/4.15.0-1076.86", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-osp1", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1010.11|5.0.0-1012.13|5.0.0-1015.16|5.0.0-1018.20|5.0.0-1020.22|5.0.0-1022.24|5.0.0-1024.27|5.0.0-1025.28|5.0.0-1027.31|5.0.0-1028.32|5.0.0-1030.34|5.0.0-1033.38|5.0.0-1037.42|5.0.0-1039.44|5.0.0-1040.45", - "fixed_version_range": "vers:deb/5.0.0-1043.48", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1007.9|4.15.0-1008.10|4.15.0-1009.11|4.15.0-1010.12|4.15.0-1011.13|4.15.0-1013.15|4.15.0-1014.16|4.15.0-1015.17|4.15.0-1017.19|4.15.0-1018.20|4.15.0-1021.23|4.15.0-1022.25|4.15.0-1023.26|4.15.0-1025.28|4.15.0-1026.29|4.15.0-1027.30|4.15.0-1029.32|4.15.0-1030.33|4.15.0-1031.34|4.15.0-1033.36", - "fixed_version_range": "vers:deb/4.15.0-1035.39", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi2", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.13.0-1005.5|4.13.0-1006.6|4.13.0-1008.8|4.15.0-1006.7|4.15.0-1009.10|4.15.0-1010.11|4.15.0-1011.12|4.15.0-1012.13|4.15.0-1013.14|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1020.22|4.15.0-1021.23|4.15.0-1022.24|4.15.0-1024.26|4.15.0-1026.28|4.15.0-1027.29|4.15.0-1028.30|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1038.40|4.15.0-1040.43|4.15.0-1041.44|4.15.0-1043.46|4.15.0-1044.47|4.15.0-1045.49|4.15.0-1047.51|4.15.0-1048.52|4.15.0-1049.53|4.15.0-1050.54|4.15.0-1052.56|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1055.59", - "fixed_version_range": "vers:deb/4.15.0-1057.61", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi2-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1017.19~18.04.1|5.3.0-1018.20~18.04.1", - "fixed_version_range": "vers:deb/5.3.0-1019.21~18.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1019.21~18.04.1|5.3.0-1023.25~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.2|5.3.0-1033.35|5.3.0-1034.36|5.3.0-1035.37", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1012.12|4.15.0-1013.13|4.15.0-1014.14|4.15.0-1018.18|4.15.0-1019.19|4.15.0-1021.21|4.15.0-1022.23|4.15.0-1023.24|4.15.0-1025.26|4.15.0-1028.29|4.15.0-1030.31|4.15.0-1031.32|4.15.0-1032.33|4.15.0-1035.36|4.15.0-1036.38|4.15.0-1037.39|4.18.0-1011.11~18.04.1|4.18.0-1013.13~18.04.1|4.18.0-1014.14~18.04.1|4.18.0-1018.18~18.04.1|4.18.0-1019.19~18.04.1|4.18.0-1020.20~18.04.1|4.18.0-1023.24~18.04.1|4.18.0-1024.25~18.04.1|4.18.0-1025.27~18.04.1|5.0.0-1014.14~18.04.1|5.0.0-1016.17~18.04.1|5.0.0-1018.19~18.04.1|5.0.0-1020.21~18.04.1|5.0.0-1022.23~18.04.1|5.0.0-1023.24~18.04.1|5.0.0-1025.27~18.04.1|5.0.0-1027.29~18.04.1|5.0.0-1028.30~18.04.1|5.0.0-1029.31~18.04.1|5.0.0-1031.33|5.0.0-1032.34|5.0.0-1035.37|5.0.0-1036.38", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1007.8~18.04.1|5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1019.20~18.04.1|5.3.0-1020.21~18.04.1|5.3.0-1022.23~18.04.1|5.3.0-1028.29~18.04.1|5.3.0-1031.32~18.04.1|5.3.0-1032.33~18.04.1|5.3.0-1034.35~18.04.1|5.3.0-1035.36", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-edge", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.18.0-1006.6~18.04.1|4.18.0-1007.7~18.04.1|4.18.0-1008.8~18.04.1|5.0.0-1012.12~18.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1014.14|4.15.0-1015.15|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1019.20|4.15.0-1021.22|4.15.0-1023.24|4.15.0-1024.25|4.15.0-1025.26|4.15.0-1026.27|4.15.0-1027.28|4.15.0-1028.29|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1042.45|4.15.0-1044.70|5.0.0-1020.20~18.04.1|5.0.0-1021.21~18.04.1|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.1|5.0.0-1028.29~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1031.32|5.0.0-1033.34|5.0.0-1034.35", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1020.22~18.04.1|5.3.0-1026.28~18.04.1|5.3.0-1029.31~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-edge", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.18.0-1004.5~18.04.1|4.18.0-1005.6~18.04.1|4.18.0-1006.7~18.04.1|4.18.0-1007.8~18.04.1|4.18.0-1008.9~18.04.1|4.18.0-1009.10~18.04.1|4.18.0-1011.12~18.04.1|4.18.0-1012.13~18.04.1|4.18.0-1013.14~18.04.1|4.18.0-1015.16~18.04.1|5.0.0-1011.11~18.04.1|5.0.0-1013.13~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.18.0-13.14~18.04.1|4.18.0-14.15~18.04.1|4.18.0-15.16~18.04.1|4.18.0-16.17~18.04.1|4.18.0-17.18~18.04.1|4.18.0-18.19~18.04.1|4.18.0-20.21~18.04.1|4.18.0-21.22~18.04.1|4.18.0-22.23~18.04.1|4.18.0-24.25~18.04.1|4.18.0-25.26~18.04.1|5.0.0-23.24~18.04.1|5.0.0-25.26~18.04.1|5.0.0-27.28~18.04.1|5.0.0-29.31~18.04.1|5.0.0-31.33~18.04.1|5.0.0-32.34~18.04.2|5.0.0-35.38~18.04.1|5.0.0-36.39~18.04.1|5.0.0-37.40~18.04.1|5.3.0-26.28~18.04.1|5.3.0-28.30~18.04.1|5.3.0-40.32~18.04.1|5.3.0-42.34~18.04.1|5.3.0-45.37~18.04.1|5.3.0-46.38~18.04.1|5.3.0-51.44~18.04.2|5.3.0-53.47~18.04.1|5.3.0-59.53~18.04.1|5.3.0-61.55~18.04.1|5.3.0-62.56~18.04.1|5.3.0-64.58~18.04.1|5.3.0-65.59|5.3.0-66.60|5.3.0-67.61|5.3.0-68.63|5.3.0-69.65|5.3.0-70.66|5.3.0-72.68|5.3.0-73.69|5.3.0-74.70|5.3.0-75.71|5.3.0-76.72", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-edge", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-15.16~18.04.1|5.0.0-16.17~18.04.1|5.0.0-17.18~18.04.1|5.0.0-19.20~18.04.1|5.0.0-20.21~18.04.1|5.3.0-19.20~18.04.2|5.3.0-22.24~18.04.1|5.3.0-23.25~18.04.1|5.3.0-23.25~18.04.2|5.3.0-24.26~18.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.0", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1007.12~18.04.1|5.0.0-1008.13~18.04.1|5.0.0-1009.14~18.04.1|5.0.0-1010.15~18.04.1|5.0.0-1011.16|5.0.0-1013.18|5.0.0-1014.19", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.18~18.04.1|5.3.0-1018.20~18.04.1|5.3.0-1024.26~18.04.1|5.3.0-1027.29~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-2000.4", - "fixed_version_range": "vers:deb/4.15.0-2018.18", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2", - "fixed_version_range": "vers:deb/4.15.0-2006.7", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-2000.4", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1063.66+cvm2.2|5.4.0-1063.66+cvm3.2|5.4.0-1064.67+cvm1.1|5.4.0-1065.68+cvm2.1|5.4.0-1067.70+cvm1.1|5.4.0-1068.71+cvm1.1|5.4.0-1069.72+cvm1.1|5.4.0-1070.73+cvm1.1|5.4.0-1072.75+cvm1.1|5.4.0-1073.76+cvm1.1|5.4.0-1074.77+cvm1.1|5.4.0-1076.79+cvm1.1|5.4.0-1078.81+cvm1.1|5.4.0-1080.83+cvm1.1|5.4.0-1083.87+cvm1.1|5.4.0-1085.90+cvm1.1|5.4.0-1085.90+cvm2.1|5.4.0-1086.91+cvm1.1|5.4.0-1089.94+cvm1.2|5.4.0-1090.95+cvm1.1|5.4.0-1091.96+cvm1.1|5.4.0-1092.97+cvm1.1|5.4.0-1095.101+cvm1.1|5.4.0-1098.104+cvm1.1|5.4.0-1100.106+cvm1.1|5.4.0-1103.109+cvm1.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1019.24~20.04.1.1|5.15.0-1020.25~20.04.1.1|5.15.0-1021.26~20.04.1.1|5.15.0-1029.36~20.04.1.1|5.15.0-1030.37~20.04.1.1|5.15.0-1031.38~20.04.1.1|5.15.0-1033.40~20.04.1.1|5.15.0-1034.41~20.04.1.2|5.15.0-1035.42~20.04.1.1|5.15.0-1036.43~20.04.1.1|5.15.0-1037.44~20.04.1.1|5.15.0-1038.45~20.04.1.1|5.15.0-1039.46~20.04.1.1|5.15.0-1040.47~20.04.1.1|5.15.0-1041.48~20.04.1.1|5.15.0-1042.49~20.04.1.1|5.15.0-1043.50~20.04.1.1|5.15.0-1046.53~20.04.1.1|5.15.0-1047.54~20.04.1.1|5.15.0-1049.56~20.04.1.1|5.15.0-1050.57~20.04.1.1|5.15.0-1051.59~20.04.1.1|5.15.0-1052.60~20.04.1.1|5.15.0-1053.61~20.04.1.1|5.15.0-1054.62~20.04.1.1|5.15.0-1056.64~20.04.1.1|5.15.0-1057.65~20.04.1.1|5.15.0-1058.66~20.04.2.1|5.15.0-1059.67~20.04.1.1|5.15.0-1060.69~20.04.1.1|5.15.0-1061.70~20.04.1.1|5.15.0-1063.72~20.04.1.1|5.15.0-1064.73~20.04.1.1|5.15.0-1065.74~20.04.1.1|5.15.0-1067.76~20.04.1.1|5.15.0-1068.77~20.04.1.1|5.15.0-1070.79~20.04.1.1|5.15.0-1071.80~20.04.1.1|5.15.0-1072.81~20.04.1.1|5.15.0-1073.82~20.04.1.1|5.15.0-1074.83~20.04.1.1|5.15.0-1076.85~20.04.1.1|5.15.0-1078.87~20.04.1.1|5.15.0-1081.90~20.04.1.1|5.15.0-1082.91~20.04.1.1|5.15.0-1086.95~20.04.1.1|5.15.0-1087.96~20.04.1.1|5.15.0-1088.97~20.04.1.1|5.15.0-1089.98~20.04.1.1|5.15.0-1091.100~20.04.1.1|5.15.0-1094.103~20.04.1.1|5.15.0-1096.105~20.04.1.1|5.15.0-1097.106~20.04.1.1|5.15.0-1098.107~20.04.1.1|5.15.0-1102.111~20.04.1.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1033.35|5.4.0-1035.37|5.4.0-1036.38|5.4.0-1037.39|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1042.44|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1074.79|5.4.0-1076.82|5.4.0-1078.84|5.4.0-1080.86|5.4.0-1081.87|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1100.107|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi2", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1007.8|5.3.0-1014.16|5.3.0-1015.17|5.3.0-1017.19|5.4.0-1004.4|5.4.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-iot-realtime", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1073.75", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1032.35", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1011.12|5.15.0-1012.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.21|5.15.0-1019.22|5.15.0-1020.23|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi-realtime", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-2019.20", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://git.kernel.org/linus/68faa679b8be1a74e6663c21c3a9d25d32f1c079" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-0305" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-0305" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "6.4", - "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" - } - ], - "date_published": "2020-07-17T20:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-0305.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-0556", - "aliases": [], - "summary": "Improper access control in subsystem for BlueZ before version 5.54 may allow an unauthenticated user to potentially enable escalation of privilege and denial of service via adjacent access", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "bluez", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.35-0ubuntu2|5.36-0ubuntu1|5.37-0ubuntu5|5.37-0ubuntu5.1", - "fixed_version_range": "vers:deb/5.37-0ubuntu5.3", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "bluez", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.46-0ubuntu3|5.46-0ubuntu4|5.48-0ubuntu3|5.48-0ubuntu3.1|5.48-0ubuntu3.2|5.48-0ubuntu3.3", - "fixed_version_range": "vers:deb/5.48-0ubuntu3.4", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-0556" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-4311-1" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-0556" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00352.html" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.openwall.com/lists/oss-security/2020/03/12/4" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "7.1", - "scoring_elements": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L" - } - ], - "date_published": "2020-03-12T21:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-0556.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-1739", - "aliases": [], - "summary": "A flaw was found in Ansible 2.7.16 and prior, 2.8.8 and prior, and 2.9.5 and prior when a password is set with the argument \"password\" of svn module, it is used on svn command line, disclosing to other users within the same node. An attacker could take advantage by reading the cmdline file from that particular PID on the procfs.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "ansible", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.1+dfsg-1|1.3.4+dfsg-1|1.4.0+dfsg-1|1.4.1+dfsg-1|1.4.3+dfsg-1|1.4.4+dfsg-1|1.5.4+dfsg-1|1.5.4+dfsg-1ubuntu0.1~esm1|1.5.4+dfsg-1ubuntu0.1~esm2", - "fixed_version_range": "vers:deb/1.5.4+dfsg-1ubuntu0.1~esm3", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "ansible", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.9.2+dfsg-2|1.9.4-1|2.0.0.2-2|2.0.0.2-2ubuntu1|2.0.0.2-2ubuntu1.1|2.0.0.2-2ubuntu1.2|2.0.0.2-2ubuntu1.3|2.0.0.2-2ubuntu1.3+esm1|2.0.0.2-2ubuntu1.3+esm2|2.0.0.2-2ubuntu1.3+esm3|2.0.0.2-2ubuntu1.3+esm4", - "fixed_version_range": "vers:deb/2.0.0.2-2ubuntu1.3+esm5", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "ansible", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.3.1.0+dfsg-2|2.5.0+dfsg-1|2.5.1+dfsg-1|2.5.1+dfsg-1ubuntu0.1|2.5.1+dfsg-1ubuntu0.1+esm1|2.5.1+dfsg-1ubuntu0.1+esm2|2.5.1+dfsg-1ubuntu0.1+esm3|2.5.1+dfsg-1ubuntu0.1+esm4", - "fixed_version_range": "vers:deb/2.5.1+dfsg-1ubuntu0.1+esm5", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "ansible", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.8.3+dfsg-1|2.8.6+dfsg-1|2.9.2+dfsg-1|2.9.4+dfsg-1|2.9.6+dfsg-1|2.9.6+dfsg-1ubuntu0.1~esm1|2.9.6+dfsg-1ubuntu0.1~esm2", - "fixed_version_range": "vers:deb/2.9.6+dfsg-1ubuntu0.1~esm3", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802178" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-1739" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-7330-1" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-1739" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "3.9", - "scoring_elements": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" - } - ], - "date_published": "2020-03-12T18:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1739.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-1770", - "aliases": [], - "summary": "Support bundle generated files could contain sensitive information that might be unwanted to be disclosed. This issue affects: ((OTRS)) Community Edition: 5.0.41 and prior versions, 6.0.26 and prior versions. OTRS: 7.0.15 and prior versions.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "otrs2", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.0.10-1|5.0.1-1|5.0.1-2|5.0.2-1|5.0.3-1|5.0.5-1|5.0.6-1|5.0.7-1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "otrs2", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.23-1|5.0.24-1|6.0.1-1|6.0.2-1|6.0.3-1|6.0.4-1|6.0.5-1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "otrs2", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.0.20-1|6.0.23-2|6.0.24-1|6.0.25-1|6.0.25-2|6.0.25-3|6.0.26-1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://otrs.com/release-notes/otrs-security-advisory-2020-07/" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-1770" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-1770" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "2.4", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:N/A:N" - }, - { - "system": "cvssv3.1", - "value": "4.3", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" - } - ], - "date_published": "2020-03-27T13:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1770.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-1944", - "aliases": [], - "summary": "There is a vulnerability in Apache Traffic Server 6.0.0 to 6.2.3, 7.0.0 to 7.1.8, and 8.0.0 to 8.0.5 with a smuggling attack and Transfer-Encoding and Content length headers. Upgrade to versions 7.1.9 and 8.0.6 or later versions.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "trafficserver", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-2ubuntu1|5.3.0-2ubuntu2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "trafficserver", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/7.0.0-5|7.1.2+ds-2|7.1.2+ds-2build1|7.1.2+ds-3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "trafficserver", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/8.0.5+ds-1|8.0.5+ds-2|8.0.5+ds-2build1|8.0.5+ds-2ubuntu1|8.0.5+ds-3|8.0.5+ds-3ubuntu0.1~esm1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "trafficserver", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/8.1.1+ds-1.1|9.1.1+ds-2build1|9.1.1+ds-2ubuntu0.1~esm1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://lists.apache.org/thread.html/r99d18d0bc4daa05e7d0e5a63e0e22701a421b2ef5a8f4f7694c43869%40%3Cannounce.trafficserver.apache.org%3E" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-1944" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-1944" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "9.8", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" - } - ], - "date_published": "2020-03-23T22:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-1944.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-2590", - "aliases": [], - "summary": "Vulnerability in the Java SE, Java SE Embedded product of Oracle Java SE (component: Security). Supported versions that are affected are Java SE: 7u241, 8u231, 11.0.5 and 13.0.1; Java SE Embedded: 8u231. Difficult to exploit vulnerability allows unauthenticated attacker with network access via Kerberos to compromise Java SE, Java SE Embedded. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Java SE, Java SE Embedded accessible data. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets (in Java SE 8), that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability can also be exploited by using APIs in the specified Component, e.g., through a web service which supplies data to the APIs. CVSS 3.0 Base Score 3.7 (Integrity impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N).", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "openjdk-8", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/8u66-b01-5|8u72-b05-1ubuntu1|8u72-b05-5|8u72-b05-6|8u72-b15-1|8u72-b15-2ubuntu1|8u72-b15-2ubuntu3|8u72-b15-3ubuntu1|8u77-b03-1ubuntu2|8u77-b03-3ubuntu1|8u77-b03-3ubuntu2|8u77-b03-3ubuntu3|8u91-b14-0ubuntu4~16.04.1|8u91-b14-3ubuntu1~16.04.1|8u111-b14-2ubuntu0.16.04.2|8u121-b13-0ubuntu1.16.04.2|8u131-b11-0ubuntu1.16.04.2|8u131-b11-2ubuntu1.16.04.2|8u131-b11-2ubuntu1.16.04.3|8u151-b12-0ubuntu0.16.04.2|8u162-b12-0ubuntu0.16.04.2|8u171-b11-0ubuntu0.16.04.1|8u181-b13-0ubuntu0.16.04.1|8u181-b13-1ubuntu0.16.04.1|8u191-b12-0ubuntu0.16.04.1|8u191-b12-2ubuntu0.16.04.1|8u212-b03-0ubuntu1.16.04.1|8u222-b10-1ubuntu1~16.04.1|8u232-b09-0ubuntu1~16.04.1", - "fixed_version_range": "vers:deb/8u242-b08-0ubuntu3~16.04", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.5.2-1ubuntu2|1.5.3-0ubuntu1|1.6.1-1ubuntu2|1.6.1-3ubuntu1|1.6.1-4ubuntu1|1.6.2-1ubuntu1|1.6.2-2ubuntu1|1.6.2-3ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "openjdk-9", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/9~b88-1|9~b101-2ubuntu2|9~b102-1|9~b113-0ubuntu1|9~b114-0ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "openjdk-8", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/8u144-b01-2|8u151-b12-1|8u162-b12-1|8u171-b11-0ubuntu0.18.04.1|8u181-b13-0ubuntu0.18.04.1|8u181-b13-1ubuntu0.18.04.1|8u191-b12-0ubuntu0.18.04.1|8u191-b12-2ubuntu0.18.04.1|8u212-b03-0ubuntu1.18.04.1|8u222-b10-1ubuntu1~18.04.1|8u232-b09-0ubuntu1~18.04.1", - "fixed_version_range": "vers:deb/8u242-b08-0ubuntu3~18.04", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "openjdk-lts", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/9.0.4+12-2ubuntu4|9.0.4+12-4ubuntu1|10~46-4ubuntu1|10~46-5ubuntu1|10.0.1+10-1ubuntu2|10.0.1+10-3ubuntu1|10.0.2+13-1ubuntu0.18.04.1|10.0.2+13-1ubuntu0.18.04.2|10.0.2+13-1ubuntu0.18.04.3|10.0.2+13-1ubuntu0.18.04.4|11.0.2+9-3ubuntu1~18.04.3|11.0.3+7-1ubuntu2~18.04.1|11.0.4+11-1ubuntu2~18.04.3|11.0.5+10-0ubuntu1.1~18.04", - "fixed_version_range": "vers:deb/11.0.6+10-1ubuntu1~18.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.6.2-3.1ubuntu3|1.8-0ubuntu8~18.04", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "openjdk-lts", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/11.0.5+10-0ubuntu1|11.0.5+10-2ubuntu1", - "fixed_version_range": "vers:deb/11.0.6+10-1ubuntu1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.8-0ubuntu8", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.8.4-1build1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.8.8-2|1.8.8-2ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "icedtea-web", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.8.8-3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-2590" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/notices/USN-4257-1" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-2590" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.oracle.com/security-alerts/cpujan2020.html" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "low", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "3.7", - "scoring_elements": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" - }, - { - "system": "cvssv3.1", - "value": "3.7", - "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" - } - ], - "date_published": "2020-01-15T17:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-2590.json" - }, - { - "advisory_id": "UBUNTU-CVE-2020-6537", - "aliases": [], - "summary": "Type confusion in V8 in Google Chrome prior to 84.0.4147.105 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "libv8-3.14", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/3.14.5.8-5ubuntu2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "chromium-browser", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/45.0.2454.101-0ubuntu1.1201|47.0.2526.73-0ubuntu1.1218|47.0.2526.106-0ubuntu1.1221|48.0.2564.82-0ubuntu1.1222|48.0.2564.116-0ubuntu1.1229|49.0.2623.87-0ubuntu1.1232|49.0.2623.108-0ubuntu1.1233|50.0.2661.102-0ubuntu0.16.04.1.1237|51.0.2704.79-0ubuntu0.16.04.1.1242|52.0.2743.116-0ubuntu0.16.04.1.1250|53.0.2785.143-0ubuntu0.16.04.1.1254|53.0.2785.143-0ubuntu0.16.04.1.1257|55.0.2883.87-0ubuntu0.16.04.1263|56.0.2924.76-0ubuntu0.16.04.1268|57.0.2987.98-0ubuntu0.16.04.1276|58.0.3029.81-0ubuntu0.16.04.1277|58.0.3029.96-0ubuntu0.16.04.1279|58.0.3029.110-0ubuntu0.16.04.1281|59.0.3071.109-0ubuntu0.16.04.1289|59.0.3071.109-0ubuntu0.16.04.1291|60.0.3112.78-0ubuntu0.16.04.1293|60.0.3112.113-0ubuntu0.16.04.1298|61.0.3163.79-0ubuntu0.16.04.1300|61.0.3163.100-0ubuntu0.16.04.1306|62.0.3202.62-0ubuntu0.16.04.1308|62.0.3202.75-0ubuntu0.16.04.1313|62.0.3202.89-0ubuntu0.16.04.1315|62.0.3202.94-0ubuntu0.16.04.1317|63.0.3239.84-0ubuntu0.16.04.1|63.0.3239.132-0ubuntu0.16.04.1|64.0.3282.119-0ubuntu0.16.04.1|64.0.3282.140-0ubuntu0.16.04.1|64.0.3282.167-0ubuntu0.16.04.1|65.0.3325.181-0ubuntu0.16.04.1|66.0.3359.139-0ubuntu0.16.04.3|66.0.3359.181-0ubuntu0.16.04.1|67.0.3396.99-0ubuntu0.16.04.2|68.0.3440.75-0ubuntu0.16.04.1|68.0.3440.106-0ubuntu0.16.04.1|69.0.3497.81-0ubuntu0.16.04.1|70.0.3538.67-0ubuntu0.16.04.1|70.0.3538.77-0ubuntu0.16.04.1|70.0.3538.110-0ubuntu0.16.04.1|71.0.3578.80-0ubuntu0.16.04.1|71.0.3578.98-0ubuntu0.16.04.1|72.0.3626.119-0ubuntu0.16.04.1|72.0.3626.121-0ubuntu0.16.04.1|73.0.3683.75-0ubuntu0.16.04.1|73.0.3683.86-0ubuntu0.16.04.1|74.0.3729.169-0ubuntu0.16.04.1|76.0.3809.87-0ubuntu0.16.04.1|76.0.3809.100-0ubuntu0.16.04.1|77.0.3865.90-0ubuntu0.16.04.1|78.0.3904.70-0ubuntu0.16.04.2|78.0.3904.97-0ubuntu0.16.04.1|78.0.3904.108-0ubuntu0.16.04.1|79.0.3945.79-0ubuntu0.16.04.1|79.0.3945.130-0ubuntu0.16.04.1|80.0.3987.87-0ubuntu0.16.04.1|80.0.3987.149-0ubuntu0.16.04.1|80.0.3987.163-0ubuntu0.16.04.1|81.0.4044.122-0ubuntu0.16.04.1|81.0.4044.138-0ubuntu0.16.04.1", - "fixed_version_range": "vers:deb/84.0.4147.105-0ubuntu0.16.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "chromium-browser", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/61.0.3163.100-0ubuntu1.1378|62.0.3202.62-0ubuntu0.17.10.1380|62.0.3202.89-0ubuntu1.1386|62.0.3202.94-0ubuntu1.1388|63.0.3239.84-0ubuntu1|63.0.3239.108-0ubuntu1|64.0.3282.119-0ubuntu1|64.0.3282.140-0ubuntu1|64.0.3282.167-0ubuntu1|65.0.3325.146-0ubuntu1|65.0.3325.181-0ubuntu1|66.0.3359.139-0ubuntu0.18.04.3|66.0.3359.181-0ubuntu0.18.04.1|67.0.3396.99-0ubuntu0.18.04.1|68.0.3440.75-0ubuntu0.18.04.1|68.0.3440.106-0ubuntu0.18.04.1|69.0.3497.81-0ubuntu0.18.04.1|70.0.3538.67-0ubuntu0.18.04.1|70.0.3538.77-0ubuntu0.18.04.1|70.0.3538.110-0ubuntu0.18.04.1|71.0.3578.80-0ubuntu0.18.04.1|71.0.3578.98-0ubuntu0.18.04.1|72.0.3626.119-0ubuntu0.18.04.1|72.0.3626.121-0ubuntu0.18.04.1|73.0.3683.75-0ubuntu0.18.04.1|73.0.3683.86-0ubuntu0.18.04.1|74.0.3729.169-0ubuntu0.18.04.1|75.0.3770.90-0ubuntu0.18.04.1|75.0.3770.142-0ubuntu0.18.04.1|76.0.3809.87-0ubuntu0.18.04.1|76.0.3809.100-0ubuntu0.18.04.1|77.0.3865.90-0ubuntu0.18.04.1|78.0.3904.70-0ubuntu0.18.04.2|78.0.3904.97-0ubuntu0.18.04.1|78.0.3904.108-0ubuntu0.18.04.1|79.0.3945.79-0ubuntu0.18.04.1|79.0.3945.130-0ubuntu0.18.04.1|80.0.3987.87-0ubuntu0.18.04.1|80.0.3987.149-0ubuntu0.18.04.1|80.0.3987.163-0ubuntu0.18.04.1|81.0.4044.122-0ubuntu0.18.04.1|81.0.4044.138-0ubuntu0.18.04.1|83.0.4103.61-0ubuntu0.18.04.1", - "fixed_version_range": "vers:deb/84.0.4147.105-0ubuntu0.18.04.1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "libv8-3.14", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/3.14.5.8-11ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2020-6537" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-6537" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "8.8", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" - } - ], - "date_published": "2020-09-21T20:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2020/UBUNTU-CVE-2020-6537.json" - }, - { - "advisory_id": "UBUNTU-CVE-2025-0245", - "aliases": [], - "summary": "Under certain circumstances, a user opt-in setting that Focus should require authentication before use could have been be bypassed. This vulnerability affects Firefox < 134.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs52", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/52.3.1-0ubuntu3|52.3.1-7fakesync1|52.8.1-0ubuntu0.18.04.1|52.9.1-0ubuntu0.18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs38", - "version": "", - "qualifiers": "arch=source&distro=esm-apps/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/38.8.0~repack1-0ubuntu1|38.8.0~repack1-0ubuntu3|38.8.0~repack1-0ubuntu4", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs52", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/52.9.1-1build1|52.9.1-1ubuntu3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs68", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/68.5.0-1~fakesync|68.5.0-2~fakesync|68.6.0-1|68.6.0-1ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "thunderbird", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:68.1.2+build1-0ubuntu1|1:68.1.2+build1-0ubuntu2|1:68.2.1+build1-0ubuntu1|1:68.2.2+build1-0ubuntu1|1:68.3.0+build2-0ubuntu1|1:68.3.1+build1-0ubuntu2|1:68.4.1+build1-0ubuntu1|1:68.4.2+build2-0ubuntu1|1:68.5.0+build1-0ubuntu1|1:68.6.0+build2-0ubuntu1|1:68.7.0+build1-0ubuntu1|1:68.7.0+build1-0ubuntu2|1:68.8.0+build2-0ubuntu0.20.04.2|1:68.10.0+build1-0ubuntu0.20.04.1|1:78.7.1+build1-0ubuntu0.20.04.1|1:78.8.1+build1-0ubuntu0.20.04.1|1:78.11.0+build1-0ubuntu0.20.04.2|1:78.13.0+build1-0ubuntu0.20.04.2|1:78.14.0+build1-0ubuntu0.20.04.1|1:78.14.0+build1-0ubuntu0.20.04.2|1:91.5.0+build1-0ubuntu0.20.04.1|1:91.7.0+build2-0ubuntu0.20.04.1|1:91.8.1+build1-0ubuntu0.20.04.1|1:91.9.1+build1-0ubuntu0.20.04.1|1:91.11.0+build2-0ubuntu0.20.04.1|1:102.2.2+build1-0ubuntu0.20.04.1|1:102.4.2+build2-0ubuntu0.20.04.1|1:102.7.1+build2-0ubuntu0.20.04.1|1:102.8.0+build2-0ubuntu0.20.04.1|1:102.9.0+build1-0ubuntu0.20.04.1|1:102.10.0+build2-0ubuntu0.20.04.1|1:102.11.0+build1-0ubuntu0.20.04.1|1:102.13.0+build1-0ubuntu0.20.04.1|1:102.15.0+build1-0ubuntu0.20.04.1|1:102.15.1+build1-0ubuntu0.20.04.1|1:115.3.1+build1-0ubuntu0.20.04.1|1:115.4.1+build1-0ubuntu0.20.04.1|1:115.5.0+build1-0ubuntu0.20.04.1|1:115.6.0+build2-0ubuntu0.20.04.1|1:115.8.1+build1-0ubuntu0.20.04.1|1:115.9.0+build1-0ubuntu0.20.04.1|1:115.10.1+build1-0ubuntu0.20.04.1|1:115.11.0+build2-0ubuntu0.20.04.1|1:115.12.0+build3-0ubuntu0.20.04.1|1:115.13.0+build5-0ubuntu0.20.04.1|1:115.15.0+build1-0ubuntu0.20.04.1|1:115.16.0+build2-0ubuntu0.20.04.1|1:115.18.0+build1-0ubuntu0.20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs102", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/102.11.0-0ubuntu0.22.04.1|102.12.0-0ubuntu0.22.04.1|102.13.0-0ubuntu0.22.04.1|102.15.1-0ubuntu0.22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs78", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/78.13.0-1|78.15.0-2|78.15.0-4ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs91", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/91.5.1-0ubuntu1|91.6.0-1|91.6.0-2|91.7.0-2|91.10.0-0ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "thunderbird", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:91.1.2+build1-0ubuntu1|1:91.3.0+build2-0ubuntu1|1:91.3.1+build1-0ubuntu1|1:91.3.2+build1-0ubuntu1|1:91.4.0+build1.1-0ubuntu1|1:91.4.0+build2-0ubuntu1|1:91.5.0+build1-0ubuntu1|1:91.5.1+build1-0ubuntu1|1:91.6.1+build1-0ubuntu1|1:91.7.0+build1-0ubuntu1|1:91.7.0+build2-0ubuntu1|1:91.8.0+build2-0ubuntu1|1:91.9.1+build1-0ubuntu0.22.04.1|1:91.11.0+build2-0ubuntu0.22.04.1|1:102.2.2+build1-0ubuntu0.22.04.1|1:102.4.2+build2-0ubuntu0.22.04.1|1:102.7.1+build2-0ubuntu0.22.04.1|1:102.8.0+build2-0ubuntu0.22.04.1|1:102.9.0+build1-0ubuntu0.22.04.1|1:102.10.0+build2-0ubuntu0.22.04.1|1:102.11.0+build1-0ubuntu0.22.04.1|1:102.13.0+build1-0ubuntu0.22.04.1|1:102.15.0+build1-0ubuntu0.22.04.1|1:102.15.1+build1-0ubuntu0.22.04.1|1:115.3.1+build1-0ubuntu0.22.04.2|1:115.4.1+build1-0ubuntu0.22.04.1|1:115.5.0+build1-0ubuntu0.22.04.1|1:115.6.0+build2-0ubuntu0.22.04.1|1:115.8.1+build1-0ubuntu0.22.04.1|1:115.9.0+build1-0ubuntu0.22.04.1|1:115.10.1+build1-0ubuntu0.22.04.1|1:115.11.0+build2-0ubuntu0.22.04.1|1:115.12.0+build3-0ubuntu0.22.04.1|1:115.13.0+build5-0ubuntu0.22.04.1|1:115.15.0+build1-0ubuntu0.22.04.1|1:115.16.0+build2-0ubuntu0.22.04.1|1:115.18.0+build1-0ubuntu0.22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs115", - "version": "", - "qualifiers": "arch=source&distro=oracular", - "subpath": "" - }, - "affected_version_range": "vers:deb/115.10.0-1|115.11.0-1|115.12.0-1|115.12.0-1build1|115.13.0-1|115.14.0-1|115.16.0-1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs102", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/102.15.1-1|102.15.1-3ubuntu2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mozjs115", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/115.3.0-0ubuntu1|115.4.0-2|115.5.0-1|115.6.0-1|115.7.0-4|115.8.0-1|115.9.0-1|115.9.0-1build1|115.10.0-1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1895342" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2025-0245" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-0245" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.mozilla.org/en-US/security/advisories/mfsa2025-01/#CVE-2025-0245" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.mozilla.org/security/advisories/mfsa2025-01/" - } - ], - "patches": [], - "severities": [], - "date_published": "2025-01-07T16:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-0245.json" - }, - { - "advisory_id": "UBUNTU-CVE-2025-0677", - "aliases": [], - "summary": "A flaw was found in grub2. When performing a symlink lookup, the grub's UFS module checks the inode's data size to allocate the internal buffer to read the file content, however, it fails to check if the symlink data size has overflown. When this occurs, grub_malloc() may be called with a smaller value than needed. When further reading the data from the disk into the buffer, the grub_ufs_lookup_symlink() function will write past the end of the allocated size. An attack can leverage this by crafting a malicious filesystem, and as a result, it will corrupt data stored in the heap, allowing for arbitrary code execution used to by-pass secure boot mechanisms.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.00-19ubuntu2|2.00-19ubuntu3|2.00-19ubuntu4|2.00-20|2.00-21|2.00-22|2.02~beta2-5|2.02~beta2-6|2.02~beta2-7|2.02~beta2-8|2.02~beta2-9|2.02~beta2-9ubuntu1|2.02~beta2-9ubuntu1.1|2.02~beta2-9ubuntu1.2|2.02~beta2-9ubuntu1.3|2.02~beta2-9ubuntu1.4|2.02~beta2-9ubuntu1.5|2.02~beta2-9ubuntu1.6|2.02~beta2-9ubuntu1.7|2.02~beta2-9ubuntu1.8|2.02~beta2-9ubuntu1.11|2.02~beta2-9ubuntu1.12|2.02~beta2-9ubuntu1.14|2.02~beta2-9ubuntu1.15|2.02~beta2-9ubuntu1.16|2.02~beta2-9ubuntu1.17|2.02~beta2-9ubuntu1.20|2.02~beta2-9ubuntu1.21", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.22|1.23|1.24|1.25|1.26|1.27|1.30|1.31|1.32|1.33|1.34|1.34.1|1.34.2|1.34.3|1.34.4|1.34.5|1.34.6|1.34.7|1.34.8|1.34.9|1.34.13|1.34.14|1.34.16|1.34.17|1.34.18|1.34.20|1.34.22|1.34.24", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.55|1.56|1.57|1.58|1.59|1.61|1.62|1.63|1.64|1.65|1.66|1.66.1|1.66.2|1.66.6|1.66.7|1.66.8|1.66.9|1.66.11|1.66.12|1.66.14|1.66.15|1.66.16|1.66.17|1.66.18|1.66.19|1.66.20|1.66.21|1.66.22|1.66.23|1.66.26|1.66.27|1.66.28|1.66.29|1.167~16.04.1|1.167~16.04.2|1.167~16.04.4|1.167~16.04.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.1|2.04-1ubuntu44.1.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.85|1.86|1.87|1.89|1.91|1.92|1.93|1.93.1|1.93.2|1.93.3|1.93.4|1.93.5|1.93.7|1.93.8|1.93.10|1.93.11|1.93.13|1.93.14|1.93.15|1.93.16|1.93.18|1.93.19|1.93.20|1.93.21|1.93.22|1.93.24|1.167~18.04.1|1.167~18.04.3|1.167~18.04.5|1.173.2~18.04.1|1.187.2~18.04.1|1.187.3~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.1|2.04-1ubuntu44.1.2|2.04-1ubuntu47.4|2.06-2ubuntu14|2.06-2ubuntu14.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.128|1.129|1.130|1.131|1.133|1.134|1.135|1.136|1.137|1.138|1.139|1.140|1.141|1.142|1.142.1|1.142.3|1.142.4|1.142.5|1.142.6|1.142.8|1.142.9|1.142.10|1.142.11|1.167|1.167.2|1.173.2~20.04.1|1.173.4|1.187.2~20.04.2|1.187.3~20.04.1|1.187.4~20.04.1|1.187.6~20.04.1|1.187.12~20.04", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.04-1ubuntu44|2.04-1ubuntu44.2|2.04-1ubuntu47.4|2.04-1ubuntu47.5|2.06-2ubuntu14|2.06-2ubuntu14.1|2.06-2ubuntu14.2|2.06-2ubuntu14.4|2.06-2ubuntu14.8", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.173|1.174|1.176|1.177|1.178|1.179|1.180|1.182~22.04.1|1.187.2|1.187.3~22.04.1|1.187.4~22.04.1|1.187.6|1.187.12", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.04-1ubuntu47|2.04-1ubuntu48|2.06-2ubuntu3|2.06-2ubuntu4|2.06-2ubuntu5|2.06-2ubuntu6|2.06-2ubuntu7|2.06-2ubuntu10|2.06-2ubuntu14|2.06-2ubuntu14.1|2.06-2ubuntu14.2|2.06-2ubuntu14.4|2.06-2ubuntu14.8", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.197|1.199|1.201|1.202|1.202.2|1.202.5", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.12~rc1-10ubuntu4|2.12~rc1-12ubuntu2|2.12-1ubuntu1|2.12-1ubuntu7|2.12-1ubuntu7.1|2.12-1ubuntu7.3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-signed", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/1.212|1.213|1.214", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "grub2-unsigned", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.12-5ubuntu11|2.14~git20250718.0e36779-1ubuntu1|2.14~git20250718.0e36779-1ubuntu4", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2025-0677" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-0677" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "6.4", - "scoring_elements": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" - } - ], - "date_published": "2025-02-18T18:00:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-0677.json" - }, - { - "advisory_id": "UBUNTU-CVE-2025-1179", - "aliases": [], - "summary": "A vulnerability was found in GNU Binutils 2.43. It has been rated as critical. Affected by this issue is the function bfd_putl64 of the file bfd/libbfd.c of the component ld. The manipulation leads to memory corruption. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. Upgrading to version 2.44 is able to address this issue. It is recommended to upgrade the affected component. The code maintainer explains, that \"[t]his bug has been fixed at some point between the 2.43 and 2.44 releases\".", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "binutils", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.25.1-6ubuntu1|2.25.51.20151022-0ubuntu2|2.25.51.20151022-0ubuntu3|2.25.51.20151027-0ubuntu1|2.25.51.20151028-0ubuntu1|2.25.51.20151106-0ubuntu1|2.25.51.20151113-1ubuntu1|2.25.51.20151113-2ubuntu1|2.25.90.20151125-1ubuntu1|2.25.90.20151125-2ubuntu1|2.25.90.20151211-0ubuntu1|2.25.90.20151211-0ubuntu2|2.25.90.20160101-1ubuntu1|2.25.90.20160101-1ubuntu2|2.26-2ubuntu1|2.26-3ubuntu1|2.26-4ubuntu1|2.26-5ubuntu1|2.26-6ubuntu1|2.26-7ubuntu2|2.26-8ubuntu1|2.26-8ubuntu2|2.26-8ubuntu2.1|2.26.1-1ubuntu1~16.04|2.26.1-1ubuntu1~16.04.1|2.26.1-1ubuntu1~16.04.3|2.26.1-1ubuntu1~16.04.4|2.26.1-1ubuntu1~16.04.5|2.26.1-1ubuntu1~16.04.6|2.26.1-1ubuntu1~16.04.7|2.26.1-1ubuntu1~16.04.8|2.26.1-1ubuntu1~16.04.8+esm1|2.26.1-1ubuntu1~16.04.8+esm3|2.26.1-1ubuntu1~16.04.8+esm4|2.26.1-1ubuntu1~16.04.8+esm5|2.26.1-1ubuntu1~16.04.8+esm6|2.26.1-1ubuntu1~16.04.8+esm7|2.26.1-1ubuntu1~16.04.8+esm9", - "fixed_version_range": "vers:deb/2.26.1-1ubuntu1~16.04.8+esm11", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "binutils", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.29.1-4ubuntu1|2.29.1-6ubuntu1|2.29.1-7ubuntu1|2.29.1-8ubuntu1|2.29.1-10ubuntu1|2.29.1-12ubuntu1|2.30-4ubuntu1|2.30-5ubuntu1|2.30-7ubuntu1|2.30-8ubuntu1|2.30-9ubuntu1|2.30-10ubuntu1|2.30-11ubuntu1|2.30-14ubuntu2|2.30-15ubuntu1|2.30-20ubuntu2~18.04|2.30-21ubuntu1~18.04|2.30-21ubuntu1~18.04.1|2.30-21ubuntu1~18.04.2|2.30-21ubuntu1~18.04.3|2.30-21ubuntu1~18.04.4|2.30-21ubuntu1~18.04.5|2.30-21ubuntu1~18.04.7|2.30-21ubuntu1~18.04.8|2.30-21ubuntu1~18.04.9|2.30-21ubuntu1~18.04.9+esm1|2.30-21ubuntu1~18.04.9+esm3", - "fixed_version_range": "vers:deb/2.30-21ubuntu1~18.04.9+esm4", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "binutils", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.37-7ubuntu1|2.37-9ubuntu1|2.37-10ubuntu1|2.37.50.20220106-2ubuntu1|2.37.90.20220126-0ubuntu1|2.37.90.20220130-0ubuntu2|2.38-1ubuntu1|2.38-2ubuntu1|2.38-3ubuntu1|2.38-4ubuntu2|2.38-4ubuntu2.1|2.38-4ubuntu2.2|2.38-4ubuntu2.3|2.38-4ubuntu2.4|2.38-4ubuntu2.5|2.38-4ubuntu2.6|2.38-4ubuntu2.7", - "fixed_version_range": "vers:deb/2.38-4ubuntu2.8", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "binutils", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.41-5ubuntu1|2.41-6ubuntu1|2.41.50.20231206-1ubuntu1|2.41.50.20231214-1ubuntu1|2.41.50.20231227-1ubuntu1|2.41.90.20240122-1ubuntu1|2.42-2ubuntu1|2.42-3ubuntu1|2.42-4ubuntu1|2.42-4ubuntu2|2.42-4ubuntu2.3|2.42-4ubuntu2.4", - "fixed_version_range": "vers:deb/2.42-4ubuntu2.5", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "binutils", - "version": "", - "qualifiers": "arch=source&distro=plucky", - "subpath": "" - }, - "affected_version_range": "vers:deb/2.43.1-4ubuntu1|2.43.50.20241126-3ubuntu1|2.43.50.20241204-2ubuntu1|2.43.50.20241210-1ubuntu2|2.43.50.20241215-1ubuntu1|2.43.50.20241221-1ubuntu1|2.43.50.20241230-1ubuntu1|2.43.50.20250108-1ubuntu1|2.44-1ubuntu1|2.44-2ubuntu1", - "fixed_version_range": "vers:deb/2.44-3ubuntu1", - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://sourceware.org/bugzilla/attachment.cgi?id=15915" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640#c1" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2025-1179" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://vuldb.com/?ctiid.295082" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://vuldb.com/?id.295082" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://vuldb.com/?submit.495376" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-1179" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.gnu.org/" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "5.0", - "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L" - }, - { - "system": "cvssv3.1", - "value": "7.5", - "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H" - }, - { - "system": "cvssv4", - "value": "2.3", - "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N" - } - ], - "date_published": "2025-02-11T07:15:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-1179.json" - }, - { - "advisory_id": "UBUNTU-CVE-2025-14345", - "aliases": [], - "summary": "A post-authentication\u00a0flaw in the network two-phase commit protocol used for cross-shard transactions in MongoDB Server may lead to logical data inconsistencies under specific conditions which are not predictable and exist for a very short period of time. This error can cause the transaction coordination logic to misinterpret the transaction as committed, resulting in inconsistent state on those shards. This may lead to low integrity and availability impact. This issue impacts MongoDB Server v8.0 versions prior to 8.0.16, MongoDB Server v7.0 versions prior to 7.0.26 and MongoDB server v8.2 versions prior to 8.2.2.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mongodb", - "version": "", - "qualifiers": "arch=source&distro=trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:2.4.6-0ubuntu5|1:2.4.6-0ubuntu6|1:2.4.8-1ubuntu1|1:2.4.8-2|1:2.4.9-1|1:2.4.9-1ubuntu1|1:2.4.9-1ubuntu2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mongodb", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:2.6.10-0ubuntu1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mongodb", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:3.4.7-1|1:3.4.7-1ubuntu1|1:3.4.7-1ubuntu2|1:3.4.7-1ubuntu4|1:3.4.14-3ubuntu1|1:3.4.14-3ubuntu2|1:3.6.3-0ubuntu1|1:3.6.3-0ubuntu1.1|1:3.6.3-0ubuntu1.3|1:3.6.3-0ubuntu1.4", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "mongodb", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.2|1:3.6.9+really3.6.8+90~g8e540c0b6d-0ubuntu5.3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://jira.mongodb.org/browse/SERVER-106075" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2025-14345" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-14345" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, - { - "system": "cvssv3.1", - "value": "4.2", - "scoring_elements": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N" - }, - { - "system": "cvssv3.1", - "value": "5.4", - "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L" - }, - { - "system": "cvssv4", - "value": "2.3", - "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N" - } - ], - "date_published": "2025-12-09T16:17:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-14345.json" - }, - { - "advisory_id": "UBUNTU-CVE-2025-71115", - "aliases": [], - "summary": "In the Linux kernel, the following vulnerability has been resolved: um: init cpu_tasks[] earlier This is currently done in uml_finishsetup(), but e.g. with KCOV enabled we'll crash because some init code can call into e.g. memparse(), which has coverage annotations, and then the checks in check_kcov_mode() crash because current is NULL. Simply initialize the cpu_tasks[] array statically, which fixes the crash. For the later SMP work, it seems to have not really caused any problems yet, but initialize all of the entries anyway.", - "affected_packages": [ - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/3.11.0-12.19|3.12.0-1.3|3.12.0-2.5|3.12.0-2.7|3.12.0-3.8|3.12.0-3.9|3.12.0-4.10|3.12.0-4.12|3.12.0-5.13|3.12.0-7.15|3.13.0-1.16|3.13.0-2.17|3.13.0-3.18|3.13.0-4.19|3.13.0-5.20|3.13.0-6.23|3.13.0-7.25|3.13.0-7.26|3.13.0-8.27|3.13.0-8.28|3.13.0-10.30|3.13.0-11.31|3.13.0-12.32|3.13.0-13.33|3.13.0-14.34|3.13.0-15.35|3.13.0-16.36|3.13.0-17.37|3.13.0-18.38|3.13.0-19.39|3.13.0-19.40|3.13.0-20.42|3.13.0-21.43|3.13.0-22.44|3.13.0-23.45|3.13.0-24.46|3.13.0-24.47|3.13.0-27.50|3.13.0-29.53|3.13.0-30.54|3.13.0-30.55|3.13.0-32.57|3.13.0-33.58|3.13.0-34.60|3.13.0-35.62|3.13.0-36.63|3.13.0-37.64|3.13.0-39.66|3.13.0-40.69|3.13.0-41.70|3.13.0-43.72|3.13.0-44.73|3.13.0-45.74|3.13.0-46.75|3.13.0-46.76|3.13.0-46.77|3.13.0-46.79|3.13.0-48.80|3.13.0-49.81|3.13.0-49.83|3.13.0-51.84|3.13.0-52.85|3.13.0-52.86|3.13.0-53.88|3.13.0-53.89|3.13.0-54.91|3.13.0-55.92|3.13.0-55.94|3.13.0-57.95|3.13.0-58.97|3.13.0-59.98|3.13.0-61.100|3.13.0-62.102|3.13.0-63.103|3.13.0-65.105|3.13.0-65.106|3.13.0-66.108|3.13.0-67.110|3.13.0-68.111|3.13.0-70.113|3.13.0-71.114|3.13.0-73.116|3.13.0-74.118|3.13.0-76.120|3.13.0-77.121|3.13.0-79.123|3.13.0-83.127|3.13.0-85.129|3.13.0-86.130|3.13.0-86.131|3.13.0-87.133|3.13.0-88.135|3.13.0-91.138|3.13.0-92.139|3.13.0-93.140|3.13.0-95.142|3.13.0-96.143|3.13.0-98.145|3.13.0-100.147|3.13.0-101.148|3.13.0-103.150|3.13.0-105.152|3.13.0-106.153|3.13.0-107.154|3.13.0-108.155|3.13.0-109.156|3.13.0-110.157|3.13.0-111.158|3.13.0-112.159|3.13.0-113.160|3.13.0-115.162|3.13.0-116.163|3.13.0-117.164|3.13.0-119.166|3.13.0-121.170|3.13.0-123.172|3.13.0-125.174|3.13.0-126.175|3.13.0-128.177|3.13.0-129.178|3.13.0-132.181|3.13.0-133.182|3.13.0-135.184|3.13.0-137.186|3.13.0-139.188|3.13.0-141.190|3.13.0-142.191|3.13.0-143.192|3.13.0-144.193|3.13.0-145.194|3.13.0-147.196|3.13.0-149.199|3.13.0-151.201|3.13.0-153.203|3.13.0-155.205|3.13.0-156.206|3.13.0-157.207|3.13.0-158.208|3.13.0-160.210|3.13.0-161.211|3.13.0-162.212|3.13.0-163.213|3.13.0-164.214|3.13.0-165.215|3.13.0-166.216|3.13.0-167.217|3.13.0-168.218|3.13.0-169.219|3.13.0-170.220|3.13.0-171.222|3.13.0-172.223|3.13.0-173.224|3.13.0-174.225|3.13.0-175.226|3.13.0-176.227|3.13.0-180.231|3.13.0-181.232|3.13.0-182.233|3.13.0-183.234|3.13.0-184.235|3.13.0-185.236|3.13.0-186.237|3.13.0-187.238|3.13.0-188.239|3.13.0-189.240|3.13.0-190.241|3.13.0-191.242|3.13.0-192.243|3.13.0-193.244|3.13.0-194.245|3.13.0-195.246|3.13.0-196.247|3.13.0-197.248|3.13.0-198.249|3.13.0-199.250|3.13.0-200.251|3.13.0-201.252|3.13.0-202.253|3.13.0-203.254|3.13.0-204.255|3.13.0-205.256|3.13.0-206.257|3.13.0-207.258|3.13.0-208.259|3.13.0-209.260|3.13.0-210.261", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1002.2|4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1009.9|4.4.0-1010.10|4.4.0-1011.11|4.4.0-1012.12|4.4.0-1014.14|4.4.0-1016.16|4.4.0-1017.17|4.4.0-1019.19|4.4.0-1022.22|4.4.0-1023.23|4.4.0-1024.25|4.4.0-1025.26|4.4.0-1027.30|4.4.0-1028.31|4.4.0-1029.32|4.4.0-1031.34|4.4.0-1032.35|4.4.0-1034.37|4.4.0-1036.39|4.4.0-1037.40|4.4.0-1038.41|4.4.0-1039.42|4.4.0-1040.43|4.4.0-1042.45|4.4.0-1044.47|4.4.0-1045.48|4.4.0-1046.50|4.4.0-1048.52|4.4.0-1050.54|4.4.0-1052.56|4.4.0-1054.58|4.4.0-1055.59|4.4.0-1056.60|4.4.0-1058.62|4.4.0-1059.63|4.4.0-1060.64|4.4.0-1061.65|4.4.0-1062.66|4.4.0-1064.68|4.4.0-1065.69|4.4.0-1066.70|4.4.0-1067.71|4.4.0-1073.77|4.4.0-1074.78|4.4.0-1075.79|4.4.0-1076.80|4.4.0-1077.81|4.4.0-1078.82|4.4.0-1081.85|4.4.0-1082.86|4.4.0-1083.87|4.4.0-1085.89|4.4.0-1086.90|4.4.0-1087.91|4.4.0-1088.92|4.4.0-1090.94|4.4.0-1091.95|4.4.0-1092.96|4.4.0-1093.97|4.4.0-1094.99|4.4.0-1095.100|4.4.0-1096.101|4.4.0-1097.102|4.4.0-1098.103|4.4.0-1099.104|4.4.0-1101.106|4.4.0-1102.107|4.4.0-1103.108|4.4.0-1104.109|4.4.0-1107.113|4.4.0-1109.115|4.4.0-1110.116|4.4.0-1111.117|4.4.0-1112.118|4.4.0-1113.119|4.4.0-1114.120|4.4.0-1115.121|4.4.0-1116.122|4.4.0-1117.123|4.4.0-1118.124|4.4.0-1119.125|4.4.0-1120.126|4.4.0-1121.127|4.4.0-1122.128|4.4.0-1123.129|4.4.0-1124.130|4.4.0-1125.131|4.4.0-1127.133|4.4.0-1128.134|4.4.0-1129.135|4.4.0-1130.136|4.4.0-1131.137|4.4.0-1133.139|4.4.0-1134.140|4.4.0-1135.141|4.4.0-1136.142|4.4.0-1137.143|4.4.0-1138.144|4.4.0-1139.145|4.4.0-1140.146|4.4.0-1141.147|4.4.0-1142.148|4.4.0-1143.149|4.4.0-1144.150|4.4.0-1145.151|4.4.0-1146.152|4.4.0-1147.153|4.4.0-1148.154|4.4.0-1149.155|4.4.0-1150.156|4.4.0-1151.157", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1014.14|4.15.0-1015.15|4.15.0-1017.18|4.15.0-1018.19|4.15.0-1019.20|4.15.0-1021.22|4.15.0-1023.24|4.15.0-1024.25|4.15.0-1025.26|4.15.0-1026.27|4.15.0-1027.28|4.15.0-1028.29|4.15.0-1029.31|4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1042.45|4.15.0-1044.70|5.0.0-1020.20~18.04.1|5.0.0-1021.21~18.04.1|5.0.0-1025.26~18.04.1|5.0.0-1026.27~18.04.1|5.0.0-1028.29~18.04.1|5.0.0-1029.30~18.04.1|5.0.0-1031.32|5.0.0-1033.34|5.0.0-1034.35", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1023.24~14.04.1|4.15.0-1030.31~14.04.1|4.15.0-1031.32~14.04.1|4.15.0-1032.33~14.04.2|4.15.0-1035.36~14.04.2|4.15.0-1036.38~14.04.2|4.15.0-1037.39~14.04.2|4.15.0-1039.41~14.04.2|4.15.0-1040.44~14.04.1|4.15.0-1041.45~14.04.1|4.15.0-1042.46~14.04.1|4.15.0-1045.49~14.04.1|4.15.0-1046.50~14.04.1|4.15.0-1047.51~14.04.1|4.15.0-1049.54~14.04.1|4.15.0-1050.55~14.04.1|4.15.0-1051.56~14.04.1|4.15.0-1052.57~14.04.1|4.15.0-1055.60~14.04.1|4.15.0-1056.61~14.04.1|4.15.0-1057.62~14.04.1|4.15.0-1059.64~14.04.1|4.15.0-1060.65~14.04.1|4.15.0-1061.66~14.04.1|4.15.0-1063.68~14.04.1|4.15.0-1064.69~14.04.1|4.15.0-1066.71~14.04.1|4.15.0-1067.72~14.04.1|4.15.0-1069.74~14.04.1|4.15.0-1071.76~14.04.1|4.15.0-1074.79~14.04.1|4.15.0-1077.82~14.04.1|4.15.0-1082.92~14.04.1|4.15.0-1083.93~14.04.1|4.15.0-1089.99~14.04.1|4.15.0-1091.101~14.04.1|4.15.0-1092.102~14.04.1|4.15.0-1093.103~14.04.1|4.15.0-1095.105~14.04.1|4.15.0-1096.106~14.04.1|4.15.0-1098.109~14.04.1|4.15.0-1100.111~14.04.1|4.15.0-1102.113~14.04.1|4.15.0-1103.114~14.04.1|4.15.0-1106.118~14.04.1|4.15.0-1108.120~14.04.1|4.15.0-1109.121~14.04.1|4.15.0-1110.122~14.04.1|4.15.0-1111.123~14.04.1|4.15.0-1112.124~14.04.1|4.15.0-1113.126~14.04.1|4.15.0-1114.127~14.04.1|4.15.0-1115.128~14.04.1|4.15.0-1118.131~14.04.1|4.15.0-1121.134~14.04.1|4.15.0-1122.135~14.04.1|4.15.0-1123.136~14.04.1|4.15.0-1124.137~14.04.1|4.15.0-1125.138~14.04.1|4.15.0-1126.139~14.04.1|4.15.0-1127.140~14.04.1|4.15.0-1129.142~14.04.1|4.15.0-1130.143~14.04.1|4.15.0-1131.144~14.04.1|4.15.0-1133.146~14.04.1|4.15.0-1134.147~14.04.1|4.15.0-1136.149~14.04.1|4.15.0-1137.150~14.04.1|4.15.0-1138.151~14.04.1|4.15.0-1139.152~14.04.1|4.15.0-1142.156~14.04.1|4.15.0-1145.160~14.04.1|4.15.0-1146.161~14.04.1|4.15.0-1149.164~14.04.1|4.15.0-1150.165~14.04.1|4.15.0-1151.166~14.04.1|4.15.0-1153.168~14.04.1|4.15.0-1157.172~14.04.2|4.15.0-1158.173~14.04.1|4.15.0-1159.174~14.04.1|4.15.0-1162.177~14.04.1|4.15.0-1163.178~14.04.1|4.15.0-1164.179~14.04.1|4.15.0-1165.180~14.04.1|4.15.0-1166.181~14.04.1|4.15.0-1167.182~14.04.1|4.15.0-1168.183~14.04.1|4.15.0-1169.184~14.04.1|4.15.0-1170.185~14.04.1|4.15.0-1171.186~14.04.1|4.15.0-1172.187~14.04.1|4.15.0-1173.188~14.04.1|4.15.0-1174.189~14.04.1|4.15.0-1175.190~14.04.1|4.15.0-1176.191~14.04.1|4.15.0-1177.192~14.04.1|4.15.0-1178.193~14.04.1|4.15.0-1179.194~14.04.1|4.15.0-1180.195~14.04.1|4.15.0-1181.196~14.04.1|4.15.0-1182.197~14.04.1|4.15.0-1183.198~14.04.1|4.15.0-1184.199~14.04.1|4.15.0-1185.200~14.04.1|4.15.0-1186.201~14.04.1|4.15.0-1187.202~14.04.1|4.15.0-1188.203~14.04.1|4.15.0-1189.204~14.04.1|4.15.0-1190.205~14.04.1|4.15.0-1191.206~14.04.1|4.15.0-1192.207~14.04.1|4.15.0-1193.208~14.04.1|4.15.0-1194.209~14.04.1|4.15.0-1195.210~14.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lts-xenial", - "version": "", - "qualifiers": "arch=source&distro=esm-infra-legacy/trusty", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-13.29~14.04.1|4.4.0-14.30~14.04.2|4.4.0-15.31~14.04.1|4.4.0-18.34~14.04.1|4.4.0-21.37~14.04.1|4.4.0-22.39~14.04.1|4.4.0-22.40~14.04.1|4.4.0-24.43~14.04.1|4.4.0-28.47~14.04.1|4.4.0-31.50~14.04.1|4.4.0-34.53~14.04.1|4.4.0-36.55~14.04.1|4.4.0-38.57~14.04.1|4.4.0-42.62~14.04.1|4.4.0-45.66~14.04.1|4.4.0-47.68~14.04.1|4.4.0-51.72~14.04.1|4.4.0-53.74~14.04.1|4.4.0-57.78~14.04.1|4.4.0-59.80~14.04.1|4.4.0-62.83~14.04.1|4.4.0-63.84~14.04.2|4.4.0-64.85~14.04.1|4.4.0-66.87~14.04.1|4.4.0-67.88~14.04.1|4.4.0-70.91~14.04.1|4.4.0-71.92~14.04.1|4.4.0-72.93~14.04.1|4.4.0-75.96~14.04.1|4.4.0-78.99~14.04.2|4.4.0-79.100~14.04.1|4.4.0-81.104~14.04.1|4.4.0-83.106~14.04.1|4.4.0-87.110~14.04.1|4.4.0-89.112~14.04.1|4.4.0-91.114~14.04.1|4.4.0-92.115~14.04.1|4.4.0-93.116~14.04.1|4.4.0-96.119~14.04.1|4.4.0-97.120~14.04.1|4.4.0-98.121~14.04.1|4.4.0-101.124~14.04.1|4.4.0-103.126~14.04.1|4.4.0-104.127~14.04.1|4.4.0-108.131~14.04.1|4.4.0-109.132~14.04.1|4.4.0-111.134~14.04.1|4.4.0-112.135~14.04.1|4.4.0-116.140~14.04.1|4.4.0-119.143~14.04.1|4.4.0-121.145~14.04.1|4.4.0-124.148~14.04.1|4.4.0-127.153~14.04.1|4.4.0-128.154~14.04.1|4.4.0-130.156~14.04.1|4.4.0-131.157~14.04.1|4.4.0-133.159~14.04.1|4.4.0-134.160~14.04.1|4.4.0-135.161~14.04.1|4.4.0-137.163~14.04.1|4.4.0-138.164~14.04.1|4.4.0-139.165~14.04.1|4.4.0-140.166~14.04.1|4.4.0-141.167~14.04.1|4.4.0-142.168~14.04.1|4.4.0-143.169~14.04.2|4.4.0-144.170~14.04.1|4.4.0-146.172~14.04.1|4.4.0-148.174~14.04.1|4.4.0-150.176~14.04.1|4.4.0-151.178~14.04.1|4.4.0-154.181~14.04.1|4.4.0-157.185~14.04.1|4.4.0-159.187~14.04.1|4.4.0-161.189~14.04.1|4.4.0-164.192~14.04.1|4.4.0-165.193~14.04.1|4.4.0-166.195~14.04.1|4.4.0-168.197~14.04.1|4.4.0-169.198~14.04.1|4.4.0-170.199~14.04.1|4.4.0-171.200~14.04.1|4.4.0-173.203~14.04.1|4.4.0-174.204~14.04.1|4.4.0-176.206~14.04.1|4.4.0-177.207~14.04.1|4.4.0-178.208~14.04.1|4.4.0-179.209~14.04.1|4.4.0-184.214~14.04.1|4.4.0-185.215~14.04.1|4.4.0-186.216~14.04.1|4.4.0-187.217~14.04.1|4.4.0-189.219~14.04.1|4.4.0-190.220~14.04.1|4.4.0-193.224~14.04.1|4.4.0-194.226~14.04.1|4.4.0-197.229~14.04.1|4.4.0-198.230~14.04.1|4.4.0-200.232~14.04.1|4.4.0-201.233~14.04.1|4.4.0-203.235~14.04.1|4.4.0-204.236~14.04.1|4.4.0-206.238~14.04.1|4.4.0-208.240~14.04.1|4.4.0-209.241~14.04.1|4.4.0-210.242~14.04.1|4.4.0-211.243~14.04.1|4.4.0-212.244~14.04.1|4.4.0-213.245~14.04.1|4.4.0-214.246~14.04.1|4.4.0-215.247~14.04.1|4.4.0-218.251~14.04.1|4.4.0-219.252~14.04.1|4.4.0-221.254~14.04.1|4.4.0-222.255~14.04.1|4.4.0-223.256~14.04.1|4.4.0-224.257~14.04.1|4.4.0-227.261~14.04.1|4.4.0-229.263~14.04.1|4.4.0-230.264~14.04.1|4.4.0-231.265~14.04.1|4.4.0-233.267~14.04.1|4.4.0-234.268~14.04.1|4.4.0-235.269~14.04.1|4.4.0-236.270~14.04.1|4.4.0-237.271~14.04.1|4.4.0-239.273~14.04.1|4.4.0-240.274~14.04.1|4.4.0-241.275~14.04.1|4.4.0-242.276~14.04.1|4.4.0-243.277~14.04.1|4.4.0-244.278~14.04.1|4.4.0-245.279~14.04.1|4.4.0-246.280~14.04.1|4.4.0-248.282~14.04.1|4.4.0-250.284~14.04.1|4.4.0-251.285~14.04.1|4.4.0-252.286~14.04.1|4.4.0-253.287~14.04.1|4.4.0-254.288~14.04.1|4.4.0-256.290~14.04.1|4.4.0-257.291~14.04.1|4.4.0-258.292~14.04.2|4.4.0-259.293~14.04.1|4.4.0-260.294~14.04.1|4.4.0-261.295~14.04.1|4.4.0-262.296~14.04.1|4.4.0-263.297~14.04.1|4.4.0-264.298~14.04.1|4.4.0-266.300~14.04.1|4.4.0-267.301~14.04.1|4.4.0-268.302~14.04.1|4.4.0-269.303~14.04.1|4.4.0-270.304~14.04.1|4.4.0-271.305~14.04.1|4.4.0-272.306~14.04.1|4.4.0-273.307~14.04.1|4.4.0-274.308~14.04.1|4.4.0-276.310~14.04.1|4.4.0-277.311~14.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.2.0-16.19|4.2.0-17.21|4.2.0-19.23|4.3.0-1.10|4.3.0-2.11|4.3.0-5.16|4.3.0-6.17|4.3.0-7.18|4.4.0-2.16|4.4.0-4.19|4.4.0-6.21|4.4.0-7.22|4.4.0-8.23|4.4.0-9.24|4.4.0-10.25|4.4.0-11.26|4.4.0-12.28|4.4.0-13.29|4.4.0-14.30|4.4.0-15.31|4.4.0-16.32|4.4.0-17.33|4.4.0-18.34|4.4.0-21.37|4.4.0-22.39|4.4.0-22.40|4.4.0-24.43|4.4.0-28.47|4.4.0-31.50|4.4.0-34.53|4.4.0-36.55|4.4.0-38.57|4.4.0-42.62|4.4.0-43.63|4.4.0-45.66|4.4.0-47.68|4.4.0-51.72|4.4.0-53.74|4.4.0-57.78|4.4.0-59.80|4.4.0-62.83|4.4.0-63.84|4.4.0-64.85|4.4.0-65.86|4.4.0-66.87|4.4.0-67.88|4.4.0-70.91|4.4.0-71.92|4.4.0-72.93|4.4.0-75.96|4.4.0-77.98|4.4.0-78.99|4.4.0-79.100|4.4.0-81.104|4.4.0-83.106|4.4.0-87.110|4.4.0-89.112|4.4.0-91.114|4.4.0-92.115|4.4.0-93.116|4.4.0-96.119|4.4.0-97.120|4.4.0-98.121|4.4.0-101.124|4.4.0-103.126|4.4.0-104.127|4.4.0-108.131|4.4.0-109.132|4.4.0-112.135|4.4.0-116.140|4.4.0-119.143|4.4.0-121.145|4.4.0-122.146|4.4.0-124.148|4.4.0-127.153|4.4.0-128.154|4.4.0-130.156|4.4.0-131.157|4.4.0-133.159|4.4.0-134.160|4.4.0-135.161|4.4.0-137.163|4.4.0-138.164|4.4.0-139.165|4.4.0-140.166|4.4.0-141.167|4.4.0-142.168|4.4.0-143.169|4.4.0-145.171|4.4.0-146.172|4.4.0-148.174|4.4.0-150.176|4.4.0-151.178|4.4.0-154.181|4.4.0-157.185|4.4.0-159.187|4.4.0-161.189|4.4.0-164.192|4.4.0-165.193|4.4.0-166.195|4.4.0-168.197|4.4.0-169.198|4.4.0-170.199|4.4.0-171.200|4.4.0-173.203|4.4.0-174.204|4.4.0-176.206|4.4.0-177.207|4.4.0-178.208|4.4.0-179.209|4.4.0-184.214|4.4.0-185.215|4.4.0-186.216|4.4.0-187.217|4.4.0-189.219|4.4.0-190.220|4.4.0-193.224|4.4.0-194.226|4.4.0-197.229|4.4.0-198.230|4.4.0-200.232|4.4.0-201.233|4.4.0-203.235|4.4.0-204.236|4.4.0-206.238|4.4.0-208.240|4.4.0-209.241|4.4.0-210.242|4.4.0-211.243|4.4.0-212.244|4.4.0-213.245|4.4.0-214.246|4.4.0-216.249|4.4.0-217.250|4.4.0-218.251|4.4.0-219.252|4.4.0-221.254|4.4.0-222.255|4.4.0-223.256|4.4.0-224.257|4.4.0-227.261|4.4.0-229.263|4.4.0-230.264|4.4.0-231.265|4.4.0-233.267|4.4.0-234.268|4.4.0-235.269|4.4.0-236.270|4.4.0-237.271|4.4.0-239.273|4.4.0-240.274|4.4.0-241.275|4.4.0-242.276|4.4.0-243.277|4.4.0-244.278|4.4.0-245.279|4.4.0-246.280|4.4.0-248.282|4.4.0-250.284|4.4.0-251.285|4.4.0-252.286|4.4.0-253.287|4.4.0-254.288|4.4.0-256.290|4.4.0-257.291|4.4.0-258.292|4.4.0-259.293|4.4.0-260.294|4.4.0-261.295|4.4.0-262.296|4.4.0-263.297|4.4.0-264.298|4.4.0-266.300|4.4.0-267.301|4.4.0-268.302|4.4.0-269.303|4.4.0-270.304|4.4.0-271.305|4.4.0-272.306|4.4.0-273.307|4.4.0-274.308|4.4.0-276.310|4.4.0-277.311", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1001.10|4.4.0-1003.12|4.4.0-1004.13|4.4.0-1007.16|4.4.0-1009.18|4.4.0-1011.20|4.4.0-1012.21|4.4.0-1013.22|4.4.0-1016.25|4.4.0-1017.26|4.4.0-1018.27|4.4.0-1020.29|4.4.0-1022.31|4.4.0-1026.35|4.4.0-1028.37|4.4.0-1030.39|4.4.0-1031.40|4.4.0-1032.41|4.4.0-1035.44|4.4.0-1037.46|4.4.0-1038.47|4.4.0-1039.48|4.4.0-1041.50|4.4.0-1043.52|4.4.0-1044.53|4.4.0-1047.56|4.4.0-1048.57|4.4.0-1049.58|4.4.0-1050.59|4.4.0-1052.61|4.4.0-1054.63|4.4.0-1055.64|4.4.0-1057.66|4.4.0-1060.69|4.4.0-1061.70|4.4.0-1062.71|4.4.0-1063.72|4.4.0-1065.75|4.4.0-1066.76|4.4.0-1067.77|4.4.0-1069.79|4.4.0-1070.80|4.4.0-1072.82|4.4.0-1073.83|4.4.0-1074.84|4.4.0-1075.85|4.4.0-1077.87|4.4.0-1079.89|4.4.0-1081.91|4.4.0-1083.93|4.4.0-1084.94|4.4.0-1085.96|4.4.0-1087.98|4.4.0-1088.99|4.4.0-1090.101|4.4.0-1092.103|4.4.0-1094.105|4.4.0-1095.106|4.4.0-1096.107|4.4.0-1098.109|4.4.0-1099.110|4.4.0-1100.111|4.4.0-1101.112|4.4.0-1102.113|4.4.0-1104.115|4.4.0-1105.116|4.4.0-1106.117|4.4.0-1107.118|4.4.0-1109.120|4.4.0-1110.121|4.4.0-1111.123|4.4.0-1112.124|4.4.0-1113.126|4.4.0-1114.127|4.4.0-1117.131|4.4.0-1118.132|4.4.0-1119.133|4.4.0-1121.135|4.4.0-1122.136|4.4.0-1123.137|4.4.0-1124.138|4.4.0-1126.140|4.4.0-1127.141|4.4.0-1128.142|4.4.0-1129.143|4.4.0-1130.144|4.4.0-1131.145|4.4.0-1132.146|4.4.0-1133.147|4.4.0-1134.148|4.4.0-1135.149|4.4.0-1137.151|4.4.0-1138.152|4.4.0-1139.153|4.4.0-1140.154|4.4.0-1143.158|4.4.0-1145.160|4.4.0-1146.161|4.4.0-1147.162|4.4.0-1148.163|4.4.0-1150.165|4.4.0-1151.166|4.4.0-1152.167|4.4.0-1153.168|4.4.0-1154.169|4.4.0-1155.170|4.4.0-1156.171|4.4.0-1157.172|4.4.0-1158.173|4.4.0-1159.174|4.4.0-1160.175|4.4.0-1161.176|4.4.0-1162.177|4.4.0-1163.178|4.4.0-1164.179|4.4.0-1165.180|4.4.0-1166.181|4.4.0-1167.182|4.4.0-1168.183|4.4.0-1169.184|4.4.0-1171.186|4.4.0-1172.187|4.4.0-1173.188|4.4.0-1174.189|4.4.0-1175.190|4.4.0-1176.191|4.4.0-1177.192|4.4.0-1178.193|4.4.0-1179.194|4.4.0-1180.195|4.4.0-1181.196|4.4.0-1182.197|4.4.0-1183.198|4.4.0-1184.199|4.4.0-1185.200|4.4.0-1186.201|4.4.0-1187.202|4.4.0-1188.203|4.4.0-1189.204", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-hwe", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1030.31~16.04.1|4.15.0-1031.33~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1035.37~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1039.41~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43~16.04.1|4.15.0-1043.45~16.04.1|4.15.0-1044.46~16.04.1|4.15.0-1045.47~16.04.1|4.15.0-1047.49~16.04.1|4.15.0-1048.50~16.04.1|4.15.0-1050.52~16.04.1|4.15.0-1051.53~16.04.1|4.15.0-1052.54~16.04.1|4.15.0-1054.56~16.04.1|4.15.0-1056.58~16.04.1|4.15.0-1057.59~16.04.1|4.15.0-1058.60~16.04.1|4.15.0-1060.62~16.04.1|4.15.0-1063.67~16.04.1|4.15.0-1065.69~16.04.1|4.15.0-1066.70~16.04.1|4.15.0-1067.71~16.04.1|4.15.0-1073.77~16.04.1|4.15.0-1074.78~16.04.1|4.15.0-1079.83~16.04.1|4.15.0-1080.84~16.04.1|4.15.0-1082.86~16.04.1|4.15.0-1083.87~16.04.1|4.15.0-1085.90~16.04.1|4.15.0-1088.93~16.04.1|4.15.0-1090.95~16.04.1|4.15.0-1091.96~16.04.1|4.15.0-1093.99~16.04.1|4.15.0-1094.101~16.04.1|4.15.0-1095.102~16.04.1|4.15.0-1096.103~16.04.1|4.15.0-1097.104~16.04.1|4.15.0-1098.105~16.04.1|4.15.0-1099.106~16.04.1|4.15.0-1102.109~16.04.1|4.15.0-1103.110~16.04.1|4.15.0-1106.113~16.04.1|4.15.0-1109.116~16.04.1|4.15.0-1110.117~16.04.1|4.15.0-1111.118~16.04.1|4.15.0-1112.119~16.04.1|4.15.0-1113.120~16.04.1|4.15.0-1115.122~16.04.1|4.15.0-1116.123~16.04.1|4.15.0-1118.125~16.04.1|4.15.0-1119.126~16.04.2|4.15.0-1120.128~16.04.1|4.15.0-1123.132~16.04.1|4.15.0-1124.133~16.04.1|4.15.0-1126.135~16.04.2|4.15.0-1127.136~16.04.1|4.15.0-1128.137~16.04.1|4.15.0-1130.139~16.04.1|4.15.0-1133.143~16.04.1|4.15.0-1136.147~16.04.1|4.15.0-1137.148~16.04.1|4.15.0-1139.150~16.04.1|4.15.0-1140.151~16.04.1|4.15.0-1141.152~16.04.1|4.15.0-1142.154~16.04.1|4.15.0-1143.155~16.04.1|4.15.0-1146.158~16.04.2|4.15.0-1147.159~16.04.1|4.15.0-1148.160~16.04.1|4.15.0-1151.164~16.04.1|4.15.0-1153.166~16.04.1|4.15.0-1154.167~16.04.1|4.15.0-1155.168~16.04.1|4.15.0-1156.169~16.04.1|4.15.0-1157.170~16.04.1|4.15.0-1158.171~16.04.1|4.15.0-1159.172~16.04.1|4.15.0-1160.173~16.04.1|4.15.0-1161.174~16.04.1|4.15.0-1162.175~16.04.1|4.15.0-1163.176~16.04.1|4.15.0-1164.177~16.04.1|4.15.0-1165.178~16.04.1|4.15.0-1166.179~16.04.1|4.15.0-1167.180~16.04.1|4.15.0-1168.181~16.04.1|4.15.0-1169.182~16.04.1|4.15.0-1170.183~16.04.1|4.15.0-1172.185~16.04.1|4.15.0-1173.186~16.04.1|4.15.0-1174.187~16.04.1|4.15.0-1175.188~16.04.1|4.15.0-1176.189~16.04.1|4.15.0-1177.190~16.04.1|4.15.0-1178.191~16.04.1|4.15.0-1179.192~16.04.1|4.15.0-1180.193~16.04.1|4.15.0-1181.194~16.04.1|4.15.0-1182.195~16.04.1|4.15.0-1183.196~16.04.1|4.15.0-1184.197~16.04.1|4.15.0-1185.198~16.04.1|4.15.0-1186.199~16.04.1|4.15.0-1187.200~16.04.1|4.15.0-1188.201~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.11.0-1009.9|4.11.0-1011.11|4.11.0-1013.13|4.11.0-1014.14|4.11.0-1015.15|4.11.0-1016.16|4.13.0-1005.7|4.13.0-1006.8|4.13.0-1007.9|4.13.0-1009.12|4.13.0-1011.14|4.13.0-1012.15|4.13.0-1014.17|4.13.0-1016.19|4.13.0-1018.21|4.15.0-1013.13~16.04.2|4.15.0-1014.14~16.04.1|4.15.0-1018.18~16.04.1|4.15.0-1019.19~16.04.1|4.15.0-1021.21~16.04.1|4.15.0-1022.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1025.26~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1030.31~16.04.1|4.15.0-1031.32~16.04.1|4.15.0-1032.33~16.04.1|4.15.0-1035.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1039.43|4.15.0-1040.44|4.15.0-1041.45|4.15.0-1042.46|4.15.0-1045.49|4.15.0-1046.50|4.15.0-1047.51|4.15.0-1049.54|4.15.0-1050.55|4.15.0-1051.56|4.15.0-1052.57|4.15.0-1055.60|4.15.0-1056.61|4.15.0-1057.62|4.15.0-1059.64|4.15.0-1060.65|4.15.0-1061.66|4.15.0-1063.68|4.15.0-1064.69|4.15.0-1066.71|4.15.0-1067.72|4.15.0-1069.74|4.15.0-1071.76|4.15.0-1075.80|4.15.0-1077.82|4.15.0-1082.92~16.04.1|4.15.0-1083.93~16.04.1|4.15.0-1089.99~16.04.1|4.15.0-1091.101~16.04.1|4.15.0-1092.102~16.04.1|4.15.0-1093.103~16.04.1|4.15.0-1095.105~16.04.1|4.15.0-1096.106~16.04.1|4.15.0-1098.109~16.04.1|4.15.0-1100.111~16.04.1|4.15.0-1102.113~16.04.1|4.15.0-1103.114~16.04.1|4.15.0-1106.118~16.04.1|4.15.0-1108.120~16.04.1|4.15.0-1109.121~16.04.1|4.15.0-1110.122~16.04.1|4.15.0-1111.123~16.04.1|4.15.0-1112.124~16.04.1|4.15.0-1113.126~16.04.1|4.15.0-1114.127~16.04.1|4.15.0-1115.128~16.04.1|4.15.0-1118.131~16.04.1|4.15.0-1121.134~16.04.1|4.15.0-1122.135~16.04.1|4.15.0-1123.136~16.04.1|4.15.0-1124.137~16.04.1|4.15.0-1125.138~16.04.1|4.15.0-1126.139~16.04.1|4.15.0-1127.140~16.04.1|4.15.0-1129.142~16.04.1|4.15.0-1130.143~16.04.1|4.15.0-1131.144~16.04.1|4.15.0-1133.146~16.04.1|4.15.0-1134.147~16.04.1|4.15.0-1136.149~16.04.1|4.15.0-1137.150~16.04.1|4.15.0-1138.151~16.04.1|4.15.0-1139.152~16.04.1|4.15.0-1142.156~16.04.1|4.15.0-1145.160~16.04.1|4.15.0-1146.161~16.04.1|4.15.0-1149.164~16.04.1|4.15.0-1150.165~16.04.1|4.15.0-1151.166~16.04.1|4.15.0-1153.168~16.04.1|4.15.0-1159.174~16.04.1|4.15.0-1162.177~16.04.1|4.15.0-1163.178~16.04.1|4.15.0-1164.179~16.04.1|4.15.0-1165.180~16.04.1|4.15.0-1166.181~16.04.1|4.15.0-1167.182~16.04.1|4.15.0-1168.183~16.04.1|4.15.0-1169.184~16.04.1|4.15.0-1170.185~16.04.1|4.15.0-1171.186~16.04.1|4.15.0-1172.187~16.04.1|4.15.0-1173.188~16.04.1|4.15.0-1174.189~16.04.1|4.15.0-1175.190~16.04.1|4.15.0-1176.191~16.04.1|4.15.0-1177.192~16.04.1|4.15.0-1178.193~16.04.1|4.15.0-1179.194~16.04.1|4.15.0-1180.195~16.04.1|4.15.0-1181.196~16.04.1|4.15.0-1182.197~16.04.1|4.15.0-1183.198~16.04.1|4.15.0-1184.199~16.04.1|4.15.0-1185.200~16.04.1|4.15.0-1186.201~16.04.1|4.15.0-1187.202~16.04.1|4.15.0-1188.203~16.04.1|4.15.0-1189.204~16.04.1|4.15.0-1190.205~16.04.1|4.15.0-1191.206~16.04.1|4.15.0-1192.207~16.04.1|4.15.0-1193.208~16.04.1|4.15.0-1194.209~16.04.1|4.15.0-1195.210~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-23.24~20.04.1|5.8.0-25.26~20.04.1|5.8.0-28.30~20.04.1|5.8.0-29.31~20.04.1|5.8.0-31.33~20.04.1|5.8.0-33.36~20.04.1|5.8.0-34.37~20.04.2|5.8.0-36.40~20.04.1|5.8.0-38.43~20.04.1|5.8.0-40.45~20.04.1|5.8.0-41.46~20.04.1|5.8.0-43.49~20.04.1|5.8.0-44.50~20.04.1|5.8.0-45.51~20.04.1|5.8.0-48.54~20.04.1|5.8.0-49.55~20.04.1|5.8.0-50.56~20.04.1|5.8.0-53.60~20.04.1|5.8.0-55.62~20.04.1|5.8.0-59.66~20.04.1|5.8.0-63.71~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1005.5|6.14.0-1007.7+25.10.2|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.10.0-1004.4|4.10.0-1006.6|4.10.0-1007.7|4.10.0-1008.8|4.10.0-1009.9|4.13.0-1002.5|4.13.0-1006.9|4.13.0-1007.10|4.13.0-1008.11|4.13.0-1011.15|4.13.0-1012.16|4.13.0-1013.17|4.13.0-1015.19|4.13.0-1017.21|4.13.0-1019.23|4.15.0-1014.14~16.04.1|4.15.0-1015.15~16.04.1|4.15.0-1017.18~16.04.1|4.15.0-1018.19~16.04.2|4.15.0-1019.20~16.04.1|4.15.0-1021.22~16.04.1|4.15.0-1023.24~16.04.1|4.15.0-1024.25~16.04.2|4.15.0-1025.26~16.04.1|4.15.0-1026.27~16.04.1|4.15.0-1027.28~16.04.1|4.15.0-1028.29~16.04.1|4.15.0-1029.31~16.04.1|4.15.0-1030.32~16.04.1|4.15.0-1032.34~16.04.1|4.15.0-1033.35~16.04.1|4.15.0-1034.36~16.04.1|4.15.0-1036.38~16.04.1|4.15.0-1037.39~16.04.1|4.15.0-1040.42~16.04.1|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1046.49|4.15.0-1047.50|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.56|4.15.0-1055.59|4.15.0-1058.62|4.15.0-1060.64|4.15.0-1061.65|4.15.0-1071.81~16.04.1|4.15.0-1077.87~16.04.1|4.15.0-1078.88~16.04.1|4.15.0-1080.90~16.04.1|4.15.0-1081.92~16.04.1|4.15.0-1083.94~16.04.1|4.15.0-1084.95~16.04.1|4.15.0-1086.98~16.04.1|4.15.0-1087.100~16.04.1|4.15.0-1088.101~16.04.1|4.15.0-1090.103~16.04.1|4.15.0-1091.104~16.04.1|4.15.0-1092.105~16.04.1|4.15.0-1093.106~16.04.1|4.15.0-1094.107~16.04.1|4.15.0-1095.108~16.04.1|4.15.0-1096.109~16.04.1|4.15.0-1097.110~16.04.1|4.15.0-1098.111~16.04.1|4.15.0-1099.112~16.04.1|4.15.0-1100.113~16.04.1|4.15.0-1103.116~16.04.1|4.15.0-1106.120~16.04.1|4.15.0-1107.121~16.04.1|4.15.0-1108.122~16.04.1|4.15.0-1109.123~16.04.1|4.15.0-1110.124~16.04.1|4.15.0-1111.125~16.04.1|4.15.0-1112.126~16.04.1|4.15.0-1114.128~16.04.1|4.15.0-1115.129~16.04.1|4.15.0-1116.130~16.04.1|4.15.0-1118.132~16.04.1|4.15.0-1119.133~16.04.1|4.15.0-1120.134~16.04.1|4.15.0-1121.135~16.04.1|4.15.0-1122.136~16.04.1|4.15.0-1124.138~16.04.1|4.15.0-1127.142~16.04.1|4.15.0-1130.146~16.04.1|4.15.0-1131.147~16.04.1|4.15.0-1134.150~16.04.2|4.15.0-1135.151~16.04.2|4.15.0-1136.152~16.04.1|4.15.0-1137.153~16.04.1|4.15.0-1138.154~16.04.1|4.15.0-1141.157~16.04.2|4.15.0-1142.158~16.04.1|4.15.0-1143.159~16.04.1|4.15.0-1146.162~16.04.1|4.15.0-1147.163~16.04.1|4.15.0-1148.164~16.04.1|4.15.0-1149.165~16.04.1|4.15.0-1150.166~16.04.1|4.15.0-1151.167~16.04.1|4.15.0-1152.168~16.04.1|4.15.0-1153.170~16.04.1|4.15.0-1154.171~16.04.1|4.15.0-1155.172~16.04.1|4.15.0-1156.173~16.04.1|4.15.0-1157.174~16.04.1|4.15.0-1158.175~16.04.1|4.15.0-1159.176~16.04.1|4.15.0-1160.177~16.04.1|4.15.0-1161.178~16.04.1|4.15.0-1162.179~16.04.1|4.15.0-1163.180~16.04.1|4.15.0-1164.181~16.04.1|4.15.0-1165.182~16.04.1|4.15.0-1166.183~16.04.1|4.15.0-1167.184~16.04.2|4.15.0-1168.185~16.04.1|4.15.0-1169.186~16.04.1|4.15.0-1170.187~16.04.1|4.15.0-1171.188~16.04.1|4.15.0-1172.189~16.04.1|4.15.0-1173.190~16.04.1|4.15.0-1174.191~16.04.1|4.15.0-1175.192~16.04.1|4.15.0-1176.193~16.04.1|4.15.0-1177.194~16.04.1|4.15.0-1178.195~16.04.1|4.15.0-1179.196~16.04.1|4.15.0-1180.197~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.8.0-36.36~16.04.1|4.8.0-39.42~16.04.1|4.8.0-41.44~16.04.1|4.8.0-42.45~16.04.1|4.8.0-44.47~16.04.1|4.8.0-45.48~16.04.1|4.8.0-46.49~16.04.1|4.8.0-49.52~16.04.1|4.8.0-51.54~16.04.1|4.8.0-52.55~16.04.1|4.8.0-53.56~16.04.1|4.8.0-54.57~16.04.1|4.8.0-56.61~16.04.1|4.8.0-58.63~16.04.1|4.10.0-27.30~16.04.2|4.10.0-28.32~16.04.2|4.10.0-30.34~16.04.1|4.10.0-32.36~16.04.1|4.10.0-33.37~16.04.1|4.10.0-35.39~16.04.1|4.10.0-37.41~16.04.1|4.10.0-38.42~16.04.1|4.10.0-40.44~16.04.1|4.10.0-42.46~16.04.1|4.13.0-26.29~16.04.2|4.13.0-31.34~16.04.1|4.13.0-32.35~16.04.1|4.13.0-36.40~16.04.1|4.13.0-37.42~16.04.1|4.13.0-38.43~16.04.1|4.13.0-39.44~16.04.1|4.13.0-41.46~16.04.1|4.13.0-43.48~16.04.1|4.13.0-45.50~16.04.1|4.15.0-24.26~16.04.1|4.15.0-29.31~16.04.1|4.15.0-30.32~16.04.1|4.15.0-32.35~16.04.1|4.15.0-33.36~16.04.1|4.15.0-34.37~16.04.1|4.15.0-36.39~16.04.1|4.15.0-38.41~16.04.1|4.15.0-39.42~16.04.1|4.15.0-42.45~16.04.1|4.15.0-43.46~16.04.1|4.15.0-45.48~16.04.1|4.15.0-46.49~16.04.1|4.15.0-47.50~16.04.1|4.15.0-48.51~16.04.1|4.15.0-50.54~16.04.1|4.15.0-51.55~16.04.1|4.15.0-52.56~16.04.1|4.15.0-54.58~16.04.1|4.15.0-55.60~16.04.2|4.15.0-58.64~16.04.1|4.15.0-60.67~16.04.1|4.15.0-62.69~16.04.1|4.15.0-64.73~16.04.1|4.15.0-65.74~16.04.1|4.15.0-66.75~16.04.1|4.15.0-69.78~16.04.1|4.15.0-70.79~16.04.1|4.15.0-72.81~16.04.1|4.15.0-74.83~16.04.1|4.15.0-76.86~16.04.1|4.15.0-88.88~16.04.1|4.15.0-91.92~16.04.1|4.15.0-96.97~16.04.1|4.15.0-99.100~16.04.1|4.15.0-101.102~16.04.1|4.15.0-106.107~16.04.1|4.15.0-107.108~16.04.1|4.15.0-112.113~16.04.1|4.15.0-115.116~16.04.1|4.15.0-117.118~16.04.1|4.15.0-118.119~16.04.1|4.15.0-120.122~16.04.1|4.15.0-122.124~16.04.1|4.15.0-123.126~16.04.1|4.15.0-126.129~16.04.1|4.15.0-128.131~16.04.1|4.15.0-129.132~16.04.1|4.15.0-132.136~16.04.1|4.15.0-133.137~16.04.1|4.15.0-136.140~16.04.1|4.15.0-137.141~16.04.1|4.15.0-139.143~16.04.1|4.15.0-140.144~16.04.1|4.15.0-142.146~16.04.1|4.15.0-143.147~16.04.3|4.15.0-144.148~16.04.1|4.15.0-147.151~16.04.1|4.15.0-151.157~16.04.1|4.15.0-153.160~16.04.1|4.15.0-154.161~16.04.1|4.15.0-156.163~16.04.1|4.15.0-158.166~16.04.1|4.15.0-159.167~16.04.1|4.15.0-161.169~16.04.1|4.15.0-162.170~16.04.1|4.15.0-163.171~16.04.1|4.15.0-166.174~16.04.1|4.15.0-167.175~16.04.1|4.15.0-169.177~16.04.1|4.15.0-171.180~16.04.1|4.15.0-173.182~16.04.1|4.15.0-175.184~16.04.1|4.15.0-176.185~16.04.1|4.15.0-177.186~16.04.1|4.15.0-180.189~16.04.1|4.15.0-184.194~16.04.1|4.15.0-187.198~16.04.1|4.15.0-188.199~16.04.1|4.15.0-189.200~16.04.1|4.15.0-191.202~16.04.1|4.15.0-192.203~16.04.1|4.15.0-193.204~16.04.1|4.15.0-194.205~16.04.1|4.15.0-196.207~16.04.1|4.15.0-197.208~16.04.1|4.15.0-200.211~16.04.2|4.15.0-201.212~16.04.1|4.15.0-202.213~16.04.1|4.15.0-206.217~16.04.1|4.15.0-208.219~16.04.1|4.15.0-209.220~16.04.1|4.15.0-210.221~16.04.1|4.15.0-211.222~16.04.1|4.15.0-212.223~16.04.1|4.15.0-213.224~16.04.1|4.15.0-214.225~16.04.1|4.15.0-216.227~16.04.1|4.15.0-218.229~16.04.1|4.15.0-219.230~16.04.1|4.15.0-220.231~16.04.1|4.15.0-221.232~16.04.1|4.15.0-222.233~16.04.1|4.15.0-223.235~16.04.1|4.15.0-224.236~16.04.1|4.15.0-225.237~16.04.1|4.15.0-226.238~16.04.1|4.15.0-227.239~16.04.1|4.15.0-228.240~16.04.1|4.15.0-229.241~16.04.1|4.15.0-230.242~16.04.1|4.15.0-231.243~16.04.1|4.15.0-232.244~16.04.1|4.15.0-233.245~16.04.1|4.15.0-234.246~16.04.1|4.15.0-235.247~16.04.1|4.15.0-236.248~16.04.1|4.15.0-237.249~16.04.1|4.15.0-238.250~16.04.1|4.15.0-239.251~16.04.1|4.15.0-240.252~16.04.1|4.15.0-241.253~16.04.1|4.15.0-242.254~16.04.1|4.15.0-243.255~16.04.1|4.15.0-245.257~16.04.1|4.15.0-246.258~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-edge", - "version": "", - "qualifiers": "arch=source&distro=xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.8.0-28.30~16.04.1|4.8.0-30.32~16.04.1|4.8.0-32.34~16.04.1|4.8.0-34.36~16.04.1|4.10.0-14.16~16.04.1|4.10.0-19.21~16.04.1|4.10.0-20.22~16.04.1|4.10.0-21.23~16.04.1|4.10.0-22.24~16.04.1|4.10.0-24.28~16.04.1|4.10.0-26.30~16.04.1|4.11.0-13.19~16.04.1|4.11.0-14.20~16.04.1|4.13.0-16.19~16.04.3|4.13.0-17.20~16.04.1|4.13.0-19.22~16.04.1|4.13.0-21.24~16.04.1|4.13.0-25.29~16.04.2|4.15.0-13.14~16.04.1|4.15.0-15.16~16.04.1|4.15.0-20.21~16.04.1|4.15.0-22.24~16.04.1|4.15.0-23.25~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1004.9|4.4.0-1007.12|4.4.0-1008.13|4.4.0-1009.14|4.4.0-1010.15|4.4.0-1012.17|4.4.0-1013.18|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1020.25|4.4.0-1021.26|4.4.0-1023.28|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1029.34|4.4.0-1031.37|4.4.0-1032.38|4.4.0-1033.39|4.4.0-1035.41|4.4.0-1036.42|4.4.0-1037.43|4.4.0-1038.44|4.4.0-1039.45|4.4.0-1040.46|4.4.0-1041.47|4.4.0-1043.49|4.4.0-1044.50|4.4.0-1046.52|4.4.0-1047.53|4.4.0-1048.55|4.4.0-1051.58|4.4.0-1052.59|4.4.0-1054.61|4.4.0-1056.63|4.4.0-1058.65|4.4.0-1059.66|4.4.0-1060.67|4.4.0-1062.69|4.4.0-1063.70|4.4.0-1064.71|4.4.0-1065.72|4.4.0-1066.73|4.4.0-1068.75|4.4.0-1069.76|4.4.0-1070.77|4.4.0-1071.78|4.4.0-1075.82|4.4.0-1076.83|4.4.0-1077.84|4.4.0-1078.85|4.4.0-1079.86|4.4.0-1080.87|4.4.0-1082.91|4.4.0-1084.93|4.4.0-1085.94|4.4.0-1087.96|4.4.0-1088.97|4.4.0-1089.98|4.4.0-1090.99|4.4.0-1091.100|4.4.0-1092.101|4.4.0-1093.102|4.4.0-1094.103|4.4.0-1095.104|4.4.0-1096.105|4.4.0-1097.106|4.4.0-1098.107|4.4.0-1099.108|4.4.0-1100.109|4.4.0-1102.111|4.4.0-1103.112|4.4.0-1104.113|4.4.0-1105.114|4.4.0-1108.118|4.4.0-1110.120|4.4.0-1111.121|4.4.0-1112.122|4.4.0-1113.123|4.4.0-1114.124|4.4.0-1115.125|4.4.0-1116.126|4.4.0-1117.127|4.4.0-1118.128|4.4.0-1119.129|4.4.0-1120.130|4.4.0-1121.131|4.4.0-1122.132|4.4.0-1123.133|4.4.0-1124.134|4.4.0-1125.135|4.4.0-1126.136|4.4.0-1128.138|4.4.0-1129.139|4.4.0-1130.140|4.4.0-1131.141|4.4.0-1132.142|4.4.0-1134.144|4.4.0-1135.145|4.4.0-1136.146|4.4.0-1137.147|4.4.0-1138.148|4.4.0-1139.149|4.4.0-1140.151|4.4.0-1141.152|4.4.0-1142.153|4.4.0-1143.154|4.4.0-1144.155|4.4.0-1145.156|4.4.0-1146.157|4.4.0-1147.158|4.4.0-1148.159|4.4.0-1149.160|4.4.0-1150.161|4.4.0-1151.162|4.4.0-1152.163", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1007.9~16.04.1|4.15.0-1008.10~16.04.1|4.15.0-1009.11~16.04.1|4.15.0-1010.12~16.04.1|4.15.0-1011.13~16.04.1|4.15.0-1013.15~16.04.1|4.15.0-1014.16~16.04.1|4.15.0-1015.17~16.04.1|4.15.0-1017.19~16.04.2|4.15.0-1018.20~16.04.1|4.15.0-1021.23~16.04.1|4.15.0-1022.25~16.04.1|4.15.0-1023.26~16.04.1|4.15.0-1025.28~16.04.1|4.15.0-1026.29~16.04.1|4.15.0-1027.30~16.04.1|4.15.0-1029.32~16.04.1|4.15.0-1030.33~16.04.1|4.15.0-1031.34~16.04.1|4.15.0-1033.36~16.04.1|4.15.0-1035.38~16.04.1|4.15.0-1037.41~16.04.1|4.15.0-1038.42~16.04.1|4.15.0-1039.43~16.04.1|4.15.0-1045.49~16.04.1|4.15.0-1046.50~16.04.1|4.15.0-1050.54~16.04.1|4.15.0-1051.55~16.04.1|4.15.0-1053.57~16.04.1|4.15.0-1054.58~16.04.1|4.15.0-1056.61~16.04.1|4.15.0-1058.64~16.04.1|4.15.0-1059.65~16.04.1|4.15.0-1061.67~16.04.1|4.15.0-1062.68~16.04.1|4.15.0-1064.71~16.04.1|4.15.0-1065.73~16.04.1|4.15.0-1066.74~16.04.1|4.15.0-1067.75~16.04.1|4.15.0-1068.76~16.04.1|4.15.0-1069.77~16.04.1|4.15.0-1070.78~16.04.1|4.15.0-1071.79~16.04.1|4.15.0-1072.80~16.04.1|4.15.0-1075.83~16.04.1|4.15.0-1078.86~16.04.1|4.15.0-1079.87~16.04.1|4.15.0-1080.88~16.04.1|4.15.0-1081.89~16.04.1|4.15.0-1082.90~16.04.1|4.15.0-1083.91~16.04.1|4.15.0-1084.92~16.04.1|4.15.0-1085.93~16.04.1|4.15.0-1086.94~16.04.1|4.15.0-1087.95~16.04.1|4.15.0-1089.98~16.04.1|4.15.0-1090.99~16.04.1|4.15.0-1091.100~16.04.1|4.15.0-1092.101~16.04.1|4.15.0-1093.102~16.04.1|4.15.0-1095.104~16.04.1|4.15.0-1098.108~16.04.1|4.15.0-1101.112~16.04.1|4.15.0-1102.113~16.04.1|4.15.0-1104.115~16.04.1|4.15.0-1105.116~16.04.1|4.15.0-1106.117~16.04.1|4.15.0-1107.118~16.04.1|4.15.0-1108.119~16.04.1|4.15.0-1111.122~16.04.2|4.15.0-1112.123~16.04.1|4.15.0-1113.124~16.04.1|4.15.0-1115.126~16.04.1|4.15.0-1116.127~16.04.1|4.15.0-1117.128~16.04.1|4.15.0-1118.129~16.04.1|4.15.0-1119.130~16.04.1|4.15.0-1120.131~16.04.1|4.15.0-1121.132~16.04.1|4.15.0-1122.133~16.04.1|4.15.0-1123.134~16.04.1|4.15.0-1124.135~16.04.1|4.15.0-1125.136~16.04.1|4.15.0-1126.137~16.04.1|4.15.0-1127.138~16.04.1|4.15.0-1128.139~16.04.1|4.15.0-1129.140~16.04.1|4.15.0-1130.141~16.04.1|4.15.0-1131.142~16.04.1|4.15.0-1132.143~16.04.1|4.15.0-1133.144~16.04.1|4.15.0-1134.145~16.04.1|4.15.0-1135.146~16.04.1|4.15.0-1136.147~16.04.1|4.15.0-1137.148~16.04.1|4.15.0-1138.149~16.04.1|4.15.0-1139.150~16.04.1|4.15.0-1140.151~16.04.1|4.15.0-1141.152~16.04.1|4.15.0-1142.153~16.04.1|4.15.0-1143.154~16.04.1|4.15.0-1144.155~16.04.1|4.15.0-1145.156~16.04.1|4.15.0-1148.159~16.04.1|4.15.0-1149.160~16.04.1|4.15.0-1150.161~16.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1003.3|4.4.0-1005.5|4.4.0-1006.6|4.4.0-1008.10|4.4.0-1010.13|4.4.0-1011.14|4.4.0-1012.16|4.4.0-1013.17|4.4.0-1015.20|4.4.0-1017.22|4.4.0-1019.24|4.4.0-1021.26|4.4.0-1022.27|4.4.0-1023.28|4.4.0-1025.30|4.4.0-1026.31|4.4.0-1027.32|4.4.0-1028.33|4.4.0-1029.34|4.4.0-1031.36|4.4.0-1032.37|4.4.0-1033.38|4.4.0-1034.39|4.4.0-1041.46|4.4.0-1042.47|4.4.0-1043.48|4.4.0-1044.49|4.4.0-1045.50|4.4.0-1046.51|4.4.0-1048.53|4.4.0-1049.55|4.4.0-1051.57|4.4.0-1052.58|4.4.0-1054.60|4.4.0-1055.61|4.4.0-1056.62|4.4.0-1057.63|4.4.0-1058.64|4.4.0-1060.66|4.4.0-1061.67|4.4.0-1062.68|4.4.0-1063.69|4.4.0-1064.70|4.4.0-1065.71|4.4.0-1066.72|4.4.0-1067.73|4.4.0-1068.74|4.4.0-1069.75|4.4.0-1071.77|4.4.0-1072.78|4.4.0-1073.79|4.4.0-1074.80|4.4.0-1077.84|4.4.0-1079.86|4.4.0-1080.87|4.4.0-1081.88|4.4.0-1082.89|4.4.0-1083.90|4.4.0-1084.91|4.4.0-1085.92|4.4.0-1086.93|4.4.0-1088.95|4.4.0-1089.96|4.4.0-1090.97|4.4.0-1091.98|4.4.0-1092.99|4.4.0-1093.100|4.4.0-1094.101|4.4.0-1095.102|4.4.0-1097.104|4.4.0-1099.106|4.4.0-1100.107|4.4.0-1101.108|4.4.0-1102.109|4.4.0-1103.110|4.4.0-1104.111|4.4.0-1105.112|4.4.0-1106.113|4.4.0-1107.114|4.4.0-1108.115|4.4.0-1109.116|4.4.0-1110.117|4.4.0-1111.118|4.4.0-1112.119|4.4.0-1113.120|4.4.0-1114.121|4.4.0-1115.122|4.4.0-1116.123|4.4.0-1117.124|4.4.0-1119.126|4.4.0-1120.127|4.4.0-1121.128", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/xenial", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.4.0-1001.1|4.4.0-1002.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-allwinner-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1007.7~22.04.1|5.19.0-1009.9~22.04.1|5.19.0-1010.10~22.04.1|5.19.0-1011.11~22.04.1|5.19.0-1012.12~22.04.1|5.19.0-1013.13~22.04.1|5.19.0-1014.14~22.04.1|5.19.0-1015.15~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1004.4|6.14.0-1007.7+25.10.1|6.16.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.13.0-16.19|4.13.0-17.20|4.13.0-25.29|4.13.0-32.35|4.15.0-10.11|4.15.0-12.13|4.15.0-13.14|4.15.0-15.16|4.15.0-19.20|4.15.0-20.21|4.15.0-22.24|4.15.0-23.25|4.15.0-24.26|4.15.0-29.31|4.15.0-30.32|4.15.0-32.35|4.15.0-33.36|4.15.0-34.37|4.15.0-36.39|4.15.0-38.41|4.15.0-39.42|4.15.0-42.45|4.15.0-43.46|4.15.0-44.47|4.15.0-45.48|4.15.0-46.49|4.15.0-47.50|4.15.0-48.51|4.15.0-50.54|4.15.0-51.55|4.15.0-52.56|4.15.0-54.58|4.15.0-55.60|4.15.0-58.64|4.15.0-60.67|4.15.0-62.69|4.15.0-64.73|4.15.0-65.74|4.15.0-66.75|4.15.0-69.78|4.15.0-70.79|4.15.0-72.81|4.15.0-74.84|4.15.0-76.86|4.15.0-88.88|4.15.0-91.92|4.15.0-96.97|4.15.0-99.100|4.15.0-101.102|4.15.0-106.107|4.15.0-108.109|4.15.0-109.110|4.15.0-111.112|4.15.0-112.113|4.15.0-115.116|4.15.0-117.118|4.15.0-118.119|4.15.0-121.123|4.15.0-122.124|4.15.0-123.126|4.15.0-124.127|4.15.0-126.129|4.15.0-128.131|4.15.0-129.132|4.15.0-130.134|4.15.0-132.136|4.15.0-134.138|4.15.0-135.139|4.15.0-136.140|4.15.0-137.141|4.15.0-139.143|4.15.0-140.144|4.15.0-141.145|4.15.0-142.146|4.15.0-143.147|4.15.0-144.148|4.15.0-147.151|4.15.0-151.157|4.15.0-153.160|4.15.0-154.161|4.15.0-156.163|4.15.0-158.166|4.15.0-159.167|4.15.0-161.169|4.15.0-162.170|4.15.0-163.171|4.15.0-166.174|4.15.0-167.175|4.15.0-169.177|4.15.0-171.180|4.15.0-173.182|4.15.0-175.184|4.15.0-176.185|4.15.0-177.186|4.15.0-180.189|4.15.0-184.194|4.15.0-187.198|4.15.0-188.199|4.15.0-189.200|4.15.0-191.202|4.15.0-192.203|4.15.0-193.204|4.15.0-194.205|4.15.0-196.207|4.15.0-197.208|4.15.0-200.211|4.15.0-201.212|4.15.0-202.213|4.15.0-204.215|4.15.0-206.217|4.15.0-208.220|4.15.0-209.220|4.15.0-210.221|4.15.0-211.222|4.15.0-212.223|4.15.0-213.224|4.15.0-214.225|4.15.0-216.227|4.15.0-218.229|4.15.0-219.230|4.15.0-220.231|4.15.0-221.232|4.15.0-222.233|4.15.0-223.235|4.15.0-224.236|4.15.0-225.237|4.15.0-226.238|4.15.0-227.239|4.15.0-228.240|4.15.0-229.241|4.15.0-230.242|4.15.0-231.243|4.15.0-232.244|4.15.0-233.245|4.15.0-234.246|4.15.0-235.247|4.15.0-236.248|4.15.0-237.249|4.15.0-238.250|4.15.0-239.251|4.15.0-240.252|4.15.0-241.253|4.15.0-242.254|4.15.0-243.255|4.15.0-245.257|4.15.0-246.258", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1|4.15.0-1003.3|4.15.0-1005.5|4.15.0-1006.6|4.15.0-1007.7|4.15.0-1009.9|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1027.27|4.15.0-1029.30|4.15.0-1031.33|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1035.37|4.15.0-1037.39|4.15.0-1039.41|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1043.45|4.15.0-1044.46|4.15.0-1045.47|4.15.0-1047.49|4.15.0-1048.50|4.15.0-1050.52|4.15.0-1051.53|4.15.0-1052.54|4.15.0-1054.56|4.15.0-1056.58|4.15.0-1057.59|4.15.0-1058.60|4.15.0-1060.62|4.15.0-1063.67|4.15.0-1065.69|4.15.0-1066.70|4.15.0-1067.71|4.15.0-1073.77|4.15.0-1076.80|4.15.0-1077.81|4.15.0-1079.83|4.15.0-1080.84|4.15.0-1082.86|4.15.0-1083.87|4.15.0-1086.91|4.15.0-1087.92|4.15.0-1088.93|4.15.0-1090.95|4.15.0-1091.96|4.15.0-1092.98|4.15.0-1093.99|4.15.0-1094.101|4.15.0-1095.102|4.15.0-1096.103|4.15.0-1097.104|4.15.0-1098.105|4.15.0-1099.106|4.15.0-1101.108|4.15.0-1102.109|4.15.0-1103.110|4.15.0-1106.113|4.15.0-1109.116|4.15.0-1110.117|4.15.0-1111.118|4.15.0-1112.119|4.15.0-1114.121|4.15.0-1115.122|4.15.0-1116.123|4.15.0-1118.125|4.15.0-1119.127|4.15.0-1121.129|4.15.0-1123.132|4.15.0-1124.133|4.15.0-1126.135|4.15.0-1127.136|4.15.0-1128.137|4.15.0-1130.139|4.15.0-1133.143|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.152|4.15.0-1142.154|4.15.0-1143.155|4.15.0-1144.156|4.15.0-1146.158|4.15.0-1147.159|4.15.0-1148.160|4.15.0-1150.163|4.15.0-1151.164|4.15.0-1153.166|4.15.0-1154.167|4.15.0-1155.168|4.15.0-1156.169|4.15.0-1157.170|4.15.0-1158.171|4.15.0-1159.172|4.15.0-1160.173|4.15.0-1161.174|4.15.0-1162.175|4.15.0-1163.176|4.15.0-1164.177|4.15.0-1165.178|4.15.0-1166.179|4.15.0-1167.180|4.15.0-1168.181|4.15.0-1169.182|4.15.0-1170.183|4.15.0-1172.185|4.15.0-1173.186|4.15.0-1174.187|4.15.0-1175.188|4.15.0-1176.189|4.15.0-1177.190|4.15.0-1178.191|4.15.0-1179.192|4.15.0-1180.193|4.15.0-1181.194|4.15.0-1182.195|4.15.0-1183.196|4.15.0-1184.197|4.15.0-1185.198|4.15.0-1186.199|4.15.0-1187.200|4.15.0-1188.201", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.0", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1021.24~18.04.1|5.0.0-1022.25~18.04.1|5.0.0-1023.26~18.04.1|5.0.0-1024.27~18.04.1|5.0.0-1025.28|5.0.0-1027.30", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1019.21~18.04.1|5.3.0-1023.25~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.2|5.3.0-1033.35|5.3.0-1034.36|5.3.0-1035.37", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1018.18~18.04.1|5.4.0-1020.20~18.04.2|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.30~18.04.1|5.4.0-1030.31~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1035.37~18.04.1|5.4.0-1037.39~18.04.1|5.4.0-1038.40~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1041.43~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1045.47~18.04.1|5.4.0-1047.49~18.04.1|5.4.0-1048.50~18.04.1|5.4.0-1049.51~18.04.1|5.4.0-1051.53~18.04.1|5.4.0-1054.57~18.04.1|5.4.0-1055.58~18.04.1|5.4.0-1056.59~18.04.1|5.4.0-1057.60~18.04.1|5.4.0-1058.61~18.04.3|5.4.0-1059.62~18.04.1|5.4.0-1060.63~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1064.67~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1066.69~18.04.1|5.4.0-1068.72~18.04.1|5.4.0-1069.73~18.04.1|5.4.0-1071.76~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.87~18.04.1|5.4.0-1081.88~18.04.1|5.4.0-1083.90~18.04.1|5.4.0-1084.91~18.04.1|5.4.0-1085.92~18.04.1|5.4.0-1086.93~18.04.1|5.4.0-1088.96~18.04.1|5.4.0-1089.97~18.04.1|5.4.0-1090.98~18.04.1|5.4.0-1092.100~18.04.2|5.4.0-1093.102~18.04.2|5.4.0-1094.102~18.04.1|5.4.0-1096.104~18.04.1|5.4.0-1097.105~18.04.1|5.4.0-1099.107~18.04.1|5.4.0-1100.108~18.04.1|5.4.0-1101.109~18.04.1|5.4.0-1103.111~18.04.1|5.4.0-1104.112~18.04.1|5.4.0-1105.113~18.04.1|5.4.0-1106.114~18.04.1|5.4.0-1107.115~18.04.1|5.4.0-1108.116~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.2|5.4.0-1113.123~18.04.1|5.4.0-1114.124~18.04.1|5.4.0-1116.126~18.04.1|5.4.0-1117.127~18.04.1|5.4.0-1118.128~18.04.1|5.4.0-1119.129~18.04.1|5.4.0-1120.130~18.04.1|5.4.0-1121.131~18.04.1|5.4.0-1122.132~18.04.1|5.4.0-1123.133~18.04.1|5.4.0-1124.134~18.04.1|5.4.0-1125.135~18.04.1|5.4.0-1126.136~18.04.1|5.4.0-1127.137~18.04.2|5.4.0-1128.138~18.04.1|5.4.0-1129.139~18.04.1|5.4.0-1130.140~18.04.1|5.4.0-1131.141~18.04.1|5.4.0-1132.142~18.04.1|5.4.0-1133.143~18.04.1|5.4.0-1134.144~18.04.1|5.4.0-1135.145~18.04.1|5.4.0-1136.146~18.04.1|5.4.0-1137.147~18.04.1|5.4.0-1139.149~18.04.1|5.4.0-1142.152~18.04.1|5.4.0-1144.154~18.04.1|5.4.0-1145.155~18.04.1|5.4.0-1146.156~18.04.1|5.4.0-1147.157~18.04.1|5.4.0-1148.158~18.04.1|5.4.0-1149.159~18.04.1|5.4.0-1150.160~18.04.1|5.4.0-1151.161~18.04.1|5.4.0-1152.162~18.04.1|5.4.0-1153.163~18.04.1|5.4.0-1154.164~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1008.8|4.15.0-1009.9|4.15.0-1012.12|4.15.0-1013.13|4.15.0-1014.14|4.15.0-1018.18|4.15.0-1019.19|4.15.0-1021.21|4.15.0-1022.23|4.15.0-1023.24|4.15.0-1025.26|4.15.0-1028.29|4.15.0-1030.31|4.15.0-1031.32|4.15.0-1032.33|4.15.0-1035.36|4.15.0-1036.38|4.15.0-1037.39|4.18.0-1011.11~18.04.1|4.18.0-1013.13~18.04.1|4.18.0-1014.14~18.04.1|4.18.0-1018.18~18.04.1|4.18.0-1019.19~18.04.1|4.18.0-1020.20~18.04.1|4.18.0-1023.24~18.04.1|4.18.0-1024.25~18.04.1|4.18.0-1025.27~18.04.1|5.0.0-1014.14~18.04.1|5.0.0-1016.17~18.04.1|5.0.0-1018.19~18.04.1|5.0.0-1020.21~18.04.1|5.0.0-1022.23~18.04.1|5.0.0-1023.24~18.04.1|5.0.0-1025.27~18.04.1|5.0.0-1027.29~18.04.1|5.0.0-1028.30~18.04.1|5.0.0-1029.31~18.04.1|5.0.0-1031.33|5.0.0-1032.34|5.0.0-1035.37|5.0.0-1036.38", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-4.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1082.92|4.15.0-1083.93|4.15.0-1089.99|4.15.0-1091.101|4.15.0-1092.102|4.15.0-1093.103|4.15.0-1095.105|4.15.0-1096.106|4.15.0-1099.110|4.15.0-1100.111|4.15.0-1102.113|4.15.0-1103.114|4.15.0-1104.116|4.15.0-1106.118|4.15.0-1108.120|4.15.0-1109.121|4.15.0-1110.122|4.15.0-1111.123|4.15.0-1112.125|4.15.0-1113.126|4.15.0-1114.127|4.15.0-1115.128|4.15.0-1118.131|4.15.0-1121.134|4.15.0-1122.135|4.15.0-1123.136|4.15.0-1124.137|4.15.0-1125.138|4.15.0-1126.139|4.15.0-1127.140|4.15.0-1129.142|4.15.0-1130.143|4.15.0-1131.144|4.15.0-1133.146|4.15.0-1134.147|4.15.0-1136.149|4.15.0-1137.150|4.15.0-1138.151|4.15.0-1139.152|4.15.0-1142.156|4.15.0-1145.160|4.15.0-1146.161|4.15.0-1149.164|4.15.0-1150.165|4.15.0-1151.166|4.15.0-1153.168|4.15.0-1157.172|4.15.0-1158.173|4.15.0-1159.174|4.15.0-1161.176|4.15.0-1162.177|4.15.0-1163.178|4.15.0-1164.179|4.15.0-1165.180|4.15.0-1166.181|4.15.0-1167.182|4.15.0-1168.183|4.15.0-1169.184|4.15.0-1170.185|4.15.0-1171.186|4.15.0-1172.187|4.15.0-1173.188|4.15.0-1174.189|4.15.0-1175.190|4.15.0-1176.191|4.15.0-1177.192|4.15.0-1178.193|4.15.0-1179.194|4.15.0-1180.195|4.15.0-1181.196|4.15.0-1182.197|4.15.0-1183.198|4.15.0-1184.199|4.15.0-1185.200|4.15.0-1186.201|4.15.0-1187.202|4.15.0-1188.203|4.15.0-1189.204|4.15.0-1190.205|4.15.0-1191.206|4.15.0-1192.207|4.15.0-1193.208|4.15.0-1194.209|4.15.0-1195.210", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1007.8~18.04.1|5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1019.20~18.04.1|5.3.0-1020.21~18.04.1|5.3.0-1022.23~18.04.1|5.3.0-1028.29~18.04.1|5.3.0-1031.32~18.04.1|5.3.0-1032.33~18.04.1|5.3.0-1034.35~18.04.1|5.3.0-1035.36", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1020.20~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1023.23~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1026.26~18.04.1|5.4.0-1031.32~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1035.36~18.04.1|5.4.0-1036.38~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1040.42~18.04.1|5.4.0-1041.43~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1044.46~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1047.49~18.04.1|5.4.0-1048.50~18.04.1|5.4.0-1049.51~18.04.1|5.4.0-1051.53~18.04.1|5.4.0-1055.57~18.04.1|5.4.0-1056.58~18.04.1|5.4.0-1058.60~18.04.1|5.4.0-1059.62~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1062.65~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1064.67~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1067.70~18.04.1|5.4.0-1068.71~18.04.1|5.4.0-1069.72~18.04.1|5.4.0-1070.73~18.04.1|5.4.0-1072.75~18.04.1|5.4.0-1073.76~18.04.1|5.4.0-1074.77~18.04.1|5.4.0-1077.80~18.04.1|5.4.0-1078.81~18.04.1|5.4.0-1080.83~18.04.2|5.4.0-1083.87~18.04.1|5.4.0-1085.90~18.04.1|5.4.0-1086.91~18.04.1|5.4.0-1089.94~18.04.1|5.4.0-1090.95~18.04.1|5.4.0-1091.96~18.04.1|5.4.0-1094.100~18.04.1|5.4.0-1095.101~18.04.1|5.4.0-1098.104~18.04.2|5.4.0-1100.106~18.04.1|5.4.0-1101.107~18.04.1|5.4.0-1103.109~18.04.1|5.4.0-1104.110~18.04.1|5.4.0-1105.111~18.04.1|5.4.0-1106.112~18.04.1|5.4.0-1107.113~18.04.1|5.4.0-1108.114~18.04.1|5.4.0-1109.115~18.04.1|5.4.0-1110.116~18.04.1|5.4.0-1111.117~18.04.1|5.4.0-1112.118~18.04.1|5.4.0-1113.119~18.04.1|5.4.0-1115.122~18.04.1|5.4.0-1116.123~18.04.1|5.4.0-1117.124~18.04.1|5.4.0-1118.125~18.04.1|5.4.0-1119.126~18.04.2|5.4.0-1120.127~18.04.1|5.4.0-1121.128~18.04.1|5.4.0-1122.129~18.04.1|5.4.0-1123.130~18.04.1|5.4.0-1124.131~18.04.1|5.4.0-1126.133~18.04.1|5.4.0-1127.134~18.04.1|5.4.0-1128.135~18.04.1|5.4.0-1129.136~18.04.1|5.4.0-1130.137~18.04.1|5.4.0-1131.138~18.04.1|5.4.0-1132.139~18.04.1|5.4.0-1133.140~18.04.1|5.4.0-1134.141~18.04.1|5.4.0-1135.142~18.04.1|5.4.0-1136.143~18.04.1|5.4.0-1137.144~18.04.1|5.4.0-1138.145~18.04.1|5.4.0-1139.146~18.04.1|5.4.0-1140.147~18.04.1|5.4.0-1142.149~18.04.1|5.4.0-1143.150~18.04.1|5.4.0-1145.152~18.04.1|5.4.0-1147.154~18.04.1|5.4.0-1148.155~18.04.1|5.4.0-1149.156~18.04.1|5.4.0-1150.157~18.04.1|5.4.0-1151.158~18.04.1|5.4.0-1152.159~18.04.1|5.4.0-1153.160~18.04.1|5.4.0-1154.161~18.04.1|5.4.0-1156.163~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-edge", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.18.0-1006.6~18.04.1|4.18.0-1007.7~18.04.1|4.18.0-1008.8~18.04.1|5.0.0-1012.12~18.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.0", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.0.0-1006.6|6.0.0-1007.7|6.0.0-1008.8|6.0.0-1009.9|6.0.0-1010.10|6.0.0-1011.11|6.0.0-1012.12|6.0.0-1013.13|6.0.0-1014.14|6.0.0-1015.15|6.0.0-1016.16|6.0.0-1017.17|6.0.0-1018.18|6.0.0-1019.19|6.0.0-1020.20|6.0.0-1021.21", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-4.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1071.81|4.15.0-1077.87|4.15.0-1078.88|4.15.0-1080.90|4.15.0-1081.92|4.15.0-1083.94|4.15.0-1084.95|4.15.0-1086.98|4.15.0-1087.100|4.15.0-1088.101|4.15.0-1090.103|4.15.0-1091.104|4.15.0-1092.105|4.15.0-1093.106|4.15.0-1094.107|4.15.0-1095.108|4.15.0-1096.109|4.15.0-1097.110|4.15.0-1098.111|4.15.0-1099.112|4.15.0-1100.113|4.15.0-1103.116|4.15.0-1106.120|4.15.0-1107.121|4.15.0-1108.122|4.15.0-1109.123|4.15.0-1110.124|4.15.0-1111.125|4.15.0-1112.126|4.15.0-1114.128|4.15.0-1115.129|4.15.0-1116.130|4.15.0-1118.132|4.15.0-1119.133|4.15.0-1120.134|4.15.0-1121.135|4.15.0-1122.136|4.15.0-1124.138|4.15.0-1127.142|4.15.0-1130.146|4.15.0-1131.147|4.15.0-1134.150|4.15.0-1135.151|4.15.0-1136.152|4.15.0-1137.153|4.15.0-1138.154|4.15.0-1141.157|4.15.0-1142.158|4.15.0-1143.159|4.15.0-1145.161|4.15.0-1146.162|4.15.0-1147.163|4.15.0-1148.164|4.15.0-1149.165|4.15.0-1150.166|4.15.0-1151.167|4.15.0-1152.168|4.15.0-1153.170|4.15.0-1154.171|4.15.0-1155.172|4.15.0-1156.173|4.15.0-1157.174|4.15.0-1158.175|4.15.0-1159.176|4.15.0-1160.177|4.15.0-1161.178|4.15.0-1162.179|4.15.0-1163.180|4.15.0-1164.181|4.15.0-1165.182|4.15.0-1166.183|4.15.0-1167.184|4.15.0-1168.185|4.15.0-1169.186|4.15.0-1170.187|4.15.0-1171.188|4.15.0-1172.189|4.15.0-1173.190|4.15.0-1174.191|4.15.0-1175.192|4.15.0-1176.193|4.15.0-1177.194|4.15.0-1178.195|4.15.0-1179.196|4.15.0-1180.197", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1008.9~18.04.1|5.3.0-1009.10~18.04.1|5.3.0-1010.11~18.04.1|5.3.0-1012.13~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.17~18.04.1|5.3.0-1017.18~18.04.1|5.3.0-1018.19~18.04.1|5.3.0-1020.22~18.04.1|5.3.0-1026.28~18.04.1|5.3.0-1029.31~18.04.1|5.3.0-1030.32~18.04.1|5.3.0-1032.34~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1019.19~18.04.2|5.4.0-1021.21~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1032.34~18.04.1|5.4.0-1033.35~18.04.1|5.4.0-1034.37~18.04.1|5.4.0-1036.39~18.04.1|5.4.0-1037.40~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1040.43~18.04.1|5.4.0-1041.44~18.04.1|5.4.0-1042.45~18.04.1|5.4.0-1043.46~18.04.1|5.4.0-1044.47~18.04.2|5.4.0-1046.49~18.04.1|5.4.0-1049.53~18.04.1|5.4.0-1051.55~18.04.1|5.4.0-1052.56~18.04.1|5.4.0-1053.57~18.04.1|5.4.0-1055.59~18.04.1|5.4.0-1056.60~18.04.1|5.4.0-1057.61~18.04.1|5.4.0-1058.62~18.04.1|5.4.0-1059.63~18.04.1|5.4.0-1060.64~18.04.1|5.4.0-1062.66~18.04.1|5.4.0-1063.67~18.04.1|5.4.0-1064.68~18.04.1|5.4.0-1065.69~18.04.1|5.4.0-1067.71~18.04.1|5.4.0-1068.72~18.04.1|5.4.0-1069.73~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1073.78~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.87~18.04.1|5.4.0-1083.91~18.04.1|5.4.0-1084.92~18.04.1|5.4.0-1086.94~18.04.1|5.4.0-1087.95~18.04.1|5.4.0-1089.97~18.04.1|5.4.0-1092.101~18.04.1|5.4.0-1093.102~18.04.1|5.4.0-1096.105~18.04.2|5.4.0-1097.106~18.04.1|5.4.0-1098.107~18.04.1|5.4.0-1100.109~18.04.1|5.4.0-1101.110~18.04.1|5.4.0-1102.111~18.04.2|5.4.0-1103.112~18.04.1|5.4.0-1104.113~18.04.1|5.4.0-1105.114~18.04.1|5.4.0-1106.115~18.04.1|5.4.0-1107.116~18.04.1|5.4.0-1108.117~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.1|5.4.0-1113.122~18.04.1|5.4.0-1115.124~18.04.1|5.4.0-1116.125~18.04.1|5.4.0-1117.126~18.04.1|5.4.0-1118.127~18.04.1|5.4.0-1120.129~18.04.1|5.4.0-1121.130~18.04.1|5.4.0-1122.131~18.04.1|5.4.0-1123.132~18.04.1|5.4.0-1124.133~18.04.1|5.4.0-1125.134~18.04.1|5.4.0-1126.135~18.04.1|5.4.0-1127.136~18.04.1|5.4.0-1128.137~18.04.1|5.4.0-1129.138~18.04.1|5.4.0-1130.139~18.04.1|5.4.0-1132.141~18.04.1|5.4.0-1133.142~18.04.1|5.4.0-1134.143~18.04.1|5.4.0-1135.144~18.04.1|5.4.0-1136.145~18.04.1|5.4.0-1137.146~18.04.1|5.4.0-1138.147~18.04.1|5.4.0-1139.148~18.04.1|5.4.0-1140.149~18.04.1|5.4.0-1141.150~18.04.1|5.4.0-1142.151~18.04.1|5.4.0-1143.152~18.04.1|5.4.0-1145.154~18.04.1|5.4.0-1147.156~18.04.1|5.4.0-1148.157~18.04.1|5.4.0-1149.158~18.04.1|5.4.0-1150.159~18.04.1|5.4.0-1151.160~18.04.1|5.4.0-1152.161~18.04.1|5.4.0-1153.162~18.04.1|5.4.0-1154.163~18.04.1|5.4.0-1155.164~18.04.1|5.4.0-1156.165~18.04.1|5.4.0-1157.166~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-4.15", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1030.32|4.15.0-1032.34|4.15.0-1033.35|4.15.0-1034.36|4.15.0-1036.38|4.15.0-1037.39|4.15.0-1040.42|4.15.0-1041.43|4.15.0-1042.44|4.15.0-1044.46|4.15.0-1045.48|4.15.0-1046.49|4.15.0-1048.51|4.15.0-1049.52|4.15.0-1050.53|4.15.0-1052.55|4.15.0-1055.58|4.15.0-1057.60|4.15.0-1058.61|4.15.0-1059.62|4.15.0-1063.66|4.15.0-1064.67|4.15.0-1066.69|4.15.0-1067.70|4.15.0-1069.72|4.15.0-1070.73|4.15.0-1072.76|4.15.0-1073.78|4.15.0-1074.79|4.15.0-1076.81|4.15.0-1077.82|4.15.0-1078.83|4.15.0-1079.84", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-5.4", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1025.25~18.04.1|5.4.0-1027.28~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1032.34~18.04.1|5.4.0-1033.35~18.04.1|5.4.0-1035.37~18.04.1|5.4.0-1036.38~18.04.1|5.4.0-1037.39~18.04.1|5.4.0-1039.41~18.04.1|5.4.0-1040.42~18.04.1|5.4.0-1042.44~18.04.1|5.4.0-1043.45~18.04.1|5.4.0-1044.46~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1049.52~18.04.1|5.4.0-1051.54~18.04.1|5.4.0-1052.55~18.04.1|5.4.0-1053.56~18.04.1|5.4.0-1054.57~18.04.1|5.4.0-1055.58~18.04.1|5.4.0-1056.59~18.04.1|5.4.0-1057.60~18.04.1|5.4.0-1059.62~18.04.1|5.4.0-1061.64~18.04.1|5.4.0-1062.65~18.04.1|5.4.0-1063.66~18.04.1|5.4.0-1065.68~18.04.1|5.4.0-1066.69~18.04.1|5.4.0-1067.70~18.04.1|5.4.0-1068.71~18.04.1|5.4.0-1071.76~18.04.3|5.4.0-1072.77~18.04.1|5.4.0-1074.79~18.04.1|5.4.0-1076.82~18.04.1|5.4.0-1078.84~18.04.1|5.4.0-1080.86~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gkeop-5.4", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1001.1|5.4.0-1003.3|5.4.0-1004.5|5.4.0-1005.6|5.4.0-1007.8~18.04.1|5.4.0-1008.9~18.04.1|5.4.0-1009.10~18.04.1|5.4.0-1010.11~18.04.1|5.4.0-1011.12~18.04.2|5.4.0-1012.13~18.04.1|5.4.0-1013.14~18.04.1|5.4.0-1014.15~18.04.1|5.4.0-1015.16~18.04.1|5.4.0-1016.17~18.04.1|5.4.0-1018.19~18.04.1|5.4.0-1021.22~18.04.1|5.4.0-1022.23~18.04.1|5.4.0-1023.24~18.04.1|5.4.0-1024.25~18.04.1|5.4.0-1025.26~18.04.1|5.4.0-1026.27~18.04.1|5.4.0-1027.28~18.04.1|5.4.0-1029.30~18.04.2|5.4.0-1031.32~18.04.1|5.4.0-1032.33~18.04.1|5.4.0-1033.34~18.04.1|5.4.0-1034.35~18.04.1|5.4.0-1036.37~18.04.1|5.4.0-1037.38~18.04.1|5.4.0-1038.39~18.04.1|5.4.0-1039.40~18.04.1|5.4.0-1040.41~18.04.1|5.4.0-1043.44~18.04.1|5.4.0-1046.48~18.04.1|5.4.0-1048.51~18.04.1|5.4.0-1049.52~18.04.1|5.4.0-1051.54~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.18.0-13.14~18.04.1|4.18.0-14.15~18.04.1|4.18.0-15.16~18.04.1|4.18.0-16.17~18.04.1|4.18.0-17.18~18.04.1|4.18.0-18.19~18.04.1|4.18.0-20.21~18.04.1|4.18.0-21.22~18.04.1|4.18.0-22.23~18.04.1|4.18.0-24.25~18.04.1|4.18.0-25.26~18.04.1|5.0.0-23.24~18.04.1|5.0.0-25.26~18.04.1|5.0.0-27.28~18.04.1|5.0.0-29.31~18.04.1|5.0.0-31.33~18.04.1|5.0.0-32.34~18.04.2|5.0.0-35.38~18.04.1|5.0.0-36.39~18.04.1|5.0.0-37.40~18.04.1|5.3.0-26.28~18.04.1|5.3.0-28.30~18.04.1|5.3.0-40.32~18.04.1|5.3.0-42.34~18.04.1|5.3.0-45.37~18.04.1|5.3.0-46.38~18.04.1|5.3.0-51.44~18.04.2|5.3.0-53.47~18.04.1|5.3.0-59.53~18.04.1|5.3.0-61.55~18.04.1|5.3.0-62.56~18.04.1|5.3.0-64.58~18.04.1|5.3.0-65.59|5.3.0-66.60|5.3.0-67.61|5.3.0-68.63|5.3.0-69.65|5.3.0-70.66|5.3.0-72.68|5.3.0-73.69|5.3.0-74.70|5.3.0-75.71|5.3.0-76.72", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-37.41~18.04.1|5.4.0-39.43~18.04.1|5.4.0-40.44~18.04.1|5.4.0-42.46~18.04.1|5.4.0-45.49~18.04.2|5.4.0-47.51~18.04.1|5.4.0-48.52~18.04.1|5.4.0-51.56~18.04.1|5.4.0-52.57~18.04.1|5.4.0-53.59~18.04.1|5.4.0-54.60~18.04.1|5.4.0-56.62~18.04.1|5.4.0-58.64~18.04.1|5.4.0-59.65~18.04.1|5.4.0-60.67~18.04.1|5.4.0-62.70~18.04.1|5.4.0-64.72~18.04.1|5.4.0-65.73~18.04.1|5.4.0-66.74~18.04.2|5.4.0-67.75~18.04.1|5.4.0-70.78~18.04.1|5.4.0-71.79~18.04.1|5.4.0-72.80~18.04.1|5.4.0-73.82~18.04.1|5.4.0-74.83~18.04.1|5.4.0-77.86~18.04.1|5.4.0-80.90~18.04.1|5.4.0-81.91~18.04.1|5.4.0-84.94~18.04.1|5.4.0-86.97~18.04.1|5.4.0-87.98~18.04.1|5.4.0-89.100~18.04.1|5.4.0-90.101~18.04.1|5.4.0-91.102~18.04.1|5.4.0-92.103~18.04.2|5.4.0-94.106~18.04.1|5.4.0-96.109~18.04.1|5.4.0-97.110~18.04.1|5.4.0-99.112~18.04.1|5.4.0-100.113~18.04.1|5.4.0-104.118~18.04.1|5.4.0-105.119~18.04.1|5.4.0-107.121~18.04.1|5.4.0-109.123~18.04.1|5.4.0-110.124~18.04.1|5.4.0-113.127~18.04.1|5.4.0-117.132~18.04.1|5.4.0-120.136~18.04.1|5.4.0-121.137~18.04.1|5.4.0-122.138~18.04.1|5.4.0-124.140~18.04.1|5.4.0-125.141~18.04.1|5.4.0-126.142~18.04.1|5.4.0-128.144~18.04.1|5.4.0-131.147~18.04.1|5.4.0-132.148~18.04.1|5.4.0-133.149~18.04.1|5.4.0-135.152~18.04.2|5.4.0-136.153~18.04.1|5.4.0-137.154~18.04.1|5.4.0-139.156~18.04.1|5.4.0-144.161~18.04.1|5.4.0-146.163~18.04.1|5.4.0-147.164~18.04.1|5.4.0-148.165~18.04.1|5.4.0-149.166~18.04.1|5.4.0-150.167~18.04.1|5.4.0-152.169~18.04.1|5.4.0-153.170~18.04.1|5.4.0-155.172~18.04.1|5.4.0-156.173~18.04.1|5.4.0-159.176~18.04.1|5.4.0-162.179~18.04.1|5.4.0-163.180~18.04.1|5.4.0-164.181~18.04.1|5.4.0-165.182~18.04.1|5.4.0-166.183~18.04.2|5.4.0-167.184~18.04.1|5.4.0-169.187~18.04.1|5.4.0-170.188~18.04.1|5.4.0-171.189~18.04.1|5.4.0-172.190~18.04.1|5.4.0-173.191~18.04.1|5.4.0-174.193~18.04.1|5.4.0-175.195~18.04.1|5.4.0-177.197~18.04.1|5.4.0-181.201~18.04.1|5.4.0-182.202~18.04.1|5.4.0-186.206~18.04.1|5.4.0-187.207~18.04.1|5.4.0-189.209~18.04.1|5.4.0-190.210~18.04.1|5.4.0-192.212~18.04.1|5.4.0-193.213~18.04.1|5.4.0-195.215~18.04.1|5.4.0-196.216~18.04.1|5.4.0-198.218~18.04.1|5.4.0-200.220~18.04.1|5.4.0-202.222~18.04.1|5.4.0-204.224~18.04.1|5.4.0-205.225~18.04.1|5.4.0-208.228~18.04.1|5.4.0-211.231~18.04.1|5.4.0-212.232~18.04.1|5.4.0-214.234~18.04.1|5.4.0-215.235~18.04.1|5.4.0-216.236~18.04.1|5.4.0-218.238~18.04.1|5.4.0-219.239~18.04.1|5.4.0-220.240~18.04.1|5.4.0-221.241~18.04.1|5.4.0-222.242~18.04.1|5.4.0-223.243~18.04.1|5.4.0-224.244~18.04.1|5.4.0-225.245~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-edge", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-15.16~18.04.1|5.0.0-16.17~18.04.1|5.0.0-17.18~18.04.1|5.0.0-19.20~18.04.1|5.0.0-20.21~18.04.1|5.3.0-19.20~18.04.2|5.3.0-22.24~18.04.1|5.3.0-23.25~18.04.1|5.3.0-23.25~18.04.2|5.3.0-24.26~18.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.1", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.1.0-1004.4|6.1.0-1006.6|6.1.0-1007.7|6.1.0-1008.8|6.1.0-1009.9|6.1.0-1010.10|6.1.0-1012.12|6.1.0-1013.13|6.1.0-1014.14|6.1.0-1015.15|6.1.0-1016.16|6.1.0-1017.17|6.1.0-1019.19|6.1.0-1020.20|6.1.0-1021.21|6.1.0-1022.22|6.1.0-1023.23|6.1.0-1024.24|6.1.0-1025.25|6.1.0-1026.26|6.1.0-1027.27|6.1.0-1028.28|6.1.0-1029.29|6.1.0-1033.33|6.1.0-1034.34|6.1.0-1035.35|6.1.0-1036.36", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1010.11~18.04.2|5.4.0-1012.13~18.04.1|5.4.0-1014.15~18.04.1|5.4.0-1015.16~18.04.1|5.4.0-1017.19~18.04.1|5.4.0-1018.20~18.04.1|5.4.0-1019.21~18.04.1|5.4.0-1020.22~18.04.1|5.4.0-1021.23~18.04.1|5.4.0-1023.25~18.04.1|5.4.0-1026.29~18.04.1|5.4.0-1028.32~18.04.1|5.4.0-1029.33~18.04.1|5.4.0-1031.35~18.04.1|5.4.0-1032.36~18.04.1|5.4.0-1033.37~18.04.1|5.4.0-1034.38~18.04.1|5.4.0-1036.41~18.04.1|5.4.0-1037.42~18.04.1|5.4.0-1040.45~18.04.2|5.4.0-1041.46~18.04.1|5.4.0-1042.47~18.04.1|5.4.0-1044.49~18.04.1|5.4.0-1045.50~18.04.1|5.4.0-1046.51~18.04.1|5.4.0-1047.52~18.04.1|5.4.0-1048.53~18.04.1|5.4.0-1049.54~18.04.1|5.4.0-1050.55~18.04.1|5.4.0-1051.56~18.04.1|5.4.0-1052.57~18.04.1|5.4.0-1053.58~18.04.1|5.4.0-1054.59~18.04.1|5.4.0-1056.61~18.04.1|5.4.0-1057.62~18.04.1|5.4.0-1058.63~18.04.1|5.4.0-1059.64~18.04.1|5.4.0-1060.65~18.04.1|5.4.0-1061.66~18.04.1|5.4.0-1063.68~18.04.1|5.4.0-1064.69~18.04.1|5.4.0-1065.70~18.04.1|5.4.0-1066.71~18.04.1|5.4.0-1067.72~18.04.1|5.4.0-1068.73~18.04.1|5.4.0-1069.74~18.04.1|5.4.0-1070.75~18.04.1|5.4.0-1071.76~18.04.1|5.4.0-1072.77~18.04.1|5.4.0-1073.78~18.04.1|5.4.0-1074.79~18.04.1|5.4.0-1075.80~18.04.1|5.4.0-1076.81~18.04.1|5.4.0-1077.82~18.04.1|5.4.0-1078.83~18.04.1|5.4.0-1079.84~18.04.1|5.4.0-1080.85~18.04.1|5.4.0-1081.86~18.04.1|5.4.0-1082.87~18.04.1|5.4.0-1083.88~18.04.1|5.4.0-1084.89~18.04.1|5.4.0-1085.90~18.04.1|5.4.0-1086.91~18.04.1|5.4.0-1090.95~18.04.1|5.4.0-1092.97~18.04.1|5.4.0-1093.98~18.04.1|5.4.0-1094.99~18.04.1|5.4.0-1095.100~18.04.1|5.4.0-1096.101~18.04.1|5.4.0-1097.102~18.04.1|5.4.0-1098.103~18.04.1|5.4.0-1099.104~18.04.1|5.4.0-1100.105~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-1003.3|4.15.0-1004.4|4.15.0-1006.6|4.15.0-1008.8|4.15.0-1010.10|4.15.0-1011.11|4.15.0-1012.12|4.15.0-1016.16|4.15.0-1017.17|4.15.0-1019.19|4.15.0-1020.20|4.15.0-1021.21|4.15.0-1023.23|4.15.0-1025.25|4.15.0-1026.26|4.15.0-1027.27|4.15.0-1028.28|4.15.0-1029.29|4.15.0-1030.30|4.15.0-1031.31|4.15.0-1032.32|4.15.0-1034.34|4.15.0-1035.35|4.15.0-1036.36|4.15.0-1038.38|4.15.0-1039.39|4.15.0-1042.42|4.15.0-1043.43|4.15.0-1044.44|4.15.0-1046.46|4.15.0-1047.47|4.15.0-1048.48|4.15.0-1050.50|4.15.0-1051.51|4.15.0-1052.52|4.15.0-1053.53|4.15.0-1056.57|4.15.0-1058.59|4.15.0-1059.60|4.15.0-1060.61|4.15.0-1067.68|4.15.0-1069.70|4.15.0-1071.72|4.15.0-1072.73|4.15.0-1074.75|4.15.0-1075.76|4.15.0-1077.79|4.15.0-1079.81|4.15.0-1081.83|4.15.0-1082.84|4.15.0-1084.86|4.15.0-1085.87|4.15.0-1086.88|4.15.0-1087.89|4.15.0-1088.90|4.15.0-1089.91|4.15.0-1090.92|4.15.0-1091.93|4.15.0-1092.94|4.15.0-1094.96|4.15.0-1097.99|4.15.0-1098.100|4.15.0-1099.101|4.15.0-1100.102|4.15.0-1101.103|4.15.0-1102.104|4.15.0-1103.105|4.15.0-1105.107|4.15.0-1106.108|4.15.0-1107.109|4.15.0-1109.112|4.15.0-1110.113|4.15.0-1112.115|4.15.0-1113.116|4.15.0-1114.117|4.15.0-1116.119|4.15.0-1119.123|4.15.0-1122.127|4.15.0-1123.128|4.15.0-1125.130|4.15.0-1126.131|4.15.0-1127.132|4.15.0-1128.133|4.15.0-1129.134|4.15.0-1132.137|4.15.0-1133.138|4.15.0-1134.139|4.15.0-1135.140|4.15.0-1136.141|4.15.0-1137.142|4.15.0-1138.143|4.15.0-1139.144|4.15.0-1140.145|4.15.0-1141.146|4.15.0-1142.147|4.15.0-1143.148|4.15.0-1144.149|4.15.0-1145.150|4.15.0-1146.151|4.15.0-1147.152|4.15.0-1148.153|4.15.0-1149.154|4.15.0-1150.155|4.15.0-1151.156|4.15.0-1152.157|4.15.0-1153.158|4.15.0-1154.159|4.15.0-1155.160|4.15.0-1156.161|4.15.0-1157.162|4.15.0-1158.163|4.15.0-1159.164|4.15.0-1160.165|4.15.0-1161.166|4.15.0-1162.167|4.15.0-1163.168|4.15.0-1164.169|4.15.0-1165.170|4.15.0-1166.171|4.15.0-1167.172|4.15.0-1168.173|4.15.0-1169.174|4.15.0-1170.175", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.3|4.15.0-1004.5|4.15.0-1006.9|4.15.0-1008.11|4.15.0-1009.12|4.15.0-1012.15|4.15.0-1013.16|4.15.0-1015.18|4.15.0-1017.20|4.15.0-1018.21|4.15.0-1021.24|4.15.0-1024.29|4.15.0-1026.31|4.15.0-1028.33|4.15.0-1030.35|4.15.0-1033.38|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1036.41|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1043.48|4.15.0-1045.50|4.15.0-1050.57|4.15.0-1056.65|4.15.0-1057.66|4.15.0-1059.68|4.15.0-1063.72|4.15.0-1064.73|4.15.0-1065.75|4.15.0-1066.76|4.15.0-1067.77|4.15.0-1069.79|4.15.0-1073.83|4.15.0-1076.86|4.15.0-1079.89|4.15.0-1080.90|4.15.0-1081.91|4.15.0-1087.97|4.15.0-1090.100|4.15.0-1091.101|4.15.0-1093.103|4.15.0-1094.104|4.15.0-1096.106|4.15.0-1097.107|4.15.0-1099.109|4.15.0-1100.110|4.15.0-1101.112|4.15.0-1102.113|4.15.0-1103.114", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1007.9|4.15.0-1008.10|4.15.0-1009.11|4.15.0-1010.12|4.15.0-1011.13|4.15.0-1013.15|4.15.0-1014.16|4.15.0-1015.17|4.15.0-1017.19|4.15.0-1018.20|4.15.0-1021.23|4.15.0-1022.25|4.15.0-1023.26|4.15.0-1025.28|4.15.0-1026.29|4.15.0-1027.30|4.15.0-1029.32|4.15.0-1030.33|4.15.0-1031.34|4.15.0-1033.36|4.15.0-1035.39|4.15.0-1037.41|4.15.0-1038.42|4.15.0-1039.43|4.15.0-1045.49|4.15.0-1047.51|4.15.0-1048.52|4.15.0-1050.54|4.15.0-1051.55|4.15.0-1053.57|4.15.0-1054.58|4.15.0-1057.62|4.15.0-1058.64|4.15.0-1059.65|4.15.0-1061.67|4.15.0-1062.68|4.15.0-1063.70|4.15.0-1064.71|4.15.0-1065.73|4.15.0-1066.74|4.15.0-1067.75|4.15.0-1068.76|4.15.0-1069.77|4.15.0-1070.78|4.15.0-1071.79|4.15.0-1072.80|4.15.0-1075.83|4.15.0-1078.86|4.15.0-1079.87|4.15.0-1080.88|4.15.0-1081.89|4.15.0-1082.90|4.15.0-1083.91|4.15.0-1084.92|4.15.0-1085.93|4.15.0-1086.94|4.15.0-1087.95|4.15.0-1089.98|4.15.0-1090.99|4.15.0-1091.100|4.15.0-1092.101|4.15.0-1093.102|4.15.0-1095.104|4.15.0-1098.108|4.15.0-1101.112|4.15.0-1102.113|4.15.0-1104.115|4.15.0-1105.116|4.15.0-1106.117|4.15.0-1107.118|4.15.0-1108.119|4.15.0-1111.122|4.15.0-1112.123|4.15.0-1113.124|4.15.0-1114.125|4.15.0-1115.126|4.15.0-1116.127|4.15.0-1117.128|4.15.0-1118.129|4.15.0-1119.130|4.15.0-1120.131|4.15.0-1121.132|4.15.0-1122.133|4.15.0-1123.134|4.15.0-1124.135|4.15.0-1125.136|4.15.0-1126.137|4.15.0-1127.138|4.15.0-1128.139|4.15.0-1129.140|4.15.0-1130.141|4.15.0-1131.142|4.15.0-1132.143|4.15.0-1133.144|4.15.0-1134.145|4.15.0-1135.146|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1138.149|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.152|4.15.0-1142.153|4.15.0-1143.154|4.15.0-1144.155|4.15.0-1145.156|4.15.0-1146.157|4.15.0-1147.158|4.15.0-1148.159|4.15.0-1149.160|4.15.0-1150.161", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.0", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.0.0-1007.12~18.04.1|5.0.0-1008.13~18.04.1|5.0.0-1009.14~18.04.1|5.0.0-1010.15~18.04.1|5.0.0-1011.16|5.0.0-1013.18|5.0.0-1014.19", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.3", - "version": "", - "qualifiers": "arch=source&distro=bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1011.12~18.04.1|5.3.0-1013.14~18.04.1|5.3.0-1014.15~18.04.1|5.3.0-1016.18~18.04.1|5.3.0-1018.20~18.04.1|5.3.0-1024.26~18.04.1|5.3.0-1027.29~18.04.1|5.3.0-1028.30~18.04.1|5.3.0-1030.32~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1019.19~18.04.1|5.4.0-1021.21~18.04.1|5.4.0-1022.22~18.04.1|5.4.0-1024.24~18.04.1|5.4.0-1025.25~18.04.1|5.4.0-1028.29~18.04.1|5.4.0-1029.31~18.04.1|5.4.0-1030.32~18.04.1|5.4.0-1033.35|5.4.0-1034.36~18.04.1|5.4.0-1035.38~18.04.1|5.4.0-1037.40~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1039.42~18.04.1|5.4.0-1041.44~18.04.1|5.4.0-1042.45~18.04.1|5.4.0-1043.46~18.04.1|5.4.0-1044.47~18.04.1|5.4.0-1046.50~18.04.2|5.4.0-1048.52~18.04.1|5.4.0-1049.53~18.04.1|5.4.0-1052.56~18.04.1|5.4.0-1053.57~18.04.1|5.4.0-1054.58~18.04.1|5.4.0-1055.59~18.04.1|5.4.0-1056.60~18.04.1|5.4.0-1057.61~18.04.1|5.4.0-1058.62~18.04.1|5.4.0-1059.63~18.04.1|5.4.0-1061.65~18.04.1|5.4.0-1062.66~18.04.1|5.4.0-1063.67~18.04.1|5.4.0-1064.68~18.04.1|5.4.0-1066.71~18.04.1|5.4.0-1067.72~18.04.1|5.4.0-1069.75~18.04.1|5.4.0-1070.76~18.04.1|5.4.0-1071.77~18.04.1|5.4.0-1073.79~18.04.1|5.4.0-1076.83~18.04.1|5.4.0-1078.86~18.04.1|5.4.0-1079.87~18.04.1|5.4.0-1081.89~18.04.1|5.4.0-1082.90~18.04.1|5.4.0-1083.91~18.04.1|5.4.0-1084.92~18.04.1|5.4.0-1086.95~18.04.1|5.4.0-1087.96~18.04.1|5.4.0-1090.99~18.04.2|5.4.0-1091.100~18.04.1|5.4.0-1092.101~18.04.1|5.4.0-1093.102~18.04.1|5.4.0-1094.103~18.04.1|5.4.0-1098.107~18.04.1|5.4.0-1099.108~18.04.1|5.4.0-1100.109~18.04.1|5.4.0-1101.110~18.04.1|5.4.0-1102.111~18.04.1|5.4.0-1103.112~18.04.1|5.4.0-1104.113~18.04.1|5.4.0-1105.114~18.04.1|5.4.0-1106.115~18.04.1|5.4.0-1107.116~18.04.1|5.4.0-1108.117~18.04.1|5.4.0-1109.118~18.04.1|5.4.0-1110.119~18.04.1|5.4.0-1111.120~18.04.1|5.4.0-1112.121~18.04.4|5.4.0-1113.122~18.04.1|5.4.0-1115.124~18.04.1|5.4.0-1116.125~18.04.1|5.4.0-1117.126~18.04.1|5.4.0-1118.127~18.04.1|5.4.0-1119.128~18.04.1|5.4.0-1120.129~18.04.1|5.4.0-1121.130~18.04.1|5.4.0-1122.131~18.04.1|5.4.0-1123.132~18.04.1|5.4.0-1124.133~18.04.1|5.4.0-1125.134~18.04.1|5.4.0-1126.135~18.04.1|5.4.0-1127.136~18.04.1|5.4.0-1129.138~18.04.1|5.4.0-1130.139~18.04.1|5.4.0-1131.140~18.04.1|5.4.0-1132.141~18.04.1|5.4.0-1133.142~18.04.1|5.4.0-1134.143~18.04.1|5.4.0-1135.144~18.04.1|5.4.0-1136.145~18.04.1|5.4.0-1137.146~18.04.1|5.4.0-1138.147~18.04.1|5.4.0-1140.149~18.04.1|5.4.0-1141.151~18.04.1|5.4.0-1142.152~18.04.1|5.4.0-1143.153~18.04.1|5.4.0-1144.154~18.04.1|5.4.0-1145.155~18.04.1|5.4.0-1146.156~18.04.1|5.4.0-1148.158~18.04.1|5.4.0-1149.159~18.04.1|5.4.0-1150.160~18.04.1|5.4.0-1151.161~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi-5.4", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1013.13~18.04.1|5.4.0-1015.15~18.04.1|5.4.0-1016.17~18.04.1|5.4.0-1018.20~18.04.1|5.4.0-1019.21~18.04.1|5.4.0-1021.24~18.04.1|5.4.0-1022.25~18.04.1|5.4.0-1023.26~18.04.1|5.4.0-1025.28~18.04.1|5.4.0-1026.29~18.04.1|5.4.0-1028.31~18.04.1|5.4.0-1029.32~18.04.1|5.4.0-1030.33~18.04.1|5.4.0-1032.35~18.04.1|5.4.0-1033.36~18.04.1|5.4.0-1034.37~18.04.1|5.4.0-1035.38~18.04.1|5.4.0-1036.39~18.04.1|5.4.0-1038.41~18.04.1|5.4.0-1041.45~18.04.1|5.4.0-1042.46~18.04.3|5.4.0-1043.47~18.04.1|5.4.0-1044.48~18.04.1|5.4.0-1045.49~18.04.1|5.4.0-1046.50~18.04.1|5.4.0-1047.52~18.04.1|5.4.0-1048.53~18.04.1|5.4.0-1050.56~18.04.1|5.4.0-1052.58~18.04.1|5.4.0-1053.60~18.04.1|5.4.0-1055.62~18.04.1|5.4.0-1056.63~18.04.1|5.4.0-1058.65~18.04.1|5.4.0-1059.66~18.04.1|5.4.0-1060.68~18.04.1|5.4.0-1062.70~18.04.1|5.4.0-1065.75~18.04.1|5.4.0-1066.76~18.04.1|5.4.0-1068.78~18.04.1|5.4.0-1069.79~18.04.1|5.4.0-1070.80~18.04.1|5.4.0-1071.81~18.04.1|5.4.0-1073.84~18.04.1|5.4.0-1074.85~18.04.1|5.4.0-1077.88~18.04.2|5.4.0-1078.89~18.04.1|5.4.0-1079.90~18.04.1|5.4.0-1080.91~18.04.1|5.4.0-1081.92~18.04.1|5.4.0-1082.93~18.04.1|5.4.0-1083.94~18.04.1|5.4.0-1084.95~18.04.1|5.4.0-1085.96~18.04.1|5.4.0-1086.97~18.04.1|5.4.0-1088.99~18.04.1|5.4.0-1089.100~18.04.1|5.4.0-1090.101~18.04.1|5.4.0-1091.102~18.04.1|5.4.0-1092.103~18.04.1|5.4.0-1093.104~18.04.1|5.4.0-1094.105~18.04.1|5.4.0-1095.106~18.04.1|5.4.0-1096.107~18.04.1|5.4.0-1097.109~18.04.2|5.4.0-1098.110~18.04.2|5.4.0-1100.112~18.04.1|5.4.0-1101.113~18.04.1|5.4.0-1102.114~18.04.1|5.4.0-1103.115~18.04.1|5.4.0-1104.116~18.04.1|5.4.0-1105.117~18.04.1|5.4.0-1106.118~18.04.1|5.4.0-1107.119~18.04.1|5.4.0-1108.120~18.04.1|5.4.0-1109.121~18.04.1|5.4.0-1110.122~18.04.1|5.4.0-1111.123~18.04.1|5.4.0-1112.124~18.04.1|5.4.0-1114.126~18.04.1|5.4.0-1115.127~18.04.1|5.4.0-1116.128~18.04.1|5.4.0-1117.129~18.04.1|5.4.0-1118.130~18.04.1|5.4.0-1119.131~18.04.1|5.4.0-1120.132~18.04.1|5.4.0-1121.133~18.04.1|5.4.0-1122.134~18.04.1|5.4.0-1129.142~18.04.1|5.4.0-1130.143~18.04.1|5.4.0-1131.144~18.04.1|5.4.0-1132.145~18.04.1|5.4.0-1133.146~18.04.1|5.4.0-1134.147~18.04.1|5.4.0-1135.148~18.04.1|5.4.0-1136.149~18.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.17.0-1003.3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-2000.4|4.15.0-2018.18|4.15.0-2021.21|4.15.0-2022.22|4.15.0-2024.24|4.15.0-2025.25|4.15.0-2026.26|4.15.0-2027.27|4.15.0-2030.31|4.15.0-2031.32|4.15.0-2033.34|4.15.0-2034.35|4.15.0-2035.37|4.15.0-2036.38|4.15.0-2037.39|4.15.0-2038.40|4.15.0-2039.41|4.15.0-2040.42|4.15.0-2041.43|4.15.0-2042.44|4.15.0-2044.46|4.15.0-2045.47|4.15.0-2048.50|4.15.0-2051.53|4.15.0-2052.54|4.15.0-2053.55|4.15.0-2054.56|4.15.0-2055.57|4.15.0-2056.58|4.15.0-2057.59|4.15.0-2059.61|4.15.0-2060.62|4.15.0-2061.63|4.15.0-2063.66|4.15.0-2064.67|4.15.0-2065.68|4.15.0-2066.69|4.15.0-2067.70|4.15.0-2069.72|4.15.0-2072.76|4.15.0-2075.80|4.15.0-2076.81|4.15.0-2078.83|4.15.0-2079.84|4.15.0-2080.85|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2083.89|4.15.0-2085.91|4.15.0-2087.93|4.15.0-2089.95|4.15.0-2090.96|4.15.0-2092.98|4.15.0-2093.99|4.15.0-2094.100|4.15.0-2095.101|4.15.0-2096.102|4.15.0-2097.103|4.15.0-2098.104|4.15.0-2099.105|4.15.0-2100.106|4.15.0-2101.107|4.15.0-2102.108|4.15.0-2103.109|4.15.0-2104.110|4.15.0-2105.111|4.15.0-2106.112|4.15.0-2107.113|4.15.0-2108.114|4.15.0-2109.115|4.15.0-2110.116|4.15.0-2111.117|4.15.0-2112.118|4.15.0-2113.119|4.15.0-2114.120|4.15.0-2115.121|4.15.0-2116.122|4.15.0-2117.123|4.15.0-2118.124|4.15.0-2119.125|4.15.0-2120.126|4.15.0-2121.127|4.15.0-2122.128|4.15.0-2123.129|4.15.0-2124.130|4.15.0-2125.131|4.15.0-2126.132", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2|4.15.0-2006.7|4.15.0-2007.8|4.15.0-2008.9|4.15.0-2009.10|4.15.0-2012.14|4.15.0-2013.15|4.15.0-2015.17|4.15.0-2016.18|4.15.0-2017.20|4.15.0-2018.21|4.15.0-2020.23|4.15.0-2021.24|4.15.0-2022.25|4.15.0-2023.26|4.15.0-2024.27|4.15.0-2025.28|4.15.0-2026.29|4.15.0-2027.30|4.15.0-2030.33|4.15.0-2033.37|4.15.0-2034.38|4.15.0-2035.39|4.15.0-2036.40|4.15.0-2037.41|4.15.0-2038.42|4.15.0-2039.43|4.15.0-2041.45|4.15.0-2042.46|4.15.0-2043.47|4.15.0-2045.49|4.15.0-2046.50|4.15.0-2047.51|4.15.0-2048.52|4.15.0-2049.53|4.15.0-2050.54|4.15.0-2053.58|4.15.0-2056.62|4.15.0-2057.63|4.15.0-2059.65|4.15.0-2060.66|4.15.0-2062.68|4.15.0-2066.72|4.15.0-2067.73|4.15.0-2068.74|4.15.0-2070.76|4.15.0-2071.77|4.15.0-2072.78|4.15.0-2073.79|4.15.0-2074.80|4.15.0-2075.81|4.15.0-2076.82|4.15.0-2077.83|4.15.0-2078.84|4.15.0-2079.85|4.15.0-2080.86|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2084.90|4.15.0-2085.91|4.15.0-2086.92|4.15.0-2087.93|4.15.0-2088.94|4.15.0-2089.95|4.15.0-2090.96|4.15.0-2091.97|4.15.0-2092.98|4.15.0-2093.99|4.15.0-2094.100|4.15.0-2095.101|4.15.0-2096.102|4.15.0-2097.103|4.15.0-2098.104|4.15.0-2099.105|4.15.0-2100.106|4.15.0-2101.107|4.15.0-2102.108|4.15.0-2104.110", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1027.32|4.15.0-1029.34|4.15.0-1034.39|4.15.0-1035.40|4.15.0-1037.42|4.15.0-1038.43|4.15.0-1039.44|4.15.0-1040.45|4.15.0-1041.46|4.15.0-1044.50|4.15.0-1045.52|4.15.0-1046.53|4.15.0-1048.55|4.15.0-1049.56|4.15.0-1050.58|4.15.0-1051.59|4.15.0-1052.60|4.15.0-1053.61|4.15.0-1054.62|4.15.0-1055.63|4.15.0-1056.64|4.15.0-1057.65|4.15.0-1058.66|4.15.0-1059.67|4.15.0-1060.68|4.15.0-1063.71|4.15.0-1066.75|4.15.0-1067.76|4.15.0-1068.77|4.15.0-1069.78|4.15.0-1070.79|4.15.0-1071.80|4.15.0-1072.81|4.15.0-1073.82|4.15.0-1075.84|4.15.0-1076.85|4.15.0-1078.87|4.15.0-1080.89|4.15.0-1081.90|4.15.0-1083.92|4.15.0-1084.93|4.15.0-1085.94|4.15.0-1087.96|4.15.0-1090.100|4.15.0-1093.104|4.15.0-1094.105|4.15.0-1096.107|4.15.0-1097.108|4.15.0-1098.109|4.15.0-1099.110|4.15.0-1100.111|4.15.0-1103.114|4.15.0-1104.115|4.15.0-1105.116|4.15.0-1107.118|4.15.0-1108.119|4.15.0-1109.120|4.15.0-1110.121|4.15.0-1111.122|4.15.0-1112.123|4.15.0-1113.124|4.15.0-1114.125|4.15.0-1115.126|4.15.0-1116.127|4.15.0-1117.128|4.15.0-1118.129|4.15.0-1119.130|4.15.0-1121.132|4.15.0-1122.133|4.15.0-1123.134|4.15.0-1124.135|4.15.0-1125.136|4.15.0-1126.137|4.15.0-1127.138|4.15.0-1128.139|4.15.0-1129.140|4.15.0-1130.141|4.15.0-1131.142|4.15.0-1132.143|4.15.0-1133.144|4.15.0-1134.145|4.15.0-1135.146|4.15.0-1136.147|4.15.0-1137.148|4.15.0-1138.149|4.15.0-1139.150|4.15.0-1140.151|4.15.0-1141.153|4.15.0-1142.154|4.15.0-1143.155", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-2013.14|4.15.0-2016.18|4.15.0-2017.19|4.15.0-2018.20|4.15.0-2019.21|4.15.0-2020.22|4.15.0-2021.23|4.15.0-2022.24|4.15.0-2024.26|4.15.0-2025.27|4.15.0-2026.28|4.15.0-2028.31|4.15.0-2029.32|4.15.0-2030.33|4.15.0-2031.34|4.15.0-2032.35|4.15.0-2034.37|4.15.0-2037.41|4.15.0-2040.45|4.15.0-2041.46|4.15.0-2043.48|4.15.0-2044.49|4.15.0-2045.50|4.15.0-2047.52|4.15.0-2050.55|4.15.0-2052.57|4.15.0-2054.59|4.15.0-2055.60|4.15.0-2056.61|4.15.0-2057.62|4.15.0-2058.63|4.15.0-2059.64|4.15.0-2060.65|4.15.0-2061.66|4.15.0-2062.67|4.15.0-2063.68|4.15.0-2064.69|4.15.0-2065.70|4.15.0-2066.71|4.15.0-2067.72|4.15.0-2068.73|4.15.0-2069.74|4.15.0-2070.75|4.15.0-2071.76|4.15.0-2072.77|4.15.0-2073.78|4.15.0-2074.79|4.15.0-2075.80|4.15.0-2076.81|4.15.0-2077.83|4.15.0-2078.84|4.15.0-2079.85|4.15.0-2080.86|4.15.0-2081.87|4.15.0-2082.88|4.15.0-2083.89|4.15.0-2084.90|4.15.0-2085.91|4.15.0-2086.92|4.15.0-2087.93|4.15.0-2088.94", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-2000.4", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1002.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1011.12", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/bionic", - "subpath": "" - }, - "affected_version_range": "vers:deb/4.15.0-1001.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-18.19|5.3.0-24.26|5.4.0-9.12|5.4.0-18.22|5.4.0-21.25|5.4.0-24.28|5.4.0-25.29|5.4.0-26.30|5.4.0-28.32|5.4.0-29.33|5.4.0-31.35|5.4.0-33.37|5.4.0-37.41|5.4.0-39.43|5.4.0-40.44|5.4.0-42.46|5.4.0-45.49|5.4.0-47.51|5.4.0-48.52|5.4.0-51.56|5.4.0-52.57|5.4.0-53.59|5.4.0-54.60|5.4.0-56.62|5.4.0-58.64|5.4.0-59.65|5.4.0-60.67|5.4.0-62.70|5.4.0-64.72|5.4.0-65.73|5.4.0-66.74|5.4.0-67.75|5.4.0-70.78|5.4.0-71.79|5.4.0-72.80|5.4.0-73.82|5.4.0-74.83|5.4.0-77.86|5.4.0-80.90|5.4.0-81.91|5.4.0-84.94|5.4.0-86.97|5.4.0-88.99|5.4.0-89.100|5.4.0-90.101|5.4.0-91.102|5.4.0-92.103|5.4.0-94.106|5.4.0-96.109|5.4.0-97.110|5.4.0-99.112|5.4.0-100.113|5.4.0-104.118|5.4.0-105.119|5.4.0-107.121|5.4.0-109.123|5.4.0-110.124|5.4.0-113.127|5.4.0-117.132|5.4.0-120.136|5.4.0-121.137|5.4.0-122.138|5.4.0-124.140|5.4.0-125.141|5.4.0-126.142|5.4.0-128.144|5.4.0-131.147|5.4.0-132.148|5.4.0-135.152|5.4.0-136.153|5.4.0-137.154|5.4.0-139.156|5.4.0-144.161|5.4.0-146.163|5.4.0-147.164|5.4.0-148.165|5.4.0-149.166|5.4.0-150.167|5.4.0-152.169|5.4.0-153.170|5.4.0-155.172|5.4.0-156.173|5.4.0-159.176|5.4.0-162.179|5.4.0-163.180|5.4.0-164.181|5.4.0-165.182|5.4.0-166.183|5.4.0-167.184|5.4.0-169.187|5.4.0-170.188|5.4.0-171.189|5.4.0-172.190|5.4.0-173.191|5.4.0-174.193|5.4.0-176.196|5.4.0-177.197|5.4.0-181.201|5.4.0-182.202|5.4.0-186.206|5.4.0-187.207|5.4.0-189.209|5.4.0-190.210|5.4.0-192.212|5.4.0-193.213|5.4.0-195.215|5.4.0-196.216|5.4.0-198.218|5.4.0-200.220|5.4.0-202.222|5.4.0-204.224|5.4.0-205.225|5.4.0-208.228|5.4.0-211.231|5.4.0-212.232|5.4.0-214.234|5.4.0-215.235|5.4.0-216.236|5.4.0-218.238|5.4.0-219.239|5.4.0-220.240|5.4.0-221.241|5.4.0-222.242|5.4.0-223.243|5.4.0-224.244|5.4.0-225.245", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1003.3|6.5.0-1004.4|6.5.0-1006.6|6.5.0-1007.7|6.5.0-1008.8|6.5.0-1009.10|6.5.0-1011.12|6.5.0-1013.14|6.5.0-1014.15|6.5.0-1015.16|6.5.0-1016.17|6.5.0-1018.19|6.5.0-1019.20|6.5.0-1020.21|6.5.0-1022.23|6.5.0-1023.24|6.5.0-1024.25|6.5.0-1025.26|6.5.0-1027.28", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.3.0-1010.11|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1017.17|5.4.0-1018.18|5.4.0-1020.20|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.30|5.4.0-1030.31|5.4.0-1032.33|5.4.0-1034.35|5.4.0-1035.37|5.4.0-1037.39|5.4.0-1038.40|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1043.45|5.4.0-1045.47|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1051.53|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1058.61|5.4.0-1059.62|5.4.0-1060.63|5.4.0-1061.64|5.4.0-1063.66|5.4.0-1064.67|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1075.80|5.4.0-1078.84|5.4.0-1080.87|5.4.0-1081.88|5.4.0-1083.90|5.4.0-1084.91|5.4.0-1085.92|5.4.0-1086.93|5.4.0-1088.96|5.4.0-1089.97|5.4.0-1092.100|5.4.0-1093.101|5.4.0-1094.102|5.4.0-1096.104|5.4.0-1097.105|5.4.0-1099.107|5.4.0-1100.108|5.4.0-1101.109|5.4.0-1102.110|5.4.0-1103.111|5.4.0-1104.112|5.4.0-1105.113|5.4.0-1106.114|5.4.0-1107.115|5.4.0-1108.116|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.123|5.4.0-1114.124|5.4.0-1116.126|5.4.0-1117.127|5.4.0-1118.128|5.4.0-1119.129|5.4.0-1120.130|5.4.0-1121.131|5.4.0-1122.132|5.4.0-1123.133|5.4.0-1124.134|5.4.0-1125.135|5.4.0-1126.136|5.4.0-1127.137|5.4.0-1128.138|5.4.0-1129.139|5.4.0-1130.140|5.4.0-1131.141|5.4.0-1132.142|5.4.0-1133.143|5.4.0-1134.144|5.4.0-1135.145|5.4.0-1136.146|5.4.0-1137.147|5.4.0-1139.149|5.4.0-1140.150|5.4.0-1142.152|5.4.0-1144.154|5.4.0-1145.155|5.4.0-1146.156|5.4.0-1147.157|5.4.0-1148.158|5.4.0-1149.159|5.4.0-1150.160|5.4.0-1151.161|5.4.0-1152.162|5.4.0-1153.163|5.4.0-1154.164", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-1009.9~20.04.2|5.11.0-1014.15~20.04.1|5.11.0-1016.17~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.2|5.11.0-1021.22~20.04.2|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1008.9~20.04.2|5.13.0-1011.12~20.04.1|5.13.0-1012.13~20.04.1|5.13.0-1014.15~20.04.1|5.13.0-1017.19~20.04.1|5.13.0-1019.21~20.04.1|5.13.0-1021.23~20.04.2|5.13.0-1022.24~20.04.1|5.13.0-1023.25~20.04.1|5.13.0-1025.27~20.04.1|5.13.0-1028.31~20.04.1|5.13.0-1029.32~20.04.1|5.13.0-1031.35~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1014.18~20.04.1|5.15.0-1015.19~20.04.1|5.15.0-1017.21~20.04.1|5.15.0-1019.23~20.04.1|5.15.0-1020.24~20.04.1|5.15.0-1021.25~20.04.1|5.15.0-1022.26~20.04.1|5.15.0-1023.27~20.04.1|5.15.0-1026.30~20.04.2|5.15.0-1027.31~20.04.1|5.15.0-1028.32~20.04.1|5.15.0-1030.34~20.04.1|5.15.0-1031.35~20.04.1|5.15.0-1033.37~20.04.1|5.15.0-1034.38~20.04.1|5.15.0-1035.39~20.04.1|5.15.0-1036.40~20.04.1|5.15.0-1037.41~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1039.44~20.04.1|5.15.0-1040.45~20.04.1|5.15.0-1041.46~20.04.1|5.15.0-1043.48~20.04.1|5.15.0-1044.49~20.04.1|5.15.0-1045.50~20.04.1|5.15.0-1047.52~20.04.1|5.15.0-1048.53~20.04.1|5.15.0-1049.54~20.04.1|5.15.0-1050.55~20.04.1|5.15.0-1051.56~20.04.1|5.15.0-1052.57~20.04.1|5.15.0-1053.58~20.04.1|5.15.0-1055.60~20.04.1|5.15.0-1056.61~20.04.1|5.15.0-1057.63~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1064.70~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1068.74~20.04.1|5.15.0-1069.75~20.04.1|5.15.0-1070.76~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.1|5.15.0-1075.82~20.04.1|5.15.0-1077.84~20.04.1|5.15.0-1080.87~20.04.1|5.15.0-1081.88~20.04.1|5.15.0-1082.89~20.04.1|5.15.0-1083.90~20.04.1|5.15.0-1084.91~20.04.1|5.15.0-1086.93~20.04.1|5.15.0-1087.94~20.04.1|5.15.0-1088.95~20.04.1|5.15.0-1089.96~20.04.1|5.15.0-1090.97~20.04.1|5.15.0-1091.98~20.04.1|5.15.0-1092.99~20.04.1|5.15.0-1093.100~20.04.1|5.15.0-1095.102~20.04.1|5.15.0-1096.103~20.04.1|5.15.0-1097.104~20.04.1|5.15.0-1098.105~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-1035.37~20.04.1|5.8.0-1038.40~20.04.1|5.8.0-1041.43~20.04.1|5.8.0-1042.44~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.4.0-1006.6|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1010.10|5.4.0-1012.12|5.4.0-1016.16|5.4.0-1019.19|5.4.0-1020.20|5.4.0-1022.22|5.4.0-1023.23|5.4.0-1025.25|5.4.0-1026.26|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1034.35|5.4.0-1035.36|5.4.0-1036.38|5.4.0-1039.41|5.4.0-1040.42|5.4.0-1041.43|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1051.53|5.4.0-1055.57|5.4.0-1056.58|5.4.0-1058.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1064.67|5.4.0-1065.68|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1069.72|5.4.0-1070.73|5.4.0-1072.75|5.4.0-1073.76|5.4.0-1074.77|5.4.0-1077.80|5.4.0-1078.81|5.4.0-1080.83|5.4.0-1083.87|5.4.0-1085.90|5.4.0-1086.91|5.4.0-1089.94|5.4.0-1090.95|5.4.0-1091.96|5.4.0-1094.100|5.4.0-1095.101|5.4.0-1098.104|5.4.0-1100.106|5.4.0-1101.107|5.4.0-1103.109|5.4.0-1104.110|5.4.0-1105.111|5.4.0-1106.112|5.4.0-1107.113|5.4.0-1108.114|5.4.0-1109.115|5.4.0-1110.116|5.4.0-1111.117|5.4.0-1112.118|5.4.0-1113.119|5.4.0-1114.120|5.4.0-1115.122|5.4.0-1116.123|5.4.0-1117.124|5.4.0-1118.125|5.4.0-1119.126|5.4.0-1120.127|5.4.0-1121.128|5.4.0-1122.129|5.4.0-1123.130|5.4.0-1124.131|5.4.0-1126.133|5.4.0-1127.134|5.4.0-1128.135|5.4.0-1129.136|5.4.0-1130.137|5.4.0-1131.138|5.4.0-1132.139|5.4.0-1133.140|5.4.0-1134.141|5.4.0-1135.142|5.4.0-1136.143|5.4.0-1137.144|5.4.0-1138.145|5.4.0-1139.146|5.4.0-1140.147|5.4.0-1142.149|5.4.0-1143.150|5.4.0-1145.152|5.4.0-1147.154|5.4.0-1148.155|5.4.0-1149.156|5.4.0-1150.157|5.4.0-1151.158|5.4.0-1152.159|5.4.0-1153.160|5.4.0-1154.161|5.4.0-1156.163", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-1007.7~20.04.2|5.11.0-1012.13~20.04.1|5.11.0-1013.14~20.04.1|5.11.0-1015.16~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1009.10~20.04.2|5.13.0-1012.14~20.04.1|5.13.0-1013.15~20.04.1|5.13.0-1014.16~20.04.1|5.13.0-1017.19~20.04.1|5.13.0-1021.24~20.04.1|5.13.0-1022.26~20.04.1|5.13.0-1023.27~20.04.1|5.13.0-1025.29~20.04.1|5.13.0-1028.33~20.04.1|5.13.0-1029.34~20.04.1|5.13.0-1031.37~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1009.9~22.04.2|6.8.0-1010.10~22.04.2|6.8.0-1011.12~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.15~22.04.1|6.8.0-1015.16~22.04.1|6.8.0-1016.17~22.04.2|6.8.0-1017.18~22.04.1|6.8.0-1018.19~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1023.25~22.04.1|6.8.0-1024.26~22.04.1|6.8.0-1027.29~22.04.1|6.8.0-1028.30~22.04.1|6.8.0-1029.31~22.04.1|6.8.0-1030.32~22.04.1|6.8.0-1031.33~22.04.1|6.8.0-1032.34~22.04.1|6.8.0-1033.35~22.04.1|6.8.0-1035.37~22.04.1|6.8.0-1036.38~22.04.1|6.8.0-1039.41~22.04.1|6.8.0-1040.42~22.04.1|6.8.0-1041.43~22.04.1|6.8.0-1042.44~22.04.1|6.8.0-1043.45~22.04.1|6.8.0-1044.46~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-preview/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1042.47+fips1|5.15.0-1051.56+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-preview/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1053.61+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1007.8~20.04.1|5.15.0-1008.9~20.04.1|5.15.0-1013.16~20.04.1|5.15.0-1014.17~20.04.1|5.15.0-1017.20~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1022.27~20.04.1|5.15.0-1023.29~20.04.1|5.15.0-1029.36~20.04.1|5.15.0-1030.37~20.04.1|5.15.0-1031.38~20.04.1|5.15.0-1033.40~20.04.1|5.15.0-1034.41~20.04.1|5.15.0-1035.42~20.04.1|5.15.0-1036.43~20.04.1|5.15.0-1037.44~20.04.1|5.15.0-1038.45~20.04.1|5.15.0-1039.46~20.04.1|5.15.0-1040.47~20.04.1|5.15.0-1041.48~20.04.1|5.15.0-1042.49~20.04.1|5.15.0-1043.50~20.04.1|5.15.0-1045.52~20.04.1|5.15.0-1046.53~20.04.1|5.15.0-1047.54~20.04.1|5.15.0-1049.56~20.04.1|5.15.0-1050.57~20.04.1|5.15.0-1051.59~20.04.1|5.15.0-1052.60~20.04.1|5.15.0-1053.61~20.04.1|5.15.0-1054.62~20.04.1|5.15.0-1056.64~20.04.1|5.15.0-1057.65~20.04.1|5.15.0-1058.66~20.04.2|5.15.0-1059.67~20.04.1|5.15.0-1060.69~20.04.1|5.15.0-1061.70~20.04.1|5.15.0-1063.72~20.04.1|5.15.0-1064.73~20.04.1|5.15.0-1065.74~20.04.1|5.15.0-1067.76~20.04.1|5.15.0-1068.77~20.04.1|5.15.0-1070.79~20.04.1|5.15.0-1071.80~20.04.1|5.15.0-1072.81~20.04.1|5.15.0-1073.82~20.04.1|5.15.0-1074.83~20.04.1|5.15.0-1075.84~20.04.1|5.15.0-1078.87~20.04.1|5.15.0-1079.88~20.04.1|5.15.0-1081.90~20.04.1|5.15.0-1082.91~20.04.1|5.15.0-1086.95~20.04.1|5.15.0-1087.96~20.04.1|5.15.0-1088.97~20.04.1|5.15.0-1089.98~20.04.1|5.15.0-1091.100~20.04.1|5.15.0-1094.103~20.04.1|5.15.0-1095.104~20.04.1|5.15.0-1096.105~20.04.1|5.15.0-1097.106~20.04.1|5.15.0-1098.107~20.04.1|5.15.0-1102.111~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-1033.35~20.04.1|5.8.0-1036.38~20.04.1|5.8.0-1039.42~20.04.1|5.8.0-1040.43~20.04.1|5.8.0-1041.44~20.04.1|5.8.0-1042.45~20.04.1|5.8.0-1043.46~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1063.66+cvm2.2|5.4.0-1063.66+cvm3.2|5.4.0-1064.67+cvm1.1|5.4.0-1065.68+cvm2.1|5.4.0-1067.70+cvm1.1|5.4.0-1068.71+cvm1.1|5.4.0-1069.72+cvm1.1|5.4.0-1070.73+cvm1.1|5.4.0-1072.75+cvm1.1|5.4.0-1073.76+cvm1.1|5.4.0-1074.77+cvm1.1|5.4.0-1076.79+cvm1.1|5.4.0-1078.81+cvm1.1|5.4.0-1080.83+cvm1.1|5.4.0-1083.87+cvm1.1|5.4.0-1085.90+cvm1.1|5.4.0-1085.90+cvm2.1|5.4.0-1086.91+cvm1.1|5.4.0-1089.94+cvm1.2|5.4.0-1090.95+cvm1.1|5.4.0-1091.96+cvm1.1|5.4.0-1092.97+cvm1.1|5.4.0-1095.101+cvm1.1|5.4.0-1098.104+cvm1.1|5.4.0-1100.106+cvm1.1|5.4.0-1103.109+cvm1.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1019.24~20.04.1.1|5.15.0-1020.25~20.04.1.1|5.15.0-1021.26~20.04.1.1|5.15.0-1029.36~20.04.1.1|5.15.0-1030.37~20.04.1.1|5.15.0-1031.38~20.04.1.1|5.15.0-1033.40~20.04.1.1|5.15.0-1034.41~20.04.1.2|5.15.0-1035.42~20.04.1.1|5.15.0-1036.43~20.04.1.1|5.15.0-1037.44~20.04.1.1|5.15.0-1038.45~20.04.1.1|5.15.0-1039.46~20.04.1.1|5.15.0-1040.47~20.04.1.1|5.15.0-1041.48~20.04.1.1|5.15.0-1042.49~20.04.1.1|5.15.0-1043.50~20.04.1.1|5.15.0-1046.53~20.04.1.1|5.15.0-1047.54~20.04.1.1|5.15.0-1049.56~20.04.1.1|5.15.0-1050.57~20.04.1.1|5.15.0-1051.59~20.04.1.1|5.15.0-1052.60~20.04.1.1|5.15.0-1053.61~20.04.1.1|5.15.0-1054.62~20.04.1.1|5.15.0-1056.64~20.04.1.1|5.15.0-1057.65~20.04.1.1|5.15.0-1058.66~20.04.2.1|5.15.0-1059.67~20.04.1.1|5.15.0-1060.69~20.04.1.1|5.15.0-1061.70~20.04.1.1|5.15.0-1063.72~20.04.1.1|5.15.0-1064.73~20.04.1.1|5.15.0-1065.74~20.04.1.1|5.15.0-1067.76~20.04.1.1|5.15.0-1068.77~20.04.1.1|5.15.0-1070.79~20.04.1.1|5.15.0-1071.80~20.04.1.1|5.15.0-1072.81~20.04.1.1|5.15.0-1073.82~20.04.1.1|5.15.0-1074.83~20.04.1.1|5.15.0-1076.85~20.04.1.1|5.15.0-1078.87~20.04.1.1|5.15.0-1081.90~20.04.1.1|5.15.0-1082.91~20.04.1.1|5.15.0-1086.95~20.04.1.1|5.15.0-1087.96~20.04.1.1|5.15.0-1088.97~20.04.1.1|5.15.0-1089.98~20.04.1.1|5.15.0-1091.100~20.04.1.1|5.15.0-1094.103~20.04.1.1|5.15.0-1096.105~20.04.1.1|5.15.0-1097.106~20.04.1.1|5.15.0-1098.107~20.04.1.1|5.15.0-1102.111~20.04.1.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-bluefield", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1007.10|5.4.0-1011.14|5.4.0-1012.15|5.4.0-1013.16|5.4.0-1016.19|5.4.0-1019.22|5.4.0-1020.23|5.4.0-1021.24|5.4.0-1022.25|5.4.0-1023.26|5.4.0-1025.28|5.4.0-1026.29|5.4.0-1028.31|5.4.0-1030.33|5.4.0-1032.35|5.4.0-1035.38|5.4.0-1036.39|5.4.0-1040.44|5.4.0-1042.47|5.4.0-1044.49|5.4.0-1045.50|5.4.0-1046.51|5.4.0-1047.52|5.4.0-1049.55|5.4.0-1050.56|5.4.0-1054.60|5.4.0-1058.64|5.4.0-1059.65|5.4.0-1060.66|5.4.0-1062.68|5.4.0-1064.70|5.4.0-1065.71|5.4.0-1066.72|5.4.0-1068.74|5.4.0-1070.76|5.4.0-1071.77|5.4.0-1072.78|5.4.0-1073.79|5.4.0-1074.80|5.4.0-1075.81|5.4.0-1076.82|5.4.0-1077.83|5.4.0-1078.84|5.4.0-1079.85|5.4.0-1080.87|5.4.0-1081.88|5.4.0-1082.89|5.4.0-1083.90|5.4.0-1084.91|5.4.0-1085.92|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1088.95|5.4.0-1089.96|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1092.99|5.4.0-1093.100|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1105.112|5.4.0-1106.113|5.4.0-1107.114|5.4.0-1108.115|5.4.0-1109.116|5.4.0-1110.117|5.4.0-1111.118|5.4.0-1112.119", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1004.4|5.3.0-1009.10|5.3.0-1011.12|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1019.19|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.31|5.4.0-1030.32|5.4.0-1032.34|5.4.0-1033.35|5.4.0-1034.37|5.4.0-1036.39|5.4.0-1037.40|5.4.0-1038.41|5.4.0-1040.43|5.4.0-1041.44|5.4.0-1042.45|5.4.0-1043.46|5.4.0-1044.47|5.4.0-1046.49|5.4.0-1049.53|5.4.0-1051.55|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1058.62|5.4.0-1059.63|5.4.0-1060.64|5.4.0-1062.66|5.4.0-1063.67|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1075.80|5.4.0-1078.84|5.4.0-1080.87|5.4.0-1083.91|5.4.0-1084.92|5.4.0-1086.94|5.4.0-1087.95|5.4.0-1089.97|5.4.0-1090.98|5.4.0-1092.101|5.4.0-1093.102|5.4.0-1096.105|5.4.0-1097.106|5.4.0-1098.107|5.4.0-1100.109|5.4.0-1101.110|5.4.0-1102.111|5.4.0-1103.112|5.4.0-1104.113|5.4.0-1105.114|5.4.0-1106.115|5.4.0-1107.116|5.4.0-1108.117|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.122|5.4.0-1115.124|5.4.0-1116.125|5.4.0-1117.126|5.4.0-1118.127|5.4.0-1120.129|5.4.0-1121.130|5.4.0-1122.131|5.4.0-1123.132|5.4.0-1124.133|5.4.0-1125.134|5.4.0-1126.135|5.4.0-1127.136|5.4.0-1128.137|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1139.148|5.4.0-1140.149|5.4.0-1141.150|5.4.0-1142.151|5.4.0-1143.152|5.4.0-1145.154|5.4.0-1146.155|5.4.0-1147.156|5.4.0-1148.157|5.4.0-1149.158|5.4.0-1150.159|5.4.0-1151.160|5.4.0-1152.161|5.4.0-1153.162|5.4.0-1154.163|5.4.0-1155.164|5.4.0-1156.165|5.4.0-1157.166", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-1009.10~20.04.1|5.11.0-1014.16~20.04.1|5.11.0-1017.19~20.04.1|5.11.0-1018.20~20.04.2|5.11.0-1020.22~20.04.1|5.11.0-1021.23~20.04.1|5.11.0-1022.24~20.04.1|5.11.0-1023.25~20.04.1|5.11.0-1024.26~20.04.1|5.11.0-1026.29~20.04.1|5.11.0-1028.32~20.04.1|5.11.0-1029.33~20.04.3", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1008.9~20.04.3|5.13.0-1012.15~20.04.1|5.13.0-1013.16~20.04.1|5.13.0-1015.18~20.04.1|5.13.0-1019.23~20.04.1|5.13.0-1021.25~20.04.1|5.13.0-1023.28~20.04.1|5.13.0-1024.29~20.04.1|5.13.0-1025.30~20.04.1|5.13.0-1027.32~20.04.1|5.13.0-1030.36~20.04.1|5.13.0-1031.37~20.04.1|5.13.0-1033.40~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-preview/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-73.80+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1006.9~20.04.1|5.15.0-1012.17~20.04.1|5.15.0-1013.18~20.04.1|5.15.0-1016.21~20.04.1|5.15.0-1017.23~20.04.2|5.15.0-1018.24~20.04.1|5.15.0-1021.28~20.04.1|5.15.0-1022.29~20.04.1|5.15.0-1025.32~20.04.2|5.15.0-1026.33~20.04.1|5.15.0-1027.34~20.04.1|5.15.0-1029.36~20.04.1|5.15.0-1030.37~20.04.1|5.15.0-1031.38~20.04.1|5.15.0-1032.40~20.04.1|5.15.0-1033.41~20.04.1|5.15.0-1034.42~20.04.1|5.15.0-1035.43~20.04.1|5.15.0-1036.44~20.04.1|5.15.0-1037.45~20.04.1|5.15.0-1038.46~20.04.1|5.15.0-1039.47~20.04.1|5.15.0-1040.48~20.04.1|5.15.0-1041.49~20.04.1|5.15.0-1042.50~20.04.1|5.15.0-1044.52~20.04.1|5.15.0-1045.53~20.04.2|5.15.0-1046.54~20.04.1|5.15.0-1047.55~20.04.1|5.15.0-1048.56~20.04.1|5.15.0-1049.57~20.04.1|5.15.0-1051.59~20.04.1|5.15.0-1052.60~20.04.1|5.15.0-1053.61~20.04.1|5.15.0-1054.62~20.04.1|5.15.0-1055.63~20.04.1|5.15.0-1058.66~20.04.1|5.15.0-1059.67~20.04.1|5.15.0-1060.68~20.04.1|5.15.0-1062.70~20.04.1|5.15.0-1065.73~20.04.1|5.15.0-1066.74~20.04.1|5.15.0-1067.75~20.04.1|5.15.0-1068.76~20.04.1|5.15.0-1069.77~20.04.1|5.15.0-1070.78~20.04.1|5.15.0-1071.79~20.04.1|5.15.0-1072.80~20.04.1|5.15.0-1073.81~20.04.1|5.15.0-1074.83~20.04.1|5.15.0-1075.84~20.04.1|5.15.0-1077.86~20.04.1|5.15.0-1078.87~20.04.1|5.15.0-1081.90~20.04.1|5.15.0-1083.92~20.04.1|5.15.0-1085.94~20.04.1|5.15.0-1086.95~20.04.1|5.15.0-1087.96~20.04.2|5.15.0-1088.97~20.04.1|5.15.0-1090.99~20.04.1|5.15.0-1091.100~20.04.1|5.15.0-1092.101~20.04.1|5.15.0-1093.102~20.04.1|5.15.0-1095.104~20.04.1|5.15.0-1096.105~20.04.1|5.15.0-1097.106~20.04.1|5.15.0-1098.107~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-1032.34~20.04.1|5.8.0-1035.37~20.04.1|5.8.0-1038.40~20.04.1|5.8.0-1039.41", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1033.35|5.4.0-1035.37|5.4.0-1036.38|5.4.0-1037.39|5.4.0-1039.41|5.4.0-1041.43|5.4.0-1042.44|5.4.0-1043.45|5.4.0-1044.46|5.4.0-1046.48|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1066.69|5.4.0-1067.70|5.4.0-1068.71|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1074.79|5.4.0-1076.82|5.4.0-1078.84|5.4.0-1080.86|5.4.0-1081.87|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.93|5.4.0-1087.94|5.4.0-1090.97|5.4.0-1091.98|5.4.0-1094.101|5.4.0-1095.102|5.4.0-1096.103|5.4.0-1097.104|5.4.0-1098.105|5.4.0-1099.106|5.4.0-1100.107|5.4.0-1101.108|5.4.0-1102.109|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke-5.15", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1011.14~20.04.1|5.15.0-1014.17~20.04.1|5.15.0-1015.18~20.04.1|5.15.0-1016.19~20.04.1|5.15.0-1019.23~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1023.28~20.04.2|5.15.0-1027.32~20.04.1|5.15.0-1028.33~20.04.1|5.15.0-1029.34~20.04.1|5.15.0-1031.36~20.04.1|5.15.0-1032.37~20.04.1|5.15.0-1033.38~20.04.1|5.15.0-1034.39~20.04.1|5.15.0-1036.41~20.04.1|5.15.0-1037.42~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1039.44~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gkeop", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1008.9|5.4.0-1009.10|5.4.0-1010.11|5.4.0-1011.12|5.4.0-1012.13|5.4.0-1013.14|5.4.0-1014.15|5.4.0-1015.16|5.4.0-1016.17|5.4.0-1018.19|5.4.0-1021.22|5.4.0-1022.23|5.4.0-1023.24|5.4.0-1024.25|5.4.0-1025.26|5.4.0-1026.27|5.4.0-1027.28|5.4.0-1029.30|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1043.44|5.4.0-1046.48|5.4.0-1048.51|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1060.64|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1066.70|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1070.74|5.4.0-1071.75|5.4.0-1072.76|5.4.0-1073.77|5.4.0-1074.78|5.4.0-1075.79|5.4.0-1076.80|5.4.0-1077.81|5.4.0-1078.82|5.4.0-1079.83|5.4.0-1080.84|5.4.0-1081.85|5.4.0-1083.87|5.4.0-1084.88|5.4.0-1085.89|5.4.0-1086.90|5.4.0-1087.91|5.4.0-1088.92|5.4.0-1089.93|5.4.0-1090.94|5.4.0-1091.95|5.4.0-1092.96|5.4.0-1093.97|5.4.0-1094.98|5.4.0-1095.99|5.4.0-1096.100|5.4.0-1097.101|5.4.0-1098.102|5.4.0-1099.103|5.4.0-1100.104|5.4.0-1101.105|5.4.0-1102.106", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gkeop-5.15", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1003.5~20.04.2|5.15.0-1005.7~20.04.1|5.15.0-1007.10~20.04.1|5.15.0-1008.12~20.04.1|5.15.0-1011.15~20.04.2|5.15.0-1012.16~20.04.1|5.15.0-1013.17~20.04.1|5.15.0-1015.19~20.04.1|5.15.0-1016.21~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1020.25~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1022.27~20.04.1|5.15.0-1023.28~20.04.1|5.15.0-1024.29~20.04.1|5.15.0-1025.30~20.04.1|5.15.0-1026.31~20.04.1|5.15.0-1027.32~20.04.1|5.15.0-1028.33~20.04.1|5.15.0-1030.35~20.04.1|5.15.0-1031.37~20.04.1|5.15.0-1032.38~20.04.1|5.15.0-1033.39~20.04.1|5.15.0-1034.40~20.04.1|5.15.0-1035.41~20.04.1|5.15.0-1036.42~20.04.1|5.15.0-1037.43~20.04.1|5.15.0-1038.44~20.04.1|5.15.0-1039.45~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1043.50~20.04.1|5.15.0-1044.51~20.04.1|5.15.0-1045.52~20.04.1|5.15.0-1046.53~20.04.1|5.15.0-1047.54~20.04.1|5.15.0-1048.55~20.04.1|5.15.0-1049.56~20.04.1|5.15.0-1050.57~20.04.1|5.15.0-1051.58~20.04.1|5.15.0-1052.59~20.04.1|5.15.0-1053.60~20.04.1|5.15.0-1054.61~20.04.1|5.15.0-1055.62~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-22.23~20.04.1|5.11.0-25.27~20.04.1|5.11.0-27.29~20.04.1|5.11.0-34.36~20.04.1|5.11.0-36.40~20.04.1|5.11.0-37.41~20.04.2|5.11.0-38.42~20.04.1|5.11.0-40.44~20.04.2|5.11.0-41.45~20.04.1|5.11.0-43.47~20.04.2|5.11.0-44.48~20.04.2|5.11.0-46.51~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-21.21~20.04.1|5.13.0-22.22~20.04.1|5.13.0-23.23~20.04.2|5.13.0-25.26~20.04.1|5.13.0-27.29~20.04.1|5.13.0-28.31~20.04.1|5.13.0-30.33~20.04.1|5.13.0-35.40~20.04.1|5.13.0-37.42~20.04.1|5.13.0-39.44~20.04.1|5.13.0-40.45~20.04.1|5.13.0-41.46~20.04.1|5.13.0-44.49~20.04.1|5.13.0-48.54~20.04.1|5.13.0-51.58~20.04.1|5.13.0-52.59~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-33.34~20.04.1|5.15.0-41.44~20.04.1|5.15.0-43.46~20.04.1|5.15.0-46.49~20.04.1|5.15.0-48.54~20.04.1|5.15.0-50.56~20.04.1|5.15.0-52.58~20.04.1|5.15.0-53.59~20.04.1|5.15.0-56.62~20.04.1|5.15.0-57.63~20.04.1|5.15.0-58.64~20.04.1|5.15.0-60.66~20.04.1|5.15.0-67.74~20.04.1|5.15.0-69.76~20.04.1|5.15.0-70.77~20.04.1|5.15.0-71.78~20.04.1|5.15.0-72.79~20.04.1|5.15.0-73.80~20.04.1|5.15.0-75.82~20.04.1|5.15.0-76.83~20.04.1|5.15.0-78.85~20.04.1|5.15.0-79.86~20.04.2|5.15.0-82.91~20.04.1|5.15.0-83.92~20.04.1|5.15.0-84.93~20.04.1|5.15.0-86.96~20.04.1|5.15.0-87.97~20.04.1|5.15.0-88.98~20.04.1|5.15.0-89.99~20.04.1|5.15.0-91.101~20.04.1|5.15.0-92.102~20.04.1|5.15.0-94.104~20.04.1|5.15.0-97.107~20.04.1|5.15.0-100.110~20.04.1|5.15.0-101.111~20.04.1|5.15.0-102.112~20.04.1|5.15.0-105.115~20.04.1|5.15.0-106.116~20.04.1|5.15.0-107.117~20.04.1|5.15.0-113.123~20.04.1|5.15.0-116.126~20.04.1|5.15.0-117.127~20.04.1|5.15.0-118.128~20.04.1|5.15.0-119.129~20.04.1|5.15.0-121.131~20.04.1|5.15.0-122.132~20.04.1|5.15.0-124.134~20.04.1|5.15.0-125.135~20.04.1|5.15.0-126.136~20.04.1|5.15.0-127.137~20.04.1|5.15.0-130.140~20.04.1|5.15.0-131.141~20.04.1|5.15.0-134.145~20.04.1|5.15.0-136.147~20.04.1|5.15.0-138.148~20.04.1|5.15.0-139.149~20.04.1|5.15.0-142.152~20.04.1|5.15.0-143.153~20.04.1|5.15.0-144.157~20.04.1|5.15.0-145.158~20.04.1|5.15.0-151.161~20.04.1|5.15.0-152.162~20.04.1|5.15.0-153.163~20.04.1|5.15.0-156.166~20.04.1|5.15.0-157.167~20.04.1|5.15.0-160.170~20.04.1|5.15.0-161.171~20.04.1|5.15.0-163.173~20.04.1|5.15.0-164.174~20.04.1|5.15.0-168.178~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1003.4|5.4.0-1004.5|5.4.0-1005.6|5.4.0-1006.7|5.4.0-1007.8|5.4.0-1008.9|5.4.0-1010.11|5.4.0-1012.13|5.4.0-1013.14|5.4.0-1014.15|5.4.0-1015.16|5.4.0-1017.19|5.4.0-1018.20|5.4.0-1019.21|5.4.0-1020.22|5.4.0-1021.23|5.4.0-1023.25|5.4.0-1026.29|5.4.0-1028.32|5.4.0-1029.33|5.4.0-1031.35|5.4.0-1032.36|5.4.0-1033.37|5.4.0-1034.38|5.4.0-1036.41|5.4.0-1037.42|5.4.0-1040.45|5.4.0-1041.46|5.4.0-1042.47|5.4.0-1044.49|5.4.0-1045.50|5.4.0-1046.51|5.4.0-1047.52|5.4.0-1048.53|5.4.0-1049.54|5.4.0-1050.55|5.4.0-1051.56|5.4.0-1052.57|5.4.0-1053.58|5.4.0-1054.59|5.4.0-1056.61|5.4.0-1057.62|5.4.0-1058.63|5.4.0-1059.64|5.4.0-1060.65|5.4.0-1061.66|5.4.0-1063.68|5.4.0-1064.69|5.4.0-1065.70|5.4.0-1066.71|5.4.0-1067.72|5.4.0-1068.73|5.4.0-1069.74|5.4.0-1070.75|5.4.0-1071.76|5.4.0-1072.77|5.4.0-1073.78|5.4.0-1074.79|5.4.0-1075.80|5.4.0-1076.81|5.4.0-1077.82|5.4.0-1078.83|5.4.0-1079.84|5.4.0-1080.85|5.4.0-1081.86|5.4.0-1082.87|5.4.0-1083.88|5.4.0-1084.89|5.4.0-1085.90|5.4.0-1086.91|5.4.0-1088.93|5.4.0-1089.94|5.4.0-1090.95|5.4.0-1091.96|5.4.0-1092.97|5.4.0-1093.98|5.4.0-1094.99|5.4.0-1095.100|5.4.0-1096.101|5.4.0-1097.102|5.4.0-1098.103|5.4.0-1099.104|5.4.0-1100.105", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1033.36~20.04.1|5.15.0-1034.37~20.04.1|5.15.0-1035.38~20.04.1|5.15.0-1036.39~20.04.1|5.15.0-1037.40~20.04.1|5.15.0-1038.41~20.04.1|5.15.0-1040.43~20.04.1|5.15.0-1041.44~20.04.1|5.15.0-1042.45~20.04.1|5.15.0-1043.46~20.04.1|5.15.0-1044.47~20.04.1|5.15.0-1045.48~20.04.1|5.15.0-1046.49~20.04.1|5.15.0-1047.50~20.04.1|5.15.0-1048.51~20.04.1|5.15.0-1049.52~20.04.1|5.15.0-1050.53~20.04.1|5.15.0-1053.56~20.04.1|5.15.0-1054.57~20.04.1|5.15.0-1055.58~20.04.1|5.15.0-1057.60~20.04.1|5.15.0-1058.61~20.04.1|5.15.0-1059.62~20.04.1|5.15.0-1060.63~20.04.1|5.15.0-1061.64~20.04.1|5.15.0-1062.65~20.04.1|5.15.0-1063.66~20.04.1|5.15.0-1064.67~20.04.1|5.15.0-1065.68~20.04.1|5.15.0-1066.69~20.04.1|5.15.0-1067.70~20.04.1|5.15.0-1068.71~20.04.1|5.15.0-1069.72~20.04.1|5.15.0-1074.77~20.04.1|5.15.0-1075.78~20.04.1|5.15.0-1076.79~20.04.1|5.15.0-1078.81~20.04.1|5.15.0-1079.82~20.04.1|5.15.0-1080.83~20.04.1|5.15.0-1081.84~20.04.1|5.15.0-1083.86~20.04.1|5.15.0-1085.88~20.04.1|5.15.0-1086.89~20.04.1|5.15.0-1087.90~20.04.1|5.15.0-1089.92~20.04.1|5.15.0-1090.93~20.04.1|5.15.0-1091.94~20.04.1|5.15.0-1092.95~20.04.1|5.15.0-1093.96~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1007.7|5.13.0-1008.8|5.13.0-1009.9|5.13.0-1010.10|5.13.0-1011.11|5.13.0-1014.15|5.13.0-1017.19", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-iotg-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1003.5~20.04.1|5.15.0-1008.11~20.04.1|5.15.0-1010.14~20.04.1|5.15.0-1015.20~20.04.2|5.15.0-1016.21~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1021.26~20.04.1|5.15.0-1023.28~20.04.1|5.15.0-1025.30~20.04.1|5.15.0-1026.31~20.04.1|5.15.0-1027.32~20.04.1|5.15.0-1030.35~20.04.1|5.15.0-1031.36~20.04.1|5.15.0-1033.38~20.04.1|5.15.0-1034.39~20.04.1|5.15.0-1036.41~20.04.1|5.15.0-1037.42~20.04.1|5.15.0-1038.43~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1043.49~20.04.1|5.15.0-1045.51~20.04.1|5.15.0-1046.52~20.04.1|5.15.0-1048.54~20.04.1|5.15.0-1049.55~20.04.1|5.15.0-1050.56~20.04.1|5.15.0-1051.57~20.04.1|5.15.0-1052.58~20.04.1|5.15.0-1055.61~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1059.65~20.04.1|5.15.0-1060.66~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1064.70~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.2|5.15.0-1074.80~20.04.1|5.15.0-1077.83~20.04.1|5.15.0-1078.84~20.04.1|5.15.0-1079.85~20.04.1|5.15.0-1083.89~20.04.1|5.15.0-1084.90~20.04.1|5.15.0-1085.91~20.04.1|5.15.0-1086.92~20.04.1|5.15.0-1087.93~20.04.1|5.15.0-1088.94~20.04.1|5.15.0-1090.96~20.04.1|5.15.0-1091.97~20.04.1|5.15.0-1092.98~20.04.1|5.15.0-1093.99~20.04.1|5.15.0-1094.100~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-iot", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1001.3|5.4.0-1004.6|5.4.0-1005.7|5.4.0-1006.8|5.4.0-1009.11|5.4.0-1010.12|5.4.0-1011.13|5.4.0-1012.14|5.4.0-1013.15|5.4.0-1014.16|5.4.0-1017.18|5.4.0-1018.19|5.4.0-1019.20|5.4.0-1021.22|5.4.0-1022.23|5.4.0-1023.24|5.4.0-1024.25|5.4.0-1025.26|5.4.0-1026.27|5.4.0-1028.29|5.4.0-1029.30|5.4.0-1030.31|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1035.36|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1041.42|5.4.0-1042.43|5.4.0-1043.44|5.4.0-1044.45|5.4.0-1045.46|5.4.0-1048.51|5.4.0-1049.52|5.4.0-1051.54|5.4.0-1052.55|5.4.0-1053.56|5.4.0-1054.57|5.4.0-1055.58|5.4.0-1056.59|5.4.0-1057.60|5.4.0-1058.61", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1003.3|5.3.0-1008.9|5.3.0-1009.10|5.4.0-1004.4|5.4.0-1006.6|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1020.20|5.4.0-1021.21|5.4.0-1023.23|5.4.0-1024.24|5.4.0-1026.27|5.4.0-1028.29|5.4.0-1030.31|5.4.0-1031.32|5.4.0-1032.33|5.4.0-1033.34|5.4.0-1034.35|5.4.0-1036.37|5.4.0-1037.38|5.4.0-1038.39|5.4.0-1039.40|5.4.0-1040.41|5.4.0-1041.42|5.4.0-1044.46|5.4.0-1045.47|5.4.0-1046.48|5.4.0-1047.49|5.4.0-1048.50|5.4.0-1049.51|5.4.0-1050.52|5.4.0-1051.53|5.4.0-1053.55|5.4.0-1054.56|5.4.0-1055.57|5.4.0-1056.58|5.4.0-1058.61|5.4.0-1059.62|5.4.0-1061.64|5.4.0-1062.65|5.4.0-1063.66|5.4.0-1065.68|5.4.0-1068.72|5.4.0-1070.75|5.4.0-1071.76|5.4.0-1073.78|5.4.0-1074.79|5.4.0-1075.80|5.4.0-1076.81|5.4.0-1078.84|5.4.0-1079.85|5.4.0-1082.88|5.4.0-1083.89|5.4.0-1084.90|5.4.0-1086.92|5.4.0-1087.93|5.4.0-1088.94|5.4.0-1089.95|5.4.0-1090.96|5.4.0-1091.97|5.4.0-1092.98|5.4.0-1093.99|5.4.0-1094.100|5.4.0-1095.101|5.4.0-1096.102|5.4.0-1097.103|5.4.0-1098.104|5.4.0-1099.105|5.4.0-1100.106|5.4.0-1101.107|5.4.0-1102.108|5.4.0-1103.110|5.4.0-1104.111|5.4.0-1105.112|5.4.0-1106.113|5.4.0-1107.114|5.4.0-1108.115|5.4.0-1109.116|5.4.0-1110.117|5.4.0-1111.118|5.4.0-1112.119|5.4.0-1113.120|5.4.0-1114.121|5.4.0-1115.122|5.4.0-1116.123|5.4.0-1117.124|5.4.0-1118.125|5.4.0-1119.127|5.4.0-1120.128|5.4.0-1121.129|5.4.0-1122.130|5.4.0-1123.131|5.4.0-1124.132|5.4.0-1125.133|5.4.0-1126.134|5.4.0-1127.136|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1139.148|5.4.0-1140.149|5.4.0-1141.150", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1005.6|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1004.6|5.15.0-1005.7|5.15.0-1008.10|5.15.0-1009.11|5.15.0-1011.14|5.15.0-1013.17|5.15.0-1014.18|5.15.0-1015.19|5.15.0-1017.21|5.15.0-1019.23|5.15.0-1020.24|5.15.0-1021.25|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32|5.15.0-1030.34|5.15.0-1031.35|5.15.0-1033.37|5.15.0-1034.38|5.15.0-1035.39|5.15.0-1036.40|5.15.0-1037.41|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1042.47|5.15.0-1043.48|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1055.60|5.15.0-1056.61|5.15.0-1057.63|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1076.83|5.15.0-1078.85|5.15.0-1079.86|5.15.0-1080.87|5.15.0-1081.88|5.15.0-1082.89|5.15.0-1083.90|5.15.0-1084.91|5.15.0-1085.92|5.15.0-1086.93|5.15.0-1087.94|5.15.0-1088.95|5.15.0-1089.96|5.15.0-1090.97|5.15.0-1091.98|5.15.0-1092.99|5.15.0-1093.100|5.15.0-1095.102|5.15.0-1096.103|5.15.0-1097.104|5.15.0-1098.105|5.15.0-1099.106", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-33.34~20.04.1|5.15.0-42.45~20.04.1|5.15.0-43.46~20.04.1|5.15.0-46.49~20.04.1|5.15.0-48.54~20.04.1|5.15.0-50.56~20.04.1|5.15.0-52.58~20.04.1|5.15.0-53.59~20.04.1|5.15.0-56.62~20.04.1|5.15.0-58.64~20.04.1|5.15.0-60.66~20.04.1|5.15.0-67.74~20.04.1|5.15.0-69.76~20.04.1|5.15.0-70.77~20.04.1|5.15.0-71.78~20.04.1|5.15.0-72.79~20.04.1|5.15.0-73.80~20.04.1|5.15.0-75.82~20.04.1|5.15.0-76.83~20.04.1|5.15.0-78.85~20.04.1|5.15.0-79.88~20.04.1|5.15.0-82.91~20.04.1|5.15.0-83.92~20.04.1|5.15.0-84.93~20.04.1|5.15.0-86.95~20.04.1|5.15.0-87.96~20.04.1|5.15.0-88.98~20.04.1|5.15.0-89.99~20.04.1|5.15.0-91.101~20.04.1|5.15.0-92.102~20.04.1|5.15.0-94.104~20.04.1|5.15.0-97.107~20.04.1|5.15.0-100.110~20.04.1|5.15.0-101.111~20.04.1|5.15.0-102.112~20.04.1|5.15.0-105.115~20.04.1|5.15.0-106.116~20.04.1|5.15.0-107.117~20.04.1|5.15.0-110.120~20.04.1|5.15.0-113.123~20.04.1|5.15.0-116.126~20.04.1|5.15.0-117.127~20.04.1|5.15.0-118.128~20.04.1|5.15.0-119.129~20.04.1|5.15.0-121.131~20.04.1|5.15.0-122.132~20.04.1|5.15.0-124.134~20.04.1|5.15.0-125.135~20.04.1|5.15.0-126.136~20.04.1|5.15.0-127.137~20.04.1|5.15.0-128.138~20.04.1|5.15.0-129.139~20.04.1|5.15.0-131.141~20.04.1|5.15.0-133.143~20.04.1|5.15.0-134.145~20.04.1|5.15.0-135.146~20.04.1|5.15.0-136.147~20.04.1|5.15.0-138.148~20.04.1|5.15.0-139.149~20.04.1|5.15.0-140.150~20.04.1|5.15.0-142.152~20.04.1|5.15.0-143.153~20.04.1|5.15.0-144.157~20.04.1|5.15.0-145.158~20.04.1|5.15.0-152.162~20.04.1|5.15.0-153.163~20.04.1|5.15.0-156.166~20.04.1|5.15.0-157.167~20.04.1|5.15.0-160.170~20.04.1|5.15.0-161.171~20.04.1|5.15.0-163.173~20.04.1|5.15.0-164.174~20.04.1|5.15.0-168.178~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-tegra-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1009.9~20.04.1|5.15.0-1010.10~20.04.1|5.15.0-1012.12~20.04.1|5.15.0-1014.14~20.04.1|5.15.0-1015.15~20.04.1|5.15.0-1016.16~20.04.1|5.15.0-1017.17~20.04.1|5.15.0-1018.18~20.04.1|5.15.0-1019.19~20.04.1|5.15.0-1020.20~20.04.1|5.15.0-1022.22~20.04.1|5.15.0-1025.25~20.04.1|5.15.0-1027.27~20.04.1|5.15.0-1030.30~20.04.1|5.15.0-1032.32~20.04.1|5.15.0-1039.39~20.04.1|5.15.0-1040.40~20.04.1|5.15.0-1041.41~20.04.1|5.15.0-1042.42~20.04.1|5.15.0-1043.43~20.04.1|5.15.0-1044.44~20.04.1|5.15.0-1045.45~20.04.1|5.15.0-1046.46~20.04.1|5.15.0-1047.47~20.04.1|5.15.0-1048.48~20.04.1|5.15.0-1049.49~20.04.1|5.15.0-1050.50~20.04.1|5.15.0-1051.51~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-5.10", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.10.0-1008.9|5.10.0-1011.12|5.10.0-1013.14|5.10.0-1014.15|5.10.0-1016.17|5.10.0-1017.18|5.10.0-1019.20|5.10.0-1021.22|5.10.0-1022.23|5.10.0-1023.24|5.10.0-1025.26|5.10.0-1026.27|5.10.0-1029.30|5.10.0-1032.33|5.10.0-1033.34|5.10.0-1034.35|5.10.0-1038.40|5.10.0-1044.46|5.10.0-1045.47|5.10.0-1049.51|5.10.0-1050.52|5.10.0-1051.53|5.10.0-1052.54|5.10.0-1053.55|5.10.0-1055.58|5.10.0-1057.61", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1009.10|5.13.0-1010.11|5.13.0-1012.16|5.13.0-1014.18|5.13.0-1017.21|5.13.0-1019.23|5.13.0-1020.24|5.13.0-1021.25|5.13.0-1022.26|5.13.0-1026.32|5.13.0-1028.35|5.13.0-1029.36", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-5.14", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.14.0-1004.4|5.14.0-1005.5|5.14.0-1007.7|5.14.0-1008.8|5.14.0-1010.10|5.14.0-1011.11|5.14.0-1013.13|5.14.0-1018.19|5.14.0-1020.22|5.14.0-1022.24|5.14.0-1024.26|5.14.0-1027.30|5.14.0-1029.32|5.14.0-1031.34|5.14.0-1032.35|5.14.0-1033.36|5.14.0-1034.37|5.14.0-1036.40|5.14.0-1038.42|5.14.0-1042.47|5.14.0-1044.49|5.14.0-1045.51|5.14.0-1046.53|5.14.0-1047.54|5.14.0-1048.55|5.14.0-1049.56|5.14.0-1050.57|5.14.0-1051.58|5.14.0-1052.59|5.14.0-1054.61|5.14.0-1055.62|5.14.0-1056.63|5.14.0-1057.64|5.14.0-1058.66|5.14.0-1059.67", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-5.6", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.6.0-1007.7|5.6.0-1008.8|5.6.0-1010.10|5.6.0-1011.11|5.6.0-1013.13|5.6.0-1017.17|5.6.0-1018.18|5.6.0-1020.20|5.6.0-1021.21|5.6.0-1023.23|5.6.0-1026.26|5.6.0-1027.27|5.6.0-1028.28|5.6.0-1031.32|5.6.0-1032.33|5.6.0-1033.35|5.6.0-1034.36|5.6.0-1035.37|5.6.0-1036.39|5.6.0-1039.43|5.6.0-1042.46|5.6.0-1047.51|5.6.0-1048.52|5.6.0-1050.54|5.6.0-1052.56|5.6.0-1053.57|5.6.0-1054.58|5.6.0-1055.59|5.6.0-1056.60", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1002.2|5.3.0-1007.8|5.3.0-1008.9|5.4.0-1005.5|5.4.0-1007.7|5.4.0-1008.8|5.4.0-1009.9|5.4.0-1011.11|5.4.0-1015.15|5.4.0-1018.18|5.4.0-1019.19|5.4.0-1021.21|5.4.0-1022.22|5.4.0-1024.24|5.4.0-1025.25|5.4.0-1028.29|5.4.0-1029.31|5.4.0-1030.32|5.4.0-1032.34|5.4.0-1034.36|5.4.0-1035.38|5.4.0-1037.40|5.4.0-1038.41|5.4.0-1039.42|5.4.0-1041.44|5.4.0-1042.45|5.4.0-1043.46|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1048.52|5.4.0-1049.53|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1054.58|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1057.61|5.4.0-1058.62|5.4.0-1059.63|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1063.67|5.4.0-1064.68|5.4.0-1066.71|5.4.0-1067.72|5.4.0-1069.75|5.4.0-1070.76|5.4.0-1071.77|5.4.0-1073.79|5.4.0-1076.83|5.4.0-1078.86|5.4.0-1079.87|5.4.0-1081.89|5.4.0-1082.90|5.4.0-1083.91|5.4.0-1084.92|5.4.0-1086.95|5.4.0-1087.96|5.4.0-1090.99|5.4.0-1091.100|5.4.0-1092.101|5.4.0-1093.102|5.4.0-1094.103|5.4.0-1097.106|5.4.0-1098.107|5.4.0-1099.108|5.4.0-1100.109|5.4.0-1101.110|5.4.0-1102.111|5.4.0-1103.112|5.4.0-1104.113|5.4.0-1105.114|5.4.0-1106.115|5.4.0-1107.116|5.4.0-1108.117|5.4.0-1109.118|5.4.0-1110.119|5.4.0-1111.120|5.4.0-1112.121|5.4.0-1113.122|5.4.0-1115.124|5.4.0-1116.125|5.4.0-1117.126|5.4.0-1118.127|5.4.0-1119.128|5.4.0-1120.129|5.4.0-1121.130|5.4.0-1122.131|5.4.0-1123.132|5.4.0-1124.133|5.4.0-1125.134|5.4.0-1126.135|5.4.0-1127.136|5.4.0-1129.138|5.4.0-1130.139|5.4.0-1131.140|5.4.0-1132.141|5.4.0-1133.142|5.4.0-1134.143|5.4.0-1135.144|5.4.0-1136.145|5.4.0-1137.146|5.4.0-1138.147|5.4.0-1140.150|5.4.0-1141.151|5.4.0-1142.152|5.4.0-1143.153|5.4.0-1144.154|5.4.0-1145.155|5.4.0-1146.156|5.4.0-1147.157|5.4.0-1149.159|5.4.0-1150.160|5.4.0-1151.161", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-1008.8~20.04.1|5.11.0-1013.14~20.04.1|5.11.0-1016.17~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1019.20~20.04.1|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1025.27~20.04.1|5.11.0-1027.30~20.04.1|5.11.0-1028.31~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.13", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1011.13~20.04.2|5.13.0-1015.19~20.04.1|5.13.0-1016.20~20.04.1|5.13.0-1018.22~20.04.1|5.13.0-1021.26~20.04.1|5.13.0-1025.30~20.04.1|5.13.0-1027.32~20.04.1|5.13.0-1028.33~20.04.1|5.13.0-1030.35~20.04.1|5.13.0-1033.39~20.04.1|5.13.0-1034.40~20.04.1|5.13.0-1036.43~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1019.20~22.04.1|5.19.0-1020.21~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1024.25~22.04.1|5.19.0-1025.26~22.04.1|5.19.0-1026.27~22.04.1|5.19.0-1027.28~22.04.1|5.19.0-1028.29~22.04.1|5.19.0-1029.30~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1005.5~22.04.1|6.2.0-1006.6~22.04.1|6.2.0-1007.7~22.04.1|6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.3|6.2.0-1010.10~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-preview/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1048.56+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1007.9~20.04.1|5.15.0-1013.17~20.04.1|5.15.0-1016.20~20.04.1|5.15.0-1017.22~20.04.1|5.15.0-1018.23~20.04.1|5.15.0-1019.24~20.04.1|5.15.0-1021.27~20.04.1|5.15.0-1022.28~20.04.1|5.15.0-1025.31~20.04.2|5.15.0-1027.33~20.04.1|5.15.0-1029.35~20.04.1|5.15.0-1030.36~20.04.1|5.15.0-1032.38~20.04.1|5.15.0-1033.39~20.04.1|5.15.0-1034.40~20.04.1|5.15.0-1035.41~20.04.1|5.15.0-1036.42~20.04.1|5.15.0-1037.43~20.04.1|5.15.0-1038.44~20.04.1|5.15.0-1039.45~20.04.1|5.15.0-1040.46~20.04.1|5.15.0-1041.47~20.04.1|5.15.0-1042.48~20.04.1|5.15.0-1044.50~20.04.1|5.15.0-1045.51~20.04.1|5.15.0-1046.52~20.04.1|5.15.0-1047.53~20.04.1|5.15.0-1048.54~20.04.1|5.15.0-1049.55~20.04.1|5.15.0-1050.56~20.04.1|5.15.0-1051.57~20.04.1|5.15.0-1052.58~20.04.1|5.15.0-1053.59~20.04.1|5.15.0-1054.60~20.04.1|5.15.0-1055.61~20.04.1|5.15.0-1058.64~20.04.1|5.15.0-1059.65~20.04.1|5.15.0-1061.67~20.04.1|5.15.0-1062.68~20.04.1|5.15.0-1063.69~20.04.1|5.15.0-1065.71~20.04.1|5.15.0-1066.72~20.04.1|5.15.0-1067.73~20.04.1|5.15.0-1068.74~20.04.1|5.15.0-1069.75~20.04.1|5.15.0-1070.76~20.04.1|5.15.0-1071.77~20.04.1|5.15.0-1072.78~20.04.1|5.15.0-1073.79~20.04.1|5.15.0-1074.80~20.04.1|5.15.0-1075.81~20.04.1|5.15.0-1076.82~20.04.1|5.15.0-1077.83~20.04.1|5.15.0-1078.84~20.04.1|5.15.0-1079.85~20.04.1|5.15.0-1080.86~20.04.1|5.15.0-1081.87~20.04.1|5.15.0-1083.89~20.04.1|5.15.0-1084.90~20.04.1|5.15.0-1085.91~20.04.3|5.15.0-1086.92~20.04.1|5.15.0-1088.94~20.04.1|5.15.0-1090.96~20.04.1|5.15.0-1091.97~20.04.1|5.15.0-1092.98~20.04.1|5.15.0-1093.99~20.04.1|5.15.0-1094.100~20.04.1|5.15.0-1095.101~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-1031.32~20.04.2|5.8.0-1033.34~20.04.1|5.8.0-1034.35~20.04.2|5.8.0-1037.38~20.04.1|5.8.0-1038.39~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1007.7|5.4.0-1008.8|5.4.0-1011.11|5.4.0-1012.12|5.4.0-1013.13|5.4.0-1015.15|5.4.0-1016.17|5.4.0-1018.20|5.4.0-1019.21|5.4.0-1021.24|5.4.0-1022.25|5.4.0-1023.26|5.4.0-1025.28|5.4.0-1026.29|5.4.0-1028.31|5.4.0-1029.32|5.4.0-1030.33|5.4.0-1032.35|5.4.0-1033.36|5.4.0-1034.37|5.4.0-1035.38|5.4.0-1036.39|5.4.0-1038.41|5.4.0-1041.45|5.4.0-1042.46|5.4.0-1043.47|5.4.0-1044.48|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1047.52|5.4.0-1048.53|5.4.0-1050.56|5.4.0-1052.58|5.4.0-1053.60|5.4.0-1055.62|5.4.0-1056.63|5.4.0-1058.65|5.4.0-1059.67|5.4.0-1060.68|5.4.0-1062.70|5.4.0-1065.75|5.4.0-1066.76|5.4.0-1068.78|5.4.0-1069.79|5.4.0-1070.80|5.4.0-1071.81|5.4.0-1073.84|5.4.0-1074.85|5.4.0-1077.88|5.4.0-1078.89|5.4.0-1079.90|5.4.0-1080.91|5.4.0-1081.92|5.4.0-1082.93|5.4.0-1083.94|5.4.0-1084.95|5.4.0-1085.96|5.4.0-1086.97|5.4.0-1088.99|5.4.0-1089.100|5.4.0-1090.101|5.4.0-1091.102|5.4.0-1092.103|5.4.0-1093.104|5.4.0-1094.105|5.4.0-1095.106|5.4.0-1096.107|5.4.0-1097.109|5.4.0-1098.110|5.4.0-1100.112|5.4.0-1101.113|5.4.0-1102.114|5.4.0-1103.115|5.4.0-1104.116|5.4.0-1105.117|5.4.0-1106.118|5.4.0-1107.119|5.4.0-1108.120|5.4.0-1109.121|5.4.0-1110.122|5.4.0-1111.123|5.4.0-1112.124|5.4.0-1113.125|5.4.0-1114.126|5.4.0-1115.127|5.4.0-1116.128|5.4.0-1117.129|5.4.0-1118.130|5.4.0-1119.131|5.4.0-1120.132|5.4.0-1121.133|5.4.0-1122.134|5.4.0-1129.142|5.4.0-1130.143|5.4.0-1131.144|5.4.0-1132.145|5.4.0-1133.146|5.4.0-1134.147|5.4.0-1135.148|5.4.0-1136.149", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi2", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.3.0-1007.8|5.3.0-1014.16|5.3.0-1015.17|5.3.0-1017.19|5.4.0-1004.4|5.4.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-24.28|5.4.0-26.30|5.4.0-27.31|5.4.0-28.32|5.4.0-30.34|5.4.0-31.35|5.4.0-33.37|5.4.0-34.38|5.4.0-36.41|5.4.0-37.42|5.4.0-39.44|5.4.0-40.45", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-5.11", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.11.0-1015.16~20.04.1|5.11.0-1017.18~20.04.1|5.11.0-1018.19~20.04.2|5.11.0-1020.21~20.04.1|5.11.0-1021.22~20.04.1|5.11.0-1022.23~20.04.1|5.11.0-1023.24~20.04.1|5.11.0-1024.25~20.04.1|5.11.0-1026.28~20.04.1|5.11.0-1028.31~20.04.1|5.11.0-1029.32~20.04.1|5.11.0-1030.34|5.11.0-1031.35", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-5.15", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1015.17~20.04.1|5.15.0-1017.19~20.04.1|5.15.0-1018.21~20.04.1|5.15.0-1019.22~20.04.1|5.15.0-1022.26~20.04.1|5.15.0-1023.27~20.04.1|5.15.0-1026.30~20.04.2|5.15.0-1027.31~20.04.1|5.15.0-1028.32~20.04.1|5.15.0-1029.33~20.04.1|5.15.0-1030.34~20.04.1|5.15.0-1031.35~20.04.1|5.15.0-1032.36~20.04.1|5.15.0-1033.37~20.04.1|5.15.0-1034.38~20.04.1|5.15.0-1035.39~20.04.1|5.15.0-1036.40~20.04.2|5.15.0-1037.41~20.04.2|5.15.0-1038.42~20.04.2|5.15.0-1039.43~20.04.2|5.15.0-1040.44~20.04.3|5.15.0-1041.45~20.04.1|5.15.0-1043.47~20.04.1|5.15.0-1044.48~20.04.1|5.15.0-1045.49~20.04.1|5.15.0-1046.50~20.04.1|5.15.0-1047.51~20.04.1|5.15.0-1048.52~20.04.1|5.15.0-1049.53~20.04.2|5.15.0-1050.54~20.04.1|5.15.0-1051.55~20.04.1|5.15.0-1052.56~20.04.1|5.15.0-1053.57~20.04.1|5.15.0-1056.60~20.04.1|5.15.0-1057.61~20.04.1|5.15.0-1058.62~20.04.1|5.15.0-1059.63~20.04.1|5.15.0-1060.64~20.04.1|5.15.0-1061.65~20.04.1|5.15.0-1062.66~20.04.1|5.15.0-1063.67~20.04.1|5.15.0-1064.68~20.04.1|5.15.0-1065.69~20.04.1|5.15.0-1066.70~20.04.1|5.15.0-1067.71~20.04.1|5.15.0-1068.72~20.04.1|5.15.0-1069.73~20.04.1|5.15.0-1070.74~20.04.1|5.15.0-1071.75~20.04.1|5.15.0-1072.76~20.04.1|5.15.0-1073.77~20.04.1|5.15.0-1074.78~20.04.1|5.15.0-1075.79~20.04.1|5.15.0-1076.80~20.04.1|5.15.0-1077.81~20.04.1|5.15.0-1078.82~20.04.1|5.15.0-1079.83~20.04.1|5.15.0-1081.85~20.04.1|5.15.0-1082.86~20.04.1|5.15.0-1083.87~20.04.1|5.15.0-1084.88~20.04.1|5.15.0-1085.89~20.04.1|5.15.0-1086.90~20.04.1|5.15.0-1087.91~20.04.1|5.15.0-1088.92~20.04.1|5.15.0-1090.94~20.04.1|5.15.0-1091.95~20.04.1|5.15.0-1092.96~20.04.1|5.15.0-1093.97~20.04.2|5.15.0-1094.98~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-5.8", - "version": "", - "qualifiers": "arch=source&distro=focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.8.0-14.16~20.04.1|5.8.0-14.16~20.04.3|5.8.0-16.18~20.04.1|5.8.0-17.19~20.04.1|5.8.0-18.20~20.04.1|5.8.0-20.22~20.04.1|5.8.0-22.24~20.04.1|5.8.0-25.27~20.04.1|5.8.0-26.28~20.04.1|5.8.0-29.31~20.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-xilinx-zynqmp", - "version": "", - "qualifiers": "arch=source&distro=esm-infra/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1020.24|5.4.0-1021.25|5.4.0-1022.26|5.4.0-1023.27|5.4.0-1024.28|5.4.0-1025.29|5.4.0-1026.30|5.4.0-1027.31|5.4.0-1028.32|5.4.0-1029.33|5.4.0-1030.34|5.4.0-1031.35|5.4.0-1032.36|5.4.0-1033.37|5.4.0-1034.38|5.4.0-1035.39|5.4.0-1036.40|5.4.0-1037.41|5.4.0-1038.42|5.4.0-1039.43|5.4.0-1040.44|5.4.0-1041.45|5.4.0-1042.46|5.4.0-1043.47|5.4.0-1044.48|5.4.0-1045.49|5.4.0-1046.50|5.4.0-1047.51|5.4.0-1048.52|5.4.0-1049.53|5.4.0-1050.54|5.4.0-1051.55|5.4.0-1052.56|5.4.0-1053.57|5.4.0-1054.58|5.4.0-1055.59|5.4.0-1056.60|5.4.0-1058.62|5.4.0-1060.64|5.4.0-1061.65|5.4.0-1062.66|5.4.0-1064.68|5.4.0-1065.69|5.4.0-1066.70|5.4.0-1067.71|5.4.0-1068.72|5.4.0-1069.73|5.4.0-1070.74|5.4.0-1071.75", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1008.8~22.04.1|6.5.0-1010.10~22.04.1|6.5.0-1011.11~22.04.1|6.5.0-1012.12~22.04.1|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.2|6.5.0-1018.18~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1021.21~22.04.1|6.5.0-1022.22~22.04.1|6.5.0-1023.23~22.04.1|6.5.0-1024.24~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-1002.2|6.11.0-1003.3|6.11.0-1007.7|6.11.0-1010.10|6.11.0-1011.11|6.11.0-1012.12|6.11.0-1013.13|6.11.0-1016.16", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1006.6|6.14.0-1009.9+25.10.1|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1021.21+fips2|5.4.0-1069.73+fips2|5.4.0-1071.76+fips1|5.4.0-1072.77+fips1|5.4.0-1073.78+fips1|5.4.0-1078.84+fips1|5.4.0-1080.87+fips1|5.4.0-1081.88+fips1|5.4.0-1083.90+fips1|5.4.0-1085.92+fips1|5.4.0-1086.93+fips1|5.4.0-1088.96+fips1|5.4.0-1089.97+fips1|5.4.0-1092.100+fips1|5.4.0-1093.101+fips1|5.4.0-1094.102+fips1|5.4.0-1096.104+fips1|5.4.0-1099.107+fips1|5.4.0-1100.108+fips1|5.4.0-1101.109+fips1|5.4.0-1102.110+fips1|5.4.0-1103.111+fips1|5.4.0-1104.112+fips1|5.4.0-1105.113+fips1|5.4.0-1106.114+fips1|5.4.0-1107.115+fips1|5.4.0-1108.116+fips1|5.4.0-1109.118+fips1|5.4.0-1110.119+fips1|5.4.0-1111.120+fips1|5.4.0-1112.121+fips1|5.4.0-1113.123+fips1|5.4.0-1114.124+fips1|5.4.0-1116.126+fips1|5.4.0-1117.127+fips1|5.4.0-1118.128+fips1|5.4.0-1119.129+fips1|5.4.0-1120.130+fips1|5.4.0-1121.131+fips1|5.4.0-1122.132+fips1|5.4.0-1123.133+fips1|5.4.0-1124.134+fips1|5.4.0-1125.135+fips1|5.4.0-1126.136+fips2|5.4.0-1127.137+fips1|5.4.0-1128.138+fips1|5.4.0-1129.139+fips1|5.4.0-1130.140+fips1|5.4.0-1131.141+fips1|5.4.0-1132.142+fips1|5.4.0-1133.143+fips1|5.4.0-1134.144+fips1|5.4.0-1135.145+fips1|5.4.0-1136.146+fips1|5.4.0-1137.147+fips1|5.4.0-1139.149+fips1|5.4.0-1140.151+fips1|5.4.0-1142.153+fips1|5.4.0-1144.155+fips1|5.4.0-1145.156+fips1|5.4.0-1146.156+fips1|5.4.0-1147.157+fips1|5.4.0-1148.158+fips1|5.4.0-1149.159+fips1|5.4.0-1150.160+fips1|5.4.0-1151.161+fips1|5.4.0-1152.162+fips1|5.4.0-1153.163+fips1|5.4.0-1154.164+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1022.22+fips1|5.4.0-1073.76+fips1|5.4.0-1074.77+fips1|5.4.0-1076.79+fips1|5.4.0-1078.81+fips1|5.4.0-1080.83+fips1|5.4.0-1083.87+fips1|5.4.0-1085.90+fips1|5.4.0-1086.91+fips1|5.4.0-1089.94+fips1|5.4.0-1090.95+fips1|5.4.0-1091.96+fips1|5.4.0-1094.100+fips1|5.4.0-1095.101+fips1|5.4.0-1098.104+fips1|5.4.0-1100.106+fips1|5.4.0-1101.107+fips1|5.4.0-1103.109+fips1|5.4.0-1104.110+fips1|5.4.0-1105.111+fips1|5.4.0-1106.112+fips1|5.4.0-1107.113+fips1|5.4.0-1108.114+fips1|5.4.0-1109.115+fips1|5.4.0-1110.116+fips1|5.4.0-1111.117+fips1|5.4.0-1112.118+fips1|5.4.0-1113.119+fips1|5.4.0-1114.120+fips1|5.4.0-1115.122+fips1|5.4.0-1116.123+fips1|5.4.0-1117.124+fips1|5.4.0-1118.125+fips1|5.4.0-1119.126+fips1|5.4.0-1121.128+fips1|5.4.0-1122.129+fips1|5.4.0-1123.130+fips1|5.4.0-1124.131+fips1|5.4.0-1126.133+fips1|5.4.0-1127.134+fips1|5.4.0-1128.135+fips1|5.4.0-1129.136+fips1|5.4.0-1130.137+fips1|5.4.0-1131.138+fips1|5.4.0-1132.139+fips1|5.4.0-1133.140+fips1|5.4.0-1134.141+fips1|5.4.0-1135.142+fips1|5.4.0-1136.143+fips1|5.4.0-1137.144+fips1|5.4.0-1138.145+fips1|5.4.0-1139.146+fips1|5.4.0-1140.147+fips1|5.4.0-1142.149+fips1|5.4.0-1143.150+fips1|5.4.0-1145.152+fips1|5.4.0-1147.154+fips1|5.4.0-1148.156+fips1|5.4.0-1149.157+fips1|5.4.0-1151.158+fips1|5.4.0-1152.159+fips1|5.4.0-1153.160+fips1|5.4.0-1154.161+fips1|5.4.0-1155.162+fips1|5.4.0-1157.164+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1026.30|5.4.0-1028.32|5.4.0-1031.36|5.4.0-1032.37|5.4.0-1033.38|5.4.0-1034.40|5.4.0-1035.41|5.4.0-1036.42|5.4.0-1037.43|5.4.0-1038.44|5.4.0-1040.46|5.4.0-1041.47|5.4.0-1042.48|5.4.0-1043.49|5.4.0-1045.51|5.4.0-1046.52|5.4.0-1047.53|5.4.0-1048.54|5.4.0-1049.55|5.4.0-1051.57|5.4.0-1054.61|5.4.0-1056.64|5.4.0-1057.65|5.4.0-1059.67|5.4.0-1060.68|5.4.0-1061.69|5.4.0-1062.70|5.4.0-1064.73|5.4.0-1065.74|5.4.0-1068.77|5.4.0-1069.78|5.4.0-1070.79|5.4.0-1072.81|5.4.0-1073.82|5.4.0-1074.83|5.4.0-1075.84|5.4.0-1076.85|5.4.0-1077.86|5.4.0-1078.87|5.4.0-1079.88|5.4.0-1080.89|5.4.0-1081.90|5.4.0-1082.91|5.4.0-1083.92|5.4.0-1084.93|5.4.0-1085.94|5.4.0-1086.95|5.4.0-1087.96|5.4.0-1088.97|5.4.0-1089.98|5.4.0-1090.100|5.4.0-1091.101|5.4.0-1092.102|5.4.0-1094.104|5.4.0-1095.105|5.4.0-1096.106|5.4.0-1097.107|5.4.0-1098.108|5.4.0-1099.109|5.4.0-1100.110|5.4.0-1101.111|5.4.0-1102.112|5.4.0-1103.113|5.4.0-1104.114|5.4.0-1105.115|5.4.0-1106.116|5.4.0-1107.117|5.4.0-1108.118|5.4.0-1109.119|5.4.0-1110.120|5.4.0-1111.121|5.4.0-1112.122|5.4.0-1116.126|5.4.0-1117.127|5.4.0-1118.128|5.4.0-1119.129|5.4.0-1120.130|5.4.0-1121.131|5.4.0-1122.132|5.4.0-1123.133|5.4.0-1124.134|5.4.0-1125.135|5.4.0-1126.136|5.4.0-1127.137|5.4.0-1128.138", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1021.21+fips1|5.4.0-1067.71~20.04.1|5.4.0-1069.73+fips2|5.4.0-1071.75+fips1|5.4.0-1073.78+fips1|5.4.0-1075.80+fips1|5.4.0-1078.84+fips1|5.4.0-1080.87+fips1|5.4.0-1081.88+fips1|5.4.0-1086.94+fips1|5.4.0-1087.95+fips1|5.4.0-1089.97+fips1|5.4.0-1092.101+fips1|5.4.0-1093.102+fips1|5.4.0-1096.105+fips1|5.4.0-1097.106+fips1|5.4.0-1098.107+fips1|5.4.0-1100.109+fips1|5.4.0-1101.110+fips1|5.4.0-1102.111+fips1|5.4.0-1103.112+fips1|5.4.0-1104.113+fips1|5.4.0-1105.114+fips1|5.4.0-1106.115+fips1|5.4.0-1107.116+fips1|5.4.0-1108.117+fips1|5.4.0-1109.118+fips1|5.4.0-1110.119+fips1|5.4.0-1111.120+fips1|5.4.0-1112.121+fips1|5.4.0-1113.122+fips1|5.4.0-1115.124+fips1|5.4.0-1116.125+fips1|5.4.0-1117.126+fips1|5.4.0-1118.127+fips1|5.4.0-1120.129+fips1|5.4.0-1121.130+fips1|5.4.0-1122.131+fips1|5.4.0-1124.133+fips1|5.4.0-1125.134+fips1|5.4.0-1126.135+fips1|5.4.0-1127.136+fips1|5.4.0-1128.137+fips1|5.4.0-1129.138+fips1|5.4.0-1130.139+fips1|5.4.0-1131.140+fips1|5.4.0-1132.141+fips1|5.4.0-1133.142+fips1|5.4.0-1134.143+fips1|5.4.0-1135.144+fips1|5.4.0-1136.145+fips1|5.4.0-1137.146+fips1|5.4.0-1138.147+fips1|5.4.0-1139.148+fips1|5.4.0-1140.149+fips1|5.4.0-1141.150+fips1|5.4.0-1142.151+fips1|5.4.0-1143.152+fips1|5.4.0-1145.154+fips1|5.4.0-1146.155+fips1|5.4.0-1147.156+fips1|5.4.0-1148.157+fips1|5.4.0-1149.158+fips1|5.4.0-1150.159+fips1|5.4.0-1151.160+fips1|5.4.0-1152.161+fips1|5.4.0-1153.162+fips1|5.4.0-1154.163+fips1|5.4.0-1155.164+fips1|5.4.0-1156.165+fips1|5.4.0-1157.166+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1021.21+fips2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1022.22+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1007.8", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips/focal", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.4.0-1021.21+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-19.19|5.15.0-17.17|5.15.0-18.18|5.15.0-22.22|5.15.0-23.23|5.15.0-25.25|5.15.0-27.28|5.15.0-30.31|5.15.0-33.34|5.15.0-35.36|5.15.0-37.39|5.15.0-39.42|5.15.0-40.43|5.15.0-41.44|5.15.0-43.46|5.15.0-46.49|5.15.0-47.51|5.15.0-48.54|5.15.0-50.56|5.15.0-52.58|5.15.0-53.59|5.15.0-56.62|5.15.0-57.63|5.15.0-58.64|5.15.0-60.66|5.15.0-67.74|5.15.0-69.76|5.15.0-70.77|5.15.0-71.78|5.15.0-72.79|5.15.0-73.80|5.15.0-75.82|5.15.0-76.83|5.15.0-78.85|5.15.0-79.86|5.15.0-82.91|5.15.0-83.92|5.15.0-84.93|5.15.0-86.96|5.15.0-87.97|5.15.0-88.98|5.15.0-89.99|5.15.0-91.101|5.15.0-92.102|5.15.0-94.104|5.15.0-97.107|5.15.0-100.110|5.15.0-101.111|5.15.0-102.112|5.15.0-105.115|5.15.0-106.116|5.15.0-107.117|5.15.0-112.122|5.15.0-113.123|5.15.0-116.126|5.15.0-117.127|5.15.0-118.128|5.15.0-119.129|5.15.0-121.131|5.15.0-122.132|5.15.0-124.134|5.15.0-125.135|5.15.0-126.136|5.15.0-127.137|5.15.0-128.138|5.15.0-130.140|5.15.0-131.141|5.15.0-133.144|5.15.0-134.145|5.15.0-135.146|5.15.0-136.147|5.15.0-138.148|5.15.0-139.149|5.15.0-140.150|5.15.0-141.151|5.15.0-142.152|5.15.0-143.153|5.15.0-144.157|5.15.0-151.161|5.15.0-152.162|5.15.0-153.163|5.15.0-156.166|5.15.0-157.167|5.15.0-160.170|5.15.0-161.171|5.15.0-163.173|5.15.0-164.174|5.15.0-168.178", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1006.7|5.15.0-1001.2|5.15.0-1002.3|5.15.0-1003.4|5.15.0-1005.6|5.15.0-1007.8|5.15.0-1008.9|5.15.0-1010.12|5.15.0-1012.15|5.15.0-1013.16|5.15.0-1014.17|5.15.0-1017.20|5.15.0-1019.24|5.15.0-1020.25|5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.29|5.15.0-1024.30|5.15.0-1029.36|5.15.0-1030.37|5.15.0-1031.38|5.15.0-1033.40|5.15.0-1034.41|5.15.0-1035.42|5.15.0-1036.43|5.15.0-1037.44|5.15.0-1038.45|5.15.0-1039.46|5.15.0-1040.47|5.15.0-1041.48|5.15.0-1042.49|5.15.0-1044.51|5.15.0-1045.52|5.15.0-1046.53|5.15.0-1047.54|5.15.0-1049.56|5.15.0-1050.57|5.15.0-1051.59|5.15.0-1052.60|5.15.0-1053.61|5.15.0-1054.62|5.15.0-1056.64|5.15.0-1057.65|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.69|5.15.0-1061.70|5.15.0-1063.72|5.15.0-1064.73|5.15.0-1066.75|5.15.0-1067.76|5.15.0-1068.77|5.15.0-1070.79|5.15.0-1071.80|5.15.0-1072.81|5.15.0-1073.82|5.15.0-1074.83|5.15.0-1075.84|5.15.0-1078.87|5.15.0-1079.88|5.15.0-1081.90|5.15.0-1082.91|5.15.0-1084.93|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1089.98|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1094.103|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107|5.15.0-1099.108|5.15.0-1101.110|5.15.0-1102.111", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1020.21~22.04.1|5.19.0-1021.22~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1025.28~22.04.1|5.19.0-1026.29~22.04.1|5.19.0-1027.30~22.04.2", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1005.5~22.04.1|6.2.0-1006.6~22.04.1|6.2.0-1007.7~22.04.1|6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.3|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1|6.2.0-1019.19~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1007.7~22.04.1|6.5.0-1009.9~22.04.1|6.5.0-1010.10~22.04.1|6.5.0-1011.11~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.1|6.5.0-1018.19~22.04.2|6.5.0-1019.20~22.04.1|6.5.0-1021.22~22.04.1|6.5.0-1022.23~22.04.1|6.5.0-1023.24~22.04.1|6.5.0-1024.25~22.04.1|6.5.0-1025.26~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1009.9~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1012.14~22.04.1|6.8.0-1013.15~22.04.1|6.8.0-1014.16~22.04.1|6.8.0-1015.17~22.04.2|6.8.0-1017.20~22.04.1|6.8.0-1018.21~22.04.1|6.8.0-1020.23~22.04.1|6.8.0-1021.25~22.04.1|6.8.0-1025.30~22.04.1|6.8.0-1026.31~22.04.1|6.8.0-1027.32~22.04.1|6.8.0-1028.33~22.04.1|6.8.0-1029.34~22.04.1|6.8.0-1030.35~22.04.1|6.8.0-1031.36~22.04.1|6.8.0-1034.39~22.04.1|6.8.0-1036.42~22.04.1|6.8.0-1040.46~22.04.1|6.8.0-1041.47~22.04.1|6.8.0-1044.50~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1019.24.1|5.15.0-1024.30.1|5.15.0-1029.36.1|5.15.0-1030.37.1|5.15.0-1031.38.1|5.15.0-1033.40.1|5.15.0-1034.41.1|5.15.0-1035.42.1|5.15.0-1036.43.1|5.15.0-1037.44.1|5.15.0-1038.45.1|5.15.0-1039.46.1|5.15.0-1041.48.1|5.15.0-1042.49.1|5.15.0-1044.51.1|5.15.0-1045.52.1|5.15.0-1046.53.1|5.15.0-1047.54.1|5.15.0-1049.56.1|5.15.0-1050.57.1|5.15.0-1051.59.1|5.15.0-1052.60.1|5.15.0-1053.61.1|5.15.0-1054.62.1|5.15.0-1056.64.1|5.15.0-1057.65.1|5.15.0-1058.66.1|5.15.0-1059.67.1|5.15.0-1060.69.1|5.15.0-1061.70.1|5.15.0-1063.72.1|5.15.0-1064.73.1|5.15.0-1065.74.1|5.15.0-1067.76.1|5.15.0-1068.77.1|5.15.0-1070.79.1|5.15.0-1071.80.1|5.15.0-1072.81.1|5.15.0-1073.82.1|5.15.0-1076.85.1|5.15.0-1078.87.1|5.15.0-1081.90.1|5.15.0-1082.91.1|5.15.0-1084.93.1|5.15.0-1086.95.1|5.15.0-1087.96.1|5.15.0-1088.97.1|5.15.0-1089.98.1|5.15.0-1090.99.1|5.15.0-1091.100.1|5.15.0-1092.101.1|5.15.0-1094.103.1|5.15.0-1095.104.1|5.15.0-1096.105.1|5.15.0-1097.106.1|5.15.0-1098.107.1|5.15.0-1102.111.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1025.28~22.04.1.1|5.19.0-1026.29~22.04.1.1|5.19.0-1027.30~22.04.2.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1008.8~22.04.1.1|6.2.0-1009.9~22.04.3.1|6.2.0-1011.11~22.04.1.1|6.2.0-1012.12~22.04.1.1|6.2.0-1014.14~22.04.1.1|6.2.0-1015.15~22.04.1.1|6.2.0-1016.16~22.04.1.1|6.2.0-1017.17~22.04.1.1|6.2.0-1018.18~22.04.1.1|6.2.0-1019.19~22.04.1.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1041.48~22.04.1|6.8.0-1042.49~22.04.1|6.8.0-1044.51~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1005.6|5.15.0-1001.3|5.15.0-1002.5|5.15.0-1003.6|5.15.0-1004.7|5.15.0-1005.8|5.15.0-1006.9|5.15.0-1008.12|5.15.0-1010.15|5.15.0-1013.18|5.15.0-1016.21|5.15.0-1017.23|5.15.0-1018.24|5.15.0-1019.25|5.15.0-1021.28|5.15.0-1022.29|5.15.0-1025.32|5.15.0-1026.33|5.15.0-1027.34|5.15.0-1029.36|5.15.0-1030.37|5.15.0-1031.38|5.15.0-1032.40|5.15.0-1034.42|5.15.0-1035.43|5.15.0-1036.44|5.15.0-1037.45|5.15.0-1038.46|5.15.0-1039.47|5.15.0-1040.48|5.15.0-1041.49|5.15.0-1042.50|5.15.0-1044.52|5.15.0-1045.53|5.15.0-1046.54|5.15.0-1047.55|5.15.0-1048.56|5.15.0-1049.57|5.15.0-1051.59|5.15.0-1052.60|5.15.0-1053.61|5.15.0-1054.62|5.15.0-1055.63|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.68|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1072.80|5.15.0-1073.81|5.15.0-1074.83|5.15.0-1075.84|5.15.0-1077.86|5.15.0-1078.87|5.15.0-1079.88|5.15.0-1080.89|5.15.0-1081.90|5.15.0-1082.91|5.15.0-1083.92|5.15.0-1084.93|5.15.0-1085.94|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1093.102|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107|5.15.0-1099.108", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1020.22~22.04.2|5.19.0-1021.23~22.04.1|5.19.0-1022.24~22.04.1|5.19.0-1024.26~22.04.1|5.19.0-1025.27~22.04.1|5.19.0-1026.28~22.04.1|5.19.0-1027.29~22.04.1|5.19.0-1030.32~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1009.9~22.04.3|6.2.0-1010.10~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1011.11~22.04.3|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1016.18~22.04.1|6.2.0-1017.19~22.04.1|6.2.0-1018.20~22.04.1|6.2.0-1019.21~22.04.1|6.2.0-1021.23~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1010.10~22.04.3|6.5.0-1011.11~22.04.1|6.5.0-1013.13~22.04.1|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1017.17~22.04.1|6.5.0-1018.18~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1022.24~22.04.1|6.5.0-1023.25~22.04.1|6.5.0-1024.26~22.04.1|6.5.0-1025.27~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1010.11~22.04.1|6.8.0-1011.12~22.04.1|6.8.0-1012.13~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.16~22.04.1|6.8.0-1015.17~22.04.1|6.8.0-1016.18~22.04.1|6.8.0-1017.19~22.04.1|6.8.0-1018.20~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1024.26~22.04.1|6.8.0-1025.27~22.04.1|6.8.0-1026.28~22.04.1|6.8.0-1027.29~22.04.1|6.8.0-1028.30~22.04.1|6.8.0-1029.31~22.04.1|6.8.0-1030.32~22.04.1|6.8.0-1031.33~22.04.1|6.8.0-1032.34~22.04.1|6.8.0-1033.35~22.04.1|6.8.0-1034.36~22.04.2|6.8.0-1036.38~22.04.1|6.8.0-1037.39~22.04.1|6.8.0-1040.42~22.04.1|6.8.0-1041.43~22.04.1|6.8.0-1042.45~22.04.1|6.8.0-1043.46~22.04.1|6.8.0-1044.47~22.04.1|6.8.0-1045.48~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.5|5.15.0-1005.6|5.15.0-1006.7|5.15.0-1008.10|5.15.0-1010.13|5.15.0-1011.14|5.15.0-1014.17|5.15.0-1015.18|5.15.0-1016.19|5.15.0-1017.20|5.15.0-1019.23|5.15.0-1020.25|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1032.37|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1036.41|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.51|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1054.59|5.15.0-1057.62|5.15.0-1058.63|5.15.0-1059.64|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1087.93|5.15.0-1088.94|5.15.0-1089.95|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100|5.15.0-1095.101", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gkeop", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1001.2|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1004.6|5.15.0-1005.7|5.15.0-1007.10|5.15.0-1008.12|5.15.0-1011.15|5.15.0-1012.16|5.15.0-1013.17|5.15.0-1015.19|5.15.0-1016.21|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1019.24|5.15.0-1020.25|5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.37|5.15.0-1032.38|5.15.0-1033.39|5.15.0-1034.40|5.15.0-1035.41|5.15.0-1036.42|5.15.0-1037.43|5.15.0-1038.44|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1043.50|5.15.0-1044.51|5.15.0-1045.52|5.15.0-1046.53|5.15.0-1047.54|5.15.0-1048.55|5.15.0-1049.56|5.15.0-1050.57|5.15.0-1051.58|5.15.0-1052.59|5.15.0-1053.60|5.15.0-1054.61|5.15.0-1055.62|5.15.0-1056.63|5.15.0-1057.64|5.15.0-1058.66|5.15.0-1059.67|5.15.0-1060.68|5.15.0-1061.69|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1073.81|5.15.0-1074.82|5.15.0-1075.83|5.15.0-1076.84|5.15.0-1078.86|5.15.0-1079.87|5.15.0-1080.88|5.15.0-1081.89|5.15.0-1082.90", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-28.29~22.04.1|5.19.0-32.33~22.04.1|5.19.0-35.36~22.04.1|5.19.0-38.39~22.04.1|5.19.0-40.41~22.04.1|5.19.0-41.42~22.04.1|5.19.0-42.43~22.04.1|5.19.0-43.44~22.04.1|5.19.0-45.46~22.04.1|5.19.0-46.47~22.04.1|5.19.0-50.50", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-25.25~22.04.2|6.2.0-26.26~22.04.1|6.2.0-31.31~22.04.1|6.2.0-32.32~22.04.1|6.2.0-33.33~22.04.1|6.2.0-34.34~22.04.1|6.2.0-35.35~22.04.1|6.2.0-36.37~22.04.1|6.2.0-37.38~22.04.1|6.2.0-39.40~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-14.14~22.04.1|6.5.0-15.15~22.04.1|6.5.0-17.17~22.04.1|6.5.0-18.18~22.04.1|6.5.0-21.21~22.04.1|6.5.0-25.25~22.04.1|6.5.0-26.26~22.04.1|6.5.0-27.28~22.04.1|6.5.0-28.29~22.04.1|6.5.0-35.35~22.04.1|6.5.0-41.41~22.04.2|6.5.0-44.44~22.04.1|6.5.0-45.45~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-38.38~22.04.1|6.8.0-39.39~22.04.1|6.8.0-40.40~22.04.3|6.8.0-45.45~22.04.1|6.8.0-47.47~22.04.1|6.8.0-48.48~22.04.1|6.8.0-49.49~22.04.1|6.8.0-50.51~22.04.1|6.8.0-51.52~22.04.1|6.8.0-52.53~22.04.1|6.8.0-57.59~22.04.1|6.8.0-58.60~22.04.1|6.8.0-59.61~22.04.1|6.8.0-60.63~22.04.1|6.8.0-64.67~22.04.1|6.8.0-65.68~22.04.1|6.8.0-78.78~22.04.1|6.8.0-79.79~22.04.1|6.8.0-83.83~22.04.1|6.8.0-84.84~22.04.1|6.8.0-85.85~22.04.1|6.8.0-86.87~22.04.1|6.8.0-87.88~22.04.1|6.8.0-88.89~22.04.2|6.8.0-90.91~22.04.1|6.8.0-94.96~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1007.8|5.15.0-1009.11|5.15.0-1010.12|5.15.0-1012.14|5.15.0-1013.15|5.15.0-1015.17|5.15.0-1017.20|5.15.0-1018.21|5.15.0-1021.24|5.15.0-1022.25|5.15.0-1023.26|5.15.0-1025.28|5.15.0-1026.29|5.15.0-1027.30|5.15.0-1028.31|5.15.0-1029.32|5.15.0-1030.33|5.15.0-1031.34|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1035.38|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1040.43|5.15.0-1041.44|5.15.0-1042.45|5.15.0-1043.46|5.15.0-1044.47|5.15.0-1045.48|5.15.0-1046.49|5.15.0-1047.50|5.15.0-1048.51|5.15.0-1049.52|5.15.0-1050.53|5.15.0-1053.56|5.15.0-1054.57|5.15.0-1055.58|5.15.0-1056.59|5.15.0-1057.60|5.15.0-1058.61|5.15.0-1059.62|5.15.0-1060.63|5.15.0-1061.64|5.15.0-1062.65|5.15.0-1063.66|5.15.0-1064.67|5.15.0-1065.68|5.15.0-1066.69|5.15.0-1067.70|5.15.0-1068.71|5.15.0-1069.72|5.15.0-1070.73|5.15.0-1071.74|5.15.0-1072.75|5.15.0-1073.76|5.15.0-1074.77|5.15.0-1075.78|5.15.0-1076.79|5.15.0-1077.80|5.15.0-1078.81|5.15.0-1079.82|5.15.0-1080.83|5.15.0-1081.84|5.15.0-1084.87|5.15.0-1085.88|5.15.0-1086.89|5.15.0-1087.90|5.15.0-1089.92|5.15.0-1090.93|5.15.0-1091.94|5.15.0-1092.95|5.15.0-1093.96", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.13~22.04.1|6.8.0-1014.14~22.04.1|6.8.0-1015.15~22.04.1|6.8.0-1016.16~22.04.1|6.8.0-1017.17~22.04.1|6.8.0-1018.18~22.04.1|6.8.0-1019.19~22.04.1|6.8.0-1023.23~22.04.1|6.8.0-1024.24~22.04.1|6.8.0-1025.25~22.04.1|6.8.0-1026.26~22.04.1|6.8.0-1027.27~22.04.1|6.8.0-1028.28~22.04.1|6.8.0-1029.29~22.04.1|6.8.0-1030.30~22.04.1|6.8.0-1033.33~22.04.1|6.8.0-1036.36~22.04.1|6.8.0-1037.37~22.04.1|6.8.0-1038.38~22.04.1|6.8.0-1039.39~22.04.1|6.8.0-1040.40~22.04.1|6.8.0-1041.41~22.04.1|6.8.0-1042.42~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-iot-realtime", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1073.75", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-iotg", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1004.6|5.15.0-1008.11|5.15.0-1010.14|5.15.0-1013.17|5.15.0-1015.20|5.15.0-1016.21|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1021.26|5.15.0-1023.28|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1027.32|5.15.0-1028.33|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1036.41|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1043.49|5.15.0-1045.51|5.15.0-1046.52|5.15.0-1047.53|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1055.61|5.15.0-1057.63|5.15.0-1058.64|5.15.0-1059.65|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1074.80|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1087.93|5.15.0-1088.94|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-tegra-igx", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1001.1|5.15.0-1002.2|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1009.9|5.15.0-1012.12|5.15.0-1013.13|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1018.18|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1023.23|5.15.0-1024.24|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1029.29|5.15.0-1030.30|5.15.0-1031.31|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1034.34|5.15.0-1035.35|5.15.0-1036.36|5.15.0-1037.37|5.15.0-1038.38|5.15.0-1039.39", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-kvm", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1002.2|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1010.11|5.15.0-1012.14|5.15.0-1013.16|5.15.0-1016.19|5.15.0-1017.21|5.15.0-1018.22|5.15.0-1019.23|5.15.0-1020.24|5.15.0-1021.26|5.15.0-1024.29|5.15.0-1025.30|5.15.0-1026.31|5.15.0-1028.33|5.15.0-1029.34|5.15.0-1030.35|5.15.0-1031.36|5.15.0-1032.37|5.15.0-1033.38|5.15.0-1034.39|5.15.0-1035.40|5.15.0-1037.42|5.15.0-1038.43|5.15.0-1039.44|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.51|5.15.0-1047.52|5.15.0-1048.53|5.15.0-1049.54|5.15.0-1050.55|5.15.0-1051.56|5.15.0-1052.57|5.15.0-1053.58|5.15.0-1054.59|5.15.0-1057.62|5.15.0-1058.63|5.15.0-1059.64|5.15.0-1060.65|5.15.0-1061.66|5.15.0-1062.67|5.15.0-1063.68|5.15.0-1064.69|5.15.0-1065.70|5.15.0-1066.71|5.15.0-1067.72|5.15.0-1068.73|5.15.0-1069.74|5.15.0-1070.75|5.15.0-1071.76|5.15.0-1072.77|5.15.0-1073.78|5.15.0-1076.81|5.15.0-1077.82|5.15.0-1078.83|5.15.0-1079.84|5.15.0-1080.85|5.15.0-1081.86|5.15.0-1082.87|5.15.0-1083.88|5.15.0-1084.89|5.15.0-1085.90|5.15.0-1086.91|5.15.0-1087.92|5.15.0-1088.93|5.15.0-1089.94|5.15.0-1090.95|5.15.0-1091.96", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-22.22|5.15.0-23.23|5.15.0-24.24|5.15.0-27.28|5.15.0-30.31|5.15.0-33.34|5.15.0-35.36|5.15.0-37.39|5.15.0-39.42|5.15.0-40.43|5.15.0-41.44|5.15.0-43.46|5.15.0-46.49|5.15.0-47.53|5.15.0-48.54|5.15.0-50.56|5.15.0-52.58|5.15.0-53.59|5.15.0-56.62|5.15.0-57.63|5.15.0-58.64|5.15.0-60.66|5.15.0-67.74|5.15.0-69.76|5.15.0-70.77|5.15.0-71.78|5.15.0-72.79|5.15.0-73.80|5.15.0-75.82|5.15.0-76.83|5.15.0-78.85|5.15.0-79.88|5.15.0-82.91|5.15.0-83.92|5.15.0-84.93|5.15.0-86.95|5.15.0-87.96|5.15.0-88.98|5.15.0-89.99|5.15.0-91.101|5.15.0-92.102|5.15.0-94.104|5.15.0-97.107|5.15.0-100.110|5.15.0-101.111|5.15.0-102.112|5.15.0-105.115|5.15.0-106.116|5.15.0-107.117|5.15.0-110.120|5.15.0-113.123|5.15.0-116.126|5.15.0-117.127|5.15.0-118.128|5.15.0-119.129|5.15.0-121.131|5.15.0-122.132|5.15.0-124.134|5.15.0-125.135|5.15.0-126.136|5.15.0-127.137|5.15.0-128.138|5.15.0-129.139|5.15.0-131.141|5.15.0-133.143|5.15.0-134.145|5.15.0-135.146|5.15.0-136.147|5.15.0-138.148|5.15.0-139.149|5.15.0-140.150|5.15.0-141.151|5.15.0-142.152|5.15.0-143.153|5.15.0-144.157|5.15.0-145.158|5.15.0-152.162|5.15.0-153.163|5.15.0-156.166|5.15.0-157.167|5.15.0-160.170|5.15.0-161.171|5.15.0-163.173|5.15.0-164.174|5.15.0-168.178", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1017.18~22.04.1|5.19.0-1018.19~22.04.1|5.19.0-1021.22~22.04.1|5.19.0-1022.23~22.04.1|5.19.0-1023.24~22.04.1|5.19.0-1024.25~22.04.1|5.19.0-1025.26~22.04.1|5.19.0-1027.28~22.04.1|5.19.0-1028.29~22.04.1|5.19.0-1030.30", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1008.8~22.04.1|6.2.0-1009.9~22.04.1|6.2.0-1011.11~22.04.1|6.2.0-1012.12~22.04.1|6.2.0-1013.13~22.04.1|6.2.0-1014.14~22.04.1|6.2.0-1015.15~22.04.1|6.2.0-1016.16~22.04.1|6.2.0-1017.17~22.04.1|6.2.0-1018.18~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-14.14.1~22.04.1|6.5.0-15.15.1.1~22.04.1|6.5.0-17.17.1.1.1~22.04.1|6.5.0-21.21.1~22.04.1|6.5.0-25.25.1~22.04.1|6.5.0-26.26.1~22.04.1|6.5.0-27.28.1~22.04.1|6.5.0-28.29.1~22.04.1|6.5.0-35.35.1~22.04.1|6.5.0-41.41.1~22.04.1|6.5.0-42.42.1~22.04.1|6.5.0-44.44.1~22.04.1|6.5.0-45.45.1~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-38.38.1~22.04.2|6.8.0-40.40.1~22.04.1|6.8.0-44.44.1~22.04.1|6.8.0-45.45.1~22.04.1|6.8.0-47.47.1~22.04.1|6.8.0-48.48.3~22.04.1|6.8.0-49.49.1~22.04.1|6.8.0-50.51.1~22.04.1|6.8.0-51.52.1~22.04.1|6.8.0-52.53.1~22.04.1|6.8.0-54.56.1~22.04.1|6.8.0-55.57.1~22.04.1|6.8.0-56.58.1~22.04.1|6.8.0-57.59.1~22.04.1|6.8.0-58.60.1~22.04.1|6.8.0-59.61.1~22.04.1|6.8.0-60.63.1~22.04.1|6.8.0-62.65.1~22.04.1|6.8.0-63.66.1~22.04.1|6.8.0-64.67.1~22.04.1|6.8.0-65.68.1~22.04.1|6.8.0-78.78.1~22.04.1|6.8.0-79.79.1~22.04.1|6.8.0-83.83.1~22.04.1|6.8.0-84.84.1~22.04.1|6.8.0-85.85.1~22.04.1|6.8.0-86.87.1~22.04.1|6.8.0-87.88.1~22.04.1|6.8.0-88.89.1~22.04.1|6.8.0-90.91.1~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1005.5|5.15.0-1007.7|5.15.0-1010.10|5.15.0-1015.15|5.15.0-1017.17|5.15.0-1018.18|5.15.0-1023.23|5.15.0-1025.25|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1029.29|5.15.0-1030.30|5.15.0-1031.31|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1037.37|5.15.0-1039.39|5.15.0-1040.40|5.15.0-1041.41|5.15.0-1042.42|5.15.0-1043.43|5.15.0-1044.44|5.15.0-1045.45|5.15.0-1046.46|5.15.0-1047.47|5.15.0-1048.48|5.15.0-1053.54|5.15.0-1054.55|5.15.0-1055.56|5.15.0-1058.59|5.15.0-1059.60|5.15.0-1060.61|5.15.0-1061.62|5.15.0-1062.63|5.15.0-1063.64|5.15.0-1064.65|5.15.0-1065.66|5.15.0-1066.67|5.15.0-1067.68|5.15.0-1068.69|5.15.0-1069.70|5.15.0-1070.71|5.15.0-1071.72|5.15.0-1072.73|5.15.0-1073.74|5.15.0-1074.75|5.15.0-1075.76|5.15.0-1076.77|5.15.0-1077.78|5.15.0-1078.79|5.15.0-1079.80|5.15.0-1080.81|5.15.0-1081.82|5.15.0-1082.83|5.15.0-1083.84|5.15.0-1085.86|5.15.0-1086.87|5.15.0-1087.88|5.15.0-1088.89|5.15.0-1090.91|5.15.0-1091.92|5.15.0-1092.93|5.15.0-1093.94", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1003.3~22.04.1|6.2.0-1009.9|6.2.0-1010.10|6.2.0-1011.11|6.2.0-1012.12|6.2.0-1013.13|6.2.0-1015.15", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1004.4|6.5.0-1007.7|6.5.0-1013.13|6.5.0-1014.14|6.5.0-1015.15|6.5.0-1018.18|6.5.0-1019.19|6.5.0-1021.22|6.5.0-1022.23|6.5.0-1023.24|6.5.0-1024.25", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1008.8~22.04.1|6.8.0-1009.9~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.14~22.04.1|6.8.0-1014.15~22.04.1|6.8.0-1015.16~22.04.1|6.8.0-1017.19~22.04.1|6.8.0-1018.20~22.04.1|6.8.0-1019.21~22.04.1|6.8.0-1020.22~22.04.1|6.8.0-1021.23~22.04.1|6.8.0-1022.25~22.04.2|6.8.0-1023.26~22.04.1|6.8.0-1024.27~22.04.1|6.8.0-1025.28~22.04.1|6.8.0-1026.29~22.04.1|6.8.0-1027.30~22.04.1|6.8.0-1028.31~22.04.1|6.8.0-1029.32~22.04.1|6.8.0-1030.33~22.04.1|6.8.0-1031.34~22.04.1|6.8.0-1032.35~22.04.1|6.8.0-1035.38~22.04.1|6.8.0-1036.39~22.04.1|6.8.0-1038.41~22.04.1|6.8.0-1039.42~22.04.1|6.8.0-1040.43~22.04.1|6.8.0-1041.44~22.04.2|6.8.0-1042.45~22.04.1|6.8.0-1043.46~22.04.1|6.8.0-1044.47~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-tegra", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1009.9|5.15.0-1010.10|5.15.0-1012.12|5.15.0-1013.13|5.15.0-1014.14|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1017.17|5.15.0-1018.18|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1025.25|5.15.0-1026.26|5.15.0-1027.27|5.15.0-1028.28|5.15.0-1030.30|5.15.0-1032.32|5.15.0-1033.33|5.15.0-1034.34|5.15.0-1035.35|5.15.0-1036.36|5.15.0-1037.37|5.15.0-1038.38|5.15.0-1039.39|5.15.0-1040.40|5.15.0-1041.41|5.15.0-1042.42|5.15.0-1043.43|5.15.0-1044.44|5.15.0-1045.45|5.15.0-1046.46|5.15.0-1047.47|5.15.0-1048.48|5.15.0-1049.49|5.15.0-1050.50|5.15.0-1051.51", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-5.17", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.17.0-1003.3|5.17.0-1004.4|5.17.0-1006.6|5.17.0-1011.12|5.17.0-1012.13|5.17.0-1013.14|5.17.0-1014.15|5.17.0-1015.16|5.17.0-1016.17|5.17.0-1017.18|5.17.0-1018.19|5.17.0-1019.20|5.17.0-1020.21|5.17.0-1021.22|5.17.0-1024.25|5.17.0-1025.26|5.17.0-1026.27|5.17.0-1027.28|5.17.0-1028.29|5.17.0-1029.30|5.17.0-1030.31|5.17.0-1031.32|5.17.0-1032.33|5.17.0-1033.34|5.17.0-1034.35|5.17.0-1035.36", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1008.10|5.15.0-1001.3|5.15.0-1002.4|5.15.0-1003.5|5.15.0-1006.8|5.15.0-1007.9|5.15.0-1009.12|5.15.0-1011.15|5.15.0-1013.17|5.15.0-1016.20|5.15.0-1017.22|5.15.0-1018.23|5.15.0-1019.24|5.15.0-1021.27|5.15.0-1022.28|5.15.0-1025.31|5.15.0-1026.32|5.15.0-1027.33|5.15.0-1029.35|5.15.0-1030.36|5.15.0-1032.38|5.15.0-1033.39|5.15.0-1034.40|5.15.0-1035.41|5.15.0-1036.42|5.15.0-1037.43|5.15.0-1038.44|5.15.0-1039.45|5.15.0-1040.46|5.15.0-1041.47|5.15.0-1042.48|5.15.0-1044.50|5.15.0-1045.51|5.15.0-1046.52|5.15.0-1047.53|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1053.59|5.15.0-1054.60|5.15.0-1055.61|5.15.0-1058.64|5.15.0-1059.65|5.15.0-1060.66|5.15.0-1061.67|5.15.0-1062.68|5.15.0-1063.69|5.15.0-1064.70|5.15.0-1065.71|5.15.0-1066.72|5.15.0-1067.73|5.15.0-1068.74|5.15.0-1069.75|5.15.0-1070.76|5.15.0-1071.77|5.15.0-1072.78|5.15.0-1073.79|5.15.0-1074.80|5.15.0-1075.81|5.15.0-1076.82|5.15.0-1077.83|5.15.0-1078.84|5.15.0-1079.85|5.15.0-1080.86|5.15.0-1081.87|5.15.0-1082.88|5.15.0-1083.89|5.15.0-1084.90|5.15.0-1085.91|5.15.0-1086.92|5.15.0-1088.94|5.15.0-1089.95|5.15.0-1090.96|5.15.0-1091.97|5.15.0-1092.98|5.15.0-1093.99|5.15.0-1094.100|5.15.0-1095.101|5.15.0-1096.102", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1013.13~22.04.4|6.5.0-1014.14~22.04.1|6.5.0-1015.15~22.04.1|6.5.0-1016.16~22.04.1|6.5.0-1018.18~22.04.1|6.5.0-1019.19~22.04.1|6.5.0-1020.20~22.04.1|6.5.0-1021.21~22.04.1|6.5.0-1023.23~22.04.1|6.5.0-1024.24~22.04.1|6.5.0-1025.25~22.04.1|6.5.0-1026.26~22.04.1|6.5.0-1027.27~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1006.6~22.04.3|6.8.0-1008.8~22.04.1|6.8.0-1010.10~22.04.1|6.8.0-1011.11~22.04.1|6.8.0-1012.12~22.04.1|6.8.0-1013.13~22.04.1|6.8.0-1014.14~22.04.1|6.8.0-1015.15~22.04.1|6.8.0-1016.17~22.04.1|6.8.0-1017.18~22.04.1|6.8.0-1018.19~22.04.1|6.8.0-1019.20~22.04.1|6.8.0-1020.21~22.04.1|6.8.0-1021.22~22.04.1|6.8.0-1022.23~22.04.1|6.8.0-1023.24~22.04.1|6.8.0-1024.25~22.04.1|6.8.0-1025.26~22.04.1|6.8.0-1026.27~22.04.1|6.8.0-1027.28~22.04.1|6.8.0-1028.29~22.04.1|6.8.0-1029.30~22.04.1|6.8.0-1030.31~22.04.1|6.8.0-1032.33~22.04.1|6.8.0-1033.34~22.04.1|6.8.0-1035.36~22.04.1|6.8.0-1037.38~22.04.1|6.8.0-1038.39~22.04.1|6.8.0-1039.40~22.04.1|6.8.0-1040.41~22.04.1|6.8.0-1041.42~22.04.1|6.8.0-1042.43~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1008.9|5.15.0-1002.2|5.15.0-1003.3|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1008.8|5.15.0-1011.13|5.15.0-1012.14|5.15.0-1013.15|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.20|5.15.0-1021.23|5.15.0-1022.24|5.15.0-1023.25|5.15.0-1024.26|5.15.0-1025.27|5.15.0-1026.28|5.15.0-1027.29|5.15.0-1028.30|5.15.0-1029.31|5.15.0-1030.32|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1035.38|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1040.43|5.15.0-1041.44|5.15.0-1042.45|5.15.0-1043.46|5.15.0-1044.47|5.15.0-1045.48|5.15.0-1046.49|5.15.0-1047.50|5.15.0-1048.51|5.15.0-1049.52|5.15.0-1050.53|5.15.0-1053.56|5.15.0-1054.57|5.15.0-1055.58|5.15.0-1058.61|5.15.0-1059.62|5.15.0-1060.63|5.15.0-1061.64|5.15.0-1062.65|5.15.0-1063.66|5.15.0-1064.67|5.15.0-1065.68|5.15.0-1066.69|5.15.0-1067.70|5.15.0-1070.73|5.15.0-1071.74|5.15.0-1072.75|5.15.0-1073.76|5.15.0-1074.77|5.15.0-1075.78|5.15.0-1076.79|5.15.0-1077.80|5.15.0-1078.81|5.15.0-1079.82|5.15.0-1080.83|5.15.0-1083.86|5.15.0-1084.87|5.15.0-1085.88|5.15.0-1086.89|5.15.0-1087.90|5.15.0-1089.92|5.15.0-1090.93|5.15.0-1091.94|5.15.0-1092.95|5.15.0-1093.96", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1032.35", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.13.0-1004.4|5.13.0-1006.6+22.04.1|5.13.0-1007.7+22.04.1|5.13.0-1010.11+22.04.1|5.15.0-1004.4|5.15.0-1005.5|5.15.0-1006.6|5.15.0-1007.7|5.15.0-1008.8|5.15.0-1011.12|5.15.0-1012.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1016.18|5.15.0-1017.19|5.15.0-1018.21|5.15.0-1019.22|5.15.0-1020.23|5.15.0-1022.26|5.15.0-1023.27|5.15.0-1026.30|5.15.0-1027.31|5.15.0-1028.32", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1012.13~22.04.1|5.19.0-1015.16~22.04.1|5.19.0-1016.17~22.04.1|5.19.0-1017.18~22.04.1|5.19.0-1018.19~22.04.1|5.19.0-1019.21~22.04.1|5.19.0-1020.22~22.04.1|5.19.0-1021.23~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-17.17.1.1~22.04.1|6.5.0-21.21.1~22.04.1|6.5.0-25.25.1~22.04.1|6.5.0-26.26.1~22.04.1|6.5.0-27.28.1~22.04.1|6.5.0-28.29.1~22.04.1|6.5.0-35.35.1~22.04.1|6.5.0-40.40.1~22.04.1|6.5.0-42.42.1~22.04.1|6.5.0-45.45.1~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-6.8", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-38.38.1~22.04.1|6.8.0-39.39.1~22.04.1|6.8.0-40.40.1~22.04.1|6.8.0-41.41.1~22.04.1|6.8.0-44.44.1~22.04.1|6.8.0-47.47.1~22.04.1|6.8.0-48.48.1~22.04.2|6.8.0-49.49.1~22.04.1|6.8.0-50.51.1~22.04.1|6.8.0-51.52.1~22.04.1|6.8.0-52.53.1~22.04.1|6.8.0-53.55.1~22.04.1|6.8.0-55.57.1~22.04.1|6.8.0-56.58.1~22.04.1|6.8.0-57.59.1~22.04.1|6.8.0-58.60.1~22.04.1|6.8.0-59.61.1~22.04.1|6.8.0-62.65~22.04.1|6.8.0-63.66~22.04.1|6.8.0-64.67~22.04.1|6.8.0-71.71~22.04.1|6.8.0-78.78~22.04.1|6.8.0-79.79~22.04.1|6.8.0-83.83~22.04.1|6.8.0-84.84~22.04.1|6.8.0-86.87~22.04.1|6.8.0-87.88~22.04.1|6.8.0-88.89~22.04.1|6.8.0-90.91~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-starfive-5.19", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.19.0-1014.16~22.04.1|5.19.0-1015.17~22.04.1|5.19.0-1016.18~22.04.1|5.19.0-1017.19~22.04.1|5.19.0-1018.20~22.04.1|5.19.0-1019.21~22.04.1|5.19.0-1020.22~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-starfive-6.2", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.2.0-1006.7~22.04.1|6.2.0-1007.8~22.04.1|6.2.0-1009.10~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-starfive-6.5", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1007.8~22.04.1|6.5.0-1008.9~22.04.1|6.5.0-1009.10~22.04.1|6.5.0-1010.11~22.04.1|6.5.0-1011.12~22.04.1|6.5.0-1012.13~22.04.1|6.5.0-1014.15~22.04.1|6.5.0-1015.16~22.04.1|6.5.0-1016.17~22.04.1|6.5.0-1017.18~22.04.1|6.5.0-1018.19~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-xilinx-zynqmp", - "version": "", - "qualifiers": "arch=source&distro=jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1022.26|5.15.0-1023.27|5.15.0-1025.29|5.15.0-1027.31|5.15.0-1030.34|5.15.0-1031.35|5.15.0-1035.39|5.15.0-1036.40|5.15.0-1037.41|5.15.0-1038.42|5.15.0-1039.43|5.15.0-1041.45|5.15.0-1044.48|5.15.0-1046.50|5.15.0-1050.54|5.15.0-1051.55|5.15.0-1052.56|5.15.0-1053.57|5.15.0-1054.58|5.15.0-1055.59|5.15.0-1056.60|5.15.0-1057.61|5.15.0-1059.63|5.15.0-1060.64|5.15.0-1061.65|5.15.0-1062.66", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-bluefield", - "version": "", - "qualifiers": "arch=source&distro=bluefield/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1011.13|5.15.0-1014.16|5.15.0-1015.17|5.15.0-1017.19|5.15.0-1019.21|5.15.0-1021.23|5.15.0-1022.24|5.15.0-1023.25|5.15.0-1024.26|5.15.0-1027.29|5.15.0-1028.30|5.15.0-1031.33|5.15.0-1032.34|5.15.0-1033.35|5.15.0-1035.37|5.15.0-1036.38|5.15.0-1037.39|5.15.0-1038.40|5.15.0-1040.42|5.15.0-1042.44|5.15.0-1043.45|5.15.0-1044.46|5.15.0-1045.47|5.15.0-1047.49|5.15.0-1048.50|5.15.0-1050.52|5.15.0-1051.53|5.15.0-1052.54|5.15.0-1053.55|5.15.0-1054.56|5.15.0-1056.58|5.15.0-1057.59|5.15.0-1058.60|5.15.0-1059.61|5.15.0-1060.62|5.15.0-1061.63|5.15.0-1062.64|5.15.0-1063.65|5.15.0-1064.66|5.15.0-1065.67|5.15.0-1066.68|5.15.0-1067.69|5.15.0-1069.71|5.15.0-1070.72|5.15.0-1072.74|5.15.0-1074.76|5.15.0-1075.77|5.15.0-1076.78|5.15.0-1077.79|5.15.0-1079.81|5.15.0-1080.82|5.15.0-1081.83|5.15.0-1082.84", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1051.56+fips1|5.15.0-1052.57+fips1|5.15.0-1053.58+fips1|5.15.0-1055.60+fips1|5.15.0-1056.61+fips1|5.15.0-1057.63+fips1|5.15.0-1060.66+fips1|5.15.0-1061.67+fips1|5.15.0-1062.68+fips1|5.15.0-1063.69+fips1|5.15.0-1064.70+fips1|5.15.0-1065.71+fips1|5.15.0-1066.72+fips1|5.15.0-1067.73+fips1|5.15.0-1068.74+fips1|5.15.0-1069.75+fips1|5.15.0-1070.76+fips1|5.15.0-1071.77+fips1|5.15.0-1072.78+fips1|5.15.0-1073.79+fips1|5.15.0-1076.83+fips1|5.15.0-1077.84+fips1|5.15.0-1078.85+fips1|5.15.0-1079.86+fips1|5.15.0-1080.87+fips1|5.15.0-1081.88+fips1|5.15.0-1082.89+fips1|5.15.0-1083.90+fips1|5.15.0-1084.91+fips1|5.15.0-1085.92+fips1|5.15.0-1086.93+fips1|5.15.0-1087.94+fips1|5.15.0-1088.95+fips1|5.15.0-1089.96+fips1|5.15.0-1090.97+fips1|5.15.0-1091.98+fips1|5.15.0-1092.99+fips1|5.15.0-1093.100+fips1|5.15.0-1095.102+fips1|5.15.0-1096.103+fips1|5.15.0-1097.104+fips1|5.15.0-1098.105+fips1|5.15.0-1099.106+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1053.61+fips1|5.15.0-1058.66+fips1|5.15.0-1059.67+fips1|5.15.0-1060.69+fips1|5.15.0-1061.70+fips1|5.15.0-1063.72+fips1|5.15.0-1064.73+fips1|5.15.0-1065.74+fips1|5.15.0-1067.76+fips1|5.15.0-1068.77+fips1|5.15.0-1070.79+fips1|5.15.0-1071.80+fips1|5.15.0-1072.81+fips1|5.15.0-1073.82+fips1|5.15.0-1074.83+fips1|5.15.0-1075.84+fips1|5.15.0-1078.87+fips1|5.15.0-1079.88+fips1|5.15.0-1080.89+fips1|5.15.0-1082.91+fips1|5.15.0-1083.92+fips1|5.15.0-1085.94+fips1|5.15.0-1087.96+fips1|5.15.0-1088.97+fips1|5.15.0-1089.98+fips1|5.15.0-1090.99+fips1|5.15.0-1091.100+fips1|5.15.0-1094.103+fips1|5.15.0-1095.104+fips1|5.15.0-1096.105+fips1|5.15.0-1097.106+fips1|5.15.0-1098.107+fips1|5.15.0-1101.110+fips1|5.15.0-1102.111+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-73.80+fips1|5.15.0-92.102+fips1|5.15.0-94.104+fips1|5.15.0-97.107+fips1|5.15.0-100.110+fips1|5.15.0-101.111+fips1|5.15.0-102.112+fips1|5.15.0-105.115+fips1|5.15.0-106.116+fips1|5.15.0-107.117+fips1|5.15.0-111.121+fips1|5.15.0-113.123+fips1|5.15.0-115.125+fips1|5.15.0-117.127+fips1|5.15.0-118.128+fips1|5.15.0-119.129+fips1|5.15.0-121.131+fips1|5.15.0-122.132+fips1|5.15.0-124.134+fips1|5.15.0-125.135+fips1|5.15.0-127.137+fips1|5.15.0-128.138+fips1|5.15.0-130.140+fips1|5.15.0-131.141+fips1|5.15.0-133.144+fips1|5.15.0-134.145+fips1|5.15.0-135.146+fips1|5.15.0-136.147+fips1|5.15.0-138.148+fips1|5.15.0-139.149+fips1|5.15.0-140.150+fips1|5.15.0-141.151+fips1|5.15.0-142.152+fips1|5.15.0-143.153+fips1|5.15.0-144.157+fips1|5.15.0-145.158+fips1|5.15.0-152.162+fips1|5.15.0-153.163+fips1|5.15.0-156.166+fips1|5.15.0-157.167+fips1|5.15.0-160.170+fips1|5.15.0-161.171+fips1|5.15.0-163.173+fips1|5.15.0-164.174+fips1|5.15.0-168.178+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1048.56+fips1|5.15.0-1055.63+fips2|5.15.0-1058.66+fips1|5.15.0-1059.67+fips1|5.15.0-1060.68+fips1|5.15.0-1062.70+fips1|5.15.0-1063.71+fips1|5.15.0-1064.72+fips1|5.15.0-1065.73+fips1|5.15.0-1066.74+fips1|5.15.0-1067.75+fips1|5.15.0-1068.76+fips1|5.15.0-1069.77+fips1|5.15.0-1070.78+fips1|5.15.0-1071.79+fips1|5.15.0-1072.80+fips1|5.15.0-1073.81+fips1|5.15.0-1074.83+fips1|5.15.0-1075.84+fips1|5.15.0-1077.86+fips1|5.15.0-1078.87+fips1|5.15.0-1079.88+fips1|5.15.0-1080.89+fips1|5.15.0-1081.90+fips1|5.15.0-1082.91+fips1|5.15.0-1083.92+fips1|5.15.0-1084.93+fips1|5.15.0-1085.94+fips1|5.15.0-1086.95+fips1|5.15.0-1087.96+fips1|5.15.0-1088.97+fips1|5.15.0-1090.99+fips1|5.15.0-1091.100+fips1|5.15.0-1092.101+fips1|5.15.0-1093.102+fips1|5.15.0-1095.104+fips1|5.15.0-1096.105+fips1|5.15.0-1097.106+fips1|5.15.0-1098.107+fips1|5.15.0-1099.108+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-intel-iot-realtime", - "version": "", - "qualifiers": "arch=source&distro=realtime/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1021.26|5.15.0-1022.27|5.15.0-1023.28|5.15.0-1024.29|5.15.0-1028.33|5.15.0-1033.35|5.15.0-1034.36|5.15.0-1035.37|5.15.0-1036.38|5.15.0-1037.39|5.15.0-1038.40|5.15.0-1039.41|5.15.0-1040.42|5.15.0-1041.43|5.15.0-1042.44|5.15.0-1043.45|5.15.0-1044.46|5.15.0-1046.48|5.15.0-1047.49|5.15.0-1048.50|5.15.0-1049.51|5.15.0-1050.52|5.15.0-1053.55|5.15.0-1054.56|5.15.0-1055.57|5.15.0-1056.58|5.15.0-1057.59|5.15.0-1058.60|5.15.0-1059.61|5.15.0-1060.62|5.15.0-1061.63|5.15.0-1063.65|5.15.0-1064.66|5.15.0-1066.68|5.15.0-1071.73|5.15.0-1072.74|5.15.0-1073.75|5.15.0-1074.76|5.15.0-1075.77|5.15.0-1076.78|5.15.0-1077.79|5.15.0-1078.80|5.15.0-1079.81|5.15.0-1080.82|5.15.0-1081.83|5.15.0-1082.84|5.15.0-1083.85|5.15.0-1084.86|5.15.0-1085.87|5.15.0-1086.88|5.15.0-1087.89|5.15.0-1088.90|5.15.0-1089.91|5.15.0-1090.92|5.15.0-1091.93", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=realtime/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/5.15.0-1006.6|5.15.0-1007.7|5.15.0-1009.9|5.15.0-1011.11|5.15.0-1014.14|5.15.0-1015.15|5.15.0-1016.16|5.15.0-1019.19|5.15.0-1020.20|5.15.0-1021.21|5.15.0-1022.22|5.15.0-1024.25|5.15.0-1025.28|5.15.0-1028.31|5.15.0-1029.32|5.15.0-1030.33|5.15.0-1032.35|5.15.0-1033.36|5.15.0-1034.37|5.15.0-1036.39|5.15.0-1037.40|5.15.0-1038.41|5.15.0-1039.42|5.15.0-1040.45|5.15.0-1041.46|5.15.0-1042.47|5.15.0-1043.48|5.15.0-1044.49|5.15.0-1045.50|5.15.0-1046.52|5.15.0-1048.54|5.15.0-1049.55|5.15.0-1050.56|5.15.0-1051.57|5.15.0-1052.58|5.15.0-1053.59|5.15.0-1054.60|5.15.0-1055.62|5.15.0-1056.63|5.15.0-1057.64|5.15.0-1058.66|5.15.0-1061.69|5.15.0-1062.70|5.15.0-1063.71|5.15.0-1064.72|5.15.0-1065.73|5.15.0-1066.74|5.15.0-1067.75|5.15.0-1068.76|5.15.0-1069.77|5.15.0-1070.78|5.15.0-1071.79|5.15.0-1072.80|5.15.0-1073.81|5.15.0-1074.82|5.15.0-1075.83|5.15.0-1076.84|5.15.0-1077.85|5.15.0-1078.86|5.15.0-1079.87|5.15.0-1080.88|5.15.0-1081.89|5.15.0-1082.91|5.15.0-1083.92|5.15.0-1084.93|5.15.0-1085.94|5.15.0-1086.95|5.15.0-1087.96|5.15.0-1088.97|5.15.0-1089.98|5.15.0-1090.99|5.15.0-1091.100|5.15.0-1092.101|5.15.0-1093.102|5.15.0-1094.103|5.15.0-1095.104|5.15.0-1096.105|5.15.0-1097.106|5.15.0-1098.107", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime-6.8", - "version": "", - "qualifiers": "arch=source&distro=realtime/jammy", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.1-1004.4~22.04.1|6.8.1-1005.5~22.04.2|6.8.1-1006.6~22.04.1|6.8.1-1007.7~22.04.1|6.8.1-1008.8~22.04.1|6.8.1-1009.9~22.04.1|6.8.1-1010.10~22.04.1|6.8.1-1011.11~22.04.1|6.8.1-1012.12~22.04.1|6.8.1-1013.14~22.04.1|6.8.1-1014.15~22.04.1|6.8.1-1015.16~22.04.1|6.8.1-1016.17~22.04.1|6.8.1-1017.18~22.04.1|6.8.1-1018.19~22.04.1|6.8.1-1019.20~22.04.1|6.8.1-1020.21~22.04.1|6.8.1-1021.22~22.04.1|6.8.1-1022.23~22.04.1|6.8.1-1023.24~22.04.1|6.8.1-1024.25~22.04.1|6.8.1-1025.26~22.04.1|6.8.1-1026.27~22.04.1|6.8.1-1030.31~22.04.1|6.8.1-1031.32~22.04.1|6.8.1-1034.35~22.04.1|6.8.1-1035.36~22.04.1|6.8.1-1036.37~22.04.1|6.8.1-1037.38~22.04.1|6.8.1-1038.39~22.04.1|6.8.1-1039.40~22.04.1|6.8.1-1040.41~22.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-9.9|6.6.0-14.14|6.8.0-11.11|6.8.0-20.20|6.8.0-22.22|6.8.0-28.28|6.8.0-31.31|6.8.0-35.35|6.8.0-36.36|6.8.0-38.38|6.8.0-39.39|6.8.0-40.40|6.8.0-41.41|6.8.0-44.44|6.8.0-45.45|6.8.0-47.47|6.8.0-48.48|6.8.0-49.49|6.8.0-50.51|6.8.0-51.52|6.8.0-52.53|6.8.0-53.55|6.8.0-54.56|6.8.0-55.57|6.8.0-56.58|6.8.0-57.59|6.8.0-58.60|6.8.0-59.61|6.8.0-60.63|6.8.0-62.65|6.8.0-63.66|6.8.0-64.67|6.8.0-71.71|6.8.0-78.78|6.8.0-79.79|6.8.0-83.83|6.8.0-84.84|6.8.0-85.85|6.8.0-86.87|6.8.0-87.88|6.8.0-88.89|6.8.0-90.91|6.8.0-94.96", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-15.15|6.15.0-3.3|6.15.0-4.4|6.16.0-13.13|6.16.0-16.16|6.17.0-3.3|6.17.0-4.4|6.17.0-5.5|6.17.0-6.6|6.17.0-7.7|6.17.0-8.8|6.17.0-12.12", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1008.8|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1006.6|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1016.17|6.8.0-1017.18|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1023.25|6.8.0-1024.26|6.8.0-1025.27|6.8.0-1026.28|6.8.0-1027.29|6.8.0-1028.30|6.8.0-1029.31|6.8.0-1030.32|6.8.0-1031.33|6.8.0-1032.34|6.8.0-1033.35|6.8.0-1035.37|6.8.0-1036.38|6.8.0-1038.40|6.8.0-1039.41|6.8.0-1040.42|6.8.0-1041.43|6.8.0-1042.44|6.8.0-1043.45|6.8.0-1044.46", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1009.9~24.04.1|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1|6.14.0-1018.18~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1007.7|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1012.14|6.8.0-1013.15|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.20|6.8.0-1018.21|6.8.0-1020.23|6.8.0-1021.25|6.8.0-1025.30|6.8.0-1026.31|6.8.0-1027.32|6.8.0-1028.33|6.8.0-1029.34|6.8.0-1030.35|6.8.0-1031.36|6.8.0-1034.39|6.8.0-1038.44|6.8.0-1040.46|6.8.0-1041.47|6.8.0-1042.48|6.8.0-1044.50", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-1008.8~24.04.1|6.11.0-1012.12~24.04.1|6.11.0-1013.13~24.04.1|6.11.0-1014.14~24.04.1|6.11.0-1015.15~24.04.1|6.11.0-1017.17~24.04.1|6.11.0-1018.18~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1010.10~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1017.17~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1041.48|6.8.0-1044.51", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fde-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1017.17~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-nvidia", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1013.14|6.8.0-1014.15|6.8.0-1016.17|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1022.23|6.8.0-1025.27|6.8.0-1027.30|6.8.0-1029.32", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-nvidia-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1003.3|6.14.0-1006.6|6.14.0-1007.7", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1007.7|6.6.0-1001.1|6.8.0-1002.2|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.9|6.8.0-1009.10|6.8.0-1010.11|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1024.26|6.8.0-1025.27|6.8.0-1026.28|6.8.0-1027.29|6.8.0-1028.30|6.8.0-1029.31|6.8.0-1030.32|6.8.0-1031.33|6.8.0-1032.34|6.8.0-1033.35|6.8.0-1034.36|6.8.0-1036.38|6.8.0-1037.39|6.8.0-1039.41|6.8.0-1040.42|6.8.0-1041.43|6.8.0-1042.45|6.8.0-1043.46|6.8.0-1044.47|6.8.0-1045.48", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-1006.6~24.04.2|6.11.0-1011.11~24.04.1|6.11.0-1013.13~24.04.1|6.11.0-1014.14~24.04.1|6.11.0-1015.15~24.04.1|6.11.0-1016.16~24.04.1|6.11.0-1017.17~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1014.15~24.04.1|6.14.0-1015.16~24.04.1|6.14.0-1016.17~24.04.1|6.14.0-1017.18~24.04.1|6.14.0-1018.19~24.04.1|6.14.0-1019.20~24.04.1|6.14.0-1020.21~24.04.1|6.14.0-1021.22~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gke", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1003.5|6.8.0-1004.7|6.8.0-1005.8|6.8.0-1006.9|6.8.0-1007.10|6.8.0-1008.11|6.8.0-1009.12|6.8.0-1010.13|6.8.0-1011.14|6.8.0-1012.15|6.8.0-1013.17|6.8.0-1014.18|6.8.0-1015.19|6.8.0-1016.20|6.8.0-1017.21|6.8.0-1019.23|6.8.0-1020.24|6.8.0-1021.25|6.8.0-1022.26|6.8.0-1023.27|6.8.0-1024.28|6.8.0-1025.29|6.8.0-1026.30|6.8.0-1027.31|6.8.0-1028.32|6.8.0-1029.33|6.8.0-1032.36|6.8.0-1033.37|6.8.0-1035.39|6.8.0-1036.40|6.8.0-1037.41|6.8.0-1038.43|6.8.0-1039.44|6.8.0-1040.45|6.8.0-1041.46|6.8.0-1042.47", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gkeop", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1001.3|6.8.0-1002.4|6.8.0-1003.5|6.8.0-1004.6|6.8.0-1006.8|6.8.0-1007.9|6.8.0-1008.10|6.8.0-1009.11|6.8.0-1010.12|6.8.0-1011.13|6.8.0-1012.14|6.8.0-1013.15|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1022.24|6.8.0-1023.25|6.8.0-1024.26|6.8.0-1025.28|6.8.0-1026.29|6.8.0-1027.30|6.8.0-1028.31|6.8.0-1029.32", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-17.17~24.04.2|6.11.0-19.19~24.04.1|6.11.0-21.21~24.04.1|6.11.0-24.24~24.04.1|6.11.0-25.25~24.04.1|6.11.0-26.26~24.04.1|6.11.0-28.28~24.04.1|6.11.0-29.29~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-hwe-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-24.24~24.04.3|6.14.0-27.27~24.04.1|6.14.0-28.28~24.04.1|6.14.0-29.29~24.04.1|6.14.0-32.32~24.04.1|6.14.0-33.33~24.04.1|6.14.0-34.34~24.04.1|6.14.0-35.35~24.04.1|6.14.0-36.36~24.04.1|6.14.0-37.37~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-ibm", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1009.9|6.8.0-1001.1|6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1015.15|6.8.0-1016.16|6.8.0-1017.17|6.8.0-1018.18|6.8.0-1019.19|6.8.0-1022.22|6.8.0-1023.23|6.8.0-1024.24|6.8.0-1025.25|6.8.0-1026.26|6.8.0-1027.27|6.8.0-1028.28|6.8.0-1029.29|6.8.0-1030.30|6.8.0-1033.33|6.8.0-1036.36|6.8.0-1037.37|6.8.0-1038.38|6.8.0-1039.39|6.8.0-1040.40|6.8.0-1041.41|6.8.0-1042.42", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-9.9.1|6.6.0-14.14.1|6.8.0-7.7.1|6.8.0-25.25.3|6.8.0-28.28.1|6.8.0-31.31.1|6.8.0-35.35.1|6.8.0-36.36.1|6.8.0-38.38.1|6.8.0-39.39.1|6.8.0-40.40.1|6.8.0-41.41.1|6.8.0-44.44.1|6.8.0-45.45.1|6.8.0-47.47.1|6.8.0-48.48.3|6.8.0-49.49.1|6.8.0-50.51.1|6.8.0-51.52.1|6.8.0-52.53.1|6.8.0-53.55.2|6.8.0-54.56.1|6.8.0-55.57.1|6.8.0-56.58.1|6.8.0-57.59.1|6.8.0-58.60.1|6.8.0-59.61.1|6.8.0-60.63.1|6.8.0-62.65.1|6.8.0-63.66.1|6.8.0-64.67.1|6.8.0-65.68.1|6.8.0-78.78.1|6.8.0-79.79.1|6.8.0-83.83.1|6.8.0-84.84.1|6.8.0-85.85.1|6.8.0-86.87.1|6.8.0-87.88.1|6.8.0-88.89.1|6.8.0-90.91.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-lowlatency-hwe-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-1009.10~24.04.1|6.11.0-1011.12~24.04.1|6.11.0-1012.13~24.04.1|6.11.0-1013.14~24.04.1|6.11.0-1014.15~24.04.1|6.11.0-1015.16~24.04.2|6.11.0-1016.17~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.21|6.8.0-1020.22|6.8.0-1021.23|6.8.0-1022.25|6.8.0-1023.26|6.8.0-1024.27|6.8.0-1025.28|6.8.0-1026.29|6.8.0-1027.30|6.8.0-1028.31|6.8.0-1029.32|6.8.0-1030.33|6.8.0-1031.34|6.8.0-1032.35|6.8.0-1035.38|6.8.0-1036.39|6.8.0-1038.41|6.8.0-1039.42|6.8.0-1040.43|6.8.0-1041.44|6.8.0-1042.45|6.8.0-1043.46|6.8.0-1044.47", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-lowlatency", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1009.9.1|6.8.0-1011.11.1|6.8.0-1012.12.1|6.8.0-1013.14.1|6.8.0-1014.15.1|6.8.0-1015.16.1|6.8.0-1017.19.1|6.8.0-1018.20.1|6.8.0-1019.21.1|6.8.0-1020.22.1|6.8.0-1021.23.1|6.8.0-1022.25.2|6.8.0-1023.26.1|6.8.0-1024.27.1|6.8.0-1025.28.1|6.8.0-1026.29.1|6.8.0-1027.30.1|6.8.0-1028.31.1|6.8.0-1029.32.1|6.8.0-1030.33.1|6.8.0-1031.34.1|6.8.0-1032.35.1|6.8.0-1035.38.1|6.8.0-1036.39.1|6.8.0-1038.41.1|6.8.0-1039.42.1|6.8.0-1040.43.1|6.8.0-1041.44.1|6.8.0-1042.45.1|6.8.0-1043.46.1|6.8.0-1044.47.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-nvidia-tegra", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1003.3|6.8.0-1004.4|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1012.12|6.8.0-1013.13", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.11", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.11.0-1007.7|6.11.0-1008.8|6.11.0-1009.9|6.11.0-1010.10|6.11.0-1011.11|6.11.0-1012.12|6.11.0-1013.13|6.11.0-1015.15|6.11.0-1016.16|6.11.0-1017.17|6.11.0-1018.18|6.11.0-1020.20|6.11.0-1021.21|6.11.0-1022.22|6.11.0-1023.23|6.11.0-1024.24|6.11.0-1025.25|6.11.0-1027.27", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1004.4|6.14.0-1005.5|6.14.0-1006.6|6.14.0-1007.7|6.14.0-1008.8|6.14.0-1010.10|6.14.0-1011.11|6.14.0-1012.12|6.14.0-1013.13|6.14.0-1014.14|6.14.0-1015.15|6.14.0-1016.16|6.14.0-1017.17|6.14.0-1018.18|6.14.0-1019.19|6.14.0-1020.20", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.17", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.17.0-1005.5|6.17.0-1006.6|6.17.0-1007.7|6.17.0-1008.8|6.17.0-1009.9|6.17.0-1010.10", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oem-6.8", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.9|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1016.16|6.8.0-1017.17|6.8.0-1018.18|6.8.0-1019.19|6.8.0-1020.20|6.8.0-1024.24|6.8.0-1025.25|6.8.0-1026.26|6.8.0-1027.27|6.8.0-1028.28|6.8.0-1029.29|6.8.0-1030.30|6.8.0-1031.31|6.8.0-1032.32", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1010.10|6.6.0-1001.1|6.8.0-1001.1|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1008.8|6.8.0-1010.10|6.8.0-1011.11|6.8.0-1012.12|6.8.0-1013.13|6.8.0-1014.14|6.8.0-1015.16|6.8.0-1016.17|6.8.0-1017.18|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1020.21|6.8.0-1021.22|6.8.0-1022.23|6.8.0-1023.24|6.8.0-1024.25|6.8.0-1025.26|6.8.0-1026.27|6.8.0-1027.28|6.8.0-1028.29|6.8.0-1029.30|6.8.0-1030.31|6.8.0-1032.33|6.8.0-1033.34|6.8.0-1035.36|6.8.0-1037.38|6.8.0-1038.39|6.8.0-1039.40|6.8.0-1040.41|6.8.0-1041.42|6.8.0-1042.43", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1007.7~24.04.1|6.14.0-1009.9~24.04.1|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1|6.14.0-1018.18~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-1005.7|6.7.0-1001.1|6.8.0-1001.1|6.8.0-1002.2|6.8.0-1003.3|6.8.0-1004.4|6.8.0-1005.5|6.8.0-1006.6|6.8.0-1007.7|6.8.0-1008.8|6.8.0-1009.10|6.8.0-1010.11|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.16|6.8.0-1015.17|6.8.0-1016.18|6.8.0-1017.19|6.8.0-1018.20|6.8.0-1019.23|6.8.0-1020.24|6.8.0-1024.28|6.8.0-1028.32|6.8.0-1029.33|6.8.0-1030.34|6.8.0-1031.35|6.8.0-1032.36|6.8.0-1035.39|6.8.0-1036.40|6.8.0-1038.42|6.8.0-1039.43|6.8.0-1040.44|6.8.0-1041.45|6.8.0-1042.46|6.8.0-1043.47|6.8.0-1044.48|6.8.0-1045.49", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi-realtime", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-2019.20", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.1-1015.16", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.5.0-9.9.1|6.8.0-20.20.1|6.8.0-28.28.1|6.8.0-31.31.1|6.8.0-35.35.1|6.8.0-36.36.1|6.8.0-38.38.1|6.8.0-39.39.1|6.8.0-40.40.1|6.8.0-41.41.1|6.8.0-44.44.1|6.8.0-47.47.1|6.8.0-48.48.1|6.8.0-49.49.1|6.8.0-50.51.1|6.8.0-51.52.1|6.8.0-52.53.1|6.8.0-53.55.1|6.8.0-55.57.1|6.8.0-56.58.1|6.8.0-57.59.1|6.8.0-58.60.1|6.8.0-59.61.1|6.8.0-60.63.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv-6.14", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-22.22.1~24.04.1|6.14.0-23.23.1~24.04.1|6.14.0-24.24.1~24.04.1|6.14.0-27.27.1~24.04.1|6.14.0-28.28.1~24.04.1|6.14.0-29.29.1~24.04.1|6.14.0-32.32.1~24.04.1|6.14.0-33.33.1~24.04.1|6.14.0-34.34.1~24.04.1|6.14.0-35.35.1~24.04.1|6.14.0-36.36.1~24.04.1|6.14.0-37.37.1~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-xilinx", - "version": "", - "qualifiers": "arch=source&distro=noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1008.9|6.8.0-1009.10|6.8.0-1011.12|6.8.0-1012.13|6.8.0-1013.14|6.8.0-1014.15|6.8.0-1015.16|6.8.0-1017.18|6.8.0-1018.19|6.8.0-1019.20|6.8.0-1020.21|6.8.0-1021.22", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-aws-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1035.37+fips1|6.8.0-1036.38+fips1|6.8.0-1038.40+fips1|6.8.0-1039.41+fips1|6.8.0-1040.42+fips1|6.8.0-1041.43+fips1|6.8.0-1042.44+fips1|6.8.0-1043.45+fips1|6.8.0-1044.46+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-azure-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1034.39+fips1|6.8.0-1040.46+fips1|6.8.0-1044.50+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-38.38+fips4|6.8.0-78.78+fips1|6.8.0-79.79+fips1|6.8.0-83.83+fips1|6.8.0-84.84+fips1|6.8.0-85.85+fips1|6.8.0-86.87+fips1|6.8.0-87.88+fips1|6.8.0-88.89+fips1|6.8.0-90.91+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-gcp-fips", - "version": "", - "qualifiers": "arch=source&distro=fips-updates/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1036.38+fips1|6.8.0-1037.39+fips1|6.8.0-1039.41+fips1|6.8.0-1040.42+fips1|6.8.0-1041.43+fips1|6.8.0-1042.45+fips1|6.8.0-1043.46+fips1|6.8.0-1044.47+fips1|6.8.0-1045.48+fips1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi-realtime", - "version": "", - "qualifiers": "arch=source&distro=realtime/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.7.0-2001.1|6.8.0-2001.1|6.8.0-2002.2|6.8.0-2004.4|6.8.0-2005.5|6.8.0-2006.6|6.8.0-2007.7|6.8.0-2008.8|6.8.0-2009.9|6.8.0-2010.10|6.8.0-2011.11|6.8.0-2012.12|6.8.0-2013.14|6.8.0-2014.15|6.8.0-2015.16|6.8.0-2016.17|6.8.0-2017.18|6.8.0-2018.19|6.8.0-2019.20|6.8.0-2022.23|6.8.0-2023.24|6.8.0-2024.25|6.8.0-2025.26|6.8.0-2026.27|6.8.0-2028.29|6.8.0-2029.30|6.8.0-2030.31|6.8.0-2031.32|6.8.0-2032.33|6.8.0-2033.34|6.8.0-2034.35|6.8.0-2035.36|6.8.0-2036.37", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=realtime/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.8.0-1008.19|6.8.1-1001.1|6.8.1-1002.2|6.8.1-1003.3|6.8.1-1004.4|6.8.1-1005.5|6.8.1-1006.6|6.8.1-1007.7|6.8.1-1008.8|6.8.1-1009.9|6.8.1-1010.10|6.8.1-1011.11|6.8.1-1012.12|6.8.1-1013.14|6.8.1-1014.15|6.8.1-1015.16|6.8.1-1016.17|6.8.1-1017.18|6.8.1-1018.19|6.8.1-1019.20|6.8.1-1020.21|6.8.1-1021.22|6.8.1-1022.23|6.8.1-1023.24|6.8.1-1024.25|6.8.1-1025.26|6.8.1-1026.27|6.8.1-1030.31|6.8.1-1031.32|6.8.1-1033.34|6.8.1-1034.35|6.8.1-1035.36|6.8.1-1036.37|6.8.1-1037.38|6.8.1-1038.39|6.8.1-1039.40|6.8.1-1040.41", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime-6.14", - "version": "", - "qualifiers": "arch=source&distro=realtime/noble", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1003.3~24.04.3|6.14.0-1010.10~24.04.1|6.14.0-1011.11~24.04.1|6.14.0-1012.12~24.04.1|6.14.0-1013.13~24.04.1|6.14.0-1014.14~24.04.1|6.14.0-1015.15~24.04.1|6.14.0-1016.16~24.04.1|6.14.0-1017.17~24.04.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-oracle", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1005.5|6.14.0-1007.7+25.10.1|6.16.0-1001.1|6.17.0-1001.1|6.17.0-1002.2|6.17.0-1003.3|6.17.0-1005.5|6.17.0-1006.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-raspi", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1005.5|6.17.0-1003.3|6.17.0-1004.4|6.17.0-1005.5|6.17.0-1006.6|6.17.0-1007.7", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-realtime", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-1002.2|6.17.0-1001.2|6.17.0-1002.3|6.17.0-1003.4|6.17.0-1004.5|6.17.0-1005.6", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - }, - { - "package": { - "type": "deb", - "namespace": "ubuntu", - "name": "linux-riscv", - "version": "", - "qualifiers": "arch=source&distro=questing", - "subpath": "" - }, - "affected_version_range": "vers:deb/6.14.0-13.13.2|6.17.0-4.4.1|6.17.0-5.5.1|6.17.0-6.6.1|6.17.0-7.7.1|6.17.0-8.8.1", - "fixed_version_range": null, - "introduced_by_commit_patches": [], - "fixed_by_commit_patches": [] - } - ], - "references_v2": [ - { - "reference_id": "", - "reference_type": "", - "url": "https://git.kernel.org/stable/c/7b5d4416964c07c902163822a30a622111172b01" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://git.kernel.org/stable/c/dbbf6d47130674640cd12a0781a0fb2a575d0e44" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://ubuntu.com/security/CVE-2025-71115" - }, - { - "reference_id": "", - "reference_type": "", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-71115" - } - ], - "patches": [], - "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - } - ], - "date_published": "2026-01-14T15:16:00+00:00", - "weaknesses": [], - "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-71115.json" + "url": "https://github.com/canonical/ubuntu-security-notices/blob/main/osv/cve/2025/UBUNTU-CVE-2025-14345.json" } ] \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json deleted file mode 100644 index 256fb78bb..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-1824.json +++ /dev/null @@ -1,320 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2010-1824", - "details": "Use-after-free vulnerability in WebKit, as used in Apple iTunes before 10.2 on Windows, Apple Safari, and Google Chrome before 6.0.472.59, allows remote attackers to execute arbitrary code or cause a denial of service via vectors related to SVG styles, the DOM tree, and error messages.", - "aliases": [], - "upstream": [ - "CVE-2010-1824" - ], - "related": [ - "USN-1195-1" - ], - "severity": [ - { - "type": "Ubuntu", - "score": "low" - } - ], - "published": "2010-09-24T00:00:00Z", - "modified": "2025-07-16T04:49:56Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "webkitgtk", - "purl": "pkg:deb/ubuntu/webkitgtk@2.4.8-1ubuntu1~ubuntu14.04.1?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.4.8-1ubuntu1~ubuntu14.04.1" - } - ] - } - ], - "versions": [ - "2.2.1-2ubuntu2", - "2.3.2-1ubuntu2", - "2.3.2-1ubuntu3", - "2.3.2-1ubuntu4", - "2.3.2-1ubuntu5", - "2.3.2-1ubuntu6", - "2.3.4-1ubuntu2", - "2.3.90-1ubuntu1", - "2.3.91-0ubuntu1", - "2.4.0-1ubuntu2", - "2.4.2-1ubuntu0.1", - "2.4.3-1ubuntu2", - "2.4.4-1~ubuntu1", - "2.4.7-1~ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "gir1.2-javascriptcoregtk-1.0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "gir1.2-javascriptcoregtk-3.0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "gir1.2-webkit-1.0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "gir1.2-webkit-3.0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "gir1.2-webkit2-3.0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-0-dbg", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-0-dbg", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-bin", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkit-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkit2gtk-3.0-25", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkit2gtk-3.0-25-dbg", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkit2gtk-3.0-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-1.0-0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-1.0-0-dbg", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-1.0-common", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-3.0-0", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-3.0-0-dbg", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-3.0-common", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-3.0-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-common-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - }, - { - "binary_name": "libwebkitgtk-dev", - "binary_version": "2.4.8-1ubuntu1~ubuntu14.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "webkitgtk", - "purl": "pkg:deb/ubuntu/webkitgtk@2.4.9-2ubuntu2?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.4.9-2ubuntu2" - } - ] - } - ], - "versions": [], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "gir1.2-javascriptcoregtk-3.0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "gir1.2-webkit-3.0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "gir1.2-webkit2-3.0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-0-dbg", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-0-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-1.0-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-0-dbg", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-0-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-bin", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-bin-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libjavascriptcoregtk-3.0-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkit-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkit2gtk-3.0-25", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkit2gtk-3.0-25-dbg", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkit2gtk-3.0-25-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkit2gtk-3.0-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-1.0-0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-1.0-0-dbg", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-1.0-0-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-1.0-common", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-3.0-0", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-3.0-0-dbg", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-3.0-0-dbgsym", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-3.0-common", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-3.0-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-common-dev", - "binary_version": "2.4.9-2ubuntu2" - }, - { - "binary_name": "libwebkitgtk-dev", - "binary_version": "2.4.9-2ubuntu2" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2010-1824" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-1195-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2010-1824" - } - ], - "withdrawn": "2025-07-18T16:42:39Z" -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json deleted file mode 100644 index a4c2b7a5d..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2010/UBUNTU-CVE-2010-2496.json +++ /dev/null @@ -1,325 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2010-2496", - "details": "stonith-ng in pacemaker and cluster-glue passed passwords as commandline parameters, making it possible for local attackers to gain access to passwords of the HA stack and potentially influence its operations. This is fixed in cluster-glue 1.0.6 and newer, and pacemaker 1.1.3 and newer.", - "aliases": [], - "upstream": [ - "CVE-2010-2496" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2021-10-18T13:15:00Z", - "modified": "2025-07-16T04:49:56Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "cluster-glue", - "purl": "pkg:deb/ubuntu/cluster-glue@1.0.12-7build1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.0.12-7build1" - } - ] - } - ], - "versions": [ - "1.0.12-5ubuntu2", - "1.0.12-7" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "cluster-glue", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "cluster-glue-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "cluster-glue-dev", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "liblrm2", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "liblrm2-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "liblrm2-dev", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libpils2", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libpils2-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libpils2-dev", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumb2", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumb2-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumb2-dev", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumbgpl2", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumbgpl2-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libplumbgpl2-dev", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libstonith1", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libstonith1-dbgsym", - "binary_version": "1.0.12-7build1" - }, - { - "binary_name": "libstonith1-dev", - "binary_version": "1.0.12-7build1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "pacemaker", - "purl": "pkg:deb/ubuntu/pacemaker@1.1.18-0ubuntu1.3?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.1.18-0ubuntu1.3" - } - ] - } - ], - "versions": [ - "1.1.16-1ubuntu1", - "1.1.18~rc3-1ubuntu1", - "1.1.18~rc4-1ubuntu1", - "1.1.18-0ubuntu1", - "1.1.18-0ubuntu1.1", - "1.1.18-0ubuntu1.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libcib-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcib4", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcib4-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcluster-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcluster4", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcluster4-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcommon-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcommon3", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmcommon3-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmservice-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmservice3", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libcrmservice3-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "liblrmd-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "liblrmd1", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "liblrmd1-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpe-rules2", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpe-rules2-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpe-status10", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpe-status10-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpengine-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpengine10", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libpengine10-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libstonithd-dev", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libstonithd2", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libstonithd2-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libtransitioner2", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "libtransitioner2-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-cli-utils", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-cli-utils-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-common", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-doc", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-remote", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-remote-dbgsym", - "binary_version": "1.1.18-0ubuntu1.3" - }, - { - "binary_name": "pacemaker-resource-agents", - "binary_version": "1.1.18-0ubuntu1.3" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2010-2496" - }, - { - "type": "REPORT", - "url": "https://bugzilla.suse.com/show_bug.cgi?id=620781" - }, - { - "type": "REPORT", - "url": "https://github.com/ClusterLabs/cluster-glue/commit/3d7b464439ee0271da76e0ee9480f3dc14005879" - }, - { - "type": "REPORT", - "url": "https://github.com/ClusterLabs/pacemaker/commit/7901f43c5800374d41ae2287fe122692fe045664" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2010-2496" - } - ], - "withdrawn": "2025-07-18T16:42:39Z" -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json deleted file mode 100644 index f0a448227..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0222.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2015-0222", - "details": "ModelMultipleChoiceField in Django 1.6.x before 1.6.10 and 1.7.x before 1.7.3, when show_hidden_initial is set to True, allows remote attackers to cause a denial of service by submitting duplicate values, which triggers a large number of SQL queries.", - "aliases": [], - "upstream": [ - "CVE-2015-0222" - ], - "related": [ - "USN-2469-1" - ], - "severity": [ - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2015-01-13T00:00:00Z", - "modified": "2025-09-08T16:43:18Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "python-django", - "purl": "pkg:deb/ubuntu/python-django@1.6.1-2ubuntu0.6?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.6.1-2ubuntu0.6" - } - ] - } - ], - "versions": [ - "1.5.4-1ubuntu1", - "1.6-1", - "1.6.1-1", - "1.6.1-2", - "1.6.1-2ubuntu0.1", - "1.6.1-2ubuntu0.2", - "1.6.1-2ubuntu0.3", - "1.6.1-2ubuntu0.4", - "1.6.1-2ubuntu0.5" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "python-django", - "binary_version": "1.6.1-2ubuntu0.6" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2015-0222" - }, - { - "type": "REPORT", - "url": "https://www.djangoproject.com/weblog/2015/jan/13/security/" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-2469-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0222" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json deleted file mode 100644 index 870d64489..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0244.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2015-0244", - "details": "PostgreSQL before 9.0.19, 9.1.x before 9.1.15, 9.2.x before 9.2.10, 9.3.x before 9.3.6, and 9.4.x before 9.4.1 does not properly handle errors while reading a protocol message, which allows remote attackers to conduct SQL injection attacks via crafted binary data in a parameter and causing an error, which triggers the loss of synchronization and part of the protocol message to be treated as a new message, as demonstrated by causing a timeout or query cancellation.", - "aliases": [], - "upstream": [ - "CVE-2015-0244" - ], - "related": [ - "USN-2499-1" - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2015-02-06T00:00:00Z", - "modified": "2025-09-08T16:43:18Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "postgresql-9.1", - "purl": "pkg:deb/ubuntu/postgresql-9.1@9.1.15-0ubuntu0.14.04?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "9.1.15-0ubuntu0.14.04" - } - ] - } - ], - "versions": [ - "9.1.10-1", - "9.1.10-1bzr1", - "9.1.11-1", - "9.1.11-2", - "9.1.12-1", - "9.1.13-1", - "9.1.14-0ubuntu0.14.04" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "postgresql-plperl-9.1", - "binary_version": "9.1.15-0ubuntu0.14.04" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "postgresql-9.3", - "purl": "pkg:deb/ubuntu/postgresql-9.3@9.3.6-0ubuntu0.14.04?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "9.3.6-0ubuntu0.14.04" - } - ] - } - ], - "versions": [ - "9.3.1-1", - "9.3.2-1", - "9.3.2-1ubuntu1", - "9.3.2-1ubuntu2", - "9.3.3-1", - "9.3.3-1bzr1", - "9.3.3-1bzr2", - "9.3.4-1", - "9.3.5-0ubuntu0.14.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libecpg-compat3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "libecpg-dev", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "libecpg6", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "libpgtypes3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "libpq-dev", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "libpq5", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-client-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-contrib-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-doc-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-plperl-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-plpython-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-plpython3-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-pltcl-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - }, - { - "binary_name": "postgresql-server-dev-9.3", - "binary_version": "9.3.6-0ubuntu0.14.04" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2015-0244" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-2499-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0244" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json deleted file mode 100644 index 07b358a64..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0261.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2015-0261", - "details": "Integer signedness error in the mobility_opt_print function in the IPv6 mobility printer in tcpdump before 4.7.2 allows remote attackers to cause a denial of service (out-of-bounds read and crash) or possibly execute arbitrary code via a negative length value.", - "aliases": [], - "upstream": [ - "CVE-2015-0261" - ], - "related": [ - "USN-2580-1" - ], - "severity": [ - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2015-03-24T00:00:00Z", - "modified": "2025-07-16T04:50:43Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "tcpdump", - "purl": "pkg:deb/ubuntu/tcpdump@4.5.1-2ubuntu1.2?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.5.1-2ubuntu1.2" - } - ] - } - ], - "versions": [ - "4.4.0-1ubuntu1", - "4.5.1-2ubuntu1", - "4.5.1-2ubuntu1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "tcpdump", - "binary_version": "4.5.1-2ubuntu1.2" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2015-0261" - }, - { - "type": "REPORT", - "url": "http://seclists.org/bugtraq/2015/Mar/33" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-2580-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0261" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json deleted file mode 100644 index 0960c6765..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2015/UBUNTU-CVE-2015-0295.json +++ /dev/null @@ -1,393 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2015-0295", - "details": "The BMP decoder in QtGui in QT before 5.5 does not properly calculate the masks used to extract the color components, which allows remote attackers to cause a denial of service (divide-by-zero and crash) via a crafted BMP file.", - "aliases": [], - "upstream": [ - "CVE-2015-0295" - ], - "related": [ - "USN-2626-1" - ], - "severity": [ - { - "type": "Ubuntu", - "score": "low" - } - ], - "published": "2015-03-25T00:00:00Z", - "modified": "2025-09-08T16:43:18Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "qt4-x11", - "purl": "pkg:deb/ubuntu/qt4-x11@4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - } - ] - } - ], - "versions": [ - "4:4.8.4+dfsg-0ubuntu18", - "4:4.8.4+dfsg-0ubuntu19", - "4:4.8.4+dfsg-0ubuntu20", - "4:4.8.4+dfsg-0ubuntu21", - "4:4.8.4+dfsg-0ubuntu22", - "4:4.8.5+git192-g085f851+dfsg-2ubuntu3", - "4:4.8.5+git192-g085f851+dfsg-2ubuntu4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libqt4-assistant", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-core", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-dbus", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-declarative", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-declarative-folderlistmodel", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-declarative-gestures", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-declarative-particles", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-declarative-shaders", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-designer", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-dev", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-dev-bin", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-gui", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-help", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-network", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-opengl", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-opengl-dev", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-private-dev", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-qt3support", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-script", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-scripttools", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql-mysql", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql-odbc", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql-psql", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql-sqlite", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-sql-tds", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-svg", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-test", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-webkit", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-xml", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqt4-xmlpatterns", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqtcore4", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqtdbus4", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "libqtgui4", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qdbus", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-default", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-demos", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-designer", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-dev-tools", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-doc-html", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-linguist-tools", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-qmake", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-qmlviewer", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qt4-qtconfig", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - }, - { - "binary_name": "qtcore4-l10n", - "binary_version": "4:4.8.5+git192-g085f851+dfsg-2ubuntu4.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:14.04:LTS", - "name": "qtbase-opensource-src", - "purl": "pkg:deb/ubuntu/qtbase-opensource-src@5.2.1+dfsg-1ubuntu14.3?arch=source&distro=trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.2.1+dfsg-1ubuntu14.3" - } - ] - } - ], - "versions": [ - "5.0.2+dfsg1-7ubuntu11", - "5.0.2+dfsg1-7ubuntu12", - "5.0.2+dfsg1-7ubuntu13", - "5.0.2+dfsg1-7ubuntu14", - "5.0.2+dfsg1-7ubuntu15", - "5.0.2+dfsg1-7ubuntu16", - "5.0.2+dfsg1-7ubuntu17", - "5.0.2+dfsg1-7ubuntu18", - "5.2.1+dfsg-1ubuntu7", - "5.2.1+dfsg-1ubuntu8", - "5.2.1+dfsg-1ubuntu9", - "5.2.1+dfsg-1ubuntu10", - "5.2.1+dfsg-1ubuntu11", - "5.2.1+dfsg-1ubuntu13", - "5.2.1+dfsg-1ubuntu14", - "5.2.1+dfsg-1ubuntu14.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libqt5concurrent5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5core5a", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5dbus5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5gui5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5network5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5opengl5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5opengl5-dev", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5printsupport5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5-mysql", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5-odbc", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5-psql", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5-sqlite", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5sql5-tds", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5test5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5widgets5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "libqt5xml5", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qt5-default", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qt5-qmake", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qtbase5-dev", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qtbase5-dev-tools", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qtbase5-doc-html", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qtbase5-examples", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - }, - { - "binary_name": "qtbase5-private-dev", - "binary_version": "5.2.1+dfsg-1ubuntu14.3" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2015-0295" - }, - { - "type": "REPORT", - "url": "http://lists.qt-project.org/pipermail/announce/2015-February/000059.html" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-2626-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2015-0295" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json deleted file mode 100644 index 13984f8c7..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0305.json +++ /dev/null @@ -1,8566 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-0305", - "details": "In cdev_get of char_dev.c, there is a possible use-after-free due to a race condition. This could lead to local escalation of privilege with System execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-10Android ID: A-153467744", - "aliases": [], - "upstream": [ - "CVE-2020-0305" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2020-07-17T20:15:00Z", - "modified": "2026-01-30T05:05:53Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1062.66?arch=source&distro=trusty/esm" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1062.66" - } - ] - } - ], - "versions": [ - "4.4.0-1002.2", - "4.4.0-1003.3", - "4.4.0-1005.5", - "4.4.0-1006.6", - "4.4.0-1009.9", - "4.4.0-1010.10", - "4.4.0-1011.11", - "4.4.0-1012.12", - "4.4.0-1014.14", - "4.4.0-1016.16", - "4.4.0-1017.17", - "4.4.0-1019.19", - "4.4.0-1022.22", - "4.4.0-1023.23", - "4.4.0-1024.25", - "4.4.0-1025.26", - "4.4.0-1027.30", - "4.4.0-1028.31", - "4.4.0-1029.32", - "4.4.0-1031.34", - "4.4.0-1032.35", - "4.4.0-1034.37", - "4.4.0-1036.39", - "4.4.0-1037.40", - "4.4.0-1038.41", - "4.4.0-1039.42", - "4.4.0-1040.43", - "4.4.0-1042.45", - "4.4.0-1044.47", - "4.4.0-1045.48", - "4.4.0-1046.50", - "4.4.0-1048.52", - "4.4.0-1050.54", - "4.4.0-1052.56", - "4.4.0-1054.58", - "4.4.0-1055.59", - "4.4.0-1056.60", - "4.4.0-1058.62", - "4.4.0-1059.63", - "4.4.0-1060.64", - "4.4.0-1061.65" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.4.0-1062", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-aws-headers-4.4.0-1062", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-aws-tools-4.4.0-1062", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-headers-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-image-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-modules-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - }, - { - "binary_name": "linux-tools-4.4.0-1062-aws", - "binary_version": "4.4.0-1062.66" - } - ], - "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1074.79~14.04.1?arch=source&distro=trusty/esm" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1074.79~14.04.1" - } - ] - } - ], - "versions": [ - "4.15.0-1023.24~14.04.1", - "4.15.0-1030.31~14.04.1", - "4.15.0-1031.32~14.04.1", - "4.15.0-1032.33~14.04.2", - "4.15.0-1035.36~14.04.2", - "4.15.0-1036.38~14.04.2", - "4.15.0-1037.39~14.04.2", - "4.15.0-1039.41~14.04.2", - "4.15.0-1040.44~14.04.1", - "4.15.0-1041.45~14.04.1", - "4.15.0-1042.46~14.04.1", - "4.15.0-1045.49~14.04.1", - "4.15.0-1046.50~14.04.1", - "4.15.0-1047.51~14.04.1", - "4.15.0-1049.54~14.04.1", - "4.15.0-1050.55~14.04.1", - "4.15.0-1051.56~14.04.1", - "4.15.0-1052.57~14.04.1", - "4.15.0-1055.60~14.04.1", - "4.15.0-1056.61~14.04.1", - "4.15.0-1057.62~14.04.1", - "4.15.0-1059.64~14.04.1", - "4.15.0-1060.65~14.04.1", - "4.15.0-1061.66~14.04.1", - "4.15.0-1063.68~14.04.1", - "4.15.0-1064.69~14.04.1", - "4.15.0-1066.71~14.04.1", - "4.15.0-1067.72~14.04.1", - "4.15.0-1069.74~14.04.1", - "4.15.0-1071.76~14.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-4.15.0-1074", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-azure-headers-4.15.0-1074", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-azure-tools-4.15.0-1074", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1074-azure", - "binary_version": "4.15.0-1074.79~14.04.1" - } - ], - "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-lts-xenial", - "purl": "pkg:deb/ubuntu/linux-lts-xenial@4.4.0-174.204~14.04.1?arch=source&distro=trusty/esm" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-174.204~14.04.1" - } - ] - } - ], - "versions": [ - "4.4.0-13.29~14.04.1", - "4.4.0-14.30~14.04.2", - "4.4.0-15.31~14.04.1", - "4.4.0-18.34~14.04.1", - "4.4.0-21.37~14.04.1", - "4.4.0-22.39~14.04.1", - "4.4.0-22.40~14.04.1", - "4.4.0-24.43~14.04.1", - "4.4.0-28.47~14.04.1", - "4.4.0-31.50~14.04.1", - "4.4.0-34.53~14.04.1", - "4.4.0-36.55~14.04.1", - "4.4.0-38.57~14.04.1", - "4.4.0-42.62~14.04.1", - "4.4.0-45.66~14.04.1", - "4.4.0-47.68~14.04.1", - "4.4.0-51.72~14.04.1", - "4.4.0-53.74~14.04.1", - "4.4.0-57.78~14.04.1", - "4.4.0-59.80~14.04.1", - "4.4.0-62.83~14.04.1", - "4.4.0-63.84~14.04.2", - "4.4.0-64.85~14.04.1", - "4.4.0-66.87~14.04.1", - "4.4.0-67.88~14.04.1", - "4.4.0-70.91~14.04.1", - "4.4.0-71.92~14.04.1", - "4.4.0-72.93~14.04.1", - "4.4.0-75.96~14.04.1", - "4.4.0-78.99~14.04.2", - "4.4.0-79.100~14.04.1", - "4.4.0-81.104~14.04.1", - "4.4.0-83.106~14.04.1", - "4.4.0-87.110~14.04.1", - "4.4.0-89.112~14.04.1", - "4.4.0-91.114~14.04.1", - "4.4.0-92.115~14.04.1", - "4.4.0-93.116~14.04.1", - "4.4.0-96.119~14.04.1", - "4.4.0-97.120~14.04.1", - "4.4.0-98.121~14.04.1", - "4.4.0-101.124~14.04.1", - "4.4.0-103.126~14.04.1", - "4.4.0-104.127~14.04.1", - "4.4.0-108.131~14.04.1", - "4.4.0-109.132~14.04.1", - "4.4.0-111.134~14.04.1", - "4.4.0-112.135~14.04.1", - "4.4.0-116.140~14.04.1", - "4.4.0-119.143~14.04.1", - "4.4.0-121.145~14.04.1", - "4.4.0-124.148~14.04.1", - "4.4.0-127.153~14.04.1", - "4.4.0-128.154~14.04.1", - "4.4.0-130.156~14.04.1", - "4.4.0-131.157~14.04.1", - "4.4.0-133.159~14.04.1", - "4.4.0-134.160~14.04.1", - "4.4.0-135.161~14.04.1", - "4.4.0-137.163~14.04.1", - "4.4.0-138.164~14.04.1", - "4.4.0-139.165~14.04.1", - "4.4.0-140.166~14.04.1", - "4.4.0-141.167~14.04.1", - "4.4.0-142.168~14.04.1", - "4.4.0-143.169~14.04.2", - "4.4.0-144.170~14.04.1", - "4.4.0-146.172~14.04.1", - "4.4.0-148.174~14.04.1", - "4.4.0-150.176~14.04.1", - "4.4.0-151.178~14.04.1", - "4.4.0-154.181~14.04.1", - "4.4.0-157.185~14.04.1", - "4.4.0-159.187~14.04.1", - "4.4.0-161.189~14.04.1", - "4.4.0-164.192~14.04.1", - "4.4.0-165.193~14.04.1", - "4.4.0-166.195~14.04.1", - "4.4.0-168.197~14.04.1", - "4.4.0-169.198~14.04.1", - "4.4.0-170.199~14.04.1", - "4.4.0-171.200~14.04.1", - "4.4.0-173.203~14.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "block-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "floppy-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-cloud-tools-4.4.0-174", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-tools-4.4.0-174", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-modules-extra-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-generic", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "message-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pata-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pcmcia-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "serial-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "virtio-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204~14.04.1" - } - ], - "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@3.13.0-210.261?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "3.11.0-12.19", - "3.12.0-1.3", - "3.12.0-2.5", - "3.12.0-2.7", - "3.12.0-3.8", - "3.12.0-3.9", - "3.12.0-4.10", - "3.12.0-4.12", - "3.12.0-5.13", - "3.12.0-7.15", - "3.13.0-1.16", - "3.13.0-2.17", - "3.13.0-3.18", - "3.13.0-4.19", - "3.13.0-5.20", - "3.13.0-6.23", - "3.13.0-7.25", - "3.13.0-7.26", - "3.13.0-8.27", - "3.13.0-8.28", - "3.13.0-10.30", - "3.13.0-11.31", - "3.13.0-12.32", - "3.13.0-13.33", - "3.13.0-14.34", - "3.13.0-15.35", - "3.13.0-16.36", - "3.13.0-17.37", - "3.13.0-18.38", - "3.13.0-19.39", - "3.13.0-19.40", - "3.13.0-20.42", - "3.13.0-21.43", - "3.13.0-22.44", - "3.13.0-23.45", - "3.13.0-24.46", - "3.13.0-24.47", - "3.13.0-27.50", - "3.13.0-29.53", - "3.13.0-30.54", - "3.13.0-30.55", - "3.13.0-32.57", - "3.13.0-33.58", - "3.13.0-34.60", - "3.13.0-35.62", - "3.13.0-36.63", - "3.13.0-37.64", - "3.13.0-39.66", - "3.13.0-40.69", - "3.13.0-41.70", - "3.13.0-43.72", - "3.13.0-44.73", - "3.13.0-45.74", - "3.13.0-46.75", - "3.13.0-46.76", - "3.13.0-46.77", - "3.13.0-46.79", - "3.13.0-48.80", - "3.13.0-49.81", - "3.13.0-49.83", - "3.13.0-51.84", - "3.13.0-52.85", - "3.13.0-52.86", - "3.13.0-53.88", - "3.13.0-53.89", - "3.13.0-54.91", - "3.13.0-55.92", - "3.13.0-55.94", - "3.13.0-57.95", - "3.13.0-58.97", - "3.13.0-59.98", - "3.13.0-61.100", - "3.13.0-62.102", - "3.13.0-63.103", - "3.13.0-65.105", - "3.13.0-65.106", - "3.13.0-66.108", - "3.13.0-67.110", - "3.13.0-68.111", - "3.13.0-70.113", - "3.13.0-71.114", - "3.13.0-73.116", - "3.13.0-74.118", - "3.13.0-76.120", - "3.13.0-77.121", - "3.13.0-79.123", - "3.13.0-83.127", - "3.13.0-85.129", - "3.13.0-86.130", - "3.13.0-86.131", - "3.13.0-87.133", - "3.13.0-88.135", - "3.13.0-91.138", - "3.13.0-92.139", - "3.13.0-93.140", - "3.13.0-95.142", - "3.13.0-96.143", - "3.13.0-98.145", - "3.13.0-100.147", - "3.13.0-101.148", - "3.13.0-103.150", - "3.13.0-105.152", - "3.13.0-106.153", - "3.13.0-107.154", - "3.13.0-108.155", - "3.13.0-109.156", - "3.13.0-110.157", - "3.13.0-111.158", - "3.13.0-112.159", - "3.13.0-113.160", - "3.13.0-115.162", - "3.13.0-116.163", - "3.13.0-117.164", - "3.13.0-119.166", - "3.13.0-121.170", - "3.13.0-123.172", - "3.13.0-125.174", - "3.13.0-126.175", - "3.13.0-128.177", - "3.13.0-129.178", - "3.13.0-132.181", - "3.13.0-133.182", - "3.13.0-135.184", - "3.13.0-137.186", - "3.13.0-139.188", - "3.13.0-141.190", - "3.13.0-142.191", - "3.13.0-143.192", - "3.13.0-144.193", - "3.13.0-145.194", - "3.13.0-147.196", - "3.13.0-149.199", - "3.13.0-151.201", - "3.13.0-153.203", - "3.13.0-155.205", - "3.13.0-156.206", - "3.13.0-157.207", - "3.13.0-158.208", - "3.13.0-160.210", - "3.13.0-161.211", - "3.13.0-162.212", - "3.13.0-163.213", - "3.13.0-164.214", - "3.13.0-165.215", - "3.13.0-166.216", - "3.13.0-167.217", - "3.13.0-168.218", - "3.13.0-169.219", - "3.13.0-170.220", - "3.13.0-171.222", - "3.13.0-172.223", - "3.13.0-173.224", - "3.13.0-174.225", - "3.13.0-175.226", - "3.13.0-176.227", - "3.13.0-180.231", - "3.13.0-181.232", - "3.13.0-182.233", - "3.13.0-183.234", - "3.13.0-184.235", - "3.13.0-185.236", - "3.13.0-186.237", - "3.13.0-187.238", - "3.13.0-188.239", - "3.13.0-189.240", - "3.13.0-190.241", - "3.13.0-191.242", - "3.13.0-192.243", - "3.13.0-193.244", - "3.13.0-194.245", - "3.13.0-195.246", - "3.13.0-196.247", - "3.13.0-197.248", - "3.13.0-198.249", - "3.13.0-199.250", - "3.13.0-200.251", - "3.13.0-201.252", - "3.13.0-202.253", - "3.13.0-203.254", - "3.13.0-204.255", - "3.13.0-205.256", - "3.13.0-206.257", - "3.13.0-207.258", - "3.13.0-208.259", - "3.13.0-209.260", - "3.13.0-210.261" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "crypto-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fat-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "firewire-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "floppy-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fs-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fs-secondary-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "input-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "ipmi-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "irda-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "kernel-image-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-buildinfo-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-buildinfo-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-image-unsigned-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-image-unsigned-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-extra-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-source-3.13.0", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "md-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "message-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "mouse-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "multipath-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nfs-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-pcmcia-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-shared-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-usb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "parport-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pata-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pcmcia-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pcmcia-storage-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "plip-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "ppp-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "sata-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "scsi-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "serial-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "speakup-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "squashfs-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "storage-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "usb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "virtio-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "vlan-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@4.4.0-174.204?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-174.204" - } - ] - } - ], - "versions": [ - "4.2.0-16.19", - "4.2.0-17.21", - "4.2.0-19.23", - "4.3.0-1.10", - "4.3.0-2.11", - "4.3.0-5.16", - "4.3.0-6.17", - "4.3.0-7.18", - "4.4.0-2.16", - "4.4.0-4.19", - "4.4.0-6.21", - "4.4.0-7.22", - "4.4.0-8.23", - "4.4.0-9.24", - "4.4.0-10.25", - "4.4.0-11.26", - "4.4.0-12.28", - "4.4.0-13.29", - "4.4.0-14.30", - "4.4.0-15.31", - "4.4.0-16.32", - "4.4.0-17.33", - "4.4.0-18.34", - "4.4.0-21.37", - "4.4.0-22.39", - "4.4.0-22.40", - "4.4.0-24.43", - "4.4.0-28.47", - "4.4.0-31.50", - "4.4.0-34.53", - "4.4.0-36.55", - "4.4.0-38.57", - "4.4.0-42.62", - "4.4.0-43.63", - "4.4.0-45.66", - "4.4.0-47.68", - "4.4.0-51.72", - "4.4.0-53.74", - "4.4.0-57.78", - "4.4.0-59.80", - "4.4.0-62.83", - "4.4.0-63.84", - "4.4.0-64.85", - "4.4.0-65.86", - "4.4.0-66.87", - "4.4.0-67.88", - "4.4.0-70.91", - "4.4.0-71.92", - "4.4.0-72.93", - "4.4.0-75.96", - "4.4.0-77.98", - "4.4.0-78.99", - "4.4.0-79.100", - "4.4.0-81.104", - "4.4.0-83.106", - "4.4.0-87.110", - "4.4.0-89.112", - "4.4.0-91.114", - "4.4.0-92.115", - "4.4.0-93.116", - "4.4.0-96.119", - "4.4.0-97.120", - "4.4.0-98.121", - "4.4.0-101.124", - "4.4.0-103.126", - "4.4.0-104.127", - "4.4.0-108.131", - "4.4.0-109.132", - "4.4.0-112.135", - "4.4.0-116.140", - "4.4.0-119.143", - "4.4.0-121.145", - "4.4.0-122.146", - "4.4.0-124.148", - "4.4.0-127.153", - "4.4.0-128.154", - "4.4.0-130.156", - "4.4.0-131.157", - "4.4.0-133.159", - "4.4.0-134.160", - "4.4.0-135.161", - "4.4.0-137.163", - "4.4.0-138.164", - "4.4.0-139.165", - "4.4.0-140.166", - "4.4.0-141.167", - "4.4.0-142.168", - "4.4.0-143.169", - "4.4.0-145.171", - "4.4.0-146.172", - "4.4.0-148.174", - "4.4.0-150.176", - "4.4.0-151.178", - "4.4.0-154.181", - "4.4.0-157.185", - "4.4.0-159.187", - "4.4.0-161.189", - "4.4.0-164.192", - "4.4.0-165.193", - "4.4.0-166.195", - "4.4.0-168.197", - "4.4.0-169.198", - "4.4.0-170.199", - "4.4.0-171.200", - "4.4.0-173.203" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "block-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "block-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "crypto-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "crypto-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "crypto-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "dasd-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fat-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fat-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fat-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "firewire-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "floppy-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "floppy-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "input-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "input-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "input-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ipmi-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "irda-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "irda-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "irda-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "kernel-image-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "kernel-image-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "kernel-image-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-174", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-headers-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-modules-extra-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-source-4.4.0", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-lowlatency", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc64-emb", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-4.4.0-174-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-udebs-generic-lpae", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-udebs-powerpc-e500mc", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-udebs-powerpc-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "linux-udebs-powerpc64-smp", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "md-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "md-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "md-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "message-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "message-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "mouse-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "mouse-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "mouse-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "multipath-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "multipath-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "multipath-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nfs-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nfs-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nfs-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-shared-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "nic-usb-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "parport-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "parport-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "parport-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pata-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pata-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pcmcia-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "plip-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "plip-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "plip-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ppp-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ppp-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "ppp-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "sata-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "sata-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "sata-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "scsi-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "scsi-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "scsi-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "serial-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "speakup-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "speakup-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "speakup-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "storage-core-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "usb-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "usb-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "usb-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "virtio-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "virtio-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "vlan-modules-4.4.0-174-generic-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "vlan-modules-4.4.0-174-generic-lpae-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc-e500mc-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc-smp-di", - "binary_version": "4.4.0-174.204" - }, - { - "binary_name": "vlan-modules-4.4.0-174-powerpc64-smp-di", - "binary_version": "4.4.0-174.204" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1102.113?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1102.113" - } - ] - } - ], - "versions": [ - "4.4.0-1001.10", - "4.4.0-1003.12", - "4.4.0-1004.13", - "4.4.0-1007.16", - "4.4.0-1009.18", - "4.4.0-1011.20", - "4.4.0-1012.21", - "4.4.0-1013.22", - "4.4.0-1016.25", - "4.4.0-1017.26", - "4.4.0-1018.27", - "4.4.0-1020.29", - "4.4.0-1022.31", - "4.4.0-1026.35", - "4.4.0-1028.37", - "4.4.0-1030.39", - "4.4.0-1031.40", - "4.4.0-1032.41", - "4.4.0-1035.44", - "4.4.0-1037.46", - "4.4.0-1038.47", - "4.4.0-1039.48", - "4.4.0-1041.50", - "4.4.0-1043.52", - "4.4.0-1044.53", - "4.4.0-1047.56", - "4.4.0-1048.57", - "4.4.0-1049.58", - "4.4.0-1050.59", - "4.4.0-1052.61", - "4.4.0-1054.63", - "4.4.0-1055.64", - "4.4.0-1057.66", - "4.4.0-1060.69", - "4.4.0-1061.70", - "4.4.0-1062.71", - "4.4.0-1063.72", - "4.4.0-1065.75", - "4.4.0-1066.76", - "4.4.0-1067.77", - "4.4.0-1069.79", - "4.4.0-1070.80", - "4.4.0-1072.82", - "4.4.0-1073.83", - "4.4.0-1074.84", - "4.4.0-1075.85", - "4.4.0-1077.87", - "4.4.0-1079.89", - "4.4.0-1081.91", - "4.4.0-1083.93", - "4.4.0-1084.94", - "4.4.0-1085.96", - "4.4.0-1087.98", - "4.4.0-1088.99", - "4.4.0-1090.101", - "4.4.0-1092.103", - "4.4.0-1094.105", - "4.4.0-1095.106", - "4.4.0-1096.107", - "4.4.0-1098.109", - "4.4.0-1099.110", - "4.4.0-1100.111", - "4.4.0-1101.112" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.4.0-1102", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-aws-headers-4.4.0-1102", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-aws-tools-4.4.0-1102", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-headers-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-image-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-modules-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-modules-extra-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - }, - { - "binary_name": "linux-tools-4.4.0-1102-aws", - "binary_version": "4.4.0-1102.113" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-aws-hwe", - "purl": "pkg:deb/ubuntu/linux-aws-hwe@4.15.0-1063.67~16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1063.67~16.04.1" - } - ] - } - ], - "versions": [ - "4.15.0-1030.31~16.04.1", - "4.15.0-1031.33~16.04.1", - "4.15.0-1032.34~16.04.1", - "4.15.0-1033.35~16.04.1", - "4.15.0-1035.37~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1039.41~16.04.1", - "4.15.0-1040.42~16.04.1", - "4.15.0-1041.43~16.04.1", - "4.15.0-1043.45~16.04.1", - "4.15.0-1044.46~16.04.1", - "4.15.0-1045.47~16.04.1", - "4.15.0-1047.49~16.04.1", - "4.15.0-1048.50~16.04.1", - "4.15.0-1050.52~16.04.1", - "4.15.0-1051.53~16.04.1", - "4.15.0-1052.54~16.04.1", - "4.15.0-1054.56~16.04.1", - "4.15.0-1056.58~16.04.1", - "4.15.0-1057.59~16.04.1", - "4.15.0-1058.60~16.04.1", - "4.15.0-1060.62~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-headers-4.15.0-1063", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-aws-hwe-cloud-tools-4.15.0-1063", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-aws-hwe-tools-4.15.0-1063", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67~16.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1075.80?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1075.80" - } - ] - } - ], - "versions": [ - "4.11.0-1009.9", - "4.11.0-1011.11", - "4.11.0-1013.13", - "4.11.0-1014.14", - "4.11.0-1015.15", - "4.11.0-1016.16", - "4.13.0-1005.7", - "4.13.0-1006.8", - "4.13.0-1007.9", - "4.13.0-1009.12", - "4.13.0-1011.14", - "4.13.0-1012.15", - "4.13.0-1014.17", - "4.13.0-1016.19", - "4.13.0-1018.21", - "4.15.0-1013.13~16.04.2", - "4.15.0-1014.14~16.04.1", - "4.15.0-1018.18~16.04.1", - "4.15.0-1019.19~16.04.1", - "4.15.0-1021.21~16.04.1", - "4.15.0-1022.22~16.04.1", - "4.15.0-1023.24~16.04.1", - "4.15.0-1025.26~16.04.1", - "4.15.0-1028.29~16.04.1", - "4.15.0-1030.31~16.04.1", - "4.15.0-1031.32~16.04.1", - "4.15.0-1032.33~16.04.1", - "4.15.0-1035.36~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1037.39~16.04.1", - "4.15.0-1039.43", - "4.15.0-1040.44", - "4.15.0-1041.45", - "4.15.0-1042.46", - "4.15.0-1045.49", - "4.15.0-1046.50", - "4.15.0-1047.51", - "4.15.0-1049.54", - "4.15.0-1050.55", - "4.15.0-1051.56", - "4.15.0-1052.57", - "4.15.0-1055.60", - "4.15.0-1056.61", - "4.15.0-1057.62", - "4.15.0-1059.64", - "4.15.0-1060.65", - "4.15.0-1061.66", - "4.15.0-1063.68", - "4.15.0-1064.69", - "4.15.0-1066.71", - "4.15.0-1067.72", - "4.15.0-1069.74", - "4.15.0-1071.76" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-4.15.0-1075", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-azure-headers-4.15.0-1075", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-azure-tools-4.15.0-1075", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-headers-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-modules-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - }, - { - "binary_name": "linux-tools-4.15.0-1075-azure", - "binary_version": "4.15.0-1075.80" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@4.15.0-1058.62?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1058.62" - } - ] - } - ], - "versions": [ - "4.10.0-1004.4", - "4.10.0-1006.6", - "4.10.0-1007.7", - "4.10.0-1008.8", - "4.10.0-1009.9", - "4.13.0-1002.5", - "4.13.0-1006.9", - "4.13.0-1007.10", - "4.13.0-1008.11", - "4.13.0-1011.15", - "4.13.0-1012.16", - "4.13.0-1013.17", - "4.13.0-1015.19", - "4.13.0-1017.21", - "4.13.0-1019.23", - "4.15.0-1014.14~16.04.1", - "4.15.0-1015.15~16.04.1", - "4.15.0-1017.18~16.04.1", - "4.15.0-1018.19~16.04.2", - "4.15.0-1019.20~16.04.1", - "4.15.0-1021.22~16.04.1", - "4.15.0-1023.24~16.04.1", - "4.15.0-1024.25~16.04.2", - "4.15.0-1025.26~16.04.1", - "4.15.0-1026.27~16.04.1", - "4.15.0-1027.28~16.04.1", - "4.15.0-1028.29~16.04.1", - "4.15.0-1029.31~16.04.1", - "4.15.0-1030.32~16.04.1", - "4.15.0-1032.34~16.04.1", - "4.15.0-1033.35~16.04.1", - "4.15.0-1034.36~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1037.39~16.04.1", - "4.15.0-1040.42~16.04.1", - "4.15.0-1041.43", - "4.15.0-1042.44", - "4.15.0-1044.46", - "4.15.0-1046.49", - "4.15.0-1047.50", - "4.15.0-1049.52", - "4.15.0-1050.53", - "4.15.0-1052.56", - "4.15.0-1055.59" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-gcp-headers-4.15.0-1058", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-gcp-tools-4.15.0-1058", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-headers-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-modules-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - }, - { - "binary_name": "linux-tools-4.15.0-1058-gcp", - "binary_version": "4.15.0-1058.62" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-hwe", - "purl": "pkg:deb/ubuntu/linux-hwe@4.15.0-91.92~16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-91.92~16.04.1" - } - ] - } - ], - "versions": [ - "4.8.0-36.36~16.04.1", - "4.8.0-39.42~16.04.1", - "4.8.0-41.44~16.04.1", - "4.8.0-42.45~16.04.1", - "4.8.0-44.47~16.04.1", - "4.8.0-45.48~16.04.1", - "4.8.0-46.49~16.04.1", - "4.8.0-49.52~16.04.1", - "4.8.0-51.54~16.04.1", - "4.8.0-52.55~16.04.1", - "4.8.0-53.56~16.04.1", - "4.8.0-54.57~16.04.1", - "4.8.0-56.61~16.04.1", - "4.8.0-58.63~16.04.1", - "4.10.0-27.30~16.04.2", - "4.10.0-28.32~16.04.2", - "4.10.0-30.34~16.04.1", - "4.10.0-32.36~16.04.1", - "4.10.0-33.37~16.04.1", - "4.10.0-35.39~16.04.1", - "4.10.0-37.41~16.04.1", - "4.10.0-38.42~16.04.1", - "4.10.0-40.44~16.04.1", - "4.10.0-42.46~16.04.1", - "4.13.0-26.29~16.04.2", - "4.13.0-31.34~16.04.1", - "4.13.0-32.35~16.04.1", - "4.13.0-36.40~16.04.1", - "4.13.0-37.42~16.04.1", - "4.13.0-38.43~16.04.1", - "4.13.0-39.44~16.04.1", - "4.13.0-41.46~16.04.1", - "4.13.0-43.48~16.04.1", - "4.13.0-45.50~16.04.1", - "4.15.0-24.26~16.04.1", - "4.15.0-29.31~16.04.1", - "4.15.0-30.32~16.04.1", - "4.15.0-32.35~16.04.1", - "4.15.0-33.36~16.04.1", - "4.15.0-34.37~16.04.1", - "4.15.0-36.39~16.04.1", - "4.15.0-38.41~16.04.1", - "4.15.0-39.42~16.04.1", - "4.15.0-42.45~16.04.1", - "4.15.0-43.46~16.04.1", - "4.15.0-45.48~16.04.1", - "4.15.0-46.49~16.04.1", - "4.15.0-47.50~16.04.1", - "4.15.0-48.51~16.04.1", - "4.15.0-50.54~16.04.1", - "4.15.0-51.55~16.04.1", - "4.15.0-52.56~16.04.1", - "4.15.0-54.58~16.04.1", - "4.15.0-55.60~16.04.2", - "4.15.0-58.64~16.04.1", - "4.15.0-60.67~16.04.1", - "4.15.0-62.69~16.04.1", - "4.15.0-64.73~16.04.1", - "4.15.0-65.74~16.04.1", - "4.15.0-66.75~16.04.1", - "4.15.0-69.78~16.04.1", - "4.15.0-70.79~16.04.1", - "4.15.0-72.81~16.04.1", - "4.15.0-74.83~16.04.1", - "4.15.0-76.86~16.04.1", - "4.15.0-88.88~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "block-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "dasd-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "firewire-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "floppy-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-91", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-hwe-cloud-tools-4.15.0-91", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-hwe-tools-4.15.0-91", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-hwe-udebs-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-hwe-udebs-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-source-4.15.0", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-91-generic", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "message-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "pata-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "pcmcia-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "serial-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "virtio-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92~16.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@4.4.0-1066.73?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1066.73" - } - ] - } - ], - "versions": [ - "4.4.0-1004.9", - "4.4.0-1007.12", - "4.4.0-1008.13", - "4.4.0-1009.14", - "4.4.0-1010.15", - "4.4.0-1012.17", - "4.4.0-1013.18", - "4.4.0-1015.20", - "4.4.0-1017.22", - "4.4.0-1019.24", - "4.4.0-1020.25", - "4.4.0-1021.26", - "4.4.0-1023.28", - "4.4.0-1026.31", - "4.4.0-1027.32", - "4.4.0-1029.34", - "4.4.0-1031.37", - "4.4.0-1032.38", - "4.4.0-1033.39", - "4.4.0-1035.41", - "4.4.0-1036.42", - "4.4.0-1037.43", - "4.4.0-1038.44", - "4.4.0-1039.45", - "4.4.0-1040.46", - "4.4.0-1041.47", - "4.4.0-1043.49", - "4.4.0-1044.50", - "4.4.0-1046.52", - "4.4.0-1047.53", - "4.4.0-1048.55", - "4.4.0-1051.58", - "4.4.0-1052.59", - "4.4.0-1054.61", - "4.4.0-1056.63", - "4.4.0-1058.65", - "4.4.0-1059.66", - "4.4.0-1060.67", - "4.4.0-1062.69", - "4.4.0-1063.70", - "4.4.0-1064.71", - "4.4.0-1065.72" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-headers-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-image-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-kvm-cloud-tools-4.4.0-1066", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-kvm-headers-4.4.0-1066", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-kvm-tools-4.4.0-1066", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-modules-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - }, - { - "binary_name": "linux-tools-4.4.0-1066-kvm", - "binary_version": "4.4.0-1066.73" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1035.38~16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1035.38~16.04.1" - } - ] - } - ], - "versions": [ - "4.15.0-1007.9~16.04.1", - "4.15.0-1008.10~16.04.1", - "4.15.0-1009.11~16.04.1", - "4.15.0-1010.12~16.04.1", - "4.15.0-1011.13~16.04.1", - "4.15.0-1013.15~16.04.1", - "4.15.0-1014.16~16.04.1", - "4.15.0-1015.17~16.04.1", - "4.15.0-1017.19~16.04.2", - "4.15.0-1018.20~16.04.1", - "4.15.0-1021.23~16.04.1", - "4.15.0-1022.25~16.04.1", - "4.15.0-1023.26~16.04.1", - "4.15.0-1025.28~16.04.1", - "4.15.0-1026.29~16.04.1", - "4.15.0-1027.30~16.04.1", - "4.15.0-1029.32~16.04.1", - "4.15.0-1030.33~16.04.1", - "4.15.0-1031.34~16.04.1", - "4.15.0-1033.36~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-oracle-headers-4.15.0-1035", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-oracle-tools-4.15.0-1035", - "binary_version": "4.15.0-1035.38~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.38~16.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-raspi2", - "purl": "pkg:deb/ubuntu/linux-raspi2@4.4.0-1129.138?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1129.138" - } - ] - } - ], - "versions": [ - "4.2.0-1013.19", - "4.2.0-1014.21", - "4.3.0-1006.6", - "4.4.0-1003.4", - "4.4.0-1004.5", - "4.4.0-1009.10", - "4.4.0-1010.12", - "4.4.0-1010.13", - "4.4.0-1012.16", - "4.4.0-1016.22", - "4.4.0-1017.23", - "4.4.0-1019.25", - "4.4.0-1021.27", - "4.4.0-1023.29", - "4.4.0-1027.33", - "4.4.0-1029.36", - "4.4.0-1034.41", - "4.4.0-1038.45", - "4.4.0-1040.47", - "4.4.0-1042.49", - "4.4.0-1044.51", - "4.4.0-1046.53", - "4.4.0-1048.55", - "4.4.0-1050.57", - "4.4.0-1051.58", - "4.4.0-1052.59", - "4.4.0-1054.61", - "4.4.0-1055.62", - "4.4.0-1057.64", - "4.4.0-1059.67", - "4.4.0-1061.69", - "4.4.0-1065.73", - "4.4.0-1067.75", - "4.4.0-1069.77", - "4.4.0-1070.78", - "4.4.0-1071.79", - "4.4.0-1074.82", - "4.4.0-1075.83", - "4.4.0-1076.84", - "4.4.0-1077.85", - "4.4.0-1079.87", - "4.4.0-1080.88", - "4.4.0-1082.90", - "4.4.0-1085.93", - "4.4.0-1086.94", - "4.4.0-1087.95", - "4.4.0-1089.97", - "4.4.0-1090.98", - "4.4.0-1091.99", - "4.4.0-1092.100", - "4.4.0-1094.102", - "4.4.0-1095.103", - "4.4.0-1096.104", - "4.4.0-1098.106", - "4.4.0-1099.107", - "4.4.0-1100.108", - "4.4.0-1101.109", - "4.4.0-1102.110", - "4.4.0-1103.111", - "4.4.0-1104.112", - "4.4.0-1106.114", - "4.4.0-1107.115", - "4.4.0-1109.117", - "4.4.0-1110.118", - "4.4.0-1111.120", - "4.4.0-1114.123", - "4.4.0-1117.126", - "4.4.0-1118.127", - "4.4.0-1120.129", - "4.4.0-1122.131", - "4.4.0-1123.132", - "4.4.0-1124.133", - "4.4.0-1125.134", - "4.4.0-1126.135", - "4.4.0-1127.136", - "4.4.0-1128.137" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.4.0-1129-raspi2", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-headers-4.4.0-1129-raspi2", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-image-4.4.0-1129-raspi2", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-modules-4.4.0-1129-raspi2", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-raspi2-headers-4.4.0-1129", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-raspi2-tools-4.4.0-1129", - "binary_version": "4.4.0-1129.138" - }, - { - "binary_name": "linux-tools-4.4.0-1129-raspi2", - "binary_version": "4.4.0-1129.138" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-snapdragon", - "purl": "pkg:deb/ubuntu/linux-snapdragon@4.4.0-1133.141?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1133.141" - } - ] - } - ], - "versions": [ - "4.4.0-1012.12", - "4.4.0-1013.14", - "4.4.0-1013.15", - "4.4.0-1015.18", - "4.4.0-1019.22", - "4.4.0-1020.23", - "4.4.0-1022.25", - "4.4.0-1024.27", - "4.4.0-1026.29", - "4.4.0-1030.33", - "4.4.0-1032.36", - "4.4.0-1035.39", - "4.4.0-1039.43", - "4.4.0-1042.46", - "4.4.0-1044.48", - "4.4.0-1046.50", - "4.4.0-1047.51", - "4.4.0-1048.52", - "4.4.0-1050.54", - "4.4.0-1051.55", - "4.4.0-1053.57", - "4.4.0-1054.58", - "4.4.0-1055.59", - "4.4.0-1057.61", - "4.4.0-1058.62", - "4.4.0-1059.63", - "4.4.0-1061.66", - "4.4.0-1063.68", - "4.4.0-1067.72", - "4.4.0-1069.74", - "4.4.0-1071.76", - "4.4.0-1072.77", - "4.4.0-1073.78", - "4.4.0-1076.81", - "4.4.0-1077.82", - "4.4.0-1078.83", - "4.4.0-1079.84", - "4.4.0-1081.86", - "4.4.0-1082.87", - "4.4.0-1084.89", - "4.4.0-1087.92", - "4.4.0-1088.93", - "4.4.0-1090.95", - "4.4.0-1092.97", - "4.4.0-1093.98", - "4.4.0-1094.99", - "4.4.0-1095.100", - "4.4.0-1096.101", - "4.4.0-1098.103", - "4.4.0-1099.104", - "4.4.0-1100.105", - "4.4.0-1102.107", - "4.4.0-1103.108", - "4.4.0-1104.109", - "4.4.0-1105.110", - "4.4.0-1106.111", - "4.4.0-1107.112", - "4.4.0-1108.113", - "4.4.0-1110.115", - "4.4.0-1111.116", - "4.4.0-1113.118", - "4.4.0-1114.119", - "4.4.0-1115.121", - "4.4.0-1118.124", - "4.4.0-1121.127", - "4.4.0-1122.128", - "4.4.0-1124.130", - "4.4.0-1126.132", - "4.4.0-1127.135", - "4.4.0-1128.136", - "4.4.0-1129.137", - "4.4.0-1130.138", - "4.4.0-1131.139", - "4.4.0-1132.140" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.4.0-1133-snapdragon", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-headers-4.4.0-1133-snapdragon", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-image-4.4.0-1133-snapdragon", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-modules-4.4.0-1133-snapdragon", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-snapdragon-headers-4.4.0-1133", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-snapdragon-tools-4.4.0-1133", - "binary_version": "4.4.0-1133.141" - }, - { - "binary_name": "linux-tools-4.4.0-1133-snapdragon", - "binary_version": "4.4.0-1133.141" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-hwe-edge", - "purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.8.0-28.30~16.04.1", - "4.8.0-30.32~16.04.1", - "4.8.0-32.34~16.04.1", - "4.8.0-34.36~16.04.1", - "4.10.0-14.16~16.04.1", - "4.10.0-19.21~16.04.1", - "4.10.0-20.22~16.04.1", - "4.10.0-21.23~16.04.1", - "4.10.0-22.24~16.04.1", - "4.10.0-24.28~16.04.1", - "4.10.0-26.30~16.04.1", - "4.11.0-13.19~16.04.1", - "4.11.0-14.20~16.04.1", - "4.13.0-16.19~16.04.3", - "4.13.0-17.20~16.04.1", - "4.13.0-19.22~16.04.1", - "4.13.0-21.24~16.04.1", - "4.13.0-25.29~16.04.2", - "4.15.0-13.14~16.04.1", - "4.15.0-15.16~16.04.1", - "4.15.0-20.21~16.04.1", - "4.15.0-22.24~16.04.1", - "4.15.0-23.25~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "block-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "dasd-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "firewire-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "floppy-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-tools-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-source-4.15.0", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "message-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pata-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pcmcia-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "serial-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "virtio-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1029.34?arch=source&distro=fips-updates/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.4.0-1029.34" - } - ] - } - ], - "versions": [ - "4.4.0-1003.3", - "4.4.0-1005.5", - "4.4.0-1006.6", - "4.4.0-1008.10", - "4.4.0-1010.13", - "4.4.0-1011.14", - "4.4.0-1012.16", - "4.4.0-1013.17", - "4.4.0-1015.20", - "4.4.0-1017.22", - "4.4.0-1019.24", - "4.4.0-1021.26", - "4.4.0-1022.27", - "4.4.0-1023.28", - "4.4.0-1025.30", - "4.4.0-1026.31", - "4.4.0-1027.32", - "4.4.0-1028.33" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "crypto-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "dasd-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "fat-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "fb-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "firewire-core-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "floppy-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "fs-core-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "input-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "ipmi-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "irda-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "kernel-image-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-fips-cloud-tools-common", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-fips-headers-4.4.0-1029", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-fips-source-4.4.0", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-fips-tools-4.4.0-1029", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-headers-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-image-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-image-hmac-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-modules-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-modules-extra-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-tools-4.4.0-1029-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "linux-udebs-fips", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "md-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "message-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "mouse-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "multipath-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "nfs-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "nic-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "nic-shared-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "nic-usb-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "parport-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "pata-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "pcmcia-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "plip-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "ppp-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "sata-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "scsi-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "serial-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "speakup-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "storage-core-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "usb-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "virtio-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - }, - { - "binary_name": "vlan-modules-4.4.0-1029-fips-di", - "binary_version": "4.4.0-1029.34" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1002.2?arch=source&distro=fips/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1001.1", - "4.4.0-1002.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "crypto-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "dasd-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fat-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "firewire-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "floppy-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fs-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "input-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "ipmi-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "irda-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "kernel-image-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-headers-4.4.0-1002", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-source-4.4.0", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-tools-4.4.0-1002", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-headers-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-extra-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-hmac-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-tools-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-udebs-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "md-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "message-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "mouse-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "multipath-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nfs-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-shared-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-usb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "parport-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pata-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pcmcia-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "plip-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "ppp-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "sata-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "scsi-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "serial-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "speakup-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "storage-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "usb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "virtio-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "vlan-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@4.15.0-91.92?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-91.92" - } - ] - } - ], - "versions": [ - "4.13.0-16.19", - "4.13.0-17.20", - "4.13.0-25.29", - "4.13.0-32.35", - "4.15.0-10.11", - "4.15.0-12.13", - "4.15.0-13.14", - "4.15.0-15.16", - "4.15.0-19.20", - "4.15.0-20.21", - "4.15.0-22.24", - "4.15.0-23.25", - "4.15.0-24.26", - "4.15.0-29.31", - "4.15.0-30.32", - "4.15.0-32.35", - "4.15.0-33.36", - "4.15.0-34.37", - "4.15.0-36.39", - "4.15.0-38.41", - "4.15.0-39.42", - "4.15.0-42.45", - "4.15.0-43.46", - "4.15.0-44.47", - "4.15.0-45.48", - "4.15.0-46.49", - "4.15.0-47.50", - "4.15.0-48.51", - "4.15.0-50.54", - "4.15.0-51.55", - "4.15.0-52.56", - "4.15.0-54.58", - "4.15.0-55.60", - "4.15.0-58.64", - "4.15.0-60.67", - "4.15.0-62.69", - "4.15.0-64.73", - "4.15.0-65.74", - "4.15.0-66.75", - "4.15.0-69.78", - "4.15.0-70.79", - "4.15.0-72.81", - "4.15.0-74.84", - "4.15.0-76.86", - "4.15.0-88.88" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "block-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "crypto-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "crypto-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "dasd-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fat-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fat-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "firewire-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "floppy-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fs-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fs-core-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "input-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "input-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "ipmi-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "ipmi-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "irda-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "irda-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "kernel-image-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "kernel-image-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-buildinfo-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-91", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-headers-4.15.0-91", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-headers-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-headers-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-headers-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-image-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-image-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-image-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-modules-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-modules-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-modules-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-modules-extra-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-source-4.15.0", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-4.15.0-91", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-4.15.0-91-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-4.15.0-91-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-4.15.0-91-lowlatency", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "linux-udebs-generic-lpae", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "md-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "md-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "message-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "mouse-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "mouse-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "multipath-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "multipath-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nfs-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nfs-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-shared-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-shared-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-usb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "nic-usb-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "parport-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "parport-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "pata-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "pcmcia-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "plip-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "plip-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "ppp-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "ppp-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "sata-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "sata-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "scsi-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "scsi-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "serial-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "storage-core-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "storage-core-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "usb-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "usb-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "virtio-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "vlan-modules-4.15.0-91-generic-di", - "binary_version": "4.15.0-91.92" - }, - { - "binary_name": "vlan-modules-4.15.0-91-generic-lpae-di", - "binary_version": "4.15.0-91.92" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.15.0-1063.67?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1063.67" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1", - "4.15.0-1003.3", - "4.15.0-1005.5", - "4.15.0-1006.6", - "4.15.0-1007.7", - "4.15.0-1009.9", - "4.15.0-1010.10", - "4.15.0-1011.11", - "4.15.0-1016.16", - "4.15.0-1017.17", - "4.15.0-1019.19", - "4.15.0-1020.20", - "4.15.0-1021.21", - "4.15.0-1023.23", - "4.15.0-1025.25", - "4.15.0-1027.27", - "4.15.0-1029.30", - "4.15.0-1031.33", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1035.37", - "4.15.0-1037.39", - "4.15.0-1039.41", - "4.15.0-1040.42", - "4.15.0-1041.43", - "4.15.0-1043.45", - "4.15.0-1044.46", - "4.15.0-1045.47", - "4.15.0-1047.49", - "4.15.0-1048.50", - "4.15.0-1050.52", - "4.15.0-1051.53", - "4.15.0-1052.54", - "4.15.0-1054.56", - "4.15.0-1056.58", - "4.15.0-1057.59", - "4.15.0-1058.60", - "4.15.0-1060.62" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.15.0-1063", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-aws-headers-4.15.0-1063", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-aws-tools-4.15.0-1063", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-headers-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-image-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-modules-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - }, - { - "binary_name": "linux-tools-4.15.0-1063-aws", - "binary_version": "4.15.0-1063.67" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gke-4.15", - "purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1055.58?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1055.58" - } - ] - } - ], - "versions": [ - "4.15.0-1030.32", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.15.0-1040.42", - "4.15.0-1041.43", - "4.15.0-1042.44", - "4.15.0-1044.46", - "4.15.0-1045.48", - "4.15.0-1046.49", - "4.15.0-1048.51", - "4.15.0-1049.52", - "4.15.0-1050.53", - "4.15.0-1052.55" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-gke-4.15-headers-4.15.0-1055", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-gke-4.15-tools-4.15.0-1055", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-headers-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-modules-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - }, - { - "binary_name": "linux-tools-4.15.0-1055-gke", - "binary_version": "4.15.0-1055.58" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gke-5.0", - "purl": "pkg:deb/ubuntu/linux-gke-5.0@5.0.0-1032.33?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.0.0-1032.33" - } - ] - } - ], - "versions": [ - "5.0.0-1011.11~18.04.1", - "5.0.0-1013.13~18.04.1", - "5.0.0-1015.15~18.04.1", - "5.0.0-1017.17~18.04.1", - "5.0.0-1020.20~18.04.1", - "5.0.0-1022.22~18.04.3", - "5.0.0-1023.23~18.04.2", - "5.0.0-1025.26~18.04.1", - "5.0.0-1026.27~18.04.2", - "5.0.0-1027.28~18.04.1", - "5.0.0-1029.30~18.04.1", - "5.0.0-1030.31" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-gke-5.0-headers-5.0.0-1032", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-gke-5.0-tools-5.0.0-1032", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-headers-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-modules-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - }, - { - "binary_name": "linux-tools-5.0.0-1032-gke", - "binary_version": "5.0.0-1032.33" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gke-5.3", - "purl": "pkg:deb/ubuntu/linux-gke-5.3@5.3.0-1014.15~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.3.0-1014.15~18.04.1" - } - ] - } - ], - "versions": [ - "5.3.0-1011.12~18.04.1", - "5.3.0-1012.13~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-gke-5.3-headers-5.3.0-1014", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-gke-5.3-tools-5.3.0-1014", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1014-gke", - "binary_version": "5.3.0-1014.15~18.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@4.15.0-1056.57?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1056.57" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2", - "4.15.0-1003.3", - "4.15.0-1004.4", - "4.15.0-1006.6", - "4.15.0-1008.8", - "4.15.0-1010.10", - "4.15.0-1011.11", - "4.15.0-1012.12", - "4.15.0-1016.16", - "4.15.0-1017.17", - "4.15.0-1019.19", - "4.15.0-1020.20", - "4.15.0-1021.21", - "4.15.0-1023.23", - "4.15.0-1025.25", - "4.15.0-1026.26", - "4.15.0-1027.27", - "4.15.0-1028.28", - "4.15.0-1029.29", - "4.15.0-1030.30", - "4.15.0-1031.31", - "4.15.0-1032.32", - "4.15.0-1034.34", - "4.15.0-1035.35", - "4.15.0-1036.36", - "4.15.0-1038.38", - "4.15.0-1039.39", - "4.15.0-1042.42", - "4.15.0-1043.43", - "4.15.0-1044.44", - "4.15.0-1046.46", - "4.15.0-1047.47", - "4.15.0-1048.48", - "4.15.0-1050.50", - "4.15.0-1051.51", - "4.15.0-1052.52", - "4.15.0-1053.53" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1056-kvm", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-headers-4.15.0-1056-kvm", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-image-4.15.0-1056-kvm", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-kvm-headers-4.15.0-1056", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-kvm-tools-4.15.0-1056", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-modules-4.15.0-1056-kvm", - "binary_version": "4.15.0-1056.57" - }, - { - "binary_name": "linux-tools-4.15.0-1056-kvm", - "binary_version": "4.15.0-1056.57" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oem", - "purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1076.86?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1076.86" - } - ] - } - ], - "versions": [ - "4.15.0-1002.3", - "4.15.0-1004.5", - "4.15.0-1006.9", - "4.15.0-1008.11", - "4.15.0-1009.12", - "4.15.0-1012.15", - "4.15.0-1013.16", - "4.15.0-1015.18", - "4.15.0-1017.20", - "4.15.0-1018.21", - "4.15.0-1021.24", - "4.15.0-1024.29", - "4.15.0-1026.31", - "4.15.0-1028.33", - "4.15.0-1030.35", - "4.15.0-1033.38", - "4.15.0-1034.39", - "4.15.0-1035.40", - "4.15.0-1036.41", - "4.15.0-1038.43", - "4.15.0-1039.44", - "4.15.0-1043.48", - "4.15.0-1045.50", - "4.15.0-1050.57", - "4.15.0-1056.65", - "4.15.0-1057.66", - "4.15.0-1059.68", - "4.15.0-1063.72", - "4.15.0-1064.73", - "4.15.0-1065.75", - "4.15.0-1066.76", - "4.15.0-1067.77", - "4.15.0-1069.79", - "4.15.0-1073.83" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "crypto-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "fat-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "fb-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "firewire-core-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "floppy-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "fs-core-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "input-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "ipmi-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "irda-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "kernel-image-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1076-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-headers-4.15.0-1076-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1076-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-modules-4.15.0-1076-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-oem-headers-4.15.0-1076", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-oem-tools-4.15.0-1076", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-tools-4.15.0-1076-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "linux-udebs-oem", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "md-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "message-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "mouse-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "multipath-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "nfs-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "nic-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "nic-shared-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "nic-usb-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "parport-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "pata-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "pcmcia-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "plip-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "ppp-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "sata-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "scsi-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "serial-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "storage-core-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "usb-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "virtio-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - }, - { - "binary_name": "vlan-modules-4.15.0-1076-oem-di", - "binary_version": "4.15.0-1076.86" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oem-osp1", - "purl": "pkg:deb/ubuntu/linux-oem-osp1@5.0.0-1043.48?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.0.0-1043.48" - } - ] - } - ], - "versions": [ - "5.0.0-1010.11", - "5.0.0-1012.13", - "5.0.0-1015.16", - "5.0.0-1018.20", - "5.0.0-1020.22", - "5.0.0-1022.24", - "5.0.0-1024.27", - "5.0.0-1025.28", - "5.0.0-1027.31", - "5.0.0-1028.32", - "5.0.0-1030.34", - "5.0.0-1033.38", - "5.0.0-1037.42", - "5.0.0-1039.44", - "5.0.0-1040.45" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "crypto-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "fat-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "fb-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "firewire-core-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "floppy-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "fs-core-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "fs-secondary-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "input-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "ipmi-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "kernel-image-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1043-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-headers-5.0.0-1043-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1043-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-modules-5.0.0-1043-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-oem-osp1-headers-5.0.0-1043", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-oem-osp1-tools-5.0.0-1043", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-oem-osp1-tools-host", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-tools-5.0.0-1043-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "linux-udebs-oem-osp1", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "md-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "message-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "mouse-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "multipath-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "nfs-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "nic-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "nic-pcmcia-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "nic-shared-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "nic-usb-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "parport-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "pata-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "pcmcia-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "pcmcia-storage-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "plip-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "ppp-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "sata-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "scsi-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "serial-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "storage-core-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "usb-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "virtio-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - }, - { - "binary_name": "vlan-modules-5.0.0-1043-oem-osp1-di", - "binary_version": "5.0.0-1043.48" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1035.39?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1035.39" - } - ] - } - ], - "versions": [ - "4.15.0-1007.9", - "4.15.0-1008.10", - "4.15.0-1009.11", - "4.15.0-1010.12", - "4.15.0-1011.13", - "4.15.0-1013.15", - "4.15.0-1014.16", - "4.15.0-1015.17", - "4.15.0-1017.19", - "4.15.0-1018.20", - "4.15.0-1021.23", - "4.15.0-1022.25", - "4.15.0-1023.26", - "4.15.0-1025.28", - "4.15.0-1026.29", - "4.15.0-1027.30", - "4.15.0-1029.32", - "4.15.0-1030.33", - "4.15.0-1031.34", - "4.15.0-1033.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-headers-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-modules-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-oracle-headers-4.15.0-1035", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-oracle-tools-4.15.0-1035", - "binary_version": "4.15.0-1035.39" - }, - { - "binary_name": "linux-tools-4.15.0-1035-oracle", - "binary_version": "4.15.0-1035.39" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-raspi2", - "purl": "pkg:deb/ubuntu/linux-raspi2@4.15.0-1057.61?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1057.61" - } - ] - } - ], - "versions": [ - "4.13.0-1005.5", - "4.13.0-1006.6", - "4.13.0-1008.8", - "4.15.0-1006.7", - "4.15.0-1009.10", - "4.15.0-1010.11", - "4.15.0-1011.12", - "4.15.0-1012.13", - "4.15.0-1013.14", - "4.15.0-1017.18", - "4.15.0-1018.19", - "4.15.0-1020.22", - "4.15.0-1021.23", - "4.15.0-1022.24", - "4.15.0-1024.26", - "4.15.0-1026.28", - "4.15.0-1027.29", - "4.15.0-1028.30", - "4.15.0-1029.31", - "4.15.0-1030.32", - "4.15.0-1031.33", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.15.0-1038.40", - "4.15.0-1040.43", - "4.15.0-1041.44", - "4.15.0-1043.46", - "4.15.0-1044.47", - "4.15.0-1045.49", - "4.15.0-1047.51", - "4.15.0-1048.52", - "4.15.0-1049.53", - "4.15.0-1050.54", - "4.15.0-1052.56", - "4.15.0-1053.57", - "4.15.0-1054.58", - "4.15.0-1055.59" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1057-raspi2", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-headers-4.15.0-1057-raspi2", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-image-4.15.0-1057-raspi2", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-modules-4.15.0-1057-raspi2", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-raspi2-headers-4.15.0-1057", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-raspi2-tools-4.15.0-1057", - "binary_version": "4.15.0-1057.61" - }, - { - "binary_name": "linux-tools-4.15.0-1057-raspi2", - "binary_version": "4.15.0-1057.61" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-raspi2-5.3", - "purl": "pkg:deb/ubuntu/linux-raspi2-5.3@5.3.0-1019.21~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.3.0-1019.21~18.04.1" - } - ] - } - ], - "versions": [ - "5.3.0-1017.19~18.04.1", - "5.3.0-1018.20~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1019-raspi2", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1019-raspi2", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-image-5.3.0-1019-raspi2", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1019-raspi2", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-raspi2-5.3-headers-5.3.0-1019", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-raspi2-5.3-tools-5.3.0-1019", - "binary_version": "5.3.0-1019.21~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1019-raspi2", - "binary_version": "5.3.0-1019.21~18.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-snapdragon", - "purl": "pkg:deb/ubuntu/linux-snapdragon@4.15.0-1074.81?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-1074.81" - } - ] - } - ], - "versions": [ - "4.4.0-1077.82", - "4.4.0-1078.83", - "4.4.0-1079.84", - "4.4.0-1081.86", - "4.15.0-1053.57", - "4.15.0-1054.58", - "4.15.0-1055.59", - "4.15.0-1057.62", - "4.15.0-1058.64", - "4.15.0-1060.66", - "4.15.0-1062.69", - "4.15.0-1064.71", - "4.15.0-1065.72", - "4.15.0-1066.73", - "4.15.0-1067.74", - "4.15.0-1069.76", - "4.15.0-1070.77", - "4.15.0-1071.78", - "4.15.0-1072.79" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1074-snapdragon", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-headers-4.15.0-1074-snapdragon", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-image-4.15.0-1074-snapdragon", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-modules-4.15.0-1074-snapdragon", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-snapdragon-headers-4.15.0-1074", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-snapdragon-tools-4.15.0-1074", - "binary_version": "4.15.0-1074.81" - }, - { - "binary_name": "linux-tools-4.15.0-1074-snapdragon", - "binary_version": "4.15.0-1074.81" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-aws-5.0", - "purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-1021.24~18.04.1", - "5.0.0-1022.25~18.04.1", - "5.0.0-1023.26~18.04.1", - "5.0.0-1024.27~18.04.1", - "5.0.0-1025.28", - "5.0.0-1027.30" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.0-tools-5.0.0-1027", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-aws-headers-5.0.0-1027", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-headers-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-image-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-modules-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-tools-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-aws-5.3", - "purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1016.17~18.04.1", - "5.3.0-1017.18~18.04.1", - "5.3.0-1019.21~18.04.1", - "5.3.0-1023.25~18.04.1", - "5.3.0-1028.30~18.04.1", - "5.3.0-1030.32~18.04.1", - "5.3.0-1032.34~18.04.2", - "5.3.0-1033.35", - "5.3.0-1034.36", - "5.3.0-1035.37" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-aws-5.3-headers-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-aws-5.3-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-buildinfo-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-headers-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-image-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-modules-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-tools-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2", - "4.15.0-1003.3", - "4.15.0-1004.4", - "4.15.0-1008.8", - "4.15.0-1009.9", - "4.15.0-1012.12", - "4.15.0-1013.13", - "4.15.0-1014.14", - "4.15.0-1018.18", - "4.15.0-1019.19", - "4.15.0-1021.21", - "4.15.0-1022.23", - "4.15.0-1023.24", - "4.15.0-1025.26", - "4.15.0-1028.29", - "4.15.0-1030.31", - "4.15.0-1031.32", - "4.15.0-1032.33", - "4.15.0-1035.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.18.0-1011.11~18.04.1", - "4.18.0-1013.13~18.04.1", - "4.18.0-1014.14~18.04.1", - "4.18.0-1018.18~18.04.1", - "4.18.0-1019.19~18.04.1", - "4.18.0-1020.20~18.04.1", - "4.18.0-1023.24~18.04.1", - "4.18.0-1024.25~18.04.1", - "4.18.0-1025.27~18.04.1", - "5.0.0-1014.14~18.04.1", - "5.0.0-1016.17~18.04.1", - "5.0.0-1018.19~18.04.1", - "5.0.0-1020.21~18.04.1", - "5.0.0-1022.23~18.04.1", - "5.0.0-1023.24~18.04.1", - "5.0.0-1025.27~18.04.1", - "5.0.0-1027.29~18.04.1", - "5.0.0-1028.30~18.04.1", - "5.0.0-1029.31~18.04.1", - "5.0.0-1031.33", - "5.0.0-1032.34", - "5.0.0-1035.37", - "5.0.0-1036.38" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-azure-headers-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-azure-tools-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-headers-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-modules-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-tools-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure-5.3", - "purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1007.8~18.04.1", - "5.3.0-1008.9~18.04.1", - "5.3.0-1009.10~18.04.1", - "5.3.0-1010.11~18.04.1", - "5.3.0-1012.13~18.04.1", - "5.3.0-1013.14~18.04.1", - "5.3.0-1016.17~18.04.1", - "5.3.0-1018.19~18.04.1", - "5.3.0-1019.20~18.04.1", - "5.3.0-1020.21~18.04.1", - "5.3.0-1022.23~18.04.1", - "5.3.0-1028.29~18.04.1", - "5.3.0-1031.32~18.04.1", - "5.3.0-1032.33~18.04.1", - "5.3.0-1034.35~18.04.1", - "5.3.0-1035.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-azure-5.3-headers-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-azure-5.3-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-buildinfo-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-headers-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-modules-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-tools-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure-edge", - "purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.18.0-1006.6~18.04.1", - "4.18.0-1007.7~18.04.1", - "4.18.0-1008.8~18.04.1", - "5.0.0-1012.12~18.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-azure-edge-tools-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-azure-headers-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-headers-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-modules-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-tools-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1", - "4.15.0-1003.3", - "4.15.0-1005.5", - "4.15.0-1006.6", - "4.15.0-1008.8", - "4.15.0-1009.9", - "4.15.0-1010.10", - "4.15.0-1014.14", - "4.15.0-1015.15", - "4.15.0-1017.18", - "4.15.0-1018.19", - "4.15.0-1019.20", - "4.15.0-1021.22", - "4.15.0-1023.24", - "4.15.0-1024.25", - "4.15.0-1025.26", - "4.15.0-1026.27", - "4.15.0-1027.28", - "4.15.0-1028.29", - "4.15.0-1029.31", - "4.15.0-1030.32", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.15.0-1040.42", - "4.15.0-1042.45", - "4.15.0-1044.70", - "5.0.0-1020.20~18.04.1", - "5.0.0-1021.21~18.04.1", - "5.0.0-1025.26~18.04.1", - "5.0.0-1026.27~18.04.1", - "5.0.0-1028.29~18.04.1", - "5.0.0-1029.30~18.04.1", - "5.0.0-1031.32", - "5.0.0-1033.34", - "5.0.0-1034.35" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-gcp-headers-5.0.0-1034", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-gcp-tools-5.0.0-1034", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-headers-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-modules-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-tools-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gcp-5.3", - "purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1008.9~18.04.1", - "5.3.0-1009.10~18.04.1", - "5.3.0-1010.11~18.04.1", - "5.3.0-1012.13~18.04.1", - "5.3.0-1014.15~18.04.1", - "5.3.0-1016.17~18.04.1", - "5.3.0-1017.18~18.04.1", - "5.3.0-1018.19~18.04.1", - "5.3.0-1020.22~18.04.1", - "5.3.0-1026.28~18.04.1", - "5.3.0-1029.31~18.04.1", - "5.3.0-1030.32~18.04.1", - "5.3.0-1032.34~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-gcp-5.3-headers-5.3.0-1032", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-gcp-5.3-tools-5.3.0-1032", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gcp-edge", - "purl": "pkg:deb/ubuntu/linux-gcp-edge@5.0.0-1013.13~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.18.0-1004.5~18.04.1", - "4.18.0-1005.6~18.04.1", - "4.18.0-1006.7~18.04.1", - "4.18.0-1007.8~18.04.1", - "4.18.0-1008.9~18.04.1", - "4.18.0-1009.10~18.04.1", - "4.18.0-1011.12~18.04.1", - "4.18.0-1012.13~18.04.1", - "4.18.0-1013.14~18.04.1", - "4.18.0-1015.16~18.04.1", - "5.0.0-1011.11~18.04.1", - "5.0.0-1013.13~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-gcp-edge-tools-5.0.0-1013", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-gcp-headers-5.0.0-1013", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-headers-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-modules-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - }, - { - "binary_name": "linux-tools-5.0.0-1013-gcp", - "binary_version": "5.0.0-1013.13~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-hwe", - "purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.18.0-13.14~18.04.1", - "4.18.0-14.15~18.04.1", - "4.18.0-15.16~18.04.1", - "4.18.0-16.17~18.04.1", - "4.18.0-17.18~18.04.1", - "4.18.0-18.19~18.04.1", - "4.18.0-20.21~18.04.1", - "4.18.0-21.22~18.04.1", - "4.18.0-22.23~18.04.1", - "4.18.0-24.25~18.04.1", - "4.18.0-25.26~18.04.1", - "5.0.0-23.24~18.04.1", - "5.0.0-25.26~18.04.1", - "5.0.0-27.28~18.04.1", - "5.0.0-29.31~18.04.1", - "5.0.0-31.33~18.04.1", - "5.0.0-32.34~18.04.2", - "5.0.0-35.38~18.04.1", - "5.0.0-36.39~18.04.1", - "5.0.0-37.40~18.04.1", - "5.3.0-26.28~18.04.1", - "5.3.0-28.30~18.04.1", - "5.3.0-40.32~18.04.1", - "5.3.0-42.34~18.04.1", - "5.3.0-45.37~18.04.1", - "5.3.0-46.38~18.04.1", - "5.3.0-51.44~18.04.2", - "5.3.0-53.47~18.04.1", - "5.3.0-59.53~18.04.1", - "5.3.0-61.55~18.04.1", - "5.3.0-62.56~18.04.1", - "5.3.0-64.58~18.04.1", - "5.3.0-65.59", - "5.3.0-66.60", - "5.3.0-67.61", - "5.3.0-68.63", - "5.3.0-69.65", - "5.3.0-70.66", - "5.3.0-72.68", - "5.3.0-73.69", - "5.3.0-74.70", - "5.3.0-75.71", - "5.3.0-76.72" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "crypto-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fat-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "firewire-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "floppy-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fs-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "input-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "ipmi-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "kernel-image-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-buildinfo-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-buildinfo-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-headers-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-headers-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-cloud-tools-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-headers-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-tools-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-udebs-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-extra-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-source-5.3.0", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-tools-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-tools-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "md-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "message-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "mouse-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "multipath-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nfs-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-shared-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-usb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "parport-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pata-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pcmcia-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "plip-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "ppp-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "sata-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "scsi-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "serial-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "storage-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "usb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "virtio-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "vlan-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-hwe-edge", - "purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-15.16~18.04.1", - "5.0.0-16.17~18.04.1", - "5.0.0-17.18~18.04.1", - "5.0.0-19.20~18.04.1", - "5.0.0-20.21~18.04.1", - "5.3.0-19.20~18.04.2", - "5.3.0-22.24~18.04.1", - "5.3.0-23.25~18.04.1", - "5.3.0-23.25~18.04.2", - "5.3.0-24.26~18.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "block-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "crypto-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "crypto-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "dasd-extra-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "dasd-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fat-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fat-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "firewire-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "floppy-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "input-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "input-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ipmi-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "kernel-image-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "kernel-image-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-tools-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-extra-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-source-5.3.0", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "md-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "md-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "message-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "mouse-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "mouse-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "multipath-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "multipath-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nfs-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nfs-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-shared-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-usb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "parport-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "parport-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pata-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pcmcia-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "plip-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "plip-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ppp-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ppp-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "sata-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "sata-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "scsi-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "scsi-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "serial-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "storage-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "usb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "usb-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "virtio-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "vlan-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "vlan-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oracle-5.0", - "purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-1007.12~18.04.1", - "5.0.0-1008.13~18.04.1", - "5.0.0-1009.14~18.04.1", - "5.0.0-1010.15~18.04.1", - "5.0.0-1011.16", - "5.0.0-1013.18", - "5.0.0-1014.19" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-headers-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-modules-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-oracle-5.0-headers-5.0.0-1014", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-oracle-5.0-tools-5.0.0-1014", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-tools-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oracle-5.3", - "purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1011.12~18.04.1", - "5.3.0-1013.14~18.04.1", - "5.3.0-1014.15~18.04.1", - "5.3.0-1016.18~18.04.1", - "5.3.0-1018.20~18.04.1", - "5.3.0-1024.26~18.04.1", - "5.3.0-1027.29~18.04.1", - "5.3.0-1028.30~18.04.1", - "5.3.0-1030.32~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-oracle-5.3-headers-5.3.0-1030", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-oracle-5.3-tools-5.3.0-1030", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2018.18?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-2018.18" - } - ] - } - ], - "versions": [ - "4.15.0-2000.4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-4.15.0-2018", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-aws-fips-tools-4.15.0-2018", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-headers-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-modules-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - }, - { - "binary_name": "linux-tools-4.15.0-2018-aws-fips", - "binary_version": "4.15.0-2018.18" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-2006.7?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "4.15.0-2006.7" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-4.15.0-2006", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-azure-fips-headers-4.15.0-2006", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-azure-fips-tools-4.15.0-2006", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-headers-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-modules-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - }, - { - "binary_name": "linux-tools-4.15.0-2006-azure-fips", - "binary_version": "4.15.0-2006.7" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2000.4?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-2000.4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-4.15.0-2000", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-aws-fips-tools-4.15.0-2000", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-headers-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-modules-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-tools-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-1002.2?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-azure-fips-headers-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-azure-fips-tools-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-headers-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-modules-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-tools-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-1001.1?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-gcp-fips-headers-4.15.0-1001", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-gcp-fips-tools-4.15.0-1001", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-headers-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-modules-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-tools-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-azure-fde", - "purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1063.66+cvm2.2", - "5.4.0-1063.66+cvm3.2", - "5.4.0-1064.67+cvm1.1", - "5.4.0-1065.68+cvm2.1", - "5.4.0-1067.70+cvm1.1", - "5.4.0-1068.71+cvm1.1", - "5.4.0-1069.72+cvm1.1", - "5.4.0-1070.73+cvm1.1", - "5.4.0-1072.75+cvm1.1", - "5.4.0-1073.76+cvm1.1", - "5.4.0-1074.77+cvm1.1", - "5.4.0-1076.79+cvm1.1", - "5.4.0-1078.81+cvm1.1", - "5.4.0-1080.83+cvm1.1", - "5.4.0-1083.87+cvm1.1", - "5.4.0-1085.90+cvm1.1", - "5.4.0-1085.90+cvm2.1", - "5.4.0-1086.91+cvm1.1", - "5.4.0-1089.94+cvm1.2", - "5.4.0-1090.95+cvm1.1", - "5.4.0-1091.96+cvm1.1", - "5.4.0-1092.97+cvm1.1", - "5.4.0-1095.101+cvm1.1", - "5.4.0-1098.104+cvm1.1", - "5.4.0-1100.106+cvm1.1", - "5.4.0-1103.109+cvm1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde", - "binary_version": "5.4.0-1103.109+cvm1.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-azure-fde-5.15", - "purl": "pkg:deb/ubuntu/linux-azure-fde-5.15@5.15.0-1102.111~20.04.1.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1019.24~20.04.1.1", - "5.15.0-1020.25~20.04.1.1", - "5.15.0-1021.26~20.04.1.1", - "5.15.0-1029.36~20.04.1.1", - "5.15.0-1030.37~20.04.1.1", - "5.15.0-1031.38~20.04.1.1", - "5.15.0-1033.40~20.04.1.1", - "5.15.0-1034.41~20.04.1.2", - "5.15.0-1035.42~20.04.1.1", - "5.15.0-1036.43~20.04.1.1", - "5.15.0-1037.44~20.04.1.1", - "5.15.0-1038.45~20.04.1.1", - "5.15.0-1039.46~20.04.1.1", - "5.15.0-1040.47~20.04.1.1", - "5.15.0-1041.48~20.04.1.1", - "5.15.0-1042.49~20.04.1.1", - "5.15.0-1043.50~20.04.1.1", - "5.15.0-1046.53~20.04.1.1", - "5.15.0-1047.54~20.04.1.1", - "5.15.0-1049.56~20.04.1.1", - "5.15.0-1050.57~20.04.1.1", - "5.15.0-1051.59~20.04.1.1", - "5.15.0-1052.60~20.04.1.1", - "5.15.0-1053.61~20.04.1.1", - "5.15.0-1054.62~20.04.1.1", - "5.15.0-1056.64~20.04.1.1", - "5.15.0-1057.65~20.04.1.1", - "5.15.0-1058.66~20.04.2.1", - "5.15.0-1059.67~20.04.1.1", - "5.15.0-1060.69~20.04.1.1", - "5.15.0-1061.70~20.04.1.1", - "5.15.0-1063.72~20.04.1.1", - "5.15.0-1064.73~20.04.1.1", - "5.15.0-1065.74~20.04.1.1", - "5.15.0-1067.76~20.04.1.1", - "5.15.0-1068.77~20.04.1.1", - "5.15.0-1070.79~20.04.1.1", - "5.15.0-1071.80~20.04.1.1", - "5.15.0-1072.81~20.04.1.1", - "5.15.0-1073.82~20.04.1.1", - "5.15.0-1074.83~20.04.1.1", - "5.15.0-1076.85~20.04.1.1", - "5.15.0-1078.87~20.04.1.1", - "5.15.0-1081.90~20.04.1.1", - "5.15.0-1082.91~20.04.1.1", - "5.15.0-1086.95~20.04.1.1", - "5.15.0-1087.96~20.04.1.1", - "5.15.0-1088.97~20.04.1.1", - "5.15.0-1089.98~20.04.1.1", - "5.15.0-1091.100~20.04.1.1", - "5.15.0-1094.103~20.04.1.1", - "5.15.0-1096.105~20.04.1.1", - "5.15.0-1097.106~20.04.1.1", - "5.15.0-1098.107~20.04.1.1", - "5.15.0-1102.111~20.04.1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", - "binary_version": "5.15.0-1102.111~20.04.1.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gke", - "purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1033.35", - "5.4.0-1035.37", - "5.4.0-1036.38", - "5.4.0-1037.39", - "5.4.0-1039.41", - "5.4.0-1041.43", - "5.4.0-1042.44", - "5.4.0-1043.45", - "5.4.0-1044.46", - "5.4.0-1046.48", - "5.4.0-1049.52", - "5.4.0-1051.54", - "5.4.0-1052.55", - "5.4.0-1053.56", - "5.4.0-1054.57", - "5.4.0-1055.58", - "5.4.0-1056.59", - "5.4.0-1057.60", - "5.4.0-1059.62", - "5.4.0-1061.64", - "5.4.0-1062.65", - "5.4.0-1063.66", - "5.4.0-1065.68", - "5.4.0-1066.69", - "5.4.0-1067.70", - "5.4.0-1068.71", - "5.4.0-1071.76", - "5.4.0-1072.77", - "5.4.0-1074.79", - "5.4.0-1076.82", - "5.4.0-1078.84", - "5.4.0-1080.86", - "5.4.0-1081.87", - "5.4.0-1083.89", - "5.4.0-1084.90", - "5.4.0-1086.93", - "5.4.0-1087.94", - "5.4.0-1090.97", - "5.4.0-1091.98", - "5.4.0-1094.101", - "5.4.0-1095.102", - "5.4.0-1096.103", - "5.4.0-1097.104", - "5.4.0-1098.105", - "5.4.0-1099.106", - "5.4.0-1100.107", - "5.4.0-1101.108", - "5.4.0-1102.109", - "5.4.0-1103.110", - "5.4.0-1104.111", - "5.4.0-1105.112" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-gke-headers-5.4.0-1105", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-gke-tools-5.4.0-1105", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-headers-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-modules-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-tools-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-raspi2", - "purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1007.8", - "5.3.0-1014.16", - "5.3.0-1015.17", - "5.3.0-1017.19", - "5.4.0-1004.4", - "5.4.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-headers-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-image-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-modules-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-raspi2-headers-5.4.0-1006", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-raspi2-tools-5.4.0-1006", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-tools-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-intel-iot-realtime", - "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1073.75" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-common", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-common", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-host", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1032.35" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-headers-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-modules-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-cloud-tools-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-cloud-tools-common", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-headers-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-common", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-host", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-tools-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-riscv", - "purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1004.4", - "5.13.0-1006.6+22.04.1", - "5.13.0-1007.7+22.04.1", - "5.13.0-1010.11+22.04.1", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1006.6", - "5.15.0-1007.7", - "5.15.0-1008.8", - "5.15.0-1011.12", - "5.15.0-1012.13", - "5.15.0-1014.16", - "5.15.0-1015.17", - "5.15.0-1016.18", - "5.15.0-1017.19", - "5.15.0-1018.21", - "5.15.0-1019.22", - "5.15.0-1020.23", - "5.15.0-1022.26", - "5.15.0-1023.27", - "5.15.0-1026.30", - "5.15.0-1027.31", - "5.15.0-1028.32" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-headers-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-image-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-modules-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-riscv-headers-5.15.0-1028", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-riscv-tools-5.15.0-1028", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-tools-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-raspi-realtime", - "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-2019.20" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-headers-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-image-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-modules-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-raspi-realtime-headers-6.8.0-2019", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-raspi-realtime-tools-6.8.0-2019", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-tools-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-0305" - }, - { - "type": "REPORT", - "url": "https://git.kernel.org/linus/68faa679b8be1a74e6663c21c3a9d25d32f1c079" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-0305" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json deleted file mode 100644 index 9ee5461c8..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-0556.json +++ /dev/null @@ -1,176 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-0556", - "details": "Improper access control in subsystem for BlueZ before version 5.54 may allow an unauthenticated user to potentially enable escalation of privilege and denial of service via adjacent access", - "aliases": [], - "upstream": [ - "CVE-2020-0556" - ], - "related": [ - "USN-4311-1" - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:L" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2020-03-12T21:15:00Z", - "modified": "2025-09-08T16:45:54Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "bluez", - "purl": "pkg:deb/ubuntu/bluez@5.37-0ubuntu5.3?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.37-0ubuntu5.3" - } - ] - } - ], - "versions": [ - "5.35-0ubuntu2", - "5.36-0ubuntu1", - "5.37-0ubuntu5", - "5.37-0ubuntu5.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "bluetooth", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "bluez", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "bluez-cups", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "bluez-hcidump", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "bluez-obexd", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "bluez-tests", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "libbluetooth-dev", - "binary_version": "5.37-0ubuntu5.3" - }, - { - "binary_name": "libbluetooth3", - "binary_version": "5.37-0ubuntu5.3" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "bluez", - "purl": "pkg:deb/ubuntu/bluez@5.48-0ubuntu3.4?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "5.48-0ubuntu3.4" - } - ] - } - ], - "versions": [ - "5.46-0ubuntu3", - "5.46-0ubuntu4", - "5.48-0ubuntu3", - "5.48-0ubuntu3.1", - "5.48-0ubuntu3.2", - "5.48-0ubuntu3.3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "bluetooth", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "bluez", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "bluez-cups", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "bluez-hcidump", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "bluez-obexd", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "bluez-tests", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "libbluetooth-dev", - "binary_version": "5.48-0ubuntu3.4" - }, - { - "binary_name": "libbluetooth3", - "binary_version": "5.48-0ubuntu3.4" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-0556" - }, - { - "type": "REPORT", - "url": "https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00352.html" - }, - { - "type": "REPORT", - "url": "https://www.openwall.com/lists/oss-security/2020/03/12/4" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-4311-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-0556" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json deleted file mode 100644 index 7a8ade639..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1739.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-1739", - "details": "A flaw was found in Ansible 2.7.16 and prior, 2.8.8 and prior, and 2.9.5 and prior when a password is set with the argument \"password\" of svn module, it is used on svn command line, disclosing to other users within the same node. An attacker could take advantage by reading the cmdline file from that particular PID on the procfs.", - "aliases": [], - "upstream": [ - "CVE-2020-1739" - ], - "related": [ - "USN-7330-1" - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" - }, - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2020-03-12T18:15:00Z", - "modified": "2025-10-14T16:49:17Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "ansible", - "purl": "pkg:deb/ubuntu/ansible@1.5.4+dfsg-1ubuntu0.1~esm3?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "1.5.4+dfsg-1ubuntu0.1~esm3" - } - ] - } - ], - "versions": [ - "1.1+dfsg-1", - "1.3.4+dfsg-1", - "1.4.0+dfsg-1", - "1.4.1+dfsg-1", - "1.4.3+dfsg-1", - "1.4.4+dfsg-1", - "1.5.4+dfsg-1", - "1.5.4+dfsg-1ubuntu0.1~esm1", - "1.5.4+dfsg-1ubuntu0.1~esm2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "ansible", - "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" - }, - { - "binary_name": "ansible-fireball", - "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" - }, - { - "binary_name": "ansible-node-fireball", - "binary_version": "1.5.4+dfsg-1ubuntu0.1~esm3" - } - ], - "availability": "Available with Ubuntu Pro with Legacy support add-on: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "ansible", - "purl": "pkg:deb/ubuntu/ansible@2.0.0.2-2ubuntu1.3+esm5?arch=source&distro=esm-apps/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.0.0.2-2ubuntu1.3+esm5" - } - ] - } - ], - "versions": [ - "1.9.2+dfsg-2", - "1.9.4-1", - "2.0.0.2-2", - "2.0.0.2-2ubuntu1", - "2.0.0.2-2ubuntu1.1", - "2.0.0.2-2ubuntu1.2", - "2.0.0.2-2ubuntu1.3", - "2.0.0.2-2ubuntu1.3+esm1", - "2.0.0.2-2ubuntu1.3+esm2", - "2.0.0.2-2ubuntu1.3+esm3", - "2.0.0.2-2ubuntu1.3+esm4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "ansible", - "binary_version": "2.0.0.2-2ubuntu1.3+esm5" - }, - { - "binary_name": "ansible-fireball", - "binary_version": "2.0.0.2-2ubuntu1.3+esm5" - }, - { - "binary_name": "ansible-node-fireball", - "binary_version": "2.0.0.2-2ubuntu1.3+esm5" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "ansible", - "purl": "pkg:deb/ubuntu/ansible@2.5.1+dfsg-1ubuntu0.1+esm5?arch=source&distro=esm-apps/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.5.1+dfsg-1ubuntu0.1+esm5" - } - ] - } - ], - "versions": [ - "2.3.1.0+dfsg-2", - "2.5.0+dfsg-1", - "2.5.1+dfsg-1", - "2.5.1+dfsg-1ubuntu0.1", - "2.5.1+dfsg-1ubuntu0.1+esm1", - "2.5.1+dfsg-1ubuntu0.1+esm2", - "2.5.1+dfsg-1ubuntu0.1+esm3", - "2.5.1+dfsg-1ubuntu0.1+esm4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "ansible", - "binary_version": "2.5.1+dfsg-1ubuntu0.1+esm5" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "ansible", - "purl": "pkg:deb/ubuntu/ansible@2.9.6+dfsg-1ubuntu0.1~esm3?arch=source&distro=esm-apps/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.9.6+dfsg-1ubuntu0.1~esm3" - } - ] - } - ], - "versions": [ - "2.8.3+dfsg-1", - "2.8.6+dfsg-1", - "2.9.2+dfsg-1", - "2.9.4+dfsg-1", - "2.9.6+dfsg-1", - "2.9.6+dfsg-1ubuntu0.1~esm1", - "2.9.6+dfsg-1ubuntu0.1~esm2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "ansible", - "binary_version": "2.9.6+dfsg-1ubuntu0.1~esm3" - } - ], - "availability": "Available with Ubuntu Pro: https://ubuntu.com/pro" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-1739" - }, - { - "type": "REPORT", - "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1802178" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-1739" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-7330-1" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json deleted file mode 100644 index 12cb98e27..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-1770.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-1770", - "details": "Support bundle generated files could contain sensitive information that might be unwanted to be disclosed. This issue affects: ((OTRS)) Community Edition: 5.0.41 and prior versions, 6.0.26 and prior versions. OTRS: 7.0.15 and prior versions.", - "aliases": [], - "upstream": [ - "CVE-2020-1770" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:N/A:N" - }, - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2020-03-27T13:15:00Z", - "modified": "2025-10-24T04:48:15Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "otrs2", - "purl": "pkg:deb/ubuntu/otrs2@5.0.7-1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.0.10-1", - "5.0.1-1", - "5.0.1-2", - "5.0.2-1", - "5.0.3-1", - "5.0.5-1", - "5.0.6-1", - "5.0.7-1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "otrs", - "binary_version": "5.0.7-1" - }, - { - "binary_name": "otrs2", - "binary_version": "5.0.7-1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "otrs2", - "purl": "pkg:deb/ubuntu/otrs2@6.0.5-1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.23-1", - "5.0.24-1", - "6.0.1-1", - "6.0.2-1", - "6.0.3-1", - "6.0.4-1", - "6.0.5-1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "otrs", - "binary_version": "6.0.5-1" - }, - { - "binary_name": "otrs2", - "binary_version": "6.0.5-1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "otrs2", - "purl": "pkg:deb/ubuntu/otrs2@6.0.26-1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.0.20-1", - "6.0.23-2", - "6.0.24-1", - "6.0.25-1", - "6.0.25-2", - "6.0.25-3", - "6.0.26-1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "otrs", - "binary_version": "6.0.26-1" - }, - { - "binary_name": "otrs2", - "binary_version": "6.0.26-1" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-1770" - }, - { - "type": "REPORT", - "url": "https://otrs.com/release-notes/otrs-security-advisory-2020-07/" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-1770" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json deleted file mode 100644 index b25cc8375..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-2590.json +++ /dev/null @@ -1,581 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-2590", - "details": "Vulnerability in the Java SE, Java SE Embedded product of Oracle Java SE (component: Security). Supported versions that are affected are Java SE: 7u241, 8u231, 11.0.5 and 13.0.1; Java SE Embedded: 8u231. Difficult to exploit vulnerability allows unauthenticated attacker with network access via Kerberos to compromise Java SE, Java SE Embedded. Successful attacks of this vulnerability can result in unauthorized update, insert or delete access to some of Java SE, Java SE Embedded accessible data. Note: This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets (in Java SE 8), that load and run untrusted code (e.g., code that comes from the internet) and rely on the Java sandbox for security. This vulnerability can also be exploited by using APIs in the specified Component, e.g., through a web service which supplies data to the APIs. CVSS 3.0 Base Score 3.7 (Integrity impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N).", - "aliases": [], - "upstream": [ - "CVE-2020-2590" - ], - "related": [ - "USN-4257-1" - ], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" - }, - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N" - }, - { - "type": "Ubuntu", - "score": "low" - } - ], - "published": "2020-01-15T17:15:00Z", - "modified": "2026-01-20T04:57:14Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "openjdk-8", - "purl": "pkg:deb/ubuntu/openjdk-8@8u242-b08-0ubuntu3~16.04?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "8u242-b08-0ubuntu3~16.04" - } - ] - } - ], - "versions": [ - "8u66-b01-5", - "8u72-b05-1ubuntu1", - "8u72-b05-5", - "8u72-b05-6", - "8u72-b15-1", - "8u72-b15-2ubuntu1", - "8u72-b15-2ubuntu3", - "8u72-b15-3ubuntu1", - "8u77-b03-1ubuntu2", - "8u77-b03-3ubuntu1", - "8u77-b03-3ubuntu2", - "8u77-b03-3ubuntu3", - "8u91-b14-0ubuntu4~16.04.1", - "8u91-b14-3ubuntu1~16.04.1", - "8u111-b14-2ubuntu0.16.04.2", - "8u121-b13-0ubuntu1.16.04.2", - "8u131-b11-0ubuntu1.16.04.2", - "8u131-b11-2ubuntu1.16.04.2", - "8u131-b11-2ubuntu1.16.04.3", - "8u151-b12-0ubuntu0.16.04.2", - "8u162-b12-0ubuntu0.16.04.2", - "8u171-b11-0ubuntu0.16.04.1", - "8u181-b13-0ubuntu0.16.04.1", - "8u181-b13-1ubuntu0.16.04.1", - "8u191-b12-0ubuntu0.16.04.1", - "8u191-b12-2ubuntu0.16.04.1", - "8u212-b03-0ubuntu1.16.04.1", - "8u222-b10-1ubuntu1~16.04.1", - "8u232-b09-0ubuntu1~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "openjdk-8-demo", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jdk", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jdk-headless", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jre", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jre-headless", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jre-jamvm", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-jre-zero", - "binary_version": "8u242-b08-0ubuntu3~16.04" - }, - { - "binary_name": "openjdk-8-source", - "binary_version": "8u242-b08-0ubuntu3~16.04" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.6.2-3ubuntu1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.5.2-1ubuntu2", - "1.5.3-0ubuntu1", - "1.6.1-1ubuntu2", - "1.6.1-3ubuntu1", - "1.6.1-4ubuntu1", - "1.6.2-1ubuntu1", - "1.6.2-2ubuntu1", - "1.6.2-3ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-8-plugin", - "binary_version": "1.6.2-3ubuntu1" - }, - { - "binary_name": "icedtea-netx", - "binary_version": "1.6.2-3ubuntu1" - }, - { - "binary_name": "icedtea-netx-common", - "binary_version": "1.6.2-3ubuntu1" - }, - { - "binary_name": "icedtea-plugin", - "binary_version": "1.6.2-3ubuntu1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "openjdk-9", - "purl": "pkg:deb/ubuntu/openjdk-9@9~b114-0ubuntu1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "9~b88-1", - "9~b101-2ubuntu2", - "9~b102-1", - "9~b113-0ubuntu1", - "9~b114-0ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "openjdk-9-demo", - "binary_version": "9~b114-0ubuntu1" - }, - { - "binary_name": "openjdk-9-jdk", - "binary_version": "9~b114-0ubuntu1" - }, - { - "binary_name": "openjdk-9-jdk-headless", - "binary_version": "9~b114-0ubuntu1" - }, - { - "binary_name": "openjdk-9-jre", - "binary_version": "9~b114-0ubuntu1" - }, - { - "binary_name": "openjdk-9-jre-headless", - "binary_version": "9~b114-0ubuntu1" - }, - { - "binary_name": "openjdk-9-source", - "binary_version": "9~b114-0ubuntu1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "openjdk-8", - "purl": "pkg:deb/ubuntu/openjdk-8@8u242-b08-0ubuntu3~18.04?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "8u242-b08-0ubuntu3~18.04" - } - ] - } - ], - "versions": [ - "8u144-b01-2", - "8u151-b12-1", - "8u162-b12-1", - "8u171-b11-0ubuntu0.18.04.1", - "8u181-b13-0ubuntu0.18.04.1", - "8u181-b13-1ubuntu0.18.04.1", - "8u191-b12-0ubuntu0.18.04.1", - "8u191-b12-2ubuntu0.18.04.1", - "8u212-b03-0ubuntu1.18.04.1", - "8u222-b10-1ubuntu1~18.04.1", - "8u232-b09-0ubuntu1~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "openjdk-8-demo", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-jdk", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-jdk-headless", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-jre", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-jre-headless", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-jre-zero", - "binary_version": "8u242-b08-0ubuntu3~18.04" - }, - { - "binary_name": "openjdk-8-source", - "binary_version": "8u242-b08-0ubuntu3~18.04" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "openjdk-lts", - "purl": "pkg:deb/ubuntu/openjdk-lts@11.0.6+10-1ubuntu1~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "11.0.6+10-1ubuntu1~18.04.1" - } - ] - } - ], - "versions": [ - "9.0.4+12-2ubuntu4", - "9.0.4+12-4ubuntu1", - "10~46-4ubuntu1", - "10~46-5ubuntu1", - "10.0.1+10-1ubuntu2", - "10.0.1+10-3ubuntu1", - "10.0.2+13-1ubuntu0.18.04.1", - "10.0.2+13-1ubuntu0.18.04.2", - "10.0.2+13-1ubuntu0.18.04.3", - "10.0.2+13-1ubuntu0.18.04.4", - "11.0.2+9-3ubuntu1~18.04.3", - "11.0.3+7-1ubuntu2~18.04.1", - "11.0.4+11-1ubuntu2~18.04.3", - "11.0.5+10-0ubuntu1.1~18.04" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "openjdk-11-demo", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-jdk", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-jdk-headless", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-jre", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-jre-headless", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-jre-zero", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - }, - { - "binary_name": "openjdk-11-source", - "binary_version": "11.0.6+10-1ubuntu1~18.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.8-0ubuntu8~18.04?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.6.2-3.1ubuntu3", - "1.8-0ubuntu8~18.04" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-8-plugin", - "binary_version": "1.8-0ubuntu8~18.04" - }, - { - "binary_name": "icedtea-netx", - "binary_version": "1.8-0ubuntu8~18.04" - }, - { - "binary_name": "icedtea-netx-common", - "binary_version": "1.8-0ubuntu8~18.04" - }, - { - "binary_name": "icedtea-plugin", - "binary_version": "1.8-0ubuntu8~18.04" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "openjdk-lts", - "purl": "pkg:deb/ubuntu/openjdk-lts@11.0.6+10-1ubuntu1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "11.0.6+10-1ubuntu1" - } - ] - } - ], - "versions": [ - "11.0.5+10-0ubuntu1", - "11.0.5+10-2ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "openjdk-11-demo", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-jdk", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-jdk-headless", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-jre", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-jre-headless", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-jre-zero", - "binary_version": "11.0.6+10-1ubuntu1" - }, - { - "binary_name": "openjdk-11-source", - "binary_version": "11.0.6+10-1ubuntu1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.8-0ubuntu8?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.8-0ubuntu8" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-netx", - "binary_version": "1.8-0ubuntu8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.8.4-1build1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.8.4-1build1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-netx", - "binary_version": "1.8.4-1build1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.8.8-2ubuntu1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.8.8-2", - "1.8.8-2ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-netx", - "binary_version": "1.8.8-2ubuntu1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "icedtea-web", - "purl": "pkg:deb/ubuntu/icedtea-web@1.8.8-3?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.8.8-3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "icedtea-netx", - "binary_version": "1.8.8-3" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-2590" - }, - { - "type": "REPORT", - "url": "https://www.oracle.com/security-alerts/cpujan2020.html" - }, - { - "type": "ADVISORY", - "url": "https://ubuntu.com/security/notices/USN-4257-1" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-2590" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json deleted file mode 100644 index b868bdaae..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2020/UBUNTU-CVE-2020-6537.json +++ /dev/null @@ -1,306 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2020-6537", - "details": "Type confusion in V8 in Google Chrome prior to 84.0.4147.105 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page.", - "aliases": [], - "upstream": [ - "CVE-2020-6537" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2020-09-21T20:15:00Z", - "modified": "2025-10-24T04:48:17Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "chromium-browser", - "purl": "pkg:deb/ubuntu/chromium-browser@84.0.4147.105-0ubuntu0.16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "84.0.4147.105-0ubuntu0.16.04.1" - } - ] - } - ], - "versions": [ - "45.0.2454.101-0ubuntu1.1201", - "47.0.2526.73-0ubuntu1.1218", - "47.0.2526.106-0ubuntu1.1221", - "48.0.2564.82-0ubuntu1.1222", - "48.0.2564.116-0ubuntu1.1229", - "49.0.2623.87-0ubuntu1.1232", - "49.0.2623.108-0ubuntu1.1233", - "50.0.2661.102-0ubuntu0.16.04.1.1237", - "51.0.2704.79-0ubuntu0.16.04.1.1242", - "52.0.2743.116-0ubuntu0.16.04.1.1250", - "53.0.2785.143-0ubuntu0.16.04.1.1254", - "53.0.2785.143-0ubuntu0.16.04.1.1257", - "55.0.2883.87-0ubuntu0.16.04.1263", - "56.0.2924.76-0ubuntu0.16.04.1268", - "57.0.2987.98-0ubuntu0.16.04.1276", - "58.0.3029.81-0ubuntu0.16.04.1277", - "58.0.3029.96-0ubuntu0.16.04.1279", - "58.0.3029.110-0ubuntu0.16.04.1281", - "59.0.3071.109-0ubuntu0.16.04.1289", - "59.0.3071.109-0ubuntu0.16.04.1291", - "60.0.3112.78-0ubuntu0.16.04.1293", - "60.0.3112.113-0ubuntu0.16.04.1298", - "61.0.3163.79-0ubuntu0.16.04.1300", - "61.0.3163.100-0ubuntu0.16.04.1306", - "62.0.3202.62-0ubuntu0.16.04.1308", - "62.0.3202.75-0ubuntu0.16.04.1313", - "62.0.3202.89-0ubuntu0.16.04.1315", - "62.0.3202.94-0ubuntu0.16.04.1317", - "63.0.3239.84-0ubuntu0.16.04.1", - "63.0.3239.132-0ubuntu0.16.04.1", - "64.0.3282.119-0ubuntu0.16.04.1", - "64.0.3282.140-0ubuntu0.16.04.1", - "64.0.3282.167-0ubuntu0.16.04.1", - "65.0.3325.181-0ubuntu0.16.04.1", - "66.0.3359.139-0ubuntu0.16.04.3", - "66.0.3359.181-0ubuntu0.16.04.1", - "67.0.3396.99-0ubuntu0.16.04.2", - "68.0.3440.75-0ubuntu0.16.04.1", - "68.0.3440.106-0ubuntu0.16.04.1", - "69.0.3497.81-0ubuntu0.16.04.1", - "70.0.3538.67-0ubuntu0.16.04.1", - "70.0.3538.77-0ubuntu0.16.04.1", - "70.0.3538.110-0ubuntu0.16.04.1", - "71.0.3578.80-0ubuntu0.16.04.1", - "71.0.3578.98-0ubuntu0.16.04.1", - "72.0.3626.119-0ubuntu0.16.04.1", - "72.0.3626.121-0ubuntu0.16.04.1", - "73.0.3683.75-0ubuntu0.16.04.1", - "73.0.3683.86-0ubuntu0.16.04.1", - "74.0.3729.169-0ubuntu0.16.04.1", - "76.0.3809.87-0ubuntu0.16.04.1", - "76.0.3809.100-0ubuntu0.16.04.1", - "77.0.3865.90-0ubuntu0.16.04.1", - "78.0.3904.70-0ubuntu0.16.04.2", - "78.0.3904.97-0ubuntu0.16.04.1", - "78.0.3904.108-0ubuntu0.16.04.1", - "79.0.3945.79-0ubuntu0.16.04.1", - "79.0.3945.130-0ubuntu0.16.04.1", - "80.0.3987.87-0ubuntu0.16.04.1", - "80.0.3987.149-0ubuntu0.16.04.1", - "80.0.3987.163-0ubuntu0.16.04.1", - "81.0.4044.122-0ubuntu0.16.04.1", - "81.0.4044.138-0ubuntu0.16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "chromium-browser", - "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" - }, - { - "binary_name": "chromium-browser-l10n", - "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" - }, - { - "binary_name": "chromium-chromedriver", - "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" - }, - { - "binary_name": "chromium-codecs-ffmpeg", - "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" - }, - { - "binary_name": "chromium-codecs-ffmpeg-extra", - "binary_version": "84.0.4147.105-0ubuntu0.16.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "libv8-3.14", - "purl": "pkg:deb/ubuntu/libv8-3.14@3.14.5.8-5ubuntu2?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "3.14.5.8-5ubuntu2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libv8-3.14-dev", - "binary_version": "3.14.5.8-5ubuntu2" - }, - { - "binary_name": "libv8-3.14.5", - "binary_version": "3.14.5.8-5ubuntu2" - }, - { - "binary_name": "libv8-dev", - "binary_version": "3.14.5.8-5ubuntu2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "chromium-browser", - "purl": "pkg:deb/ubuntu/chromium-browser@84.0.4147.105-0ubuntu0.18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "84.0.4147.105-0ubuntu0.18.04.1" - } - ] - } - ], - "versions": [ - "61.0.3163.100-0ubuntu1.1378", - "62.0.3202.62-0ubuntu0.17.10.1380", - "62.0.3202.89-0ubuntu1.1386", - "62.0.3202.94-0ubuntu1.1388", - "63.0.3239.84-0ubuntu1", - "63.0.3239.108-0ubuntu1", - "64.0.3282.119-0ubuntu1", - "64.0.3282.140-0ubuntu1", - "64.0.3282.167-0ubuntu1", - "65.0.3325.146-0ubuntu1", - "65.0.3325.181-0ubuntu1", - "66.0.3359.139-0ubuntu0.18.04.3", - "66.0.3359.181-0ubuntu0.18.04.1", - "67.0.3396.99-0ubuntu0.18.04.1", - "68.0.3440.75-0ubuntu0.18.04.1", - "68.0.3440.106-0ubuntu0.18.04.1", - "69.0.3497.81-0ubuntu0.18.04.1", - "70.0.3538.67-0ubuntu0.18.04.1", - "70.0.3538.77-0ubuntu0.18.04.1", - "70.0.3538.110-0ubuntu0.18.04.1", - "71.0.3578.80-0ubuntu0.18.04.1", - "71.0.3578.98-0ubuntu0.18.04.1", - "72.0.3626.119-0ubuntu0.18.04.1", - "72.0.3626.121-0ubuntu0.18.04.1", - "73.0.3683.75-0ubuntu0.18.04.1", - "73.0.3683.86-0ubuntu0.18.04.1", - "74.0.3729.169-0ubuntu0.18.04.1", - "75.0.3770.90-0ubuntu0.18.04.1", - "75.0.3770.142-0ubuntu0.18.04.1", - "76.0.3809.87-0ubuntu0.18.04.1", - "76.0.3809.100-0ubuntu0.18.04.1", - "77.0.3865.90-0ubuntu0.18.04.1", - "78.0.3904.70-0ubuntu0.18.04.2", - "78.0.3904.97-0ubuntu0.18.04.1", - "78.0.3904.108-0ubuntu0.18.04.1", - "79.0.3945.79-0ubuntu0.18.04.1", - "79.0.3945.130-0ubuntu0.18.04.1", - "80.0.3987.87-0ubuntu0.18.04.1", - "80.0.3987.149-0ubuntu0.18.04.1", - "80.0.3987.163-0ubuntu0.18.04.1", - "81.0.4044.122-0ubuntu0.18.04.1", - "81.0.4044.138-0ubuntu0.18.04.1", - "83.0.4103.61-0ubuntu0.18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "chromium-browser", - "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" - }, - { - "binary_name": "chromium-browser-l10n", - "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" - }, - { - "binary_name": "chromium-chromedriver", - "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" - }, - { - "binary_name": "chromium-codecs-ffmpeg", - "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" - }, - { - "binary_name": "chromium-codecs-ffmpeg-extra", - "binary_version": "84.0.4147.105-0ubuntu0.18.04.1" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "libv8-3.14", - "purl": "pkg:deb/ubuntu/libv8-3.14@3.14.5.8-11ubuntu1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "3.14.5.8-11ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "libv8-3.14-dev", - "binary_version": "3.14.5.8-11ubuntu1" - }, - { - "binary_name": "libv8-3.14.5", - "binary_version": "3.14.5.8-11ubuntu1" - }, - { - "binary_name": "libv8-dev", - "binary_version": "3.14.5.8-11ubuntu1" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2020-6537" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2020-6537" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json deleted file mode 100644 index b049544e0..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0245.json +++ /dev/null @@ -1,428 +0,0 @@ -{ - "schema_version": "1.6.3", - "id": "UBUNTU-CVE-2025-0245", - "details": "Under certain circumstances, a user opt-in setting that Focus should require authentication before use could have been be bypassed. This vulnerability affects Firefox < 134.", - "aliases": [], - "related": [ - "CVE-2025-0245" - ], - "published": "2025-01-07T16:15:00Z", - "modified": "2025-01-13T10:27:00Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "mozjs52", - "purl": "pkg:deb/ubuntu/mozjs52@52.9.1-0ubuntu0.18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "52.3.1-0ubuntu3", - "52.3.1-7fakesync1", - "52.8.1-0ubuntu0.18.04.1", - "52.9.1-0ubuntu0.18.04.1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "mozjs38", - "purl": "pkg:deb/ubuntu/mozjs38@38.8.0~repack1-0ubuntu4?arch=source&distro=esm-apps/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "38.8.0~repack1-0ubuntu1", - "38.8.0~repack1-0ubuntu3", - "38.8.0~repack1-0ubuntu4" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "mozjs52", - "purl": "pkg:deb/ubuntu/mozjs52@52.9.1-1ubuntu3?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "52.9.1-1build1", - "52.9.1-1ubuntu3" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "mozjs68", - "purl": "pkg:deb/ubuntu/mozjs68@68.6.0-1ubuntu1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "68.5.0-1~fakesync", - "68.5.0-2~fakesync", - "68.6.0-1", - "68.6.0-1ubuntu1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "thunderbird", - "purl": "pkg:deb/ubuntu/thunderbird@1:115.18.0+build1-0ubuntu0.20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1:68.1.2+build1-0ubuntu1", - "1:68.1.2+build1-0ubuntu2", - "1:68.2.1+build1-0ubuntu1", - "1:68.2.2+build1-0ubuntu1", - "1:68.3.0+build2-0ubuntu1", - "1:68.3.1+build1-0ubuntu2", - "1:68.4.1+build1-0ubuntu1", - "1:68.4.2+build2-0ubuntu1", - "1:68.5.0+build1-0ubuntu1", - "1:68.6.0+build2-0ubuntu1", - "1:68.7.0+build1-0ubuntu1", - "1:68.7.0+build1-0ubuntu2", - "1:68.8.0+build2-0ubuntu0.20.04.2", - "1:68.10.0+build1-0ubuntu0.20.04.1", - "1:78.7.1+build1-0ubuntu0.20.04.1", - "1:78.8.1+build1-0ubuntu0.20.04.1", - "1:78.11.0+build1-0ubuntu0.20.04.2", - "1:78.13.0+build1-0ubuntu0.20.04.2", - "1:78.14.0+build1-0ubuntu0.20.04.1", - "1:78.14.0+build1-0ubuntu0.20.04.2", - "1:91.5.0+build1-0ubuntu0.20.04.1", - "1:91.7.0+build2-0ubuntu0.20.04.1", - "1:91.8.1+build1-0ubuntu0.20.04.1", - "1:91.9.1+build1-0ubuntu0.20.04.1", - "1:91.11.0+build2-0ubuntu0.20.04.1", - "1:102.2.2+build1-0ubuntu0.20.04.1", - "1:102.4.2+build2-0ubuntu0.20.04.1", - "1:102.7.1+build2-0ubuntu0.20.04.1", - "1:102.8.0+build2-0ubuntu0.20.04.1", - "1:102.9.0+build1-0ubuntu0.20.04.1", - "1:102.10.0+build2-0ubuntu0.20.04.1", - "1:102.11.0+build1-0ubuntu0.20.04.1", - "1:102.13.0+build1-0ubuntu0.20.04.1", - "1:102.15.0+build1-0ubuntu0.20.04.1", - "1:102.15.1+build1-0ubuntu0.20.04.1", - "1:115.3.1+build1-0ubuntu0.20.04.1", - "1:115.4.1+build1-0ubuntu0.20.04.1", - "1:115.5.0+build1-0ubuntu0.20.04.1", - "1:115.6.0+build2-0ubuntu0.20.04.1", - "1:115.8.1+build1-0ubuntu0.20.04.1", - "1:115.9.0+build1-0ubuntu0.20.04.1", - "1:115.10.1+build1-0ubuntu0.20.04.1", - "1:115.11.0+build2-0ubuntu0.20.04.1", - "1:115.12.0+build3-0ubuntu0.20.04.1", - "1:115.13.0+build5-0ubuntu0.20.04.1", - "1:115.15.0+build1-0ubuntu0.20.04.1", - "1:115.16.0+build2-0ubuntu0.20.04.1", - "1:115.18.0+build1-0ubuntu0.20.04.1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "mozjs102", - "purl": "pkg:deb/ubuntu/mozjs102@102.15.1-0ubuntu0.22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "102.11.0-0ubuntu0.22.04.1", - "102.12.0-0ubuntu0.22.04.1", - "102.13.0-0ubuntu0.22.04.1", - "102.15.1-0ubuntu0.22.04.1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "mozjs78", - "purl": "pkg:deb/ubuntu/mozjs78@78.15.0-4ubuntu1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "78.13.0-1", - "78.15.0-2", - "78.15.0-4ubuntu1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "mozjs91", - "purl": "pkg:deb/ubuntu/mozjs91@91.10.0-0ubuntu1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "91.5.1-0ubuntu1", - "91.6.0-1", - "91.6.0-2", - "91.7.0-2", - "91.10.0-0ubuntu1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "thunderbird", - "purl": "pkg:deb/ubuntu/thunderbird@1:115.18.0+build1-0ubuntu0.22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1:91.1.2+build1-0ubuntu1", - "1:91.3.0+build2-0ubuntu1", - "1:91.3.1+build1-0ubuntu1", - "1:91.3.2+build1-0ubuntu1", - "1:91.4.0+build1.1-0ubuntu1", - "1:91.4.0+build2-0ubuntu1", - "1:91.5.0+build1-0ubuntu1", - "1:91.5.1+build1-0ubuntu1", - "1:91.6.1+build1-0ubuntu1", - "1:91.7.0+build1-0ubuntu1", - "1:91.7.0+build2-0ubuntu1", - "1:91.8.0+build2-0ubuntu1", - "1:91.9.1+build1-0ubuntu0.22.04.1", - "1:91.11.0+build2-0ubuntu0.22.04.1", - "1:102.2.2+build1-0ubuntu0.22.04.1", - "1:102.4.2+build2-0ubuntu0.22.04.1", - "1:102.7.1+build2-0ubuntu0.22.04.1", - "1:102.8.0+build2-0ubuntu0.22.04.1", - "1:102.9.0+build1-0ubuntu0.22.04.1", - "1:102.10.0+build2-0ubuntu0.22.04.1", - "1:102.11.0+build1-0ubuntu0.22.04.1", - "1:102.13.0+build1-0ubuntu0.22.04.1", - "1:102.15.0+build1-0ubuntu0.22.04.1", - "1:102.15.1+build1-0ubuntu0.22.04.1", - "1:115.3.1+build1-0ubuntu0.22.04.2", - "1:115.4.1+build1-0ubuntu0.22.04.1", - "1:115.5.0+build1-0ubuntu0.22.04.1", - "1:115.6.0+build2-0ubuntu0.22.04.1", - "1:115.8.1+build1-0ubuntu0.22.04.1", - "1:115.9.0+build1-0ubuntu0.22.04.1", - "1:115.10.1+build1-0ubuntu0.22.04.1", - "1:115.11.0+build2-0ubuntu0.22.04.1", - "1:115.12.0+build3-0ubuntu0.22.04.1", - "1:115.13.0+build5-0ubuntu0.22.04.1", - "1:115.15.0+build1-0ubuntu0.22.04.1", - "1:115.16.0+build2-0ubuntu0.22.04.1", - "1:115.18.0+build1-0ubuntu0.22.04.1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.10", - "name": "mozjs115", - "purl": "pkg:deb/ubuntu/mozjs115@115.16.0-1?arch=source&distro=oracular" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "115.10.0-1", - "115.11.0-1", - "115.12.0-1", - "115.12.0-1build1", - "115.13.0-1", - "115.14.0-1", - "115.16.0-1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "mozjs102", - "purl": "pkg:deb/ubuntu/mozjs102@102.15.1-3ubuntu2?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "102.15.1-1", - "102.15.1-3ubuntu2" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "mozjs115", - "purl": "pkg:deb/ubuntu/mozjs115@115.10.0-1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "115.3.0-0ubuntu1", - "115.4.0-2", - "115.5.0-1", - "115.6.0-1", - "115.7.0-4", - "115.8.0-1", - "115.9.0-1", - "115.9.0-1build1", - "115.10.0-1" - ], - "ecosystem_specific": { - "ubuntu_priority": "negligible" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2025-0245" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-0245" - }, - { - "type": "REPORT", - "url": "https://www.mozilla.org/en-US/security/advisories/mfsa2025-01/#CVE-2025-0245" - }, - { - "type": "REPORT", - "url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1895342" - }, - { - "type": "REPORT", - "url": "https://www.mozilla.org/security/advisories/mfsa2025-01/" - } - ], - "withdrawn": "2025-06-23T16:00:08Z" -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json deleted file mode 100644 index 02d9c54cb..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-0677.json +++ /dev/null @@ -1,839 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2025-0677", - "details": "A flaw was found in grub2. When performing a symlink lookup, the grub's UFS module checks the inode's data size to allocate the internal buffer to read the file content, however, it fails to check if the symlink data size has overflown. When this occurs, grub_malloc() may be called with a smaller value than needed. When further reading the data from the disk into the buffer, the grub_ufs_lookup_symlink() function will write past the end of the allocated size. An attack can leverage this by crafting a malicious filesystem, and as a result, it will corrupt data stored in the heap, allowing for arbitrary code execution used to by-pass secure boot mechanisms.", - "aliases": [], - "upstream": [ - "CVE-2025-0677" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2025-02-18T18:00:00Z", - "modified": "2026-01-20T05:24:58Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "grub2", - "purl": "pkg:deb/ubuntu/grub2@2.02~beta2-9ubuntu1.21?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.00-19ubuntu2", - "2.00-19ubuntu3", - "2.00-19ubuntu4", - "2.00-20", - "2.00-21", - "2.00-22", - "2.02~beta2-5", - "2.02~beta2-6", - "2.02~beta2-7", - "2.02~beta2-8", - "2.02~beta2-9", - "2.02~beta2-9ubuntu1", - "2.02~beta2-9ubuntu1.1", - "2.02~beta2-9ubuntu1.2", - "2.02~beta2-9ubuntu1.3", - "2.02~beta2-9ubuntu1.4", - "2.02~beta2-9ubuntu1.5", - "2.02~beta2-9ubuntu1.6", - "2.02~beta2-9ubuntu1.7", - "2.02~beta2-9ubuntu1.8", - "2.02~beta2-9ubuntu1.11", - "2.02~beta2-9ubuntu1.12", - "2.02~beta2-9ubuntu1.14", - "2.02~beta2-9ubuntu1.15", - "2.02~beta2-9ubuntu1.16", - "2.02~beta2-9ubuntu1.17", - "2.02~beta2-9ubuntu1.20", - "2.02~beta2-9ubuntu1.21" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-common", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-coreboot", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-coreboot-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-arm", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-arm-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-ia32", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-efi-ia32-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-emu", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-firmware-qemu", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-ieee1275", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-ieee1275-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-linuxbios", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-pc", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-pc-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-rescue-pc", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-theme-starfield", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-uboot", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-uboot-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-xen", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub-xen-bin", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub2", - "binary_version": "2.02~beta2-9ubuntu1.21" - }, - { - "binary_name": "grub2-common", - "binary_version": "2.02~beta2-9ubuntu1.21" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.34.24?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.22", - "1.23", - "1.24", - "1.25", - "1.26", - "1.27", - "1.30", - "1.31", - "1.32", - "1.33", - "1.34", - "1.34.1", - "1.34.2", - "1.34.3", - "1.34.4", - "1.34.5", - "1.34.6", - "1.34.7", - "1.34.8", - "1.34.9", - "1.34.13", - "1.34.14", - "1.34.16", - "1.34.17", - "1.34.18", - "1.34.20", - "1.34.22", - "1.34.24" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.34.24+2.02~beta2-9ubuntu1.21" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.167~16.04.6?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.55", - "1.56", - "1.57", - "1.58", - "1.59", - "1.61", - "1.62", - "1.63", - "1.64", - "1.65", - "1.66", - "1.66.1", - "1.66.2", - "1.66.6", - "1.66.7", - "1.66.8", - "1.66.9", - "1.66.11", - "1.66.12", - "1.66.14", - "1.66.15", - "1.66.16", - "1.66.17", - "1.66.18", - "1.66.19", - "1.66.20", - "1.66.21", - "1.66.22", - "1.66.23", - "1.66.26", - "1.66.27", - "1.66.28", - "1.66.29", - "1.167~16.04.1", - "1.167~16.04.2", - "1.167~16.04.4", - "1.167~16.04.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.167~16.04.6+2.04-1ubuntu44.1.2" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.167~16.04.6+2.04-1ubuntu44.1.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.04-1ubuntu44.1.2?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.04-1ubuntu44", - "2.04-1ubuntu44.1", - "2.04-1ubuntu44.1.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.04-1ubuntu44.1.2" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.04-1ubuntu44.1.2" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.04-1ubuntu44.1.2" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.04-1ubuntu44.1.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.187.3~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.85", - "1.86", - "1.87", - "1.89", - "1.91", - "1.92", - "1.93", - "1.93.1", - "1.93.2", - "1.93.3", - "1.93.4", - "1.93.5", - "1.93.7", - "1.93.8", - "1.93.10", - "1.93.11", - "1.93.13", - "1.93.14", - "1.93.15", - "1.93.16", - "1.93.18", - "1.93.19", - "1.93.20", - "1.93.21", - "1.93.22", - "1.93.24", - "1.167~18.04.1", - "1.167~18.04.3", - "1.167~18.04.5", - "1.173.2~18.04.1", - "1.187.2~18.04.1", - "1.187.3~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.187.3~18.04.1+2.06-2ubuntu14.1" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.187.3~18.04.1+2.06-2ubuntu14.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.04-1ubuntu44", - "2.04-1ubuntu44.1", - "2.04-1ubuntu44.1.2", - "2.04-1ubuntu47.4", - "2.06-2ubuntu14", - "2.06-2ubuntu14.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.06-2ubuntu14.1" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.06-2ubuntu14.1" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.06-2ubuntu14.1" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.06-2ubuntu14.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.187.12~20.04?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.128", - "1.129", - "1.130", - "1.131", - "1.133", - "1.134", - "1.135", - "1.136", - "1.137", - "1.138", - "1.139", - "1.140", - "1.141", - "1.142", - "1.142.1", - "1.142.3", - "1.142.4", - "1.142.5", - "1.142.6", - "1.142.8", - "1.142.9", - "1.142.10", - "1.142.11", - "1.167", - "1.167.2", - "1.173.2~20.04.1", - "1.173.4", - "1.187.2~20.04.2", - "1.187.3~20.04.1", - "1.187.4~20.04.1", - "1.187.6~20.04.1", - "1.187.12~20.04" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.187.12~20.04+2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.187.12~20.04+2.06-2ubuntu14.8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.8?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.04-1ubuntu44", - "2.04-1ubuntu44.2", - "2.04-1ubuntu47.4", - "2.04-1ubuntu47.5", - "2.06-2ubuntu14", - "2.06-2ubuntu14.1", - "2.06-2ubuntu14.2", - "2.06-2ubuntu14.4", - "2.06-2ubuntu14.8" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.06-2ubuntu14.8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.187.12?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.173", - "1.174", - "1.176", - "1.177", - "1.178", - "1.179", - "1.180", - "1.182~22.04.1", - "1.187.2", - "1.187.3~22.04.1", - "1.187.4~22.04.1", - "1.187.6", - "1.187.12" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.187.12+2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.187.12+2.06-2ubuntu14.8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.06-2ubuntu14.8?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.04-1ubuntu47", - "2.04-1ubuntu48", - "2.06-2ubuntu3", - "2.06-2ubuntu4", - "2.06-2ubuntu5", - "2.06-2ubuntu6", - "2.06-2ubuntu7", - "2.06-2ubuntu10", - "2.06-2ubuntu14", - "2.06-2ubuntu14.1", - "2.06-2ubuntu14.2", - "2.06-2ubuntu14.4", - "2.06-2ubuntu14.8" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.06-2ubuntu14.8" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.06-2ubuntu14.8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.202.5?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.197", - "1.199", - "1.201", - "1.202", - "1.202.2", - "1.202.5" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.202.5+2.12-1ubuntu7.3" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.202.5+2.12-1ubuntu7.3" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.12-1ubuntu7.3?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.12~rc1-10ubuntu4", - "2.12~rc1-12ubuntu2", - "2.12-1ubuntu1", - "2.12-1ubuntu7", - "2.12-1ubuntu7.1", - "2.12-1ubuntu7.3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.12-1ubuntu7.3" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.12-1ubuntu7.3" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.12-1ubuntu7.3" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.12-1ubuntu7.3" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "grub2-signed", - "purl": "pkg:deb/ubuntu/grub2-signed@1.214?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "1.212", - "1.213", - "1.214" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64-signed", - "binary_version": "1.214+2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-arm64-signed", - "binary_version": "1.214+2.14~git20250718.0e36779-1ubuntu4" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "grub2-unsigned", - "purl": "pkg:deb/ubuntu/grub2-unsigned@2.14~git20250718.0e36779-1ubuntu4?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "2.12-5ubuntu11", - "2.14~git20250718.0e36779-1ubuntu1", - "2.14~git20250718.0e36779-1ubuntu4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "grub-efi-amd64", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-amd64-bin", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-amd64-unsigned", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-arm64", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-arm64-bin", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - }, - { - "binary_name": "grub-efi-arm64-unsigned", - "binary_version": "2.14~git20250718.0e36779-1ubuntu4" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2025-0677" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-0677" - } - ] -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json deleted file mode 100644 index d0a1434a9..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-1179.json +++ /dev/null @@ -1,1490 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2025-1179", - "details": "A vulnerability was found in GNU Binutils 2.43. It has been rated as critical. Affected by this issue is the function bfd_putl64 of the file bfd/libbfd.c of the component ld. The manipulation leads to memory corruption. The attack may be launched remotely. The complexity of an attack is rather high. The exploitation is known to be difficult. The exploit has been disclosed to the public and may be used. Upgrading to version 2.44 is able to address this issue. It is recommended to upgrade the affected component. The code maintainer explains, that \"[t]his bug has been fixed at some point between the 2.43 and 2.44 releases\".", - "aliases": [], - "upstream": [ - "CVE-2025-1179" - ], - "related": [], - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:L" - }, - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H" - }, - { - "type": "CVSS_V4", - "score": "CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N" - }, - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2025-02-11T07:15:00Z", - "modified": "2025-07-14T04:38:26Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "binutils", - "purl": "pkg:deb/ubuntu/binutils@2.26.1-1ubuntu1~16.04.8+esm11?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.26.1-1ubuntu1~16.04.8+esm11" - } - ] - } - ], - "versions": [ - "2.25.1-6ubuntu1", - "2.25.51.20151022-0ubuntu2", - "2.25.51.20151022-0ubuntu3", - "2.25.51.20151027-0ubuntu1", - "2.25.51.20151028-0ubuntu1", - "2.25.51.20151106-0ubuntu1", - "2.25.51.20151113-1ubuntu1", - "2.25.51.20151113-2ubuntu1", - "2.25.90.20151125-1ubuntu1", - "2.25.90.20151125-2ubuntu1", - "2.25.90.20151211-0ubuntu1", - "2.25.90.20151211-0ubuntu2", - "2.25.90.20160101-1ubuntu1", - "2.25.90.20160101-1ubuntu2", - "2.26-2ubuntu1", - "2.26-3ubuntu1", - "2.26-4ubuntu1", - "2.26-5ubuntu1", - "2.26-6ubuntu1", - "2.26-7ubuntu2", - "2.26-8ubuntu1", - "2.26-8ubuntu2", - "2.26-8ubuntu2.1", - "2.26.1-1ubuntu1~16.04", - "2.26.1-1ubuntu1~16.04.1", - "2.26.1-1ubuntu1~16.04.3", - "2.26.1-1ubuntu1~16.04.4", - "2.26.1-1ubuntu1~16.04.5", - "2.26.1-1ubuntu1~16.04.6", - "2.26.1-1ubuntu1~16.04.7", - "2.26.1-1ubuntu1~16.04.8", - "2.26.1-1ubuntu1~16.04.8+esm1", - "2.26.1-1ubuntu1~16.04.8+esm3", - "2.26.1-1ubuntu1~16.04.8+esm4", - "2.26.1-1ubuntu1~16.04.8+esm5", - "2.26.1-1ubuntu1~16.04.8+esm6", - "2.26.1-1ubuntu1~16.04.8+esm7", - "2.26.1-1ubuntu1~16.04.8+esm9" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "binutils", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-aarch64-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-alpha-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-arm-linux-gnueabi", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-dev", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-doc", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-hppa-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-hppa64-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-m68k-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-mips-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-mips64-linux-gnuabi64", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-mips64el-linux-gnuabi64", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-mipsel-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-multiarch", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-multiarch-dev", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-powerpc-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-powerpc-linux-gnuspe", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-s390x-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-sh4-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-source", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - }, - { - "binary_name": "binutils-sparc64-linux-gnu", - "binary_version": "2.26.1-1ubuntu1~16.04.8+esm11" - } - ], - "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "binutils", - "purl": "pkg:deb/ubuntu/binutils@2.30-21ubuntu1~18.04.9+esm4?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.30-21ubuntu1~18.04.9+esm4" - } - ] - } - ], - "versions": [ - "2.29.1-4ubuntu1", - "2.29.1-6ubuntu1", - "2.29.1-7ubuntu1", - "2.29.1-8ubuntu1", - "2.29.1-10ubuntu1", - "2.29.1-12ubuntu1", - "2.30-4ubuntu1", - "2.30-5ubuntu1", - "2.30-7ubuntu1", - "2.30-8ubuntu1", - "2.30-9ubuntu1", - "2.30-10ubuntu1", - "2.30-11ubuntu1", - "2.30-14ubuntu2", - "2.30-15ubuntu1", - "2.30-20ubuntu2~18.04", - "2.30-21ubuntu1~18.04", - "2.30-21ubuntu1~18.04.1", - "2.30-21ubuntu1~18.04.2", - "2.30-21ubuntu1~18.04.3", - "2.30-21ubuntu1~18.04.4", - "2.30-21ubuntu1~18.04.5", - "2.30-21ubuntu1~18.04.7", - "2.30-21ubuntu1~18.04.8", - "2.30-21ubuntu1~18.04.9", - "2.30-21ubuntu1~18.04.9+esm1", - "2.30-21ubuntu1~18.04.9+esm3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "binutils", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-aarch64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-aarch64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-alpha-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-alpha-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-arm-linux-gnueabi", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-arm-linux-gnueabi-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-common", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-dev", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-doc", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-for-build", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-for-host", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-hppa-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-hppa-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-hppa64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-hppa64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-i686-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-ia64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-ia64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-m68k-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-m68k-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64-linux-gnuabi64", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64-linux-gnuabi64-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64-linux-gnuabin32", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64-linux-gnuabin32-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64el-linux-gnuabi64", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64el-linux-gnuabi64-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64el-linux-gnuabin32", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mips64el-linux-gnuabin32-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsel-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsel-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa32r6-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa32r6-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa32r6el-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa32r6el-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6-linux-gnuabi64", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6-linux-gnuabi64-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6-linux-gnuabin32", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6-linux-gnuabin32-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6el-linux-gnuabi64", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6el-linux-gnuabi64-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6el-linux-gnuabin32", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-mipsisa64r6el-linux-gnuabin32-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-multiarch", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-multiarch-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-multiarch-dev", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc-linux-gnuspe", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc-linux-gnuspe-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-riscv64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-riscv64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-s390x-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-s390x-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-sh4-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-sh4-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-source", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-sparc64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-sparc64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-linux-gnu", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-linux-gnu-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "libbinutils", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - }, - { - "binary_name": "libbinutils-dbg", - "binary_version": "2.30-21ubuntu1~18.04.9+esm4" - } - ], - "availability": "Available with Ubuntu Pro (Infra-only): https://ubuntu.com/pro" - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "binutils", - "purl": "pkg:deb/ubuntu/binutils@2.38-4ubuntu2.8?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.38-4ubuntu2.8" - } - ] - } - ], - "versions": [ - "2.37-7ubuntu1", - "2.37-9ubuntu1", - "2.37-10ubuntu1", - "2.37.50.20220106-2ubuntu1", - "2.37.90.20220126-0ubuntu1", - "2.37.90.20220130-0ubuntu2", - "2.38-1ubuntu1", - "2.38-2ubuntu1", - "2.38-3ubuntu1", - "2.38-4ubuntu2", - "2.38-4ubuntu2.1", - "2.38-4ubuntu2.2", - "2.38-4ubuntu2.3", - "2.38-4ubuntu2.4", - "2.38-4ubuntu2.5", - "2.38-4ubuntu2.6", - "2.38-4ubuntu2.7" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "binutils", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-aarch64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-aarch64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-alpha-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-alpha-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-arm-linux-gnueabi", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-arm-linux-gnueabi-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-common", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-dev", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-doc", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-for-build", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-for-host", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-hppa-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-hppa-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-hppa64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-hppa64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-i686-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-ia64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-ia64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-m68k-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-m68k-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-multiarch", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-multiarch-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-multiarch-dev", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-riscv64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-riscv64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-s390x-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-s390x-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-sh4-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-sh4-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-source", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-sparc64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-sparc64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-linux-gnu", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-linux-gnu-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libbinutils", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libbinutils-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libctf-nobfd0", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libctf-nobfd0-dbg", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libctf0", - "binary_version": "2.38-4ubuntu2.8" - }, - { - "binary_name": "libctf0-dbg", - "binary_version": "2.38-4ubuntu2.8" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "binutils", - "purl": "pkg:deb/ubuntu/binutils@2.42-4ubuntu2.5?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.42-4ubuntu2.5" - } - ] - } - ], - "versions": [ - "2.41-5ubuntu1", - "2.41-6ubuntu1", - "2.41.50.20231206-1ubuntu1", - "2.41.50.20231214-1ubuntu1", - "2.41.50.20231227-1ubuntu1", - "2.41.90.20240122-1ubuntu1", - "2.42-2ubuntu1", - "2.42-3ubuntu1", - "2.42-4ubuntu1", - "2.42-4ubuntu2", - "2.42-4ubuntu2.3", - "2.42-4ubuntu2.4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "binutils", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-aarch64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-aarch64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-alpha-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-alpha-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arc-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arc-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arm-linux-gnueabi", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arm-linux-gnueabi-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-common", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-dev", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-doc", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-for-build", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-for-host", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-hppa-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-hppa-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-hppa64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-hppa64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-kfreebsd-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-i686-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-ia64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-ia64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-loongarch64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-loongarch64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-m68k-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-m68k-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-multiarch", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-multiarch-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-multiarch-dev", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-riscv64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-riscv64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-s390x-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-s390x-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-sh4-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-sh4-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-source", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-sparc64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-sparc64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-kfreebsd-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-linux-gnu", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-linux-gnu-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libbinutils", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libbinutils-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libctf-nobfd0", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libctf-nobfd0-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libctf0", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libctf0-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libgprofng0", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libgprofng0-dbg", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libsframe1", - "binary_version": "2.42-4ubuntu2.5" - }, - { - "binary_name": "libsframe1-dbg", - "binary_version": "2.42-4ubuntu2.5" - } - ], - "availability": "No subscription required" - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.04", - "name": "binutils", - "purl": "pkg:deb/ubuntu/binutils@2.44-3ubuntu1?arch=source&distro=plucky" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - }, - { - "fixed": "2.44-3ubuntu1" - } - ] - } - ], - "versions": [ - "2.43.1-4ubuntu1", - "2.43.50.20241126-3ubuntu1", - "2.43.50.20241204-2ubuntu1", - "2.43.50.20241210-1ubuntu2", - "2.43.50.20241215-1ubuntu1", - "2.43.50.20241221-1ubuntu1", - "2.43.50.20241230-1ubuntu1", - "2.43.50.20250108-1ubuntu1", - "2.44-1ubuntu1", - "2.44-2ubuntu1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "binutils", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-aarch64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-aarch64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-alpha-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-alpha-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arc-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arc-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arm-linux-gnueabi", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arm-linux-gnueabi-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-arm-linux-gnueabihf-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-common", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-dev", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-doc", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-for-build", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-for-host", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-hppa-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-hppa-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-hppa64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-hppa64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-i686-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-i686-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-i686-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-i686-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-loongarch64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-loongarch64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-m68k-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-m68k-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-multiarch", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-multiarch-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-multiarch-dev", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-powerpc64le-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-riscv64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-riscv64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-s390x-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-s390x-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sh4-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sh4-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-source", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sparc-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sparc-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sparc64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-sparc64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-linux-gnu", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-linux-gnu-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "binutils-x86-64-linux-gnux32-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libbinutils", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libbinutils-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libctf-nobfd0", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libctf-nobfd0-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libctf0", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libctf0-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libgprofng0", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libgprofng0-dbg", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libsframe1", - "binary_version": "2.44-3ubuntu1" - }, - { - "binary_name": "libsframe1-dbg", - "binary_version": "2.44-3ubuntu1" - } - ], - "availability": "No subscription required" - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2025-1179" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-1179" - }, - { - "type": "REPORT", - "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640" - }, - { - "type": "REPORT", - "url": "https://sourceware.org/bugzilla/attachment.cgi?id=15915" - }, - { - "type": "REPORT", - "url": "https://sourceware.org/bugzilla/show_bug.cgi?id=32640#c1" - }, - { - "type": "REPORT", - "url": "https://vuldb.com/?ctiid.295082" - }, - { - "type": "REPORT", - "url": "https://vuldb.com/?id.295082" - }, - { - "type": "REPORT", - "url": "https://vuldb.com/?submit.495376" - }, - { - "type": "REPORT", - "url": "https://www.gnu.org/" - } - ], - "withdrawn": "2025-07-18T17:02:42Z" -} \ No newline at end of file diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json deleted file mode 100644 index 880e9ed31..000000000 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_security_notices/osv/cve/2025/UBUNTU-CVE-2025-71115.json +++ /dev/null @@ -1,29143 +0,0 @@ -{ - "schema_version": "1.7.0", - "id": "UBUNTU-CVE-2025-71115", - "details": "In the Linux kernel, the following vulnerability has been resolved: um: init cpu_tasks[] earlier This is currently done in uml_finishsetup(), but e.g. with KCOV enabled we'll crash because some init code can call into e.g. memparse(), which has coverage annotations, and then the checks in check_kcov_mode() crash because current is NULL. Simply initialize the cpu_tasks[] array statically, which fixes the crash. For the later SMP work, it seems to have not really caused any problems yet, but initialize all of the entries anyway.", - "aliases": [], - "upstream": [ - "CVE-2025-71115" - ], - "related": [], - "severity": [ - { - "type": "Ubuntu", - "score": "medium" - } - ], - "published": "2026-01-14T15:16:00Z", - "modified": "2026-01-30T05:47:05Z", - "affected": [ - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@3.13.0-210.261?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "3.11.0-12.19", - "3.12.0-1.3", - "3.12.0-2.5", - "3.12.0-2.7", - "3.12.0-3.8", - "3.12.0-3.9", - "3.12.0-4.10", - "3.12.0-4.12", - "3.12.0-5.13", - "3.12.0-7.15", - "3.13.0-1.16", - "3.13.0-2.17", - "3.13.0-3.18", - "3.13.0-4.19", - "3.13.0-5.20", - "3.13.0-6.23", - "3.13.0-7.25", - "3.13.0-7.26", - "3.13.0-8.27", - "3.13.0-8.28", - "3.13.0-10.30", - "3.13.0-11.31", - "3.13.0-12.32", - "3.13.0-13.33", - "3.13.0-14.34", - "3.13.0-15.35", - "3.13.0-16.36", - "3.13.0-17.37", - "3.13.0-18.38", - "3.13.0-19.39", - "3.13.0-19.40", - "3.13.0-20.42", - "3.13.0-21.43", - "3.13.0-22.44", - "3.13.0-23.45", - "3.13.0-24.46", - "3.13.0-24.47", - "3.13.0-27.50", - "3.13.0-29.53", - "3.13.0-30.54", - "3.13.0-30.55", - "3.13.0-32.57", - "3.13.0-33.58", - "3.13.0-34.60", - "3.13.0-35.62", - "3.13.0-36.63", - "3.13.0-37.64", - "3.13.0-39.66", - "3.13.0-40.69", - "3.13.0-41.70", - "3.13.0-43.72", - "3.13.0-44.73", - "3.13.0-45.74", - "3.13.0-46.75", - "3.13.0-46.76", - "3.13.0-46.77", - "3.13.0-46.79", - "3.13.0-48.80", - "3.13.0-49.81", - "3.13.0-49.83", - "3.13.0-51.84", - "3.13.0-52.85", - "3.13.0-52.86", - "3.13.0-53.88", - "3.13.0-53.89", - "3.13.0-54.91", - "3.13.0-55.92", - "3.13.0-55.94", - "3.13.0-57.95", - "3.13.0-58.97", - "3.13.0-59.98", - "3.13.0-61.100", - "3.13.0-62.102", - "3.13.0-63.103", - "3.13.0-65.105", - "3.13.0-65.106", - "3.13.0-66.108", - "3.13.0-67.110", - "3.13.0-68.111", - "3.13.0-70.113", - "3.13.0-71.114", - "3.13.0-73.116", - "3.13.0-74.118", - "3.13.0-76.120", - "3.13.0-77.121", - "3.13.0-79.123", - "3.13.0-83.127", - "3.13.0-85.129", - "3.13.0-86.130", - "3.13.0-86.131", - "3.13.0-87.133", - "3.13.0-88.135", - "3.13.0-91.138", - "3.13.0-92.139", - "3.13.0-93.140", - "3.13.0-95.142", - "3.13.0-96.143", - "3.13.0-98.145", - "3.13.0-100.147", - "3.13.0-101.148", - "3.13.0-103.150", - "3.13.0-105.152", - "3.13.0-106.153", - "3.13.0-107.154", - "3.13.0-108.155", - "3.13.0-109.156", - "3.13.0-110.157", - "3.13.0-111.158", - "3.13.0-112.159", - "3.13.0-113.160", - "3.13.0-115.162", - "3.13.0-116.163", - "3.13.0-117.164", - "3.13.0-119.166", - "3.13.0-121.170", - "3.13.0-123.172", - "3.13.0-125.174", - "3.13.0-126.175", - "3.13.0-128.177", - "3.13.0-129.178", - "3.13.0-132.181", - "3.13.0-133.182", - "3.13.0-135.184", - "3.13.0-137.186", - "3.13.0-139.188", - "3.13.0-141.190", - "3.13.0-142.191", - "3.13.0-143.192", - "3.13.0-144.193", - "3.13.0-145.194", - "3.13.0-147.196", - "3.13.0-149.199", - "3.13.0-151.201", - "3.13.0-153.203", - "3.13.0-155.205", - "3.13.0-156.206", - "3.13.0-157.207", - "3.13.0-158.208", - "3.13.0-160.210", - "3.13.0-161.211", - "3.13.0-162.212", - "3.13.0-163.213", - "3.13.0-164.214", - "3.13.0-165.215", - "3.13.0-166.216", - "3.13.0-167.217", - "3.13.0-168.218", - "3.13.0-169.219", - "3.13.0-170.220", - "3.13.0-171.222", - "3.13.0-172.223", - "3.13.0-173.224", - "3.13.0-174.225", - "3.13.0-175.226", - "3.13.0-176.227", - "3.13.0-180.231", - "3.13.0-181.232", - "3.13.0-182.233", - "3.13.0-183.234", - "3.13.0-184.235", - "3.13.0-185.236", - "3.13.0-186.237", - "3.13.0-187.238", - "3.13.0-188.239", - "3.13.0-189.240", - "3.13.0-190.241", - "3.13.0-191.242", - "3.13.0-192.243", - "3.13.0-193.244", - "3.13.0-194.245", - "3.13.0-195.246", - "3.13.0-196.247", - "3.13.0-197.248", - "3.13.0-198.249", - "3.13.0-199.250", - "3.13.0-200.251", - "3.13.0-201.252", - "3.13.0-202.253", - "3.13.0-203.254", - "3.13.0-204.255", - "3.13.0-205.256", - "3.13.0-206.257", - "3.13.0-207.258", - "3.13.0-208.259", - "3.13.0-209.260", - "3.13.0-210.261" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "crypto-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fat-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "firewire-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "floppy-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fs-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "fs-secondary-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "input-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "ipmi-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "irda-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "kernel-image-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-buildinfo-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-buildinfo-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-headers-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-image-unsigned-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-image-unsigned-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-modules-extra-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-source-3.13.0", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-3.13.0-210-lowlatency", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "md-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "message-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "mouse-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "multipath-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nfs-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-pcmcia-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-shared-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "nic-usb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "parport-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pata-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pcmcia-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "pcmcia-storage-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "plip-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "ppp-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "sata-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "scsi-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "serial-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "speakup-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "squashfs-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "storage-core-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "usb-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "virtio-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - }, - { - "binary_name": "vlan-modules-3.13.0-210-generic-di", - "binary_version": "3.13.0-210.261" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1151.157?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1002.2", - "4.4.0-1003.3", - "4.4.0-1005.5", - "4.4.0-1006.6", - "4.4.0-1009.9", - "4.4.0-1010.10", - "4.4.0-1011.11", - "4.4.0-1012.12", - "4.4.0-1014.14", - "4.4.0-1016.16", - "4.4.0-1017.17", - "4.4.0-1019.19", - "4.4.0-1022.22", - "4.4.0-1023.23", - "4.4.0-1024.25", - "4.4.0-1025.26", - "4.4.0-1027.30", - "4.4.0-1028.31", - "4.4.0-1029.32", - "4.4.0-1031.34", - "4.4.0-1032.35", - "4.4.0-1034.37", - "4.4.0-1036.39", - "4.4.0-1037.40", - "4.4.0-1038.41", - "4.4.0-1039.42", - "4.4.0-1040.43", - "4.4.0-1042.45", - "4.4.0-1044.47", - "4.4.0-1045.48", - "4.4.0-1046.50", - "4.4.0-1048.52", - "4.4.0-1050.54", - "4.4.0-1052.56", - "4.4.0-1054.58", - "4.4.0-1055.59", - "4.4.0-1056.60", - "4.4.0-1058.62", - "4.4.0-1059.63", - "4.4.0-1060.64", - "4.4.0-1061.65", - "4.4.0-1062.66", - "4.4.0-1064.68", - "4.4.0-1065.69", - "4.4.0-1066.70", - "4.4.0-1067.71", - "4.4.0-1073.77", - "4.4.0-1074.78", - "4.4.0-1075.79", - "4.4.0-1076.80", - "4.4.0-1077.81", - "4.4.0-1078.82", - "4.4.0-1081.85", - "4.4.0-1082.86", - "4.4.0-1083.87", - "4.4.0-1085.89", - "4.4.0-1086.90", - "4.4.0-1087.91", - "4.4.0-1088.92", - "4.4.0-1090.94", - "4.4.0-1091.95", - "4.4.0-1092.96", - "4.4.0-1093.97", - "4.4.0-1094.99", - "4.4.0-1095.100", - "4.4.0-1096.101", - "4.4.0-1097.102", - "4.4.0-1098.103", - "4.4.0-1099.104", - "4.4.0-1101.106", - "4.4.0-1102.107", - "4.4.0-1103.108", - "4.4.0-1104.109", - "4.4.0-1107.113", - "4.4.0-1109.115", - "4.4.0-1110.116", - "4.4.0-1111.117", - "4.4.0-1112.118", - "4.4.0-1113.119", - "4.4.0-1114.120", - "4.4.0-1115.121", - "4.4.0-1116.122", - "4.4.0-1117.123", - "4.4.0-1118.124", - "4.4.0-1119.125", - "4.4.0-1120.126", - "4.4.0-1121.127", - "4.4.0-1122.128", - "4.4.0-1123.129", - "4.4.0-1124.130", - "4.4.0-1125.131", - "4.4.0-1127.133", - "4.4.0-1128.134", - "4.4.0-1129.135", - "4.4.0-1130.136", - "4.4.0-1131.137", - "4.4.0-1133.139", - "4.4.0-1134.140", - "4.4.0-1135.141", - "4.4.0-1136.142", - "4.4.0-1137.143", - "4.4.0-1138.144", - "4.4.0-1139.145", - "4.4.0-1140.146", - "4.4.0-1141.147", - "4.4.0-1142.148", - "4.4.0-1143.149", - "4.4.0-1144.150", - "4.4.0-1145.151", - "4.4.0-1146.152", - "4.4.0-1147.153", - "4.4.0-1148.154", - "4.4.0-1149.155", - "4.4.0-1150.156", - "4.4.0-1151.157" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.4.0-1151", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-aws-headers-4.4.0-1151", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-aws-tools-4.4.0-1151", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-headers-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-image-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-modules-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - }, - { - "binary_name": "linux-tools-4.4.0-1151-aws", - "binary_version": "4.4.0-1151.157" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1195.210~14.04.1?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1023.24~14.04.1", - "4.15.0-1030.31~14.04.1", - "4.15.0-1031.32~14.04.1", - "4.15.0-1032.33~14.04.2", - "4.15.0-1035.36~14.04.2", - "4.15.0-1036.38~14.04.2", - "4.15.0-1037.39~14.04.2", - "4.15.0-1039.41~14.04.2", - "4.15.0-1040.44~14.04.1", - "4.15.0-1041.45~14.04.1", - "4.15.0-1042.46~14.04.1", - "4.15.0-1045.49~14.04.1", - "4.15.0-1046.50~14.04.1", - "4.15.0-1047.51~14.04.1", - "4.15.0-1049.54~14.04.1", - "4.15.0-1050.55~14.04.1", - "4.15.0-1051.56~14.04.1", - "4.15.0-1052.57~14.04.1", - "4.15.0-1055.60~14.04.1", - "4.15.0-1056.61~14.04.1", - "4.15.0-1057.62~14.04.1", - "4.15.0-1059.64~14.04.1", - "4.15.0-1060.65~14.04.1", - "4.15.0-1061.66~14.04.1", - "4.15.0-1063.68~14.04.1", - "4.15.0-1064.69~14.04.1", - "4.15.0-1066.71~14.04.1", - "4.15.0-1067.72~14.04.1", - "4.15.0-1069.74~14.04.1", - "4.15.0-1071.76~14.04.1", - "4.15.0-1074.79~14.04.1", - "4.15.0-1077.82~14.04.1", - "4.15.0-1082.92~14.04.1", - "4.15.0-1083.93~14.04.1", - "4.15.0-1089.99~14.04.1", - "4.15.0-1091.101~14.04.1", - "4.15.0-1092.102~14.04.1", - "4.15.0-1093.103~14.04.1", - "4.15.0-1095.105~14.04.1", - "4.15.0-1096.106~14.04.1", - "4.15.0-1098.109~14.04.1", - "4.15.0-1100.111~14.04.1", - "4.15.0-1102.113~14.04.1", - "4.15.0-1103.114~14.04.1", - "4.15.0-1106.118~14.04.1", - "4.15.0-1108.120~14.04.1", - "4.15.0-1109.121~14.04.1", - "4.15.0-1110.122~14.04.1", - "4.15.0-1111.123~14.04.1", - "4.15.0-1112.124~14.04.1", - "4.15.0-1113.126~14.04.1", - "4.15.0-1114.127~14.04.1", - "4.15.0-1115.128~14.04.1", - "4.15.0-1118.131~14.04.1", - "4.15.0-1121.134~14.04.1", - "4.15.0-1122.135~14.04.1", - "4.15.0-1123.136~14.04.1", - "4.15.0-1124.137~14.04.1", - "4.15.0-1125.138~14.04.1", - "4.15.0-1126.139~14.04.1", - "4.15.0-1127.140~14.04.1", - "4.15.0-1129.142~14.04.1", - "4.15.0-1130.143~14.04.1", - "4.15.0-1131.144~14.04.1", - "4.15.0-1133.146~14.04.1", - "4.15.0-1134.147~14.04.1", - "4.15.0-1136.149~14.04.1", - "4.15.0-1137.150~14.04.1", - "4.15.0-1138.151~14.04.1", - "4.15.0-1139.152~14.04.1", - "4.15.0-1142.156~14.04.1", - "4.15.0-1145.160~14.04.1", - "4.15.0-1146.161~14.04.1", - "4.15.0-1149.164~14.04.1", - "4.15.0-1150.165~14.04.1", - "4.15.0-1151.166~14.04.1", - "4.15.0-1153.168~14.04.1", - "4.15.0-1157.172~14.04.2", - "4.15.0-1158.173~14.04.1", - "4.15.0-1159.174~14.04.1", - "4.15.0-1162.177~14.04.1", - "4.15.0-1163.178~14.04.1", - "4.15.0-1164.179~14.04.1", - "4.15.0-1165.180~14.04.1", - "4.15.0-1166.181~14.04.1", - "4.15.0-1167.182~14.04.1", - "4.15.0-1168.183~14.04.1", - "4.15.0-1169.184~14.04.1", - "4.15.0-1170.185~14.04.1", - "4.15.0-1171.186~14.04.1", - "4.15.0-1172.187~14.04.1", - "4.15.0-1173.188~14.04.1", - "4.15.0-1174.189~14.04.1", - "4.15.0-1175.190~14.04.1", - "4.15.0-1176.191~14.04.1", - "4.15.0-1177.192~14.04.1", - "4.15.0-1178.193~14.04.1", - "4.15.0-1179.194~14.04.1", - "4.15.0-1180.195~14.04.1", - "4.15.0-1181.196~14.04.1", - "4.15.0-1182.197~14.04.1", - "4.15.0-1183.198~14.04.1", - "4.15.0-1184.199~14.04.1", - "4.15.0-1185.200~14.04.1", - "4.15.0-1186.201~14.04.1", - "4.15.0-1187.202~14.04.1", - "4.15.0-1188.203~14.04.1", - "4.15.0-1189.204~14.04.1", - "4.15.0-1190.205~14.04.1", - "4.15.0-1191.206~14.04.1", - "4.15.0-1192.207~14.04.1", - "4.15.0-1193.208~14.04.1", - "4.15.0-1194.209~14.04.1", - "4.15.0-1195.210~14.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-azure-headers-4.15.0-1195", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-azure-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~14.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:14.04:LTS", - "name": "linux-lts-xenial", - "purl": "pkg:deb/ubuntu/linux-lts-xenial@4.4.0-277.311~14.04.1?arch=source&distro=esm-infra-legacy/trusty" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-13.29~14.04.1", - "4.4.0-14.30~14.04.2", - "4.4.0-15.31~14.04.1", - "4.4.0-18.34~14.04.1", - "4.4.0-21.37~14.04.1", - "4.4.0-22.39~14.04.1", - "4.4.0-22.40~14.04.1", - "4.4.0-24.43~14.04.1", - "4.4.0-28.47~14.04.1", - "4.4.0-31.50~14.04.1", - "4.4.0-34.53~14.04.1", - "4.4.0-36.55~14.04.1", - "4.4.0-38.57~14.04.1", - "4.4.0-42.62~14.04.1", - "4.4.0-45.66~14.04.1", - "4.4.0-47.68~14.04.1", - "4.4.0-51.72~14.04.1", - "4.4.0-53.74~14.04.1", - "4.4.0-57.78~14.04.1", - "4.4.0-59.80~14.04.1", - "4.4.0-62.83~14.04.1", - "4.4.0-63.84~14.04.2", - "4.4.0-64.85~14.04.1", - "4.4.0-66.87~14.04.1", - "4.4.0-67.88~14.04.1", - "4.4.0-70.91~14.04.1", - "4.4.0-71.92~14.04.1", - "4.4.0-72.93~14.04.1", - "4.4.0-75.96~14.04.1", - "4.4.0-78.99~14.04.2", - "4.4.0-79.100~14.04.1", - "4.4.0-81.104~14.04.1", - "4.4.0-83.106~14.04.1", - "4.4.0-87.110~14.04.1", - "4.4.0-89.112~14.04.1", - "4.4.0-91.114~14.04.1", - "4.4.0-92.115~14.04.1", - "4.4.0-93.116~14.04.1", - "4.4.0-96.119~14.04.1", - "4.4.0-97.120~14.04.1", - "4.4.0-98.121~14.04.1", - "4.4.0-101.124~14.04.1", - "4.4.0-103.126~14.04.1", - "4.4.0-104.127~14.04.1", - "4.4.0-108.131~14.04.1", - "4.4.0-109.132~14.04.1", - "4.4.0-111.134~14.04.1", - "4.4.0-112.135~14.04.1", - "4.4.0-116.140~14.04.1", - "4.4.0-119.143~14.04.1", - "4.4.0-121.145~14.04.1", - "4.4.0-124.148~14.04.1", - "4.4.0-127.153~14.04.1", - "4.4.0-128.154~14.04.1", - "4.4.0-130.156~14.04.1", - "4.4.0-131.157~14.04.1", - "4.4.0-133.159~14.04.1", - "4.4.0-134.160~14.04.1", - "4.4.0-135.161~14.04.1", - "4.4.0-137.163~14.04.1", - "4.4.0-138.164~14.04.1", - "4.4.0-139.165~14.04.1", - "4.4.0-140.166~14.04.1", - "4.4.0-141.167~14.04.1", - "4.4.0-142.168~14.04.1", - "4.4.0-143.169~14.04.2", - "4.4.0-144.170~14.04.1", - "4.4.0-146.172~14.04.1", - "4.4.0-148.174~14.04.1", - "4.4.0-150.176~14.04.1", - "4.4.0-151.178~14.04.1", - "4.4.0-154.181~14.04.1", - "4.4.0-157.185~14.04.1", - "4.4.0-159.187~14.04.1", - "4.4.0-161.189~14.04.1", - "4.4.0-164.192~14.04.1", - "4.4.0-165.193~14.04.1", - "4.4.0-166.195~14.04.1", - "4.4.0-168.197~14.04.1", - "4.4.0-169.198~14.04.1", - "4.4.0-170.199~14.04.1", - "4.4.0-171.200~14.04.1", - "4.4.0-173.203~14.04.1", - "4.4.0-174.204~14.04.1", - "4.4.0-176.206~14.04.1", - "4.4.0-177.207~14.04.1", - "4.4.0-178.208~14.04.1", - "4.4.0-179.209~14.04.1", - "4.4.0-184.214~14.04.1", - "4.4.0-185.215~14.04.1", - "4.4.0-186.216~14.04.1", - "4.4.0-187.217~14.04.1", - "4.4.0-189.219~14.04.1", - "4.4.0-190.220~14.04.1", - "4.4.0-193.224~14.04.1", - "4.4.0-194.226~14.04.1", - "4.4.0-197.229~14.04.1", - "4.4.0-198.230~14.04.1", - "4.4.0-200.232~14.04.1", - "4.4.0-201.233~14.04.1", - "4.4.0-203.235~14.04.1", - "4.4.0-204.236~14.04.1", - "4.4.0-206.238~14.04.1", - "4.4.0-208.240~14.04.1", - "4.4.0-209.241~14.04.1", - "4.4.0-210.242~14.04.1", - "4.4.0-211.243~14.04.1", - "4.4.0-212.244~14.04.1", - "4.4.0-213.245~14.04.1", - "4.4.0-214.246~14.04.1", - "4.4.0-215.247~14.04.1", - "4.4.0-218.251~14.04.1", - "4.4.0-219.252~14.04.1", - "4.4.0-221.254~14.04.1", - "4.4.0-222.255~14.04.1", - "4.4.0-223.256~14.04.1", - "4.4.0-224.257~14.04.1", - "4.4.0-227.261~14.04.1", - "4.4.0-229.263~14.04.1", - "4.4.0-230.264~14.04.1", - "4.4.0-231.265~14.04.1", - "4.4.0-233.267~14.04.1", - "4.4.0-234.268~14.04.1", - "4.4.0-235.269~14.04.1", - "4.4.0-236.270~14.04.1", - "4.4.0-237.271~14.04.1", - "4.4.0-239.273~14.04.1", - "4.4.0-240.274~14.04.1", - "4.4.0-241.275~14.04.1", - "4.4.0-242.276~14.04.1", - "4.4.0-243.277~14.04.1", - "4.4.0-244.278~14.04.1", - "4.4.0-245.279~14.04.1", - "4.4.0-246.280~14.04.1", - "4.4.0-248.282~14.04.1", - "4.4.0-250.284~14.04.1", - "4.4.0-251.285~14.04.1", - "4.4.0-252.286~14.04.1", - "4.4.0-253.287~14.04.1", - "4.4.0-254.288~14.04.1", - "4.4.0-256.290~14.04.1", - "4.4.0-257.291~14.04.1", - "4.4.0-258.292~14.04.2", - "4.4.0-259.293~14.04.1", - "4.4.0-260.294~14.04.1", - "4.4.0-261.295~14.04.1", - "4.4.0-262.296~14.04.1", - "4.4.0-263.297~14.04.1", - "4.4.0-264.298~14.04.1", - "4.4.0-266.300~14.04.1", - "4.4.0-267.301~14.04.1", - "4.4.0-268.302~14.04.1", - "4.4.0-269.303~14.04.1", - "4.4.0-270.304~14.04.1", - "4.4.0-271.305~14.04.1", - "4.4.0-272.306~14.04.1", - "4.4.0-273.307~14.04.1", - "4.4.0-274.308~14.04.1", - "4.4.0-276.310~14.04.1", - "4.4.0-277.311~14.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "crypto-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "fat-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "fb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "firewire-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "floppy-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "fs-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "input-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "ipmi-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "irda-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "kernel-image-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-buildinfo-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-277", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-headers-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-image-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-cloud-tools-4.4.0-277", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-tools-4.4.0-277", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-lts-xenial-udebs-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-modules-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-modules-extra-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-277-generic", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "linux-tools-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "md-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "message-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "mouse-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "multipath-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "nfs-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "nic-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "nic-shared-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "nic-usb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "parport-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "pata-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "pcmcia-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "plip-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "ppp-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "sata-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "scsi-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "serial-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "speakup-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "storage-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "usb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "virtio-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - }, - { - "binary_name": "vlan-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311~14.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@4.4.0-277.311?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.2.0-16.19", - "4.2.0-17.21", - "4.2.0-19.23", - "4.3.0-1.10", - "4.3.0-2.11", - "4.3.0-5.16", - "4.3.0-6.17", - "4.3.0-7.18", - "4.4.0-2.16", - "4.4.0-4.19", - "4.4.0-6.21", - "4.4.0-7.22", - "4.4.0-8.23", - "4.4.0-9.24", - "4.4.0-10.25", - "4.4.0-11.26", - "4.4.0-12.28", - "4.4.0-13.29", - "4.4.0-14.30", - "4.4.0-15.31", - "4.4.0-16.32", - "4.4.0-17.33", - "4.4.0-18.34", - "4.4.0-21.37", - "4.4.0-22.39", - "4.4.0-22.40", - "4.4.0-24.43", - "4.4.0-28.47", - "4.4.0-31.50", - "4.4.0-34.53", - "4.4.0-36.55", - "4.4.0-38.57", - "4.4.0-42.62", - "4.4.0-43.63", - "4.4.0-45.66", - "4.4.0-47.68", - "4.4.0-51.72", - "4.4.0-53.74", - "4.4.0-57.78", - "4.4.0-59.80", - "4.4.0-62.83", - "4.4.0-63.84", - "4.4.0-64.85", - "4.4.0-65.86", - "4.4.0-66.87", - "4.4.0-67.88", - "4.4.0-70.91", - "4.4.0-71.92", - "4.4.0-72.93", - "4.4.0-75.96", - "4.4.0-77.98", - "4.4.0-78.99", - "4.4.0-79.100", - "4.4.0-81.104", - "4.4.0-83.106", - "4.4.0-87.110", - "4.4.0-89.112", - "4.4.0-91.114", - "4.4.0-92.115", - "4.4.0-93.116", - "4.4.0-96.119", - "4.4.0-97.120", - "4.4.0-98.121", - "4.4.0-101.124", - "4.4.0-103.126", - "4.4.0-104.127", - "4.4.0-108.131", - "4.4.0-109.132", - "4.4.0-112.135", - "4.4.0-116.140", - "4.4.0-119.143", - "4.4.0-121.145", - "4.4.0-122.146", - "4.4.0-124.148", - "4.4.0-127.153", - "4.4.0-128.154", - "4.4.0-130.156", - "4.4.0-131.157", - "4.4.0-133.159", - "4.4.0-134.160", - "4.4.0-135.161", - "4.4.0-137.163", - "4.4.0-138.164", - "4.4.0-139.165", - "4.4.0-140.166", - "4.4.0-141.167", - "4.4.0-142.168", - "4.4.0-143.169", - "4.4.0-145.171", - "4.4.0-146.172", - "4.4.0-148.174", - "4.4.0-150.176", - "4.4.0-151.178", - "4.4.0-154.181", - "4.4.0-157.185", - "4.4.0-159.187", - "4.4.0-161.189", - "4.4.0-164.192", - "4.4.0-165.193", - "4.4.0-166.195", - "4.4.0-168.197", - "4.4.0-169.198", - "4.4.0-170.199", - "4.4.0-171.200", - "4.4.0-173.203", - "4.4.0-174.204", - "4.4.0-176.206", - "4.4.0-177.207", - "4.4.0-178.208", - "4.4.0-179.209", - "4.4.0-184.214", - "4.4.0-185.215", - "4.4.0-186.216", - "4.4.0-187.217", - "4.4.0-189.219", - "4.4.0-190.220", - "4.4.0-193.224", - "4.4.0-194.226", - "4.4.0-197.229", - "4.4.0-198.230", - "4.4.0-200.232", - "4.4.0-201.233", - "4.4.0-203.235", - "4.4.0-204.236", - "4.4.0-206.238", - "4.4.0-208.240", - "4.4.0-209.241", - "4.4.0-210.242", - "4.4.0-211.243", - "4.4.0-212.244", - "4.4.0-213.245", - "4.4.0-214.246", - "4.4.0-216.249", - "4.4.0-217.250", - "4.4.0-218.251", - "4.4.0-219.252", - "4.4.0-221.254", - "4.4.0-222.255", - "4.4.0-223.256", - "4.4.0-224.257", - "4.4.0-227.261", - "4.4.0-229.263", - "4.4.0-230.264", - "4.4.0-231.265", - "4.4.0-233.267", - "4.4.0-234.268", - "4.4.0-235.269", - "4.4.0-236.270", - "4.4.0-237.271", - "4.4.0-239.273", - "4.4.0-240.274", - "4.4.0-241.275", - "4.4.0-242.276", - "4.4.0-243.277", - "4.4.0-244.278", - "4.4.0-245.279", - "4.4.0-246.280", - "4.4.0-248.282", - "4.4.0-250.284", - "4.4.0-251.285", - "4.4.0-252.286", - "4.4.0-253.287", - "4.4.0-254.288", - "4.4.0-256.290", - "4.4.0-257.291", - "4.4.0-258.292", - "4.4.0-259.293", - "4.4.0-260.294", - "4.4.0-261.295", - "4.4.0-262.296", - "4.4.0-263.297", - "4.4.0-264.298", - "4.4.0-266.300", - "4.4.0-267.301", - "4.4.0-268.302", - "4.4.0-269.303", - "4.4.0-270.304", - "4.4.0-271.305", - "4.4.0-272.306", - "4.4.0-273.307", - "4.4.0-274.308", - "4.4.0-276.310", - "4.4.0-277.311" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "crypto-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "dasd-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "fat-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "fb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "firewire-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "floppy-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "fs-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "input-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "ipmi-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "irda-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "kernel-image-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-buildinfo-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-buildinfo-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-277", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-headers-4.4.0-277", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-headers-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-headers-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-image-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-modules-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-modules-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-modules-extra-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-source-4.4.0", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-tools-4.4.0-277", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-tools-4.4.0-277-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-tools-4.4.0-277-lowlatency", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "md-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "message-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "mouse-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "multipath-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "nfs-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "nic-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "nic-shared-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "nic-usb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "parport-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "pata-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "pcmcia-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "plip-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "ppp-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "sata-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "scsi-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "serial-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "speakup-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "storage-core-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "usb-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "virtio-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - }, - { - "binary_name": "vlan-modules-4.4.0-277-generic-di", - "binary_version": "4.4.0-277.311" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.4.0-1189.204?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1001.10", - "4.4.0-1003.12", - "4.4.0-1004.13", - "4.4.0-1007.16", - "4.4.0-1009.18", - "4.4.0-1011.20", - "4.4.0-1012.21", - "4.4.0-1013.22", - "4.4.0-1016.25", - "4.4.0-1017.26", - "4.4.0-1018.27", - "4.4.0-1020.29", - "4.4.0-1022.31", - "4.4.0-1026.35", - "4.4.0-1028.37", - "4.4.0-1030.39", - "4.4.0-1031.40", - "4.4.0-1032.41", - "4.4.0-1035.44", - "4.4.0-1037.46", - "4.4.0-1038.47", - "4.4.0-1039.48", - "4.4.0-1041.50", - "4.4.0-1043.52", - "4.4.0-1044.53", - "4.4.0-1047.56", - "4.4.0-1048.57", - "4.4.0-1049.58", - "4.4.0-1050.59", - "4.4.0-1052.61", - "4.4.0-1054.63", - "4.4.0-1055.64", - "4.4.0-1057.66", - "4.4.0-1060.69", - "4.4.0-1061.70", - "4.4.0-1062.71", - "4.4.0-1063.72", - "4.4.0-1065.75", - "4.4.0-1066.76", - "4.4.0-1067.77", - "4.4.0-1069.79", - "4.4.0-1070.80", - "4.4.0-1072.82", - "4.4.0-1073.83", - "4.4.0-1074.84", - "4.4.0-1075.85", - "4.4.0-1077.87", - "4.4.0-1079.89", - "4.4.0-1081.91", - "4.4.0-1083.93", - "4.4.0-1084.94", - "4.4.0-1085.96", - "4.4.0-1087.98", - "4.4.0-1088.99", - "4.4.0-1090.101", - "4.4.0-1092.103", - "4.4.0-1094.105", - "4.4.0-1095.106", - "4.4.0-1096.107", - "4.4.0-1098.109", - "4.4.0-1099.110", - "4.4.0-1100.111", - "4.4.0-1101.112", - "4.4.0-1102.113", - "4.4.0-1104.115", - "4.4.0-1105.116", - "4.4.0-1106.117", - "4.4.0-1107.118", - "4.4.0-1109.120", - "4.4.0-1110.121", - "4.4.0-1111.123", - "4.4.0-1112.124", - "4.4.0-1113.126", - "4.4.0-1114.127", - "4.4.0-1117.131", - "4.4.0-1118.132", - "4.4.0-1119.133", - "4.4.0-1121.135", - "4.4.0-1122.136", - "4.4.0-1123.137", - "4.4.0-1124.138", - "4.4.0-1126.140", - "4.4.0-1127.141", - "4.4.0-1128.142", - "4.4.0-1129.143", - "4.4.0-1130.144", - "4.4.0-1131.145", - "4.4.0-1132.146", - "4.4.0-1133.147", - "4.4.0-1134.148", - "4.4.0-1135.149", - "4.4.0-1137.151", - "4.4.0-1138.152", - "4.4.0-1139.153", - "4.4.0-1140.154", - "4.4.0-1143.158", - "4.4.0-1145.160", - "4.4.0-1146.161", - "4.4.0-1147.162", - "4.4.0-1148.163", - "4.4.0-1150.165", - "4.4.0-1151.166", - "4.4.0-1152.167", - "4.4.0-1153.168", - "4.4.0-1154.169", - "4.4.0-1155.170", - "4.4.0-1156.171", - "4.4.0-1157.172", - "4.4.0-1158.173", - "4.4.0-1159.174", - "4.4.0-1160.175", - "4.4.0-1161.176", - "4.4.0-1162.177", - "4.4.0-1163.178", - "4.4.0-1164.179", - "4.4.0-1165.180", - "4.4.0-1166.181", - "4.4.0-1167.182", - "4.4.0-1168.183", - "4.4.0-1169.184", - "4.4.0-1171.186", - "4.4.0-1172.187", - "4.4.0-1173.188", - "4.4.0-1174.189", - "4.4.0-1175.190", - "4.4.0-1176.191", - "4.4.0-1177.192", - "4.4.0-1178.193", - "4.4.0-1179.194", - "4.4.0-1180.195", - "4.4.0-1181.196", - "4.4.0-1182.197", - "4.4.0-1183.198", - "4.4.0-1184.199", - "4.4.0-1185.200", - "4.4.0-1186.201", - "4.4.0-1187.202", - "4.4.0-1188.203", - "4.4.0-1189.204" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.4.0-1189", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-aws-headers-4.4.0-1189", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-aws-tools-4.4.0-1189", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-headers-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-image-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-modules-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-modules-extra-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - }, - { - "binary_name": "linux-tools-4.4.0-1189-aws", - "binary_version": "4.4.0-1189.204" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-aws-hwe", - "purl": "pkg:deb/ubuntu/linux-aws-hwe@4.15.0-1188.201~16.04.1?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1030.31~16.04.1", - "4.15.0-1031.33~16.04.1", - "4.15.0-1032.34~16.04.1", - "4.15.0-1033.35~16.04.1", - "4.15.0-1035.37~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1039.41~16.04.1", - "4.15.0-1040.42~16.04.1", - "4.15.0-1041.43~16.04.1", - "4.15.0-1043.45~16.04.1", - "4.15.0-1044.46~16.04.1", - "4.15.0-1045.47~16.04.1", - "4.15.0-1047.49~16.04.1", - "4.15.0-1048.50~16.04.1", - "4.15.0-1050.52~16.04.1", - "4.15.0-1051.53~16.04.1", - "4.15.0-1052.54~16.04.1", - "4.15.0-1054.56~16.04.1", - "4.15.0-1056.58~16.04.1", - "4.15.0-1057.59~16.04.1", - "4.15.0-1058.60~16.04.1", - "4.15.0-1060.62~16.04.1", - "4.15.0-1063.67~16.04.1", - "4.15.0-1065.69~16.04.1", - "4.15.0-1066.70~16.04.1", - "4.15.0-1067.71~16.04.1", - "4.15.0-1073.77~16.04.1", - "4.15.0-1074.78~16.04.1", - "4.15.0-1079.83~16.04.1", - "4.15.0-1080.84~16.04.1", - "4.15.0-1082.86~16.04.1", - "4.15.0-1083.87~16.04.1", - "4.15.0-1085.90~16.04.1", - "4.15.0-1088.93~16.04.1", - "4.15.0-1090.95~16.04.1", - "4.15.0-1091.96~16.04.1", - "4.15.0-1093.99~16.04.1", - "4.15.0-1094.101~16.04.1", - "4.15.0-1095.102~16.04.1", - "4.15.0-1096.103~16.04.1", - "4.15.0-1097.104~16.04.1", - "4.15.0-1098.105~16.04.1", - "4.15.0-1099.106~16.04.1", - "4.15.0-1102.109~16.04.1", - "4.15.0-1103.110~16.04.1", - "4.15.0-1106.113~16.04.1", - "4.15.0-1109.116~16.04.1", - "4.15.0-1110.117~16.04.1", - "4.15.0-1111.118~16.04.1", - "4.15.0-1112.119~16.04.1", - "4.15.0-1113.120~16.04.1", - "4.15.0-1115.122~16.04.1", - "4.15.0-1116.123~16.04.1", - "4.15.0-1118.125~16.04.1", - "4.15.0-1119.126~16.04.2", - "4.15.0-1120.128~16.04.1", - "4.15.0-1123.132~16.04.1", - "4.15.0-1124.133~16.04.1", - "4.15.0-1126.135~16.04.2", - "4.15.0-1127.136~16.04.1", - "4.15.0-1128.137~16.04.1", - "4.15.0-1130.139~16.04.1", - "4.15.0-1133.143~16.04.1", - "4.15.0-1136.147~16.04.1", - "4.15.0-1137.148~16.04.1", - "4.15.0-1139.150~16.04.1", - "4.15.0-1140.151~16.04.1", - "4.15.0-1141.152~16.04.1", - "4.15.0-1142.154~16.04.1", - "4.15.0-1143.155~16.04.1", - "4.15.0-1146.158~16.04.2", - "4.15.0-1147.159~16.04.1", - "4.15.0-1148.160~16.04.1", - "4.15.0-1151.164~16.04.1", - "4.15.0-1153.166~16.04.1", - "4.15.0-1154.167~16.04.1", - "4.15.0-1155.168~16.04.1", - "4.15.0-1156.169~16.04.1", - "4.15.0-1157.170~16.04.1", - "4.15.0-1158.171~16.04.1", - "4.15.0-1159.172~16.04.1", - "4.15.0-1160.173~16.04.1", - "4.15.0-1161.174~16.04.1", - "4.15.0-1162.175~16.04.1", - "4.15.0-1163.176~16.04.1", - "4.15.0-1164.177~16.04.1", - "4.15.0-1165.178~16.04.1", - "4.15.0-1166.179~16.04.1", - "4.15.0-1167.180~16.04.1", - "4.15.0-1168.181~16.04.1", - "4.15.0-1169.182~16.04.1", - "4.15.0-1170.183~16.04.1", - "4.15.0-1172.185~16.04.1", - "4.15.0-1173.186~16.04.1", - "4.15.0-1174.187~16.04.1", - "4.15.0-1175.188~16.04.1", - "4.15.0-1176.189~16.04.1", - "4.15.0-1177.190~16.04.1", - "4.15.0-1178.191~16.04.1", - "4.15.0-1179.192~16.04.1", - "4.15.0-1180.193~16.04.1", - "4.15.0-1181.194~16.04.1", - "4.15.0-1182.195~16.04.1", - "4.15.0-1183.196~16.04.1", - "4.15.0-1184.197~16.04.1", - "4.15.0-1185.198~16.04.1", - "4.15.0-1186.199~16.04.1", - "4.15.0-1187.200~16.04.1", - "4.15.0-1188.201~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-headers-4.15.0-1188", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-aws-hwe-cloud-tools-4.15.0-1188", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-aws-hwe-tools-4.15.0-1188", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@4.15.0-1195.210~16.04.1?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.11.0-1009.9", - "4.11.0-1011.11", - "4.11.0-1013.13", - "4.11.0-1014.14", - "4.11.0-1015.15", - "4.11.0-1016.16", - "4.13.0-1005.7", - "4.13.0-1006.8", - "4.13.0-1007.9", - "4.13.0-1009.12", - "4.13.0-1011.14", - "4.13.0-1012.15", - "4.13.0-1014.17", - "4.13.0-1016.19", - "4.13.0-1018.21", - "4.15.0-1013.13~16.04.2", - "4.15.0-1014.14~16.04.1", - "4.15.0-1018.18~16.04.1", - "4.15.0-1019.19~16.04.1", - "4.15.0-1021.21~16.04.1", - "4.15.0-1022.22~16.04.1", - "4.15.0-1023.24~16.04.1", - "4.15.0-1025.26~16.04.1", - "4.15.0-1028.29~16.04.1", - "4.15.0-1030.31~16.04.1", - "4.15.0-1031.32~16.04.1", - "4.15.0-1032.33~16.04.1", - "4.15.0-1035.36~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1037.39~16.04.1", - "4.15.0-1039.43", - "4.15.0-1040.44", - "4.15.0-1041.45", - "4.15.0-1042.46", - "4.15.0-1045.49", - "4.15.0-1046.50", - "4.15.0-1047.51", - "4.15.0-1049.54", - "4.15.0-1050.55", - "4.15.0-1051.56", - "4.15.0-1052.57", - "4.15.0-1055.60", - "4.15.0-1056.61", - "4.15.0-1057.62", - "4.15.0-1059.64", - "4.15.0-1060.65", - "4.15.0-1061.66", - "4.15.0-1063.68", - "4.15.0-1064.69", - "4.15.0-1066.71", - "4.15.0-1067.72", - "4.15.0-1069.74", - "4.15.0-1071.76", - "4.15.0-1075.80", - "4.15.0-1077.82", - "4.15.0-1082.92~16.04.1", - "4.15.0-1083.93~16.04.1", - "4.15.0-1089.99~16.04.1", - "4.15.0-1091.101~16.04.1", - "4.15.0-1092.102~16.04.1", - "4.15.0-1093.103~16.04.1", - "4.15.0-1095.105~16.04.1", - "4.15.0-1096.106~16.04.1", - "4.15.0-1098.109~16.04.1", - "4.15.0-1100.111~16.04.1", - "4.15.0-1102.113~16.04.1", - "4.15.0-1103.114~16.04.1", - "4.15.0-1106.118~16.04.1", - "4.15.0-1108.120~16.04.1", - "4.15.0-1109.121~16.04.1", - "4.15.0-1110.122~16.04.1", - "4.15.0-1111.123~16.04.1", - "4.15.0-1112.124~16.04.1", - "4.15.0-1113.126~16.04.1", - "4.15.0-1114.127~16.04.1", - "4.15.0-1115.128~16.04.1", - "4.15.0-1118.131~16.04.1", - "4.15.0-1121.134~16.04.1", - "4.15.0-1122.135~16.04.1", - "4.15.0-1123.136~16.04.1", - "4.15.0-1124.137~16.04.1", - "4.15.0-1125.138~16.04.1", - "4.15.0-1126.139~16.04.1", - "4.15.0-1127.140~16.04.1", - "4.15.0-1129.142~16.04.1", - "4.15.0-1130.143~16.04.1", - "4.15.0-1131.144~16.04.1", - "4.15.0-1133.146~16.04.1", - "4.15.0-1134.147~16.04.1", - "4.15.0-1136.149~16.04.1", - "4.15.0-1137.150~16.04.1", - "4.15.0-1138.151~16.04.1", - "4.15.0-1139.152~16.04.1", - "4.15.0-1142.156~16.04.1", - "4.15.0-1145.160~16.04.1", - "4.15.0-1146.161~16.04.1", - "4.15.0-1149.164~16.04.1", - "4.15.0-1150.165~16.04.1", - "4.15.0-1151.166~16.04.1", - "4.15.0-1153.168~16.04.1", - "4.15.0-1159.174~16.04.1", - "4.15.0-1162.177~16.04.1", - "4.15.0-1163.178~16.04.1", - "4.15.0-1164.179~16.04.1", - "4.15.0-1165.180~16.04.1", - "4.15.0-1166.181~16.04.1", - "4.15.0-1167.182~16.04.1", - "4.15.0-1168.183~16.04.1", - "4.15.0-1169.184~16.04.1", - "4.15.0-1170.185~16.04.1", - "4.15.0-1171.186~16.04.1", - "4.15.0-1172.187~16.04.1", - "4.15.0-1173.188~16.04.1", - "4.15.0-1174.189~16.04.1", - "4.15.0-1175.190~16.04.1", - "4.15.0-1176.191~16.04.1", - "4.15.0-1177.192~16.04.1", - "4.15.0-1178.193~16.04.1", - "4.15.0-1179.194~16.04.1", - "4.15.0-1180.195~16.04.1", - "4.15.0-1181.196~16.04.1", - "4.15.0-1182.197~16.04.1", - "4.15.0-1183.198~16.04.1", - "4.15.0-1184.199~16.04.1", - "4.15.0-1185.200~16.04.1", - "4.15.0-1186.201~16.04.1", - "4.15.0-1187.202~16.04.1", - "4.15.0-1188.203~16.04.1", - "4.15.0-1189.204~16.04.1", - "4.15.0-1190.205~16.04.1", - "4.15.0-1191.206~16.04.1", - "4.15.0-1192.207~16.04.1", - "4.15.0-1193.208~16.04.1", - "4.15.0-1194.209~16.04.1", - "4.15.0-1195.210~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-azure-headers-4.15.0-1195", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-azure-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@4.15.0-1180.197~16.04.1?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.10.0-1004.4", - "4.10.0-1006.6", - "4.10.0-1007.7", - "4.10.0-1008.8", - "4.10.0-1009.9", - "4.13.0-1002.5", - "4.13.0-1006.9", - "4.13.0-1007.10", - "4.13.0-1008.11", - "4.13.0-1011.15", - "4.13.0-1012.16", - "4.13.0-1013.17", - "4.13.0-1015.19", - "4.13.0-1017.21", - "4.13.0-1019.23", - "4.15.0-1014.14~16.04.1", - "4.15.0-1015.15~16.04.1", - "4.15.0-1017.18~16.04.1", - "4.15.0-1018.19~16.04.2", - "4.15.0-1019.20~16.04.1", - "4.15.0-1021.22~16.04.1", - "4.15.0-1023.24~16.04.1", - "4.15.0-1024.25~16.04.2", - "4.15.0-1025.26~16.04.1", - "4.15.0-1026.27~16.04.1", - "4.15.0-1027.28~16.04.1", - "4.15.0-1028.29~16.04.1", - "4.15.0-1029.31~16.04.1", - "4.15.0-1030.32~16.04.1", - "4.15.0-1032.34~16.04.1", - "4.15.0-1033.35~16.04.1", - "4.15.0-1034.36~16.04.1", - "4.15.0-1036.38~16.04.1", - "4.15.0-1037.39~16.04.1", - "4.15.0-1040.42~16.04.1", - "4.15.0-1041.43", - "4.15.0-1042.44", - "4.15.0-1044.46", - "4.15.0-1046.49", - "4.15.0-1047.50", - "4.15.0-1049.52", - "4.15.0-1050.53", - "4.15.0-1052.56", - "4.15.0-1055.59", - "4.15.0-1058.62", - "4.15.0-1060.64", - "4.15.0-1061.65", - "4.15.0-1071.81~16.04.1", - "4.15.0-1077.87~16.04.1", - "4.15.0-1078.88~16.04.1", - "4.15.0-1080.90~16.04.1", - "4.15.0-1081.92~16.04.1", - "4.15.0-1083.94~16.04.1", - "4.15.0-1084.95~16.04.1", - "4.15.0-1086.98~16.04.1", - "4.15.0-1087.100~16.04.1", - "4.15.0-1088.101~16.04.1", - "4.15.0-1090.103~16.04.1", - "4.15.0-1091.104~16.04.1", - "4.15.0-1092.105~16.04.1", - "4.15.0-1093.106~16.04.1", - "4.15.0-1094.107~16.04.1", - "4.15.0-1095.108~16.04.1", - "4.15.0-1096.109~16.04.1", - "4.15.0-1097.110~16.04.1", - "4.15.0-1098.111~16.04.1", - "4.15.0-1099.112~16.04.1", - "4.15.0-1100.113~16.04.1", - "4.15.0-1103.116~16.04.1", - "4.15.0-1106.120~16.04.1", - "4.15.0-1107.121~16.04.1", - "4.15.0-1108.122~16.04.1", - "4.15.0-1109.123~16.04.1", - "4.15.0-1110.124~16.04.1", - "4.15.0-1111.125~16.04.1", - "4.15.0-1112.126~16.04.1", - "4.15.0-1114.128~16.04.1", - "4.15.0-1115.129~16.04.1", - "4.15.0-1116.130~16.04.1", - "4.15.0-1118.132~16.04.1", - "4.15.0-1119.133~16.04.1", - "4.15.0-1120.134~16.04.1", - "4.15.0-1121.135~16.04.1", - "4.15.0-1122.136~16.04.1", - "4.15.0-1124.138~16.04.1", - "4.15.0-1127.142~16.04.1", - "4.15.0-1130.146~16.04.1", - "4.15.0-1131.147~16.04.1", - "4.15.0-1134.150~16.04.2", - "4.15.0-1135.151~16.04.2", - "4.15.0-1136.152~16.04.1", - "4.15.0-1137.153~16.04.1", - "4.15.0-1138.154~16.04.1", - "4.15.0-1141.157~16.04.2", - "4.15.0-1142.158~16.04.1", - "4.15.0-1143.159~16.04.1", - "4.15.0-1146.162~16.04.1", - "4.15.0-1147.163~16.04.1", - "4.15.0-1148.164~16.04.1", - "4.15.0-1149.165~16.04.1", - "4.15.0-1150.166~16.04.1", - "4.15.0-1151.167~16.04.1", - "4.15.0-1152.168~16.04.1", - "4.15.0-1153.170~16.04.1", - "4.15.0-1154.171~16.04.1", - "4.15.0-1155.172~16.04.1", - "4.15.0-1156.173~16.04.1", - "4.15.0-1157.174~16.04.1", - "4.15.0-1158.175~16.04.1", - "4.15.0-1159.176~16.04.1", - "4.15.0-1160.177~16.04.1", - "4.15.0-1161.178~16.04.1", - "4.15.0-1162.179~16.04.1", - "4.15.0-1163.180~16.04.1", - "4.15.0-1164.181~16.04.1", - "4.15.0-1165.182~16.04.1", - "4.15.0-1166.183~16.04.1", - "4.15.0-1167.184~16.04.2", - "4.15.0-1168.185~16.04.1", - "4.15.0-1169.186~16.04.1", - "4.15.0-1170.187~16.04.1", - "4.15.0-1171.188~16.04.1", - "4.15.0-1172.189~16.04.1", - "4.15.0-1173.190~16.04.1", - "4.15.0-1174.191~16.04.1", - "4.15.0-1175.192~16.04.1", - "4.15.0-1176.193~16.04.1", - "4.15.0-1177.194~16.04.1", - "4.15.0-1178.195~16.04.1", - "4.15.0-1179.196~16.04.1", - "4.15.0-1180.197~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-gcp-headers-4.15.0-1180", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-gcp-tools-4.15.0-1180", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-hwe", - "purl": "pkg:deb/ubuntu/linux-hwe@4.15.0-246.258~16.04.1?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.8.0-36.36~16.04.1", - "4.8.0-39.42~16.04.1", - "4.8.0-41.44~16.04.1", - "4.8.0-42.45~16.04.1", - "4.8.0-44.47~16.04.1", - "4.8.0-45.48~16.04.1", - "4.8.0-46.49~16.04.1", - "4.8.0-49.52~16.04.1", - "4.8.0-51.54~16.04.1", - "4.8.0-52.55~16.04.1", - "4.8.0-53.56~16.04.1", - "4.8.0-54.57~16.04.1", - "4.8.0-56.61~16.04.1", - "4.8.0-58.63~16.04.1", - "4.10.0-27.30~16.04.2", - "4.10.0-28.32~16.04.2", - "4.10.0-30.34~16.04.1", - "4.10.0-32.36~16.04.1", - "4.10.0-33.37~16.04.1", - "4.10.0-35.39~16.04.1", - "4.10.0-37.41~16.04.1", - "4.10.0-38.42~16.04.1", - "4.10.0-40.44~16.04.1", - "4.10.0-42.46~16.04.1", - "4.13.0-26.29~16.04.2", - "4.13.0-31.34~16.04.1", - "4.13.0-32.35~16.04.1", - "4.13.0-36.40~16.04.1", - "4.13.0-37.42~16.04.1", - "4.13.0-38.43~16.04.1", - "4.13.0-39.44~16.04.1", - "4.13.0-41.46~16.04.1", - "4.13.0-43.48~16.04.1", - "4.13.0-45.50~16.04.1", - "4.15.0-24.26~16.04.1", - "4.15.0-29.31~16.04.1", - "4.15.0-30.32~16.04.1", - "4.15.0-32.35~16.04.1", - "4.15.0-33.36~16.04.1", - "4.15.0-34.37~16.04.1", - "4.15.0-36.39~16.04.1", - "4.15.0-38.41~16.04.1", - "4.15.0-39.42~16.04.1", - "4.15.0-42.45~16.04.1", - "4.15.0-43.46~16.04.1", - "4.15.0-45.48~16.04.1", - "4.15.0-46.49~16.04.1", - "4.15.0-47.50~16.04.1", - "4.15.0-48.51~16.04.1", - "4.15.0-50.54~16.04.1", - "4.15.0-51.55~16.04.1", - "4.15.0-52.56~16.04.1", - "4.15.0-54.58~16.04.1", - "4.15.0-55.60~16.04.2", - "4.15.0-58.64~16.04.1", - "4.15.0-60.67~16.04.1", - "4.15.0-62.69~16.04.1", - "4.15.0-64.73~16.04.1", - "4.15.0-65.74~16.04.1", - "4.15.0-66.75~16.04.1", - "4.15.0-69.78~16.04.1", - "4.15.0-70.79~16.04.1", - "4.15.0-72.81~16.04.1", - "4.15.0-74.83~16.04.1", - "4.15.0-76.86~16.04.1", - "4.15.0-88.88~16.04.1", - "4.15.0-91.92~16.04.1", - "4.15.0-96.97~16.04.1", - "4.15.0-99.100~16.04.1", - "4.15.0-101.102~16.04.1", - "4.15.0-106.107~16.04.1", - "4.15.0-107.108~16.04.1", - "4.15.0-112.113~16.04.1", - "4.15.0-115.116~16.04.1", - "4.15.0-117.118~16.04.1", - "4.15.0-118.119~16.04.1", - "4.15.0-120.122~16.04.1", - "4.15.0-122.124~16.04.1", - "4.15.0-123.126~16.04.1", - "4.15.0-126.129~16.04.1", - "4.15.0-128.131~16.04.1", - "4.15.0-129.132~16.04.1", - "4.15.0-132.136~16.04.1", - "4.15.0-133.137~16.04.1", - "4.15.0-136.140~16.04.1", - "4.15.0-137.141~16.04.1", - "4.15.0-139.143~16.04.1", - "4.15.0-140.144~16.04.1", - "4.15.0-142.146~16.04.1", - "4.15.0-143.147~16.04.3", - "4.15.0-144.148~16.04.1", - "4.15.0-147.151~16.04.1", - "4.15.0-151.157~16.04.1", - "4.15.0-153.160~16.04.1", - "4.15.0-154.161~16.04.1", - "4.15.0-156.163~16.04.1", - "4.15.0-158.166~16.04.1", - "4.15.0-159.167~16.04.1", - "4.15.0-161.169~16.04.1", - "4.15.0-162.170~16.04.1", - "4.15.0-163.171~16.04.1", - "4.15.0-166.174~16.04.1", - "4.15.0-167.175~16.04.1", - "4.15.0-169.177~16.04.1", - "4.15.0-171.180~16.04.1", - "4.15.0-173.182~16.04.1", - "4.15.0-175.184~16.04.1", - "4.15.0-176.185~16.04.1", - "4.15.0-177.186~16.04.1", - "4.15.0-180.189~16.04.1", - "4.15.0-184.194~16.04.1", - "4.15.0-187.198~16.04.1", - "4.15.0-188.199~16.04.1", - "4.15.0-189.200~16.04.1", - "4.15.0-191.202~16.04.1", - "4.15.0-192.203~16.04.1", - "4.15.0-193.204~16.04.1", - "4.15.0-194.205~16.04.1", - "4.15.0-196.207~16.04.1", - "4.15.0-197.208~16.04.1", - "4.15.0-200.211~16.04.2", - "4.15.0-201.212~16.04.1", - "4.15.0-202.213~16.04.1", - "4.15.0-206.217~16.04.1", - "4.15.0-208.219~16.04.1", - "4.15.0-209.220~16.04.1", - "4.15.0-210.221~16.04.1", - "4.15.0-211.222~16.04.1", - "4.15.0-212.223~16.04.1", - "4.15.0-213.224~16.04.1", - "4.15.0-214.225~16.04.1", - "4.15.0-216.227~16.04.1", - "4.15.0-218.229~16.04.1", - "4.15.0-219.230~16.04.1", - "4.15.0-220.231~16.04.1", - "4.15.0-221.232~16.04.1", - "4.15.0-222.233~16.04.1", - "4.15.0-223.235~16.04.1", - "4.15.0-224.236~16.04.1", - "4.15.0-225.237~16.04.1", - "4.15.0-226.238~16.04.1", - "4.15.0-227.239~16.04.1", - "4.15.0-228.240~16.04.1", - "4.15.0-229.241~16.04.1", - "4.15.0-230.242~16.04.1", - "4.15.0-231.243~16.04.1", - "4.15.0-232.244~16.04.1", - "4.15.0-233.245~16.04.1", - "4.15.0-234.246~16.04.1", - "4.15.0-235.247~16.04.1", - "4.15.0-236.248~16.04.1", - "4.15.0-237.249~16.04.1", - "4.15.0-238.250~16.04.1", - "4.15.0-239.251~16.04.1", - "4.15.0-240.252~16.04.1", - "4.15.0-241.253~16.04.1", - "4.15.0-242.254~16.04.1", - "4.15.0-243.255~16.04.1", - "4.15.0-245.257~16.04.1", - "4.15.0-246.258~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "dasd-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "fb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "firewire-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "floppy-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-buildinfo-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-246", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-hwe-cloud-tools-4.15.0-246", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-hwe-tools-4.15.0-246", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-hwe-udebs-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-246-generic", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "message-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "pata-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "pcmcia-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "serial-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "virtio-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:16.04:LTS", - "name": "linux-hwe-edge", - "purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source&distro=xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.8.0-28.30~16.04.1", - "4.8.0-30.32~16.04.1", - "4.8.0-32.34~16.04.1", - "4.8.0-34.36~16.04.1", - "4.10.0-14.16~16.04.1", - "4.10.0-19.21~16.04.1", - "4.10.0-20.22~16.04.1", - "4.10.0-21.23~16.04.1", - "4.10.0-22.24~16.04.1", - "4.10.0-24.28~16.04.1", - "4.10.0-26.30~16.04.1", - "4.11.0-13.19~16.04.1", - "4.11.0-14.20~16.04.1", - "4.13.0-16.19~16.04.3", - "4.13.0-17.20~16.04.1", - "4.13.0-19.22~16.04.1", - "4.13.0-21.24~16.04.1", - "4.13.0-25.29~16.04.2", - "4.15.0-13.14~16.04.1", - "4.15.0-15.16~16.04.1", - "4.15.0-20.21~16.04.1", - "4.15.0-22.24~16.04.1", - "4.15.0-23.25~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "block-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "crypto-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "dasd-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fat-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "firewire-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "floppy-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "input-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "irda-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "kernel-image-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-tools-4.15.0-23", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-source-4.15.0", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-generic", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-generic-lpae", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-23-lowlatency", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "md-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "message-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "mouse-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "multipath-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nfs-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "parport-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pata-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pcmcia-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "plip-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "ppp-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "sata-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "scsi-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "serial-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "usb-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "virtio-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-23-generic-di", - "binary_version": "4.15.0-23.25~16.04.1" - }, - { - "binary_name": "vlan-modules-4.15.0-23-generic-lpae-di", - "binary_version": "4.15.0-23.25~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@4.4.0-1152.163?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1004.9", - "4.4.0-1007.12", - "4.4.0-1008.13", - "4.4.0-1009.14", - "4.4.0-1010.15", - "4.4.0-1012.17", - "4.4.0-1013.18", - "4.4.0-1015.20", - "4.4.0-1017.22", - "4.4.0-1019.24", - "4.4.0-1020.25", - "4.4.0-1021.26", - "4.4.0-1023.28", - "4.4.0-1026.31", - "4.4.0-1027.32", - "4.4.0-1029.34", - "4.4.0-1031.37", - "4.4.0-1032.38", - "4.4.0-1033.39", - "4.4.0-1035.41", - "4.4.0-1036.42", - "4.4.0-1037.43", - "4.4.0-1038.44", - "4.4.0-1039.45", - "4.4.0-1040.46", - "4.4.0-1041.47", - "4.4.0-1043.49", - "4.4.0-1044.50", - "4.4.0-1046.52", - "4.4.0-1047.53", - "4.4.0-1048.55", - "4.4.0-1051.58", - "4.4.0-1052.59", - "4.4.0-1054.61", - "4.4.0-1056.63", - "4.4.0-1058.65", - "4.4.0-1059.66", - "4.4.0-1060.67", - "4.4.0-1062.69", - "4.4.0-1063.70", - "4.4.0-1064.71", - "4.4.0-1065.72", - "4.4.0-1066.73", - "4.4.0-1068.75", - "4.4.0-1069.76", - "4.4.0-1070.77", - "4.4.0-1071.78", - "4.4.0-1075.82", - "4.4.0-1076.83", - "4.4.0-1077.84", - "4.4.0-1078.85", - "4.4.0-1079.86", - "4.4.0-1080.87", - "4.4.0-1082.91", - "4.4.0-1084.93", - "4.4.0-1085.94", - "4.4.0-1087.96", - "4.4.0-1088.97", - "4.4.0-1089.98", - "4.4.0-1090.99", - "4.4.0-1091.100", - "4.4.0-1092.101", - "4.4.0-1093.102", - "4.4.0-1094.103", - "4.4.0-1095.104", - "4.4.0-1096.105", - "4.4.0-1097.106", - "4.4.0-1098.107", - "4.4.0-1099.108", - "4.4.0-1100.109", - "4.4.0-1102.111", - "4.4.0-1103.112", - "4.4.0-1104.113", - "4.4.0-1105.114", - "4.4.0-1108.118", - "4.4.0-1110.120", - "4.4.0-1111.121", - "4.4.0-1112.122", - "4.4.0-1113.123", - "4.4.0-1114.124", - "4.4.0-1115.125", - "4.4.0-1116.126", - "4.4.0-1117.127", - "4.4.0-1118.128", - "4.4.0-1119.129", - "4.4.0-1120.130", - "4.4.0-1121.131", - "4.4.0-1122.132", - "4.4.0-1123.133", - "4.4.0-1124.134", - "4.4.0-1125.135", - "4.4.0-1126.136", - "4.4.0-1128.138", - "4.4.0-1129.139", - "4.4.0-1130.140", - "4.4.0-1131.141", - "4.4.0-1132.142", - "4.4.0-1134.144", - "4.4.0-1135.145", - "4.4.0-1136.146", - "4.4.0-1137.147", - "4.4.0-1138.148", - "4.4.0-1139.149", - "4.4.0-1140.151", - "4.4.0-1141.152", - "4.4.0-1142.153", - "4.4.0-1143.154", - "4.4.0-1144.155", - "4.4.0-1145.156", - "4.4.0-1146.157", - "4.4.0-1147.158", - "4.4.0-1148.159", - "4.4.0-1149.160", - "4.4.0-1150.161", - "4.4.0-1151.162", - "4.4.0-1152.163" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-cloud-tools-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-headers-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-image-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-kvm-cloud-tools-4.4.0-1152", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-kvm-headers-4.4.0-1152", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-kvm-tools-4.4.0-1152", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-modules-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - }, - { - "binary_name": "linux-tools-4.4.0-1152-kvm", - "binary_version": "4.4.0-1152.163" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:16.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1150.161~16.04.1?arch=source&distro=esm-infra/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1007.9~16.04.1", - "4.15.0-1008.10~16.04.1", - "4.15.0-1009.11~16.04.1", - "4.15.0-1010.12~16.04.1", - "4.15.0-1011.13~16.04.1", - "4.15.0-1013.15~16.04.1", - "4.15.0-1014.16~16.04.1", - "4.15.0-1015.17~16.04.1", - "4.15.0-1017.19~16.04.2", - "4.15.0-1018.20~16.04.1", - "4.15.0-1021.23~16.04.1", - "4.15.0-1022.25~16.04.1", - "4.15.0-1023.26~16.04.1", - "4.15.0-1025.28~16.04.1", - "4.15.0-1026.29~16.04.1", - "4.15.0-1027.30~16.04.1", - "4.15.0-1029.32~16.04.1", - "4.15.0-1030.33~16.04.1", - "4.15.0-1031.34~16.04.1", - "4.15.0-1033.36~16.04.1", - "4.15.0-1035.38~16.04.1", - "4.15.0-1037.41~16.04.1", - "4.15.0-1038.42~16.04.1", - "4.15.0-1039.43~16.04.1", - "4.15.0-1045.49~16.04.1", - "4.15.0-1046.50~16.04.1", - "4.15.0-1050.54~16.04.1", - "4.15.0-1051.55~16.04.1", - "4.15.0-1053.57~16.04.1", - "4.15.0-1054.58~16.04.1", - "4.15.0-1056.61~16.04.1", - "4.15.0-1058.64~16.04.1", - "4.15.0-1059.65~16.04.1", - "4.15.0-1061.67~16.04.1", - "4.15.0-1062.68~16.04.1", - "4.15.0-1064.71~16.04.1", - "4.15.0-1065.73~16.04.1", - "4.15.0-1066.74~16.04.1", - "4.15.0-1067.75~16.04.1", - "4.15.0-1068.76~16.04.1", - "4.15.0-1069.77~16.04.1", - "4.15.0-1070.78~16.04.1", - "4.15.0-1071.79~16.04.1", - "4.15.0-1072.80~16.04.1", - "4.15.0-1075.83~16.04.1", - "4.15.0-1078.86~16.04.1", - "4.15.0-1079.87~16.04.1", - "4.15.0-1080.88~16.04.1", - "4.15.0-1081.89~16.04.1", - "4.15.0-1082.90~16.04.1", - "4.15.0-1083.91~16.04.1", - "4.15.0-1084.92~16.04.1", - "4.15.0-1085.93~16.04.1", - "4.15.0-1086.94~16.04.1", - "4.15.0-1087.95~16.04.1", - "4.15.0-1089.98~16.04.1", - "4.15.0-1090.99~16.04.1", - "4.15.0-1091.100~16.04.1", - "4.15.0-1092.101~16.04.1", - "4.15.0-1093.102~16.04.1", - "4.15.0-1095.104~16.04.1", - "4.15.0-1098.108~16.04.1", - "4.15.0-1101.112~16.04.1", - "4.15.0-1102.113~16.04.1", - "4.15.0-1104.115~16.04.1", - "4.15.0-1105.116~16.04.1", - "4.15.0-1106.117~16.04.1", - "4.15.0-1107.118~16.04.1", - "4.15.0-1108.119~16.04.1", - "4.15.0-1111.122~16.04.2", - "4.15.0-1112.123~16.04.1", - "4.15.0-1113.124~16.04.1", - "4.15.0-1115.126~16.04.1", - "4.15.0-1116.127~16.04.1", - "4.15.0-1117.128~16.04.1", - "4.15.0-1118.129~16.04.1", - "4.15.0-1119.130~16.04.1", - "4.15.0-1120.131~16.04.1", - "4.15.0-1121.132~16.04.1", - "4.15.0-1122.133~16.04.1", - "4.15.0-1123.134~16.04.1", - "4.15.0-1124.135~16.04.1", - "4.15.0-1125.136~16.04.1", - "4.15.0-1126.137~16.04.1", - "4.15.0-1127.138~16.04.1", - "4.15.0-1128.139~16.04.1", - "4.15.0-1129.140~16.04.1", - "4.15.0-1130.141~16.04.1", - "4.15.0-1131.142~16.04.1", - "4.15.0-1132.143~16.04.1", - "4.15.0-1133.144~16.04.1", - "4.15.0-1134.145~16.04.1", - "4.15.0-1135.146~16.04.1", - "4.15.0-1136.147~16.04.1", - "4.15.0-1137.148~16.04.1", - "4.15.0-1138.149~16.04.1", - "4.15.0-1139.150~16.04.1", - "4.15.0-1140.151~16.04.1", - "4.15.0-1141.152~16.04.1", - "4.15.0-1142.153~16.04.1", - "4.15.0-1143.154~16.04.1", - "4.15.0-1144.155~16.04.1", - "4.15.0-1145.156~16.04.1", - "4.15.0-1148.159~16.04.1", - "4.15.0-1149.160~16.04.1", - "4.15.0-1150.161~16.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-headers-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-modules-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-oracle-headers-4.15.0-1150", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-oracle-tools-4.15.0-1150", - "binary_version": "4.15.0-1150.161~16.04.1" - }, - { - "binary_name": "linux-tools-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161~16.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1121.128?arch=source&distro=fips-updates/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1003.3", - "4.4.0-1005.5", - "4.4.0-1006.6", - "4.4.0-1008.10", - "4.4.0-1010.13", - "4.4.0-1011.14", - "4.4.0-1012.16", - "4.4.0-1013.17", - "4.4.0-1015.20", - "4.4.0-1017.22", - "4.4.0-1019.24", - "4.4.0-1021.26", - "4.4.0-1022.27", - "4.4.0-1023.28", - "4.4.0-1025.30", - "4.4.0-1026.31", - "4.4.0-1027.32", - "4.4.0-1028.33", - "4.4.0-1029.34", - "4.4.0-1031.36", - "4.4.0-1032.37", - "4.4.0-1033.38", - "4.4.0-1034.39", - "4.4.0-1041.46", - "4.4.0-1042.47", - "4.4.0-1043.48", - "4.4.0-1044.49", - "4.4.0-1045.50", - "4.4.0-1046.51", - "4.4.0-1048.53", - "4.4.0-1049.55", - "4.4.0-1051.57", - "4.4.0-1052.58", - "4.4.0-1054.60", - "4.4.0-1055.61", - "4.4.0-1056.62", - "4.4.0-1057.63", - "4.4.0-1058.64", - "4.4.0-1060.66", - "4.4.0-1061.67", - "4.4.0-1062.68", - "4.4.0-1063.69", - "4.4.0-1064.70", - "4.4.0-1065.71", - "4.4.0-1066.72", - "4.4.0-1067.73", - "4.4.0-1068.74", - "4.4.0-1069.75", - "4.4.0-1071.77", - "4.4.0-1072.78", - "4.4.0-1073.79", - "4.4.0-1074.80", - "4.4.0-1077.84", - "4.4.0-1079.86", - "4.4.0-1080.87", - "4.4.0-1081.88", - "4.4.0-1082.89", - "4.4.0-1083.90", - "4.4.0-1084.91", - "4.4.0-1085.92", - "4.4.0-1086.93", - "4.4.0-1088.95", - "4.4.0-1089.96", - "4.4.0-1090.97", - "4.4.0-1091.98", - "4.4.0-1092.99", - "4.4.0-1093.100", - "4.4.0-1094.101", - "4.4.0-1095.102", - "4.4.0-1097.104", - "4.4.0-1099.106", - "4.4.0-1100.107", - "4.4.0-1101.108", - "4.4.0-1102.109", - "4.4.0-1103.110", - "4.4.0-1104.111", - "4.4.0-1105.112", - "4.4.0-1106.113", - "4.4.0-1107.114", - "4.4.0-1108.115", - "4.4.0-1109.116", - "4.4.0-1110.117", - "4.4.0-1111.118", - "4.4.0-1112.119", - "4.4.0-1113.120", - "4.4.0-1114.121", - "4.4.0-1115.122", - "4.4.0-1116.123", - "4.4.0-1117.124", - "4.4.0-1119.126", - "4.4.0-1120.127", - "4.4.0-1121.128" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "crypto-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "dasd-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "fat-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "fb-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "firewire-core-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "floppy-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "fs-core-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "input-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "ipmi-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "irda-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "kernel-image-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-buildinfo-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-fips-cloud-tools-common", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-fips-headers-4.4.0-1121", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-fips-source-4.4.0", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-fips-tools-4.4.0-1121", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-headers-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-image-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-image-hmac-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-image-unsigned-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-modules-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-modules-extra-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-tools-4.4.0-1121-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "linux-udebs-fips", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "md-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "message-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "mouse-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "multipath-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "nfs-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "nic-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "nic-shared-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "nic-usb-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "parport-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "pata-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "pcmcia-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "plip-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "ppp-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "sata-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "scsi-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "serial-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "speakup-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "storage-core-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "usb-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "virtio-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - }, - { - "binary_name": "vlan-modules-4.4.0-1121-fips-di", - "binary_version": "4.4.0-1121.128" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:16.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.4.0-1002.2?arch=source&distro=fips/xenial" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.4.0-1001.1", - "4.4.0-1002.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "crypto-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "dasd-extra-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "dasd-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fat-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "firewire-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "floppy-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fs-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "fs-secondary-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "input-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "ipmi-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "irda-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "kernel-image-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-headers-4.4.0-1002", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-source-4.4.0", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-fips-tools-4.4.0-1002", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-headers-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-extra-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-image-hmac-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-tools-4.4.0-1002-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "linux-udebs-fips", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "md-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "message-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "mouse-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "multipath-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nfs-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-pcmcia-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-shared-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "nic-usb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "parport-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pata-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pcmcia-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "pcmcia-storage-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "plip-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "ppp-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "sata-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "scsi-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "serial-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "speakup-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "storage-core-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "usb-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "virtio-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - }, - { - "binary_name": "vlan-modules-4.4.0-1002-fips-di", - "binary_version": "4.4.0-1002.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@4.15.0-246.258?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.13.0-16.19", - "4.13.0-17.20", - "4.13.0-25.29", - "4.13.0-32.35", - "4.15.0-10.11", - "4.15.0-12.13", - "4.15.0-13.14", - "4.15.0-15.16", - "4.15.0-19.20", - "4.15.0-20.21", - "4.15.0-22.24", - "4.15.0-23.25", - "4.15.0-24.26", - "4.15.0-29.31", - "4.15.0-30.32", - "4.15.0-32.35", - "4.15.0-33.36", - "4.15.0-34.37", - "4.15.0-36.39", - "4.15.0-38.41", - "4.15.0-39.42", - "4.15.0-42.45", - "4.15.0-43.46", - "4.15.0-44.47", - "4.15.0-45.48", - "4.15.0-46.49", - "4.15.0-47.50", - "4.15.0-48.51", - "4.15.0-50.54", - "4.15.0-51.55", - "4.15.0-52.56", - "4.15.0-54.58", - "4.15.0-55.60", - "4.15.0-58.64", - "4.15.0-60.67", - "4.15.0-62.69", - "4.15.0-64.73", - "4.15.0-65.74", - "4.15.0-66.75", - "4.15.0-69.78", - "4.15.0-70.79", - "4.15.0-72.81", - "4.15.0-74.84", - "4.15.0-76.86", - "4.15.0-88.88", - "4.15.0-91.92", - "4.15.0-96.97", - "4.15.0-99.100", - "4.15.0-101.102", - "4.15.0-106.107", - "4.15.0-108.109", - "4.15.0-109.110", - "4.15.0-111.112", - "4.15.0-112.113", - "4.15.0-115.116", - "4.15.0-117.118", - "4.15.0-118.119", - "4.15.0-121.123", - "4.15.0-122.124", - "4.15.0-123.126", - "4.15.0-124.127", - "4.15.0-126.129", - "4.15.0-128.131", - "4.15.0-129.132", - "4.15.0-130.134", - "4.15.0-132.136", - "4.15.0-134.138", - "4.15.0-135.139", - "4.15.0-136.140", - "4.15.0-137.141", - "4.15.0-139.143", - "4.15.0-140.144", - "4.15.0-141.145", - "4.15.0-142.146", - "4.15.0-143.147", - "4.15.0-144.148", - "4.15.0-147.151", - "4.15.0-151.157", - "4.15.0-153.160", - "4.15.0-154.161", - "4.15.0-156.163", - "4.15.0-158.166", - "4.15.0-159.167", - "4.15.0-161.169", - "4.15.0-162.170", - "4.15.0-163.171", - "4.15.0-166.174", - "4.15.0-167.175", - "4.15.0-169.177", - "4.15.0-171.180", - "4.15.0-173.182", - "4.15.0-175.184", - "4.15.0-176.185", - "4.15.0-177.186", - "4.15.0-180.189", - "4.15.0-184.194", - "4.15.0-187.198", - "4.15.0-188.199", - "4.15.0-189.200", - "4.15.0-191.202", - "4.15.0-192.203", - "4.15.0-193.204", - "4.15.0-194.205", - "4.15.0-196.207", - "4.15.0-197.208", - "4.15.0-200.211", - "4.15.0-201.212", - "4.15.0-202.213", - "4.15.0-204.215", - "4.15.0-206.217", - "4.15.0-208.220", - "4.15.0-209.220", - "4.15.0-210.221", - "4.15.0-211.222", - "4.15.0-212.223", - "4.15.0-213.224", - "4.15.0-214.225", - "4.15.0-216.227", - "4.15.0-218.229", - "4.15.0-219.230", - "4.15.0-220.231", - "4.15.0-221.232", - "4.15.0-222.233", - "4.15.0-223.235", - "4.15.0-224.236", - "4.15.0-225.237", - "4.15.0-226.238", - "4.15.0-227.239", - "4.15.0-228.240", - "4.15.0-229.241", - "4.15.0-230.242", - "4.15.0-231.243", - "4.15.0-232.244", - "4.15.0-233.245", - "4.15.0-234.246", - "4.15.0-235.247", - "4.15.0-236.248", - "4.15.0-237.249", - "4.15.0-238.250", - "4.15.0-239.251", - "4.15.0-240.252", - "4.15.0-241.253", - "4.15.0-242.254", - "4.15.0-243.255", - "4.15.0-245.257", - "4.15.0-246.258" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "crypto-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "dasd-extra-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "dasd-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "fat-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "fb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "firewire-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "floppy-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "fs-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "input-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "ipmi-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "irda-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "kernel-image-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-buildinfo-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-buildinfo-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-246", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-headers-4.15.0-246", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-headers-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-headers-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-image-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-modules-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-modules-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-modules-extra-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-source-4.15.0", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-tools-4.15.0-246", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-tools-4.15.0-246-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-tools-4.15.0-246-lowlatency", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "md-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "message-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "mouse-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "multipath-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "nfs-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "nic-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "nic-shared-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "nic-usb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "parport-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "pata-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "pcmcia-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "plip-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "ppp-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "sata-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "scsi-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "serial-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "storage-core-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "usb-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "virtio-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - }, - { - "binary_name": "vlan-modules-4.15.0-246-generic-di", - "binary_version": "4.15.0-246.258" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@4.15.0-1188.201?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1", - "4.15.0-1003.3", - "4.15.0-1005.5", - "4.15.0-1006.6", - "4.15.0-1007.7", - "4.15.0-1009.9", - "4.15.0-1010.10", - "4.15.0-1011.11", - "4.15.0-1016.16", - "4.15.0-1017.17", - "4.15.0-1019.19", - "4.15.0-1020.20", - "4.15.0-1021.21", - "4.15.0-1023.23", - "4.15.0-1025.25", - "4.15.0-1027.27", - "4.15.0-1029.30", - "4.15.0-1031.33", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1035.37", - "4.15.0-1037.39", - "4.15.0-1039.41", - "4.15.0-1040.42", - "4.15.0-1041.43", - "4.15.0-1043.45", - "4.15.0-1044.46", - "4.15.0-1045.47", - "4.15.0-1047.49", - "4.15.0-1048.50", - "4.15.0-1050.52", - "4.15.0-1051.53", - "4.15.0-1052.54", - "4.15.0-1054.56", - "4.15.0-1056.58", - "4.15.0-1057.59", - "4.15.0-1058.60", - "4.15.0-1060.62", - "4.15.0-1063.67", - "4.15.0-1065.69", - "4.15.0-1066.70", - "4.15.0-1067.71", - "4.15.0-1073.77", - "4.15.0-1076.80", - "4.15.0-1077.81", - "4.15.0-1079.83", - "4.15.0-1080.84", - "4.15.0-1082.86", - "4.15.0-1083.87", - "4.15.0-1086.91", - "4.15.0-1087.92", - "4.15.0-1088.93", - "4.15.0-1090.95", - "4.15.0-1091.96", - "4.15.0-1092.98", - "4.15.0-1093.99", - "4.15.0-1094.101", - "4.15.0-1095.102", - "4.15.0-1096.103", - "4.15.0-1097.104", - "4.15.0-1098.105", - "4.15.0-1099.106", - "4.15.0-1101.108", - "4.15.0-1102.109", - "4.15.0-1103.110", - "4.15.0-1106.113", - "4.15.0-1109.116", - "4.15.0-1110.117", - "4.15.0-1111.118", - "4.15.0-1112.119", - "4.15.0-1114.121", - "4.15.0-1115.122", - "4.15.0-1116.123", - "4.15.0-1118.125", - "4.15.0-1119.127", - "4.15.0-1121.129", - "4.15.0-1123.132", - "4.15.0-1124.133", - "4.15.0-1126.135", - "4.15.0-1127.136", - "4.15.0-1128.137", - "4.15.0-1130.139", - "4.15.0-1133.143", - "4.15.0-1136.147", - "4.15.0-1137.148", - "4.15.0-1139.150", - "4.15.0-1140.151", - "4.15.0-1141.152", - "4.15.0-1142.154", - "4.15.0-1143.155", - "4.15.0-1144.156", - "4.15.0-1146.158", - "4.15.0-1147.159", - "4.15.0-1148.160", - "4.15.0-1150.163", - "4.15.0-1151.164", - "4.15.0-1153.166", - "4.15.0-1154.167", - "4.15.0-1155.168", - "4.15.0-1156.169", - "4.15.0-1157.170", - "4.15.0-1158.171", - "4.15.0-1159.172", - "4.15.0-1160.173", - "4.15.0-1161.174", - "4.15.0-1162.175", - "4.15.0-1163.176", - "4.15.0-1164.177", - "4.15.0-1165.178", - "4.15.0-1166.179", - "4.15.0-1167.180", - "4.15.0-1168.181", - "4.15.0-1169.182", - "4.15.0-1170.183", - "4.15.0-1172.185", - "4.15.0-1173.186", - "4.15.0-1174.187", - "4.15.0-1175.188", - "4.15.0-1176.189", - "4.15.0-1177.190", - "4.15.0-1178.191", - "4.15.0-1179.192", - "4.15.0-1180.193", - "4.15.0-1181.194", - "4.15.0-1182.195", - "4.15.0-1183.196", - "4.15.0-1184.197", - "4.15.0-1185.198", - "4.15.0-1186.199", - "4.15.0-1187.200", - "4.15.0-1188.201" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-4.15.0-1188", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-aws-headers-4.15.0-1188", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-aws-tools-4.15.0-1188", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-headers-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-modules-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - }, - { - "binary_name": "linux-tools-4.15.0-1188-aws", - "binary_version": "4.15.0-1188.201" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-aws-5.0", - "purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-1021.24~18.04.1", - "5.0.0-1022.25~18.04.1", - "5.0.0-1023.26~18.04.1", - "5.0.0-1024.27~18.04.1", - "5.0.0-1025.28", - "5.0.0-1027.30" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.0-tools-5.0.0-1027", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-aws-headers-5.0.0-1027", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-headers-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-image-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-modules-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - }, - { - "binary_name": "linux-tools-5.0.0-1027-aws", - "binary_version": "5.0.0-1027.30" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-aws-5.3", - "purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1016.17~18.04.1", - "5.3.0-1017.18~18.04.1", - "5.3.0-1019.21~18.04.1", - "5.3.0-1023.25~18.04.1", - "5.3.0-1028.30~18.04.1", - "5.3.0-1030.32~18.04.1", - "5.3.0-1032.34~18.04.2", - "5.3.0-1033.35", - "5.3.0-1034.36", - "5.3.0-1035.37" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-aws-5.3-headers-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-aws-5.3-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-buildinfo-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-headers-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-image-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-modules-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - }, - { - "binary_name": "linux-tools-5.3.0-1035-aws", - "binary_version": "5.3.0-1035.37" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-aws-5.4", - "purl": "pkg:deb/ubuntu/linux-aws-5.4@5.4.0-1154.164~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1018.18~18.04.1", - "5.4.0-1020.20~18.04.2", - "5.4.0-1022.22~18.04.1", - "5.4.0-1024.24~18.04.1", - "5.4.0-1025.25~18.04.1", - "5.4.0-1028.29~18.04.1", - "5.4.0-1029.30~18.04.1", - "5.4.0-1030.31~18.04.1", - "5.4.0-1032.33~18.04.1", - "5.4.0-1034.35~18.04.1", - "5.4.0-1035.37~18.04.1", - "5.4.0-1037.39~18.04.1", - "5.4.0-1038.40~18.04.1", - "5.4.0-1039.41~18.04.1", - "5.4.0-1041.43~18.04.1", - "5.4.0-1043.45~18.04.1", - "5.4.0-1045.47~18.04.1", - "5.4.0-1047.49~18.04.1", - "5.4.0-1048.50~18.04.1", - "5.4.0-1049.51~18.04.1", - "5.4.0-1051.53~18.04.1", - "5.4.0-1054.57~18.04.1", - "5.4.0-1055.58~18.04.1", - "5.4.0-1056.59~18.04.1", - "5.4.0-1057.60~18.04.1", - "5.4.0-1058.61~18.04.3", - "5.4.0-1059.62~18.04.1", - "5.4.0-1060.63~18.04.1", - "5.4.0-1061.64~18.04.1", - "5.4.0-1063.66~18.04.1", - "5.4.0-1064.67~18.04.1", - "5.4.0-1065.68~18.04.1", - "5.4.0-1066.69~18.04.1", - "5.4.0-1068.72~18.04.1", - "5.4.0-1069.73~18.04.1", - "5.4.0-1071.76~18.04.1", - "5.4.0-1072.77~18.04.1", - "5.4.0-1075.80~18.04.1", - "5.4.0-1078.84~18.04.1", - "5.4.0-1080.87~18.04.1", - "5.4.0-1081.88~18.04.1", - "5.4.0-1083.90~18.04.1", - "5.4.0-1084.91~18.04.1", - "5.4.0-1085.92~18.04.1", - "5.4.0-1086.93~18.04.1", - "5.4.0-1088.96~18.04.1", - "5.4.0-1089.97~18.04.1", - "5.4.0-1090.98~18.04.1", - "5.4.0-1092.100~18.04.2", - "5.4.0-1093.102~18.04.2", - "5.4.0-1094.102~18.04.1", - "5.4.0-1096.104~18.04.1", - "5.4.0-1097.105~18.04.1", - "5.4.0-1099.107~18.04.1", - "5.4.0-1100.108~18.04.1", - "5.4.0-1101.109~18.04.1", - "5.4.0-1103.111~18.04.1", - "5.4.0-1104.112~18.04.1", - "5.4.0-1105.113~18.04.1", - "5.4.0-1106.114~18.04.1", - "5.4.0-1107.115~18.04.1", - "5.4.0-1108.116~18.04.1", - "5.4.0-1109.118~18.04.1", - "5.4.0-1110.119~18.04.1", - "5.4.0-1111.120~18.04.1", - "5.4.0-1112.121~18.04.2", - "5.4.0-1113.123~18.04.1", - "5.4.0-1114.124~18.04.1", - "5.4.0-1116.126~18.04.1", - "5.4.0-1117.127~18.04.1", - "5.4.0-1118.128~18.04.1", - "5.4.0-1119.129~18.04.1", - "5.4.0-1120.130~18.04.1", - "5.4.0-1121.131~18.04.1", - "5.4.0-1122.132~18.04.1", - "5.4.0-1123.133~18.04.1", - "5.4.0-1124.134~18.04.1", - "5.4.0-1125.135~18.04.1", - "5.4.0-1126.136~18.04.1", - "5.4.0-1127.137~18.04.2", - "5.4.0-1128.138~18.04.1", - "5.4.0-1129.139~18.04.1", - "5.4.0-1130.140~18.04.1", - "5.4.0-1131.141~18.04.1", - "5.4.0-1132.142~18.04.1", - "5.4.0-1133.143~18.04.1", - "5.4.0-1134.144~18.04.1", - "5.4.0-1135.145~18.04.1", - "5.4.0-1136.146~18.04.1", - "5.4.0-1137.147~18.04.1", - "5.4.0-1139.149~18.04.1", - "5.4.0-1142.152~18.04.1", - "5.4.0-1144.154~18.04.1", - "5.4.0-1145.155~18.04.1", - "5.4.0-1146.156~18.04.1", - "5.4.0-1147.157~18.04.1", - "5.4.0-1148.158~18.04.1", - "5.4.0-1149.159~18.04.1", - "5.4.0-1150.160~18.04.1", - "5.4.0-1151.161~18.04.1", - "5.4.0-1152.162~18.04.1", - "5.4.0-1153.163~18.04.1", - "5.4.0-1154.164~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.4-cloud-tools-5.4.0-1154", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-aws-5.4-headers-5.4.0-1154", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-aws-5.4-tools-5.4.0-1154", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2", - "4.15.0-1003.3", - "4.15.0-1004.4", - "4.15.0-1008.8", - "4.15.0-1009.9", - "4.15.0-1012.12", - "4.15.0-1013.13", - "4.15.0-1014.14", - "4.15.0-1018.18", - "4.15.0-1019.19", - "4.15.0-1021.21", - "4.15.0-1022.23", - "4.15.0-1023.24", - "4.15.0-1025.26", - "4.15.0-1028.29", - "4.15.0-1030.31", - "4.15.0-1031.32", - "4.15.0-1032.33", - "4.15.0-1035.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.18.0-1011.11~18.04.1", - "4.18.0-1013.13~18.04.1", - "4.18.0-1014.14~18.04.1", - "4.18.0-1018.18~18.04.1", - "4.18.0-1019.19~18.04.1", - "4.18.0-1020.20~18.04.1", - "4.18.0-1023.24~18.04.1", - "4.18.0-1024.25~18.04.1", - "4.18.0-1025.27~18.04.1", - "5.0.0-1014.14~18.04.1", - "5.0.0-1016.17~18.04.1", - "5.0.0-1018.19~18.04.1", - "5.0.0-1020.21~18.04.1", - "5.0.0-1022.23~18.04.1", - "5.0.0-1023.24~18.04.1", - "5.0.0-1025.27~18.04.1", - "5.0.0-1027.29~18.04.1", - "5.0.0-1028.30~18.04.1", - "5.0.0-1029.31~18.04.1", - "5.0.0-1031.33", - "5.0.0-1032.34", - "5.0.0-1035.37", - "5.0.0-1036.38" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-azure-headers-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-azure-tools-5.0.0-1036", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-headers-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-modules-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - }, - { - "binary_name": "linux-tools-5.0.0-1036-azure", - "binary_version": "5.0.0-1036.38" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-azure-4.15", - "purl": "pkg:deb/ubuntu/linux-azure-4.15@4.15.0-1195.210?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1082.92", - "4.15.0-1083.93", - "4.15.0-1089.99", - "4.15.0-1091.101", - "4.15.0-1092.102", - "4.15.0-1093.103", - "4.15.0-1095.105", - "4.15.0-1096.106", - "4.15.0-1099.110", - "4.15.0-1100.111", - "4.15.0-1102.113", - "4.15.0-1103.114", - "4.15.0-1104.116", - "4.15.0-1106.118", - "4.15.0-1108.120", - "4.15.0-1109.121", - "4.15.0-1110.122", - "4.15.0-1111.123", - "4.15.0-1112.125", - "4.15.0-1113.126", - "4.15.0-1114.127", - "4.15.0-1115.128", - "4.15.0-1118.131", - "4.15.0-1121.134", - "4.15.0-1122.135", - "4.15.0-1123.136", - "4.15.0-1124.137", - "4.15.0-1125.138", - "4.15.0-1126.139", - "4.15.0-1127.140", - "4.15.0-1129.142", - "4.15.0-1130.143", - "4.15.0-1131.144", - "4.15.0-1133.146", - "4.15.0-1134.147", - "4.15.0-1136.149", - "4.15.0-1137.150", - "4.15.0-1138.151", - "4.15.0-1139.152", - "4.15.0-1142.156", - "4.15.0-1145.160", - "4.15.0-1146.161", - "4.15.0-1149.164", - "4.15.0-1150.165", - "4.15.0-1151.166", - "4.15.0-1153.168", - "4.15.0-1157.172", - "4.15.0-1158.173", - "4.15.0-1159.174", - "4.15.0-1161.176", - "4.15.0-1162.177", - "4.15.0-1163.178", - "4.15.0-1164.179", - "4.15.0-1165.180", - "4.15.0-1166.181", - "4.15.0-1167.182", - "4.15.0-1168.183", - "4.15.0-1169.184", - "4.15.0-1170.185", - "4.15.0-1171.186", - "4.15.0-1172.187", - "4.15.0-1173.188", - "4.15.0-1174.189", - "4.15.0-1175.190", - "4.15.0-1176.191", - "4.15.0-1177.192", - "4.15.0-1178.193", - "4.15.0-1179.194", - "4.15.0-1180.195", - "4.15.0-1181.196", - "4.15.0-1182.197", - "4.15.0-1183.198", - "4.15.0-1184.199", - "4.15.0-1185.200", - "4.15.0-1186.201", - "4.15.0-1187.202", - "4.15.0-1188.203", - "4.15.0-1189.204", - "4.15.0-1190.205", - "4.15.0-1191.206", - "4.15.0-1192.207", - "4.15.0-1193.208", - "4.15.0-1194.209", - "4.15.0-1195.210" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-4.15-cloud-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-azure-4.15-headers-4.15.0-1195", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-azure-4.15-tools-4.15.0-1195", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-headers-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-modules-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - }, - { - "binary_name": "linux-tools-4.15.0-1195-azure", - "binary_version": "4.15.0-1195.210" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure-5.3", - "purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1007.8~18.04.1", - "5.3.0-1008.9~18.04.1", - "5.3.0-1009.10~18.04.1", - "5.3.0-1010.11~18.04.1", - "5.3.0-1012.13~18.04.1", - "5.3.0-1013.14~18.04.1", - "5.3.0-1016.17~18.04.1", - "5.3.0-1018.19~18.04.1", - "5.3.0-1019.20~18.04.1", - "5.3.0-1020.21~18.04.1", - "5.3.0-1022.23~18.04.1", - "5.3.0-1028.29~18.04.1", - "5.3.0-1031.32~18.04.1", - "5.3.0-1032.33~18.04.1", - "5.3.0-1034.35~18.04.1", - "5.3.0-1035.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-azure-5.3-headers-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-azure-5.3-tools-5.3.0-1035", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-buildinfo-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-headers-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-modules-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - }, - { - "binary_name": "linux-tools-5.3.0-1035-azure", - "binary_version": "5.3.0-1035.36" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-azure-5.4", - "purl": "pkg:deb/ubuntu/linux-azure-5.4@5.4.0-1156.163~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1020.20~18.04.1", - "5.4.0-1022.22~18.04.1", - "5.4.0-1023.23~18.04.1", - "5.4.0-1025.25~18.04.1", - "5.4.0-1026.26~18.04.1", - "5.4.0-1031.32~18.04.1", - "5.4.0-1032.33~18.04.1", - "5.4.0-1034.35~18.04.1", - "5.4.0-1035.36~18.04.1", - "5.4.0-1036.38~18.04.1", - "5.4.0-1039.41~18.04.1", - "5.4.0-1040.42~18.04.1", - "5.4.0-1041.43~18.04.1", - "5.4.0-1043.45~18.04.1", - "5.4.0-1044.46~18.04.1", - "5.4.0-1046.48~18.04.1", - "5.4.0-1047.49~18.04.1", - "5.4.0-1048.50~18.04.1", - "5.4.0-1049.51~18.04.1", - "5.4.0-1051.53~18.04.1", - "5.4.0-1055.57~18.04.1", - "5.4.0-1056.58~18.04.1", - "5.4.0-1058.60~18.04.1", - "5.4.0-1059.62~18.04.1", - "5.4.0-1061.64~18.04.1", - "5.4.0-1062.65~18.04.1", - "5.4.0-1063.66~18.04.1", - "5.4.0-1064.67~18.04.1", - "5.4.0-1065.68~18.04.1", - "5.4.0-1067.70~18.04.1", - "5.4.0-1068.71~18.04.1", - "5.4.0-1069.72~18.04.1", - "5.4.0-1070.73~18.04.1", - "5.4.0-1072.75~18.04.1", - "5.4.0-1073.76~18.04.1", - "5.4.0-1074.77~18.04.1", - "5.4.0-1077.80~18.04.1", - "5.4.0-1078.81~18.04.1", - "5.4.0-1080.83~18.04.2", - "5.4.0-1083.87~18.04.1", - "5.4.0-1085.90~18.04.1", - "5.4.0-1086.91~18.04.1", - "5.4.0-1089.94~18.04.1", - "5.4.0-1090.95~18.04.1", - "5.4.0-1091.96~18.04.1", - "5.4.0-1094.100~18.04.1", - "5.4.0-1095.101~18.04.1", - "5.4.0-1098.104~18.04.2", - "5.4.0-1100.106~18.04.1", - "5.4.0-1101.107~18.04.1", - "5.4.0-1103.109~18.04.1", - "5.4.0-1104.110~18.04.1", - "5.4.0-1105.111~18.04.1", - "5.4.0-1106.112~18.04.1", - "5.4.0-1107.113~18.04.1", - "5.4.0-1108.114~18.04.1", - "5.4.0-1109.115~18.04.1", - "5.4.0-1110.116~18.04.1", - "5.4.0-1111.117~18.04.1", - "5.4.0-1112.118~18.04.1", - "5.4.0-1113.119~18.04.1", - "5.4.0-1115.122~18.04.1", - "5.4.0-1116.123~18.04.1", - "5.4.0-1117.124~18.04.1", - "5.4.0-1118.125~18.04.1", - "5.4.0-1119.126~18.04.2", - "5.4.0-1120.127~18.04.1", - "5.4.0-1121.128~18.04.1", - "5.4.0-1122.129~18.04.1", - "5.4.0-1123.130~18.04.1", - "5.4.0-1124.131~18.04.1", - "5.4.0-1126.133~18.04.1", - "5.4.0-1127.134~18.04.1", - "5.4.0-1128.135~18.04.1", - "5.4.0-1129.136~18.04.1", - "5.4.0-1130.137~18.04.1", - "5.4.0-1131.138~18.04.1", - "5.4.0-1132.139~18.04.1", - "5.4.0-1133.140~18.04.1", - "5.4.0-1134.141~18.04.1", - "5.4.0-1135.142~18.04.1", - "5.4.0-1136.143~18.04.1", - "5.4.0-1137.144~18.04.1", - "5.4.0-1138.145~18.04.1", - "5.4.0-1139.146~18.04.1", - "5.4.0-1140.147~18.04.1", - "5.4.0-1142.149~18.04.1", - "5.4.0-1143.150~18.04.1", - "5.4.0-1145.152~18.04.1", - "5.4.0-1147.154~18.04.1", - "5.4.0-1148.155~18.04.1", - "5.4.0-1149.156~18.04.1", - "5.4.0-1150.157~18.04.1", - "5.4.0-1151.158~18.04.1", - "5.4.0-1152.159~18.04.1", - "5.4.0-1153.160~18.04.1", - "5.4.0-1154.161~18.04.1", - "5.4.0-1156.163~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.4-cloud-tools-5.4.0-1156", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-azure-5.4-headers-5.4.0-1156", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-azure-5.4-tools-5.4.0-1156", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-azure-edge", - "purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.18.0-1006.6~18.04.1", - "4.18.0-1007.7~18.04.1", - "4.18.0-1008.8~18.04.1", - "5.0.0-1012.12~18.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-azure-edge-tools-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-azure-headers-5.0.0-1012", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-headers-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-modules-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - }, - { - "binary_name": "linux-tools-5.0.0-1012-azure", - "binary_version": "5.0.0-1012.12~18.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1", - "4.15.0-1003.3", - "4.15.0-1005.5", - "4.15.0-1006.6", - "4.15.0-1008.8", - "4.15.0-1009.9", - "4.15.0-1010.10", - "4.15.0-1014.14", - "4.15.0-1015.15", - "4.15.0-1017.18", - "4.15.0-1018.19", - "4.15.0-1019.20", - "4.15.0-1021.22", - "4.15.0-1023.24", - "4.15.0-1024.25", - "4.15.0-1025.26", - "4.15.0-1026.27", - "4.15.0-1027.28", - "4.15.0-1028.29", - "4.15.0-1029.31", - "4.15.0-1030.32", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.15.0-1040.42", - "4.15.0-1042.45", - "4.15.0-1044.70", - "5.0.0-1020.20~18.04.1", - "5.0.0-1021.21~18.04.1", - "5.0.0-1025.26~18.04.1", - "5.0.0-1026.27~18.04.1", - "5.0.0-1028.29~18.04.1", - "5.0.0-1029.30~18.04.1", - "5.0.0-1031.32", - "5.0.0-1033.34", - "5.0.0-1034.35" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-gcp-headers-5.0.0-1034", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-gcp-tools-5.0.0-1034", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-headers-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-modules-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - }, - { - "binary_name": "linux-tools-5.0.0-1034-gcp", - "binary_version": "5.0.0-1034.35" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-gcp-4.15", - "purl": "pkg:deb/ubuntu/linux-gcp-4.15@4.15.0-1180.197?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1071.81", - "4.15.0-1077.87", - "4.15.0-1078.88", - "4.15.0-1080.90", - "4.15.0-1081.92", - "4.15.0-1083.94", - "4.15.0-1084.95", - "4.15.0-1086.98", - "4.15.0-1087.100", - "4.15.0-1088.101", - "4.15.0-1090.103", - "4.15.0-1091.104", - "4.15.0-1092.105", - "4.15.0-1093.106", - "4.15.0-1094.107", - "4.15.0-1095.108", - "4.15.0-1096.109", - "4.15.0-1097.110", - "4.15.0-1098.111", - "4.15.0-1099.112", - "4.15.0-1100.113", - "4.15.0-1103.116", - "4.15.0-1106.120", - "4.15.0-1107.121", - "4.15.0-1108.122", - "4.15.0-1109.123", - "4.15.0-1110.124", - "4.15.0-1111.125", - "4.15.0-1112.126", - "4.15.0-1114.128", - "4.15.0-1115.129", - "4.15.0-1116.130", - "4.15.0-1118.132", - "4.15.0-1119.133", - "4.15.0-1120.134", - "4.15.0-1121.135", - "4.15.0-1122.136", - "4.15.0-1124.138", - "4.15.0-1127.142", - "4.15.0-1130.146", - "4.15.0-1131.147", - "4.15.0-1134.150", - "4.15.0-1135.151", - "4.15.0-1136.152", - "4.15.0-1137.153", - "4.15.0-1138.154", - "4.15.0-1141.157", - "4.15.0-1142.158", - "4.15.0-1143.159", - "4.15.0-1145.161", - "4.15.0-1146.162", - "4.15.0-1147.163", - "4.15.0-1148.164", - "4.15.0-1149.165", - "4.15.0-1150.166", - "4.15.0-1151.167", - "4.15.0-1152.168", - "4.15.0-1153.170", - "4.15.0-1154.171", - "4.15.0-1155.172", - "4.15.0-1156.173", - "4.15.0-1157.174", - "4.15.0-1158.175", - "4.15.0-1159.176", - "4.15.0-1160.177", - "4.15.0-1161.178", - "4.15.0-1162.179", - "4.15.0-1163.180", - "4.15.0-1164.181", - "4.15.0-1165.182", - "4.15.0-1166.183", - "4.15.0-1167.184", - "4.15.0-1168.185", - "4.15.0-1169.186", - "4.15.0-1170.187", - "4.15.0-1171.188", - "4.15.0-1172.189", - "4.15.0-1173.190", - "4.15.0-1174.191", - "4.15.0-1175.192", - "4.15.0-1176.193", - "4.15.0-1177.194", - "4.15.0-1178.195", - "4.15.0-1179.196", - "4.15.0-1180.197" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-gcp-4.15-headers-4.15.0-1180", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-gcp-4.15-tools-4.15.0-1180", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-headers-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-modules-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - }, - { - "binary_name": "linux-tools-4.15.0-1180-gcp", - "binary_version": "4.15.0-1180.197" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gcp-5.3", - "purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1008.9~18.04.1", - "5.3.0-1009.10~18.04.1", - "5.3.0-1010.11~18.04.1", - "5.3.0-1012.13~18.04.1", - "5.3.0-1014.15~18.04.1", - "5.3.0-1016.17~18.04.1", - "5.3.0-1017.18~18.04.1", - "5.3.0-1018.19~18.04.1", - "5.3.0-1020.22~18.04.1", - "5.3.0-1026.28~18.04.1", - "5.3.0-1029.31~18.04.1", - "5.3.0-1030.32~18.04.1", - "5.3.0-1032.34~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-gcp-5.3-headers-5.3.0-1032", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-gcp-5.3-tools-5.3.0-1032", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1032-gcp", - "binary_version": "5.3.0-1032.34~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-gcp-5.4", - "purl": "pkg:deb/ubuntu/linux-gcp-5.4@5.4.0-1157.166~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1019.19~18.04.2", - "5.4.0-1021.21~18.04.1", - "5.4.0-1022.22~18.04.1", - "5.4.0-1024.24~18.04.1", - "5.4.0-1025.25~18.04.1", - "5.4.0-1028.29~18.04.1", - "5.4.0-1029.31~18.04.1", - "5.4.0-1030.32~18.04.1", - "5.4.0-1032.34~18.04.1", - "5.4.0-1033.35~18.04.1", - "5.4.0-1034.37~18.04.1", - "5.4.0-1036.39~18.04.1", - "5.4.0-1037.40~18.04.1", - "5.4.0-1038.41~18.04.1", - "5.4.0-1040.43~18.04.1", - "5.4.0-1041.44~18.04.1", - "5.4.0-1042.45~18.04.1", - "5.4.0-1043.46~18.04.1", - "5.4.0-1044.47~18.04.2", - "5.4.0-1046.49~18.04.1", - "5.4.0-1049.53~18.04.1", - "5.4.0-1051.55~18.04.1", - "5.4.0-1052.56~18.04.1", - "5.4.0-1053.57~18.04.1", - "5.4.0-1055.59~18.04.1", - "5.4.0-1056.60~18.04.1", - "5.4.0-1057.61~18.04.1", - "5.4.0-1058.62~18.04.1", - "5.4.0-1059.63~18.04.1", - "5.4.0-1060.64~18.04.1", - "5.4.0-1062.66~18.04.1", - "5.4.0-1063.67~18.04.1", - "5.4.0-1064.68~18.04.1", - "5.4.0-1065.69~18.04.1", - "5.4.0-1067.71~18.04.1", - "5.4.0-1068.72~18.04.1", - "5.4.0-1069.73~18.04.1", - "5.4.0-1072.77~18.04.1", - "5.4.0-1073.78~18.04.1", - "5.4.0-1075.80~18.04.1", - "5.4.0-1078.84~18.04.1", - "5.4.0-1080.87~18.04.1", - "5.4.0-1083.91~18.04.1", - "5.4.0-1084.92~18.04.1", - "5.4.0-1086.94~18.04.1", - "5.4.0-1087.95~18.04.1", - "5.4.0-1089.97~18.04.1", - "5.4.0-1092.101~18.04.1", - "5.4.0-1093.102~18.04.1", - "5.4.0-1096.105~18.04.2", - "5.4.0-1097.106~18.04.1", - "5.4.0-1098.107~18.04.1", - "5.4.0-1100.109~18.04.1", - "5.4.0-1101.110~18.04.1", - "5.4.0-1102.111~18.04.2", - "5.4.0-1103.112~18.04.1", - "5.4.0-1104.113~18.04.1", - "5.4.0-1105.114~18.04.1", - "5.4.0-1106.115~18.04.1", - "5.4.0-1107.116~18.04.1", - "5.4.0-1108.117~18.04.1", - "5.4.0-1109.118~18.04.1", - "5.4.0-1110.119~18.04.1", - "5.4.0-1111.120~18.04.1", - "5.4.0-1112.121~18.04.1", - "5.4.0-1113.122~18.04.1", - "5.4.0-1115.124~18.04.1", - "5.4.0-1116.125~18.04.1", - "5.4.0-1117.126~18.04.1", - "5.4.0-1118.127~18.04.1", - "5.4.0-1120.129~18.04.1", - "5.4.0-1121.130~18.04.1", - "5.4.0-1122.131~18.04.1", - "5.4.0-1123.132~18.04.1", - "5.4.0-1124.133~18.04.1", - "5.4.0-1125.134~18.04.1", - "5.4.0-1126.135~18.04.1", - "5.4.0-1127.136~18.04.1", - "5.4.0-1128.137~18.04.1", - "5.4.0-1129.138~18.04.1", - "5.4.0-1130.139~18.04.1", - "5.4.0-1132.141~18.04.1", - "5.4.0-1133.142~18.04.1", - "5.4.0-1134.143~18.04.1", - "5.4.0-1135.144~18.04.1", - "5.4.0-1136.145~18.04.1", - "5.4.0-1137.146~18.04.1", - "5.4.0-1138.147~18.04.1", - "5.4.0-1139.148~18.04.1", - "5.4.0-1140.149~18.04.1", - "5.4.0-1141.150~18.04.1", - "5.4.0-1142.151~18.04.1", - "5.4.0-1143.152~18.04.1", - "5.4.0-1145.154~18.04.1", - "5.4.0-1147.156~18.04.1", - "5.4.0-1148.157~18.04.1", - "5.4.0-1149.158~18.04.1", - "5.4.0-1150.159~18.04.1", - "5.4.0-1151.160~18.04.1", - "5.4.0-1152.161~18.04.1", - "5.4.0-1153.162~18.04.1", - "5.4.0-1154.163~18.04.1", - "5.4.0-1155.164~18.04.1", - "5.4.0-1156.165~18.04.1", - "5.4.0-1157.166~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-gcp-5.4-headers-5.4.0-1157", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-gcp-5.4-tools-5.4.0-1157", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gke-4.15", - "purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1079.84?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1030.32", - "4.15.0-1032.34", - "4.15.0-1033.35", - "4.15.0-1034.36", - "4.15.0-1036.38", - "4.15.0-1037.39", - "4.15.0-1040.42", - "4.15.0-1041.43", - "4.15.0-1042.44", - "4.15.0-1044.46", - "4.15.0-1045.48", - "4.15.0-1046.49", - "4.15.0-1048.51", - "4.15.0-1049.52", - "4.15.0-1050.53", - "4.15.0-1052.55", - "4.15.0-1055.58", - "4.15.0-1057.60", - "4.15.0-1058.61", - "4.15.0-1059.62", - "4.15.0-1063.66", - "4.15.0-1064.67", - "4.15.0-1066.69", - "4.15.0-1067.70", - "4.15.0-1069.72", - "4.15.0-1070.73", - "4.15.0-1072.76", - "4.15.0-1073.78", - "4.15.0-1074.79", - "4.15.0-1076.81", - "4.15.0-1077.82", - "4.15.0-1078.83", - "4.15.0-1079.84" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-gke-4.15-headers-4.15.0-1079", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-gke-4.15-tools-4.15.0-1079", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-headers-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-modules-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - }, - { - "binary_name": "linux-tools-4.15.0-1079-gke", - "binary_version": "4.15.0-1079.84" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gke-5.4", - "purl": "pkg:deb/ubuntu/linux-gke-5.4@5.4.0-1080.86~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1025.25~18.04.1", - "5.4.0-1027.28~18.04.1", - "5.4.0-1029.31~18.04.1", - "5.4.0-1030.32~18.04.1", - "5.4.0-1032.34~18.04.1", - "5.4.0-1033.35~18.04.1", - "5.4.0-1035.37~18.04.1", - "5.4.0-1036.38~18.04.1", - "5.4.0-1037.39~18.04.1", - "5.4.0-1039.41~18.04.1", - "5.4.0-1040.42~18.04.1", - "5.4.0-1042.44~18.04.1", - "5.4.0-1043.45~18.04.1", - "5.4.0-1044.46~18.04.1", - "5.4.0-1046.48~18.04.1", - "5.4.0-1049.52~18.04.1", - "5.4.0-1051.54~18.04.1", - "5.4.0-1052.55~18.04.1", - "5.4.0-1053.56~18.04.1", - "5.4.0-1054.57~18.04.1", - "5.4.0-1055.58~18.04.1", - "5.4.0-1056.59~18.04.1", - "5.4.0-1057.60~18.04.1", - "5.4.0-1059.62~18.04.1", - "5.4.0-1061.64~18.04.1", - "5.4.0-1062.65~18.04.1", - "5.4.0-1063.66~18.04.1", - "5.4.0-1065.68~18.04.1", - "5.4.0-1066.69~18.04.1", - "5.4.0-1067.70~18.04.1", - "5.4.0-1068.71~18.04.1", - "5.4.0-1071.76~18.04.3", - "5.4.0-1072.77~18.04.1", - "5.4.0-1074.79~18.04.1", - "5.4.0-1076.82~18.04.1", - "5.4.0-1078.84~18.04.1", - "5.4.0-1080.86~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-gke-5.4-headers-5.4.0-1080", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-gke-5.4-tools-5.4.0-1080", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1080-gke", - "binary_version": "5.4.0-1080.86~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-gkeop-5.4", - "purl": "pkg:deb/ubuntu/linux-gkeop-5.4@5.4.0-1051.54~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1001.1", - "5.4.0-1003.3", - "5.4.0-1004.5", - "5.4.0-1005.6", - "5.4.0-1007.8~18.04.1", - "5.4.0-1008.9~18.04.1", - "5.4.0-1009.10~18.04.1", - "5.4.0-1010.11~18.04.1", - "5.4.0-1011.12~18.04.2", - "5.4.0-1012.13~18.04.1", - "5.4.0-1013.14~18.04.1", - "5.4.0-1014.15~18.04.1", - "5.4.0-1015.16~18.04.1", - "5.4.0-1016.17~18.04.1", - "5.4.0-1018.19~18.04.1", - "5.4.0-1021.22~18.04.1", - "5.4.0-1022.23~18.04.1", - "5.4.0-1023.24~18.04.1", - "5.4.0-1024.25~18.04.1", - "5.4.0-1025.26~18.04.1", - "5.4.0-1026.27~18.04.1", - "5.4.0-1027.28~18.04.1", - "5.4.0-1029.30~18.04.2", - "5.4.0-1031.32~18.04.1", - "5.4.0-1032.33~18.04.1", - "5.4.0-1033.34~18.04.1", - "5.4.0-1034.35~18.04.1", - "5.4.0-1036.37~18.04.1", - "5.4.0-1037.38~18.04.1", - "5.4.0-1038.39~18.04.1", - "5.4.0-1039.40~18.04.1", - "5.4.0-1040.41~18.04.1", - "5.4.0-1043.44~18.04.1", - "5.4.0-1046.48~18.04.1", - "5.4.0-1048.51~18.04.1", - "5.4.0-1049.52~18.04.1", - "5.4.0-1051.54~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-gkeop-5.4-cloud-tools-5.4.0-1051", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-gkeop-5.4-headers-5.4.0-1051", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-gkeop-5.4-source-5.4.0", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-gkeop-5.4-tools-5.4.0-1051", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1051-gkeop", - "binary_version": "5.4.0-1051.54~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-hwe", - "purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.18.0-13.14~18.04.1", - "4.18.0-14.15~18.04.1", - "4.18.0-15.16~18.04.1", - "4.18.0-16.17~18.04.1", - "4.18.0-17.18~18.04.1", - "4.18.0-18.19~18.04.1", - "4.18.0-20.21~18.04.1", - "4.18.0-21.22~18.04.1", - "4.18.0-22.23~18.04.1", - "4.18.0-24.25~18.04.1", - "4.18.0-25.26~18.04.1", - "5.0.0-23.24~18.04.1", - "5.0.0-25.26~18.04.1", - "5.0.0-27.28~18.04.1", - "5.0.0-29.31~18.04.1", - "5.0.0-31.33~18.04.1", - "5.0.0-32.34~18.04.2", - "5.0.0-35.38~18.04.1", - "5.0.0-36.39~18.04.1", - "5.0.0-37.40~18.04.1", - "5.3.0-26.28~18.04.1", - "5.3.0-28.30~18.04.1", - "5.3.0-40.32~18.04.1", - "5.3.0-42.34~18.04.1", - "5.3.0-45.37~18.04.1", - "5.3.0-46.38~18.04.1", - "5.3.0-51.44~18.04.2", - "5.3.0-53.47~18.04.1", - "5.3.0-59.53~18.04.1", - "5.3.0-61.55~18.04.1", - "5.3.0-62.56~18.04.1", - "5.3.0-64.58~18.04.1", - "5.3.0-65.59", - "5.3.0-66.60", - "5.3.0-67.61", - "5.3.0-68.63", - "5.3.0-69.65", - "5.3.0-70.66", - "5.3.0-72.68", - "5.3.0-73.69", - "5.3.0-74.70", - "5.3.0-75.71", - "5.3.0-76.72" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "crypto-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fat-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "firewire-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "floppy-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fs-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "input-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "ipmi-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "kernel-image-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-buildinfo-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-buildinfo-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-headers-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-headers-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-cloud-tools-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-headers-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-tools-5.3.0-76", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-hwe-udebs-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-modules-extra-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-source-5.3.0", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-tools-5.3.0-76-generic", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "linux-tools-5.3.0-76-lowlatency", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "md-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "message-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "mouse-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "multipath-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nfs-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-shared-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "nic-usb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "parport-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pata-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pcmcia-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "plip-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "ppp-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "sata-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "scsi-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "serial-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "storage-core-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "usb-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "virtio-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - }, - { - "binary_name": "vlan-modules-5.3.0-76-generic-di", - "binary_version": "5.3.0-76.72" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-hwe-5.4", - "purl": "pkg:deb/ubuntu/linux-hwe-5.4@5.4.0-225.245~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-37.41~18.04.1", - "5.4.0-39.43~18.04.1", - "5.4.0-40.44~18.04.1", - "5.4.0-42.46~18.04.1", - "5.4.0-45.49~18.04.2", - "5.4.0-47.51~18.04.1", - "5.4.0-48.52~18.04.1", - "5.4.0-51.56~18.04.1", - "5.4.0-52.57~18.04.1", - "5.4.0-53.59~18.04.1", - "5.4.0-54.60~18.04.1", - "5.4.0-56.62~18.04.1", - "5.4.0-58.64~18.04.1", - "5.4.0-59.65~18.04.1", - "5.4.0-60.67~18.04.1", - "5.4.0-62.70~18.04.1", - "5.4.0-64.72~18.04.1", - "5.4.0-65.73~18.04.1", - "5.4.0-66.74~18.04.2", - "5.4.0-67.75~18.04.1", - "5.4.0-70.78~18.04.1", - "5.4.0-71.79~18.04.1", - "5.4.0-72.80~18.04.1", - "5.4.0-73.82~18.04.1", - "5.4.0-74.83~18.04.1", - "5.4.0-77.86~18.04.1", - "5.4.0-80.90~18.04.1", - "5.4.0-81.91~18.04.1", - "5.4.0-84.94~18.04.1", - "5.4.0-86.97~18.04.1", - "5.4.0-87.98~18.04.1", - "5.4.0-89.100~18.04.1", - "5.4.0-90.101~18.04.1", - "5.4.0-91.102~18.04.1", - "5.4.0-92.103~18.04.2", - "5.4.0-94.106~18.04.1", - "5.4.0-96.109~18.04.1", - "5.4.0-97.110~18.04.1", - "5.4.0-99.112~18.04.1", - "5.4.0-100.113~18.04.1", - "5.4.0-104.118~18.04.1", - "5.4.0-105.119~18.04.1", - "5.4.0-107.121~18.04.1", - "5.4.0-109.123~18.04.1", - "5.4.0-110.124~18.04.1", - "5.4.0-113.127~18.04.1", - "5.4.0-117.132~18.04.1", - "5.4.0-120.136~18.04.1", - "5.4.0-121.137~18.04.1", - "5.4.0-122.138~18.04.1", - "5.4.0-124.140~18.04.1", - "5.4.0-125.141~18.04.1", - "5.4.0-126.142~18.04.1", - "5.4.0-128.144~18.04.1", - "5.4.0-131.147~18.04.1", - "5.4.0-132.148~18.04.1", - "5.4.0-133.149~18.04.1", - "5.4.0-135.152~18.04.2", - "5.4.0-136.153~18.04.1", - "5.4.0-137.154~18.04.1", - "5.4.0-139.156~18.04.1", - "5.4.0-144.161~18.04.1", - "5.4.0-146.163~18.04.1", - "5.4.0-147.164~18.04.1", - "5.4.0-148.165~18.04.1", - "5.4.0-149.166~18.04.1", - "5.4.0-150.167~18.04.1", - "5.4.0-152.169~18.04.1", - "5.4.0-153.170~18.04.1", - "5.4.0-155.172~18.04.1", - "5.4.0-156.173~18.04.1", - "5.4.0-159.176~18.04.1", - "5.4.0-162.179~18.04.1", - "5.4.0-163.180~18.04.1", - "5.4.0-164.181~18.04.1", - "5.4.0-165.182~18.04.1", - "5.4.0-166.183~18.04.2", - "5.4.0-167.184~18.04.1", - "5.4.0-169.187~18.04.1", - "5.4.0-170.188~18.04.1", - "5.4.0-171.189~18.04.1", - "5.4.0-172.190~18.04.1", - "5.4.0-173.191~18.04.1", - "5.4.0-174.193~18.04.1", - "5.4.0-175.195~18.04.1", - "5.4.0-177.197~18.04.1", - "5.4.0-181.201~18.04.1", - "5.4.0-182.202~18.04.1", - "5.4.0-186.206~18.04.1", - "5.4.0-187.207~18.04.1", - "5.4.0-189.209~18.04.1", - "5.4.0-190.210~18.04.1", - "5.4.0-192.212~18.04.1", - "5.4.0-193.213~18.04.1", - "5.4.0-195.215~18.04.1", - "5.4.0-196.216~18.04.1", - "5.4.0-198.218~18.04.1", - "5.4.0-200.220~18.04.1", - "5.4.0-202.222~18.04.1", - "5.4.0-204.224~18.04.1", - "5.4.0-205.225~18.04.1", - "5.4.0-208.228~18.04.1", - "5.4.0-211.231~18.04.1", - "5.4.0-212.232~18.04.1", - "5.4.0-214.234~18.04.1", - "5.4.0-215.235~18.04.1", - "5.4.0-216.236~18.04.1", - "5.4.0-218.238~18.04.1", - "5.4.0-219.239~18.04.1", - "5.4.0-220.240~18.04.1", - "5.4.0-221.241~18.04.1", - "5.4.0-222.242~18.04.1", - "5.4.0-223.243~18.04.1", - "5.4.0-224.244~18.04.1", - "5.4.0-225.245~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "crypto-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "dasd-extra-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "dasd-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "fat-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "fb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "firewire-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "floppy-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "fs-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "input-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "ipmi-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "kernel-image-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-cloud-tools-5.4.0-225", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-cloud-tools-common", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-headers-5.4.0-225", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-source-5.4.0", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-tools-5.4.0-225", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-tools-common", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-hwe-5.4-udebs-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-225-generic", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "md-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "message-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "mouse-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "multipath-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "nfs-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "nic-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "nic-shared-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "nic-usb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "parport-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "pata-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "pcmcia-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "plip-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "ppp-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "sata-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "scsi-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "serial-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "storage-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "usb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "virtio-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - }, - { - "binary_name": "vlan-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-hwe-edge", - "purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-15.16~18.04.1", - "5.0.0-16.17~18.04.1", - "5.0.0-17.18~18.04.1", - "5.0.0-19.20~18.04.1", - "5.0.0-20.21~18.04.1", - "5.3.0-19.20~18.04.2", - "5.3.0-22.24~18.04.1", - "5.3.0-23.25~18.04.1", - "5.3.0-23.25~18.04.2", - "5.3.0-24.26~18.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "block-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "crypto-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "crypto-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "dasd-extra-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "dasd-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fat-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fat-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "firewire-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "floppy-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "input-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "input-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ipmi-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "kernel-image-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "kernel-image-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-buildinfo-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-headers-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-tools-5.3.0-24", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-hwe-edge-udebs-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-modules-extra-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-source-5.3.0", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-generic", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-generic-lpae", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "linux-tools-5.3.0-24-lowlatency", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "md-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "md-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "message-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "mouse-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "mouse-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "multipath-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "multipath-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nfs-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nfs-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-shared-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-usb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "parport-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "parport-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pata-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pcmcia-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "plip-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "plip-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ppp-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "ppp-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "sata-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "sata-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "scsi-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "scsi-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "serial-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "storage-core-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "usb-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "usb-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "virtio-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "vlan-modules-5.3.0-24-generic-di", - "binary_version": "5.3.0-24.26~18.04.2" - }, - { - "binary_name": "vlan-modules-5.3.0-24-generic-lpae-di", - "binary_version": "5.3.0-24.26~18.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-ibm-5.4", - "purl": "pkg:deb/ubuntu/linux-ibm-5.4@5.4.0-1100.105~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1010.11~18.04.2", - "5.4.0-1012.13~18.04.1", - "5.4.0-1014.15~18.04.1", - "5.4.0-1015.16~18.04.1", - "5.4.0-1017.19~18.04.1", - "5.4.0-1018.20~18.04.1", - "5.4.0-1019.21~18.04.1", - "5.4.0-1020.22~18.04.1", - "5.4.0-1021.23~18.04.1", - "5.4.0-1023.25~18.04.1", - "5.4.0-1026.29~18.04.1", - "5.4.0-1028.32~18.04.1", - "5.4.0-1029.33~18.04.1", - "5.4.0-1031.35~18.04.1", - "5.4.0-1032.36~18.04.1", - "5.4.0-1033.37~18.04.1", - "5.4.0-1034.38~18.04.1", - "5.4.0-1036.41~18.04.1", - "5.4.0-1037.42~18.04.1", - "5.4.0-1040.45~18.04.2", - "5.4.0-1041.46~18.04.1", - "5.4.0-1042.47~18.04.1", - "5.4.0-1044.49~18.04.1", - "5.4.0-1045.50~18.04.1", - "5.4.0-1046.51~18.04.1", - "5.4.0-1047.52~18.04.1", - "5.4.0-1048.53~18.04.1", - "5.4.0-1049.54~18.04.1", - "5.4.0-1050.55~18.04.1", - "5.4.0-1051.56~18.04.1", - "5.4.0-1052.57~18.04.1", - "5.4.0-1053.58~18.04.1", - "5.4.0-1054.59~18.04.1", - "5.4.0-1056.61~18.04.1", - "5.4.0-1057.62~18.04.1", - "5.4.0-1058.63~18.04.1", - "5.4.0-1059.64~18.04.1", - "5.4.0-1060.65~18.04.1", - "5.4.0-1061.66~18.04.1", - "5.4.0-1063.68~18.04.1", - "5.4.0-1064.69~18.04.1", - "5.4.0-1065.70~18.04.1", - "5.4.0-1066.71~18.04.1", - "5.4.0-1067.72~18.04.1", - "5.4.0-1068.73~18.04.1", - "5.4.0-1069.74~18.04.1", - "5.4.0-1070.75~18.04.1", - "5.4.0-1071.76~18.04.1", - "5.4.0-1072.77~18.04.1", - "5.4.0-1073.78~18.04.1", - "5.4.0-1074.79~18.04.1", - "5.4.0-1075.80~18.04.1", - "5.4.0-1076.81~18.04.1", - "5.4.0-1077.82~18.04.1", - "5.4.0-1078.83~18.04.1", - "5.4.0-1079.84~18.04.1", - "5.4.0-1080.85~18.04.1", - "5.4.0-1081.86~18.04.1", - "5.4.0-1082.87~18.04.1", - "5.4.0-1083.88~18.04.1", - "5.4.0-1084.89~18.04.1", - "5.4.0-1085.90~18.04.1", - "5.4.0-1086.91~18.04.1", - "5.4.0-1090.95~18.04.1", - "5.4.0-1092.97~18.04.1", - "5.4.0-1093.98~18.04.1", - "5.4.0-1094.99~18.04.1", - "5.4.0-1095.100~18.04.1", - "5.4.0-1096.101~18.04.1", - "5.4.0-1097.102~18.04.1", - "5.4.0-1098.103~18.04.1", - "5.4.0-1099.104~18.04.1", - "5.4.0-1100.105~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-ibm-5.4-cloud-tools-common", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-ibm-5.4-headers-5.4.0-1100", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-ibm-5.4-source-5.4.0", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-ibm-5.4-tools-5.4.0-1100", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-ibm-5.4-tools-common", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@4.15.0-1170.175?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2", - "4.15.0-1003.3", - "4.15.0-1004.4", - "4.15.0-1006.6", - "4.15.0-1008.8", - "4.15.0-1010.10", - "4.15.0-1011.11", - "4.15.0-1012.12", - "4.15.0-1016.16", - "4.15.0-1017.17", - "4.15.0-1019.19", - "4.15.0-1020.20", - "4.15.0-1021.21", - "4.15.0-1023.23", - "4.15.0-1025.25", - "4.15.0-1026.26", - "4.15.0-1027.27", - "4.15.0-1028.28", - "4.15.0-1029.29", - "4.15.0-1030.30", - "4.15.0-1031.31", - "4.15.0-1032.32", - "4.15.0-1034.34", - "4.15.0-1035.35", - "4.15.0-1036.36", - "4.15.0-1038.38", - "4.15.0-1039.39", - "4.15.0-1042.42", - "4.15.0-1043.43", - "4.15.0-1044.44", - "4.15.0-1046.46", - "4.15.0-1047.47", - "4.15.0-1048.48", - "4.15.0-1050.50", - "4.15.0-1051.51", - "4.15.0-1052.52", - "4.15.0-1053.53", - "4.15.0-1056.57", - "4.15.0-1058.59", - "4.15.0-1059.60", - "4.15.0-1060.61", - "4.15.0-1067.68", - "4.15.0-1069.70", - "4.15.0-1071.72", - "4.15.0-1072.73", - "4.15.0-1074.75", - "4.15.0-1075.76", - "4.15.0-1077.79", - "4.15.0-1079.81", - "4.15.0-1081.83", - "4.15.0-1082.84", - "4.15.0-1084.86", - "4.15.0-1085.87", - "4.15.0-1086.88", - "4.15.0-1087.89", - "4.15.0-1088.90", - "4.15.0-1089.91", - "4.15.0-1090.92", - "4.15.0-1091.93", - "4.15.0-1092.94", - "4.15.0-1094.96", - "4.15.0-1097.99", - "4.15.0-1098.100", - "4.15.0-1099.101", - "4.15.0-1100.102", - "4.15.0-1101.103", - "4.15.0-1102.104", - "4.15.0-1103.105", - "4.15.0-1105.107", - "4.15.0-1106.108", - "4.15.0-1107.109", - "4.15.0-1109.112", - "4.15.0-1110.113", - "4.15.0-1112.115", - "4.15.0-1113.116", - "4.15.0-1114.117", - "4.15.0-1116.119", - "4.15.0-1119.123", - "4.15.0-1122.127", - "4.15.0-1123.128", - "4.15.0-1125.130", - "4.15.0-1126.131", - "4.15.0-1127.132", - "4.15.0-1128.133", - "4.15.0-1129.134", - "4.15.0-1132.137", - "4.15.0-1133.138", - "4.15.0-1134.139", - "4.15.0-1135.140", - "4.15.0-1136.141", - "4.15.0-1137.142", - "4.15.0-1138.143", - "4.15.0-1139.144", - "4.15.0-1140.145", - "4.15.0-1141.146", - "4.15.0-1142.147", - "4.15.0-1143.148", - "4.15.0-1144.149", - "4.15.0-1145.150", - "4.15.0-1146.151", - "4.15.0-1147.152", - "4.15.0-1148.153", - "4.15.0-1149.154", - "4.15.0-1150.155", - "4.15.0-1151.156", - "4.15.0-1152.157", - "4.15.0-1153.158", - "4.15.0-1154.159", - "4.15.0-1155.160", - "4.15.0-1156.161", - "4.15.0-1157.162", - "4.15.0-1158.163", - "4.15.0-1159.164", - "4.15.0-1160.165", - "4.15.0-1161.166", - "4.15.0-1162.167", - "4.15.0-1163.168", - "4.15.0-1164.169", - "4.15.0-1165.170", - "4.15.0-1166.171", - "4.15.0-1167.172", - "4.15.0-1168.173", - "4.15.0-1169.174", - "4.15.0-1170.175" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1170-kvm", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-headers-4.15.0-1170-kvm", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-image-4.15.0-1170-kvm", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-kvm-headers-4.15.0-1170", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-kvm-tools-4.15.0-1170", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-modules-4.15.0-1170-kvm", - "binary_version": "4.15.0-1170.175" - }, - { - "binary_name": "linux-tools-4.15.0-1170-kvm", - "binary_version": "4.15.0-1170.175" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oem", - "purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1103.114?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.3", - "4.15.0-1004.5", - "4.15.0-1006.9", - "4.15.0-1008.11", - "4.15.0-1009.12", - "4.15.0-1012.15", - "4.15.0-1013.16", - "4.15.0-1015.18", - "4.15.0-1017.20", - "4.15.0-1018.21", - "4.15.0-1021.24", - "4.15.0-1024.29", - "4.15.0-1026.31", - "4.15.0-1028.33", - "4.15.0-1030.35", - "4.15.0-1033.38", - "4.15.0-1034.39", - "4.15.0-1035.40", - "4.15.0-1036.41", - "4.15.0-1038.43", - "4.15.0-1039.44", - "4.15.0-1043.48", - "4.15.0-1045.50", - "4.15.0-1050.57", - "4.15.0-1056.65", - "4.15.0-1057.66", - "4.15.0-1059.68", - "4.15.0-1063.72", - "4.15.0-1064.73", - "4.15.0-1065.75", - "4.15.0-1066.76", - "4.15.0-1067.77", - "4.15.0-1069.79", - "4.15.0-1073.83", - "4.15.0-1076.86", - "4.15.0-1079.89", - "4.15.0-1080.90", - "4.15.0-1081.91", - "4.15.0-1087.97", - "4.15.0-1090.100", - "4.15.0-1091.101", - "4.15.0-1093.103", - "4.15.0-1094.104", - "4.15.0-1096.106", - "4.15.0-1097.107", - "4.15.0-1099.109", - "4.15.0-1100.110", - "4.15.0-1101.112", - "4.15.0-1102.113", - "4.15.0-1103.114" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "crypto-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "fat-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "fb-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "firewire-core-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "floppy-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "fs-core-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "fs-secondary-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "input-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "ipmi-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "irda-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "kernel-image-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1103-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-headers-4.15.0-1103-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1103-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-modules-4.15.0-1103-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-oem-headers-4.15.0-1103", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-oem-tools-4.15.0-1103", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-tools-4.15.0-1103-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "linux-udebs-oem", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "md-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "message-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "mouse-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "multipath-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "nfs-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "nic-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "nic-pcmcia-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "nic-shared-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "nic-usb-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "parport-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "pata-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "pcmcia-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "pcmcia-storage-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "plip-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "ppp-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "sata-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "scsi-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "serial-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "storage-core-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "usb-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "virtio-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - }, - { - "binary_name": "vlan-modules-4.15.0-1103-oem-di", - "binary_version": "4.15.0-1103.114" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@4.15.0-1150.161?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1007.9", - "4.15.0-1008.10", - "4.15.0-1009.11", - "4.15.0-1010.12", - "4.15.0-1011.13", - "4.15.0-1013.15", - "4.15.0-1014.16", - "4.15.0-1015.17", - "4.15.0-1017.19", - "4.15.0-1018.20", - "4.15.0-1021.23", - "4.15.0-1022.25", - "4.15.0-1023.26", - "4.15.0-1025.28", - "4.15.0-1026.29", - "4.15.0-1027.30", - "4.15.0-1029.32", - "4.15.0-1030.33", - "4.15.0-1031.34", - "4.15.0-1033.36", - "4.15.0-1035.39", - "4.15.0-1037.41", - "4.15.0-1038.42", - "4.15.0-1039.43", - "4.15.0-1045.49", - "4.15.0-1047.51", - "4.15.0-1048.52", - "4.15.0-1050.54", - "4.15.0-1051.55", - "4.15.0-1053.57", - "4.15.0-1054.58", - "4.15.0-1057.62", - "4.15.0-1058.64", - "4.15.0-1059.65", - "4.15.0-1061.67", - "4.15.0-1062.68", - "4.15.0-1063.70", - "4.15.0-1064.71", - "4.15.0-1065.73", - "4.15.0-1066.74", - "4.15.0-1067.75", - "4.15.0-1068.76", - "4.15.0-1069.77", - "4.15.0-1070.78", - "4.15.0-1071.79", - "4.15.0-1072.80", - "4.15.0-1075.83", - "4.15.0-1078.86", - "4.15.0-1079.87", - "4.15.0-1080.88", - "4.15.0-1081.89", - "4.15.0-1082.90", - "4.15.0-1083.91", - "4.15.0-1084.92", - "4.15.0-1085.93", - "4.15.0-1086.94", - "4.15.0-1087.95", - "4.15.0-1089.98", - "4.15.0-1090.99", - "4.15.0-1091.100", - "4.15.0-1092.101", - "4.15.0-1093.102", - "4.15.0-1095.104", - "4.15.0-1098.108", - "4.15.0-1101.112", - "4.15.0-1102.113", - "4.15.0-1104.115", - "4.15.0-1105.116", - "4.15.0-1106.117", - "4.15.0-1107.118", - "4.15.0-1108.119", - "4.15.0-1111.122", - "4.15.0-1112.123", - "4.15.0-1113.124", - "4.15.0-1114.125", - "4.15.0-1115.126", - "4.15.0-1116.127", - "4.15.0-1117.128", - "4.15.0-1118.129", - "4.15.0-1119.130", - "4.15.0-1120.131", - "4.15.0-1121.132", - "4.15.0-1122.133", - "4.15.0-1123.134", - "4.15.0-1124.135", - "4.15.0-1125.136", - "4.15.0-1126.137", - "4.15.0-1127.138", - "4.15.0-1128.139", - "4.15.0-1129.140", - "4.15.0-1130.141", - "4.15.0-1131.142", - "4.15.0-1132.143", - "4.15.0-1133.144", - "4.15.0-1134.145", - "4.15.0-1135.146", - "4.15.0-1136.147", - "4.15.0-1137.148", - "4.15.0-1138.149", - "4.15.0-1139.150", - "4.15.0-1140.151", - "4.15.0-1141.152", - "4.15.0-1142.153", - "4.15.0-1143.154", - "4.15.0-1144.155", - "4.15.0-1145.156", - "4.15.0-1146.157", - "4.15.0-1147.158", - "4.15.0-1148.159", - "4.15.0-1149.160", - "4.15.0-1150.161" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-headers-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-modules-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-oracle-headers-4.15.0-1150", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-oracle-tools-4.15.0-1150", - "binary_version": "4.15.0-1150.161" - }, - { - "binary_name": "linux-tools-4.15.0-1150-oracle", - "binary_version": "4.15.0-1150.161" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oracle-5.0", - "purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.0.0-1007.12~18.04.1", - "5.0.0-1008.13~18.04.1", - "5.0.0-1009.14~18.04.1", - "5.0.0-1010.15~18.04.1", - "5.0.0-1011.16", - "5.0.0-1013.18", - "5.0.0-1014.19" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-headers-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-image-unsigned-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-modules-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-modules-extra-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-oracle-5.0-headers-5.0.0-1014", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-oracle-5.0-tools-5.0.0-1014", - "binary_version": "5.0.0-1014.19" - }, - { - "binary_name": "linux-tools-5.0.0-1014-oracle", - "binary_version": "5.0.0-1014.19" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:18.04:LTS", - "name": "linux-oracle-5.3", - "purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source&distro=bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1011.12~18.04.1", - "5.3.0-1013.14~18.04.1", - "5.3.0-1014.15~18.04.1", - "5.3.0-1016.18~18.04.1", - "5.3.0-1018.20~18.04.1", - "5.3.0-1024.26~18.04.1", - "5.3.0-1027.29~18.04.1", - "5.3.0-1028.30~18.04.1", - "5.3.0-1030.32~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-headers-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-modules-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-oracle-5.3-headers-5.3.0-1030", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-oracle-5.3-tools-5.3.0-1030", - "binary_version": "5.3.0-1030.32~18.04.1" - }, - { - "binary_name": "linux-tools-5.3.0-1030-oracle", - "binary_version": "5.3.0-1030.32~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-oracle-5.4", - "purl": "pkg:deb/ubuntu/linux-oracle-5.4@5.4.0-1151.161~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1019.19~18.04.1", - "5.4.0-1021.21~18.04.1", - "5.4.0-1022.22~18.04.1", - "5.4.0-1024.24~18.04.1", - "5.4.0-1025.25~18.04.1", - "5.4.0-1028.29~18.04.1", - "5.4.0-1029.31~18.04.1", - "5.4.0-1030.32~18.04.1", - "5.4.0-1033.35", - "5.4.0-1034.36~18.04.1", - "5.4.0-1035.38~18.04.1", - "5.4.0-1037.40~18.04.1", - "5.4.0-1038.41~18.04.1", - "5.4.0-1039.42~18.04.1", - "5.4.0-1041.44~18.04.1", - "5.4.0-1042.45~18.04.1", - "5.4.0-1043.46~18.04.1", - "5.4.0-1044.47~18.04.1", - "5.4.0-1046.50~18.04.2", - "5.4.0-1048.52~18.04.1", - "5.4.0-1049.53~18.04.1", - "5.4.0-1052.56~18.04.1", - "5.4.0-1053.57~18.04.1", - "5.4.0-1054.58~18.04.1", - "5.4.0-1055.59~18.04.1", - "5.4.0-1056.60~18.04.1", - "5.4.0-1057.61~18.04.1", - "5.4.0-1058.62~18.04.1", - "5.4.0-1059.63~18.04.1", - "5.4.0-1061.65~18.04.1", - "5.4.0-1062.66~18.04.1", - "5.4.0-1063.67~18.04.1", - "5.4.0-1064.68~18.04.1", - "5.4.0-1066.71~18.04.1", - "5.4.0-1067.72~18.04.1", - "5.4.0-1069.75~18.04.1", - "5.4.0-1070.76~18.04.1", - "5.4.0-1071.77~18.04.1", - "5.4.0-1073.79~18.04.1", - "5.4.0-1076.83~18.04.1", - "5.4.0-1078.86~18.04.1", - "5.4.0-1079.87~18.04.1", - "5.4.0-1081.89~18.04.1", - "5.4.0-1082.90~18.04.1", - "5.4.0-1083.91~18.04.1", - "5.4.0-1084.92~18.04.1", - "5.4.0-1086.95~18.04.1", - "5.4.0-1087.96~18.04.1", - "5.4.0-1090.99~18.04.2", - "5.4.0-1091.100~18.04.1", - "5.4.0-1092.101~18.04.1", - "5.4.0-1093.102~18.04.1", - "5.4.0-1094.103~18.04.1", - "5.4.0-1098.107~18.04.1", - "5.4.0-1099.108~18.04.1", - "5.4.0-1100.109~18.04.1", - "5.4.0-1101.110~18.04.1", - "5.4.0-1102.111~18.04.1", - "5.4.0-1103.112~18.04.1", - "5.4.0-1104.113~18.04.1", - "5.4.0-1105.114~18.04.1", - "5.4.0-1106.115~18.04.1", - "5.4.0-1107.116~18.04.1", - "5.4.0-1108.117~18.04.1", - "5.4.0-1109.118~18.04.1", - "5.4.0-1110.119~18.04.1", - "5.4.0-1111.120~18.04.1", - "5.4.0-1112.121~18.04.4", - "5.4.0-1113.122~18.04.1", - "5.4.0-1115.124~18.04.1", - "5.4.0-1116.125~18.04.1", - "5.4.0-1117.126~18.04.1", - "5.4.0-1118.127~18.04.1", - "5.4.0-1119.128~18.04.1", - "5.4.0-1120.129~18.04.1", - "5.4.0-1121.130~18.04.1", - "5.4.0-1122.131~18.04.1", - "5.4.0-1123.132~18.04.1", - "5.4.0-1124.133~18.04.1", - "5.4.0-1125.134~18.04.1", - "5.4.0-1126.135~18.04.1", - "5.4.0-1127.136~18.04.1", - "5.4.0-1129.138~18.04.1", - "5.4.0-1130.139~18.04.1", - "5.4.0-1131.140~18.04.1", - "5.4.0-1132.141~18.04.1", - "5.4.0-1133.142~18.04.1", - "5.4.0-1134.143~18.04.1", - "5.4.0-1135.144~18.04.1", - "5.4.0-1136.145~18.04.1", - "5.4.0-1137.146~18.04.1", - "5.4.0-1138.147~18.04.1", - "5.4.0-1140.149~18.04.1", - "5.4.0-1141.151~18.04.1", - "5.4.0-1142.152~18.04.1", - "5.4.0-1143.153~18.04.1", - "5.4.0-1144.154~18.04.1", - "5.4.0-1145.155~18.04.1", - "5.4.0-1146.156~18.04.1", - "5.4.0-1148.158~18.04.1", - "5.4.0-1149.159~18.04.1", - "5.4.0-1150.160~18.04.1", - "5.4.0-1151.161~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-oracle-5.4-headers-5.4.0-1151", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-oracle-5.4-tools-5.4.0-1151", - "binary_version": "5.4.0-1151.161~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:18.04:LTS", - "name": "linux-raspi-5.4", - "purl": "pkg:deb/ubuntu/linux-raspi-5.4@5.4.0-1136.149~18.04.1?arch=source&distro=esm-infra/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1013.13~18.04.1", - "5.4.0-1015.15~18.04.1", - "5.4.0-1016.17~18.04.1", - "5.4.0-1018.20~18.04.1", - "5.4.0-1019.21~18.04.1", - "5.4.0-1021.24~18.04.1", - "5.4.0-1022.25~18.04.1", - "5.4.0-1023.26~18.04.1", - "5.4.0-1025.28~18.04.1", - "5.4.0-1026.29~18.04.1", - "5.4.0-1028.31~18.04.1", - "5.4.0-1029.32~18.04.1", - "5.4.0-1030.33~18.04.1", - "5.4.0-1032.35~18.04.1", - "5.4.0-1033.36~18.04.1", - "5.4.0-1034.37~18.04.1", - "5.4.0-1035.38~18.04.1", - "5.4.0-1036.39~18.04.1", - "5.4.0-1038.41~18.04.1", - "5.4.0-1041.45~18.04.1", - "5.4.0-1042.46~18.04.3", - "5.4.0-1043.47~18.04.1", - "5.4.0-1044.48~18.04.1", - "5.4.0-1045.49~18.04.1", - "5.4.0-1046.50~18.04.1", - "5.4.0-1047.52~18.04.1", - "5.4.0-1048.53~18.04.1", - "5.4.0-1050.56~18.04.1", - "5.4.0-1052.58~18.04.1", - "5.4.0-1053.60~18.04.1", - "5.4.0-1055.62~18.04.1", - "5.4.0-1056.63~18.04.1", - "5.4.0-1058.65~18.04.1", - "5.4.0-1059.66~18.04.1", - "5.4.0-1060.68~18.04.1", - "5.4.0-1062.70~18.04.1", - "5.4.0-1065.75~18.04.1", - "5.4.0-1066.76~18.04.1", - "5.4.0-1068.78~18.04.1", - "5.4.0-1069.79~18.04.1", - "5.4.0-1070.80~18.04.1", - "5.4.0-1071.81~18.04.1", - "5.4.0-1073.84~18.04.1", - "5.4.0-1074.85~18.04.1", - "5.4.0-1077.88~18.04.2", - "5.4.0-1078.89~18.04.1", - "5.4.0-1079.90~18.04.1", - "5.4.0-1080.91~18.04.1", - "5.4.0-1081.92~18.04.1", - "5.4.0-1082.93~18.04.1", - "5.4.0-1083.94~18.04.1", - "5.4.0-1084.95~18.04.1", - "5.4.0-1085.96~18.04.1", - "5.4.0-1086.97~18.04.1", - "5.4.0-1088.99~18.04.1", - "5.4.0-1089.100~18.04.1", - "5.4.0-1090.101~18.04.1", - "5.4.0-1091.102~18.04.1", - "5.4.0-1092.103~18.04.1", - "5.4.0-1093.104~18.04.1", - "5.4.0-1094.105~18.04.1", - "5.4.0-1095.106~18.04.1", - "5.4.0-1096.107~18.04.1", - "5.4.0-1097.109~18.04.2", - "5.4.0-1098.110~18.04.2", - "5.4.0-1100.112~18.04.1", - "5.4.0-1101.113~18.04.1", - "5.4.0-1102.114~18.04.1", - "5.4.0-1103.115~18.04.1", - "5.4.0-1104.116~18.04.1", - "5.4.0-1105.117~18.04.1", - "5.4.0-1106.118~18.04.1", - "5.4.0-1107.119~18.04.1", - "5.4.0-1108.120~18.04.1", - "5.4.0-1109.121~18.04.1", - "5.4.0-1110.122~18.04.1", - "5.4.0-1111.123~18.04.1", - "5.4.0-1112.124~18.04.1", - "5.4.0-1114.126~18.04.1", - "5.4.0-1115.127~18.04.1", - "5.4.0-1116.128~18.04.1", - "5.4.0-1117.129~18.04.1", - "5.4.0-1118.130~18.04.1", - "5.4.0-1119.131~18.04.1", - "5.4.0-1120.132~18.04.1", - "5.4.0-1121.133~18.04.1", - "5.4.0-1122.134~18.04.1", - "5.4.0-1129.142~18.04.1", - "5.4.0-1130.143~18.04.1", - "5.4.0-1131.144~18.04.1", - "5.4.0-1132.145~18.04.1", - "5.4.0-1133.146~18.04.1", - "5.4.0-1134.147~18.04.1", - "5.4.0-1135.148~18.04.1", - "5.4.0-1136.149~18.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-headers-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-image-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-modules-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-raspi-5.4-headers-5.4.0-1136", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-raspi-5.4-tools-5.4.0-1136", - "binary_version": "5.4.0-1136.149~18.04.1" - }, - { - "binary_name": "linux-tools-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149~18.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2126.132?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-2000.4", - "4.15.0-2018.18", - "4.15.0-2021.21", - "4.15.0-2022.22", - "4.15.0-2024.24", - "4.15.0-2025.25", - "4.15.0-2026.26", - "4.15.0-2027.27", - "4.15.0-2030.31", - "4.15.0-2031.32", - "4.15.0-2033.34", - "4.15.0-2034.35", - "4.15.0-2035.37", - "4.15.0-2036.38", - "4.15.0-2037.39", - "4.15.0-2038.40", - "4.15.0-2039.41", - "4.15.0-2040.42", - "4.15.0-2041.43", - "4.15.0-2042.44", - "4.15.0-2044.46", - "4.15.0-2045.47", - "4.15.0-2048.50", - "4.15.0-2051.53", - "4.15.0-2052.54", - "4.15.0-2053.55", - "4.15.0-2054.56", - "4.15.0-2055.57", - "4.15.0-2056.58", - "4.15.0-2057.59", - "4.15.0-2059.61", - "4.15.0-2060.62", - "4.15.0-2061.63", - "4.15.0-2063.66", - "4.15.0-2064.67", - "4.15.0-2065.68", - "4.15.0-2066.69", - "4.15.0-2067.70", - "4.15.0-2069.72", - "4.15.0-2072.76", - "4.15.0-2075.80", - "4.15.0-2076.81", - "4.15.0-2078.83", - "4.15.0-2079.84", - "4.15.0-2080.85", - "4.15.0-2081.87", - "4.15.0-2082.88", - "4.15.0-2083.89", - "4.15.0-2085.91", - "4.15.0-2087.93", - "4.15.0-2089.95", - "4.15.0-2090.96", - "4.15.0-2092.98", - "4.15.0-2093.99", - "4.15.0-2094.100", - "4.15.0-2095.101", - "4.15.0-2096.102", - "4.15.0-2097.103", - "4.15.0-2098.104", - "4.15.0-2099.105", - "4.15.0-2100.106", - "4.15.0-2101.107", - "4.15.0-2102.108", - "4.15.0-2103.109", - "4.15.0-2104.110", - "4.15.0-2105.111", - "4.15.0-2106.112", - "4.15.0-2107.113", - "4.15.0-2108.114", - "4.15.0-2109.115", - "4.15.0-2110.116", - "4.15.0-2111.117", - "4.15.0-2112.118", - "4.15.0-2113.119", - "4.15.0-2114.120", - "4.15.0-2115.121", - "4.15.0-2116.122", - "4.15.0-2117.123", - "4.15.0-2118.124", - "4.15.0-2119.125", - "4.15.0-2120.126", - "4.15.0-2121.127", - "4.15.0-2122.128", - "4.15.0-2123.129", - "4.15.0-2124.130", - "4.15.0-2125.131", - "4.15.0-2126.132" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-4.15.0-2126", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-aws-fips-tools-4.15.0-2126", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-headers-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-modules-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - }, - { - "binary_name": "linux-tools-4.15.0-2126-aws-fips", - "binary_version": "4.15.0-2126.132" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-2104.110?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2", - "4.15.0-2006.7", - "4.15.0-2007.8", - "4.15.0-2008.9", - "4.15.0-2009.10", - "4.15.0-2012.14", - "4.15.0-2013.15", - "4.15.0-2015.17", - "4.15.0-2016.18", - "4.15.0-2017.20", - "4.15.0-2018.21", - "4.15.0-2020.23", - "4.15.0-2021.24", - "4.15.0-2022.25", - "4.15.0-2023.26", - "4.15.0-2024.27", - "4.15.0-2025.28", - "4.15.0-2026.29", - "4.15.0-2027.30", - "4.15.0-2030.33", - "4.15.0-2033.37", - "4.15.0-2034.38", - "4.15.0-2035.39", - "4.15.0-2036.40", - "4.15.0-2037.41", - "4.15.0-2038.42", - "4.15.0-2039.43", - "4.15.0-2041.45", - "4.15.0-2042.46", - "4.15.0-2043.47", - "4.15.0-2045.49", - "4.15.0-2046.50", - "4.15.0-2047.51", - "4.15.0-2048.52", - "4.15.0-2049.53", - "4.15.0-2050.54", - "4.15.0-2053.58", - "4.15.0-2056.62", - "4.15.0-2057.63", - "4.15.0-2059.65", - "4.15.0-2060.66", - "4.15.0-2062.68", - "4.15.0-2066.72", - "4.15.0-2067.73", - "4.15.0-2068.74", - "4.15.0-2070.76", - "4.15.0-2071.77", - "4.15.0-2072.78", - "4.15.0-2073.79", - "4.15.0-2074.80", - "4.15.0-2075.81", - "4.15.0-2076.82", - "4.15.0-2077.83", - "4.15.0-2078.84", - "4.15.0-2079.85", - "4.15.0-2080.86", - "4.15.0-2081.87", - "4.15.0-2082.88", - "4.15.0-2084.90", - "4.15.0-2085.91", - "4.15.0-2086.92", - "4.15.0-2087.93", - "4.15.0-2088.94", - "4.15.0-2089.95", - "4.15.0-2090.96", - "4.15.0-2091.97", - "4.15.0-2092.98", - "4.15.0-2093.99", - "4.15.0-2094.100", - "4.15.0-2095.101", - "4.15.0-2096.102", - "4.15.0-2097.103", - "4.15.0-2098.104", - "4.15.0-2099.105", - "4.15.0-2100.106", - "4.15.0-2101.107", - "4.15.0-2102.108", - "4.15.0-2104.110" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-4.15.0-2104", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-azure-fips-headers-4.15.0-2104", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-azure-fips-tools-4.15.0-2104", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-headers-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-modules-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - }, - { - "binary_name": "linux-tools-4.15.0-2104-azure-fips", - "binary_version": "4.15.0-2104.110" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.15.0-1143.155?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1027.32", - "4.15.0-1029.34", - "4.15.0-1034.39", - "4.15.0-1035.40", - "4.15.0-1037.42", - "4.15.0-1038.43", - "4.15.0-1039.44", - "4.15.0-1040.45", - "4.15.0-1041.46", - "4.15.0-1044.50", - "4.15.0-1045.52", - "4.15.0-1046.53", - "4.15.0-1048.55", - "4.15.0-1049.56", - "4.15.0-1050.58", - "4.15.0-1051.59", - "4.15.0-1052.60", - "4.15.0-1053.61", - "4.15.0-1054.62", - "4.15.0-1055.63", - "4.15.0-1056.64", - "4.15.0-1057.65", - "4.15.0-1058.66", - "4.15.0-1059.67", - "4.15.0-1060.68", - "4.15.0-1063.71", - "4.15.0-1066.75", - "4.15.0-1067.76", - "4.15.0-1068.77", - "4.15.0-1069.78", - "4.15.0-1070.79", - "4.15.0-1071.80", - "4.15.0-1072.81", - "4.15.0-1073.82", - "4.15.0-1075.84", - "4.15.0-1076.85", - "4.15.0-1078.87", - "4.15.0-1080.89", - "4.15.0-1081.90", - "4.15.0-1083.92", - "4.15.0-1084.93", - "4.15.0-1085.94", - "4.15.0-1087.96", - "4.15.0-1090.100", - "4.15.0-1093.104", - "4.15.0-1094.105", - "4.15.0-1096.107", - "4.15.0-1097.108", - "4.15.0-1098.109", - "4.15.0-1099.110", - "4.15.0-1100.111", - "4.15.0-1103.114", - "4.15.0-1104.115", - "4.15.0-1105.116", - "4.15.0-1107.118", - "4.15.0-1108.119", - "4.15.0-1109.120", - "4.15.0-1110.121", - "4.15.0-1111.122", - "4.15.0-1112.123", - "4.15.0-1113.124", - "4.15.0-1114.125", - "4.15.0-1115.126", - "4.15.0-1116.127", - "4.15.0-1117.128", - "4.15.0-1118.129", - "4.15.0-1119.130", - "4.15.0-1121.132", - "4.15.0-1122.133", - "4.15.0-1123.134", - "4.15.0-1124.135", - "4.15.0-1125.136", - "4.15.0-1126.137", - "4.15.0-1127.138", - "4.15.0-1128.139", - "4.15.0-1129.140", - "4.15.0-1130.141", - "4.15.0-1131.142", - "4.15.0-1132.143", - "4.15.0-1133.144", - "4.15.0-1134.145", - "4.15.0-1135.146", - "4.15.0-1136.147", - "4.15.0-1137.148", - "4.15.0-1138.149", - "4.15.0-1139.150", - "4.15.0-1140.151", - "4.15.0-1141.153", - "4.15.0-1142.154", - "4.15.0-1143.155" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-fips-headers-4.15.0-1143", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-fips-tools-4.15.0-1143", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-fips-tools-host", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-headers-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-image-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-image-hmac-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-modules-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - }, - { - "binary_name": "linux-tools-4.15.0-1143-fips", - "binary_version": "4.15.0-1143.155" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:18.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-2088.94?arch=source&distro=fips-updates/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-2013.14", - "4.15.0-2016.18", - "4.15.0-2017.19", - "4.15.0-2018.20", - "4.15.0-2019.21", - "4.15.0-2020.22", - "4.15.0-2021.23", - "4.15.0-2022.24", - "4.15.0-2024.26", - "4.15.0-2025.27", - "4.15.0-2026.28", - "4.15.0-2028.31", - "4.15.0-2029.32", - "4.15.0-2030.33", - "4.15.0-2031.34", - "4.15.0-2032.35", - "4.15.0-2034.37", - "4.15.0-2037.41", - "4.15.0-2040.45", - "4.15.0-2041.46", - "4.15.0-2043.48", - "4.15.0-2044.49", - "4.15.0-2045.50", - "4.15.0-2047.52", - "4.15.0-2050.55", - "4.15.0-2052.57", - "4.15.0-2054.59", - "4.15.0-2055.60", - "4.15.0-2056.61", - "4.15.0-2057.62", - "4.15.0-2058.63", - "4.15.0-2059.64", - "4.15.0-2060.65", - "4.15.0-2061.66", - "4.15.0-2062.67", - "4.15.0-2063.68", - "4.15.0-2064.69", - "4.15.0-2065.70", - "4.15.0-2066.71", - "4.15.0-2067.72", - "4.15.0-2068.73", - "4.15.0-2069.74", - "4.15.0-2070.75", - "4.15.0-2071.76", - "4.15.0-2072.77", - "4.15.0-2073.78", - "4.15.0-2074.79", - "4.15.0-2075.80", - "4.15.0-2076.81", - "4.15.0-2077.83", - "4.15.0-2078.84", - "4.15.0-2079.85", - "4.15.0-2080.86", - "4.15.0-2081.87", - "4.15.0-2082.88", - "4.15.0-2083.89", - "4.15.0-2084.90", - "4.15.0-2085.91", - "4.15.0-2086.92", - "4.15.0-2087.93", - "4.15.0-2088.94" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-gcp-fips-headers-4.15.0-2088", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-gcp-fips-tools-4.15.0-2088", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-headers-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-modules-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - }, - { - "binary_name": "linux-tools-4.15.0-2088-gcp-fips", - "binary_version": "4.15.0-2088.94" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@4.15.0-2000.4?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-2000.4" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-4.15.0-2000", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-aws-fips-tools-4.15.0-2000", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-buildinfo-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-headers-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-modules-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-modules-extra-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - }, - { - "binary_name": "linux-tools-4.15.0-2000-aws-fips", - "binary_version": "4.15.0-2000.4" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@4.15.0-1002.2?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1002.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-azure-fips-headers-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-azure-fips-tools-4.15.0-1002", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-buildinfo-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-cloud-tools-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-headers-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-modules-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - }, - { - "binary_name": "linux-tools-4.15.0-1002-azure-fips", - "binary_version": "4.15.0-1002.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@4.15.0-1011.12?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1011.12" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-fips-headers-4.15.0-1011", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-fips-tools-4.15.0-1011", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-fips-tools-host", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-headers-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-image-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-image-hmac-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-modules-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - }, - { - "binary_name": "linux-tools-4.15.0-1011-fips", - "binary_version": "4.15.0-1011.12" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:18.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@4.15.0-1001.1?arch=source&distro=fips/bionic" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "4.15.0-1001.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-gcp-fips-headers-4.15.0-1001", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-gcp-fips-tools-4.15.0-1001", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-headers-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-image-unsigned-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-image-unsigned-hmac-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-modules-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-modules-extra-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - }, - { - "binary_name": "linux-tools-4.15.0-1001-gcp-fips", - "binary_version": "4.15.0-1001.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@5.4.0-225.245?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-18.19", - "5.3.0-24.26", - "5.4.0-9.12", - "5.4.0-18.22", - "5.4.0-21.25", - "5.4.0-24.28", - "5.4.0-25.29", - "5.4.0-26.30", - "5.4.0-28.32", - "5.4.0-29.33", - "5.4.0-31.35", - "5.4.0-33.37", - "5.4.0-37.41", - "5.4.0-39.43", - "5.4.0-40.44", - "5.4.0-42.46", - "5.4.0-45.49", - "5.4.0-47.51", - "5.4.0-48.52", - "5.4.0-51.56", - "5.4.0-52.57", - "5.4.0-53.59", - "5.4.0-54.60", - "5.4.0-56.62", - "5.4.0-58.64", - "5.4.0-59.65", - "5.4.0-60.67", - "5.4.0-62.70", - "5.4.0-64.72", - "5.4.0-65.73", - "5.4.0-66.74", - "5.4.0-67.75", - "5.4.0-70.78", - "5.4.0-71.79", - "5.4.0-72.80", - "5.4.0-73.82", - "5.4.0-74.83", - "5.4.0-77.86", - "5.4.0-80.90", - "5.4.0-81.91", - "5.4.0-84.94", - "5.4.0-86.97", - "5.4.0-88.99", - "5.4.0-89.100", - "5.4.0-90.101", - "5.4.0-91.102", - "5.4.0-92.103", - "5.4.0-94.106", - "5.4.0-96.109", - "5.4.0-97.110", - "5.4.0-99.112", - "5.4.0-100.113", - "5.4.0-104.118", - "5.4.0-105.119", - "5.4.0-107.121", - "5.4.0-109.123", - "5.4.0-110.124", - "5.4.0-113.127", - "5.4.0-117.132", - "5.4.0-120.136", - "5.4.0-121.137", - "5.4.0-122.138", - "5.4.0-124.140", - "5.4.0-125.141", - "5.4.0-126.142", - "5.4.0-128.144", - "5.4.0-131.147", - "5.4.0-132.148", - "5.4.0-135.152", - "5.4.0-136.153", - "5.4.0-137.154", - "5.4.0-139.156", - "5.4.0-144.161", - "5.4.0-146.163", - "5.4.0-147.164", - "5.4.0-148.165", - "5.4.0-149.166", - "5.4.0-150.167", - "5.4.0-152.169", - "5.4.0-153.170", - "5.4.0-155.172", - "5.4.0-156.173", - "5.4.0-159.176", - "5.4.0-162.179", - "5.4.0-163.180", - "5.4.0-164.181", - "5.4.0-165.182", - "5.4.0-166.183", - "5.4.0-167.184", - "5.4.0-169.187", - "5.4.0-170.188", - "5.4.0-171.189", - "5.4.0-172.190", - "5.4.0-173.191", - "5.4.0-174.193", - "5.4.0-176.196", - "5.4.0-177.197", - "5.4.0-181.201", - "5.4.0-182.202", - "5.4.0-186.206", - "5.4.0-187.207", - "5.4.0-189.209", - "5.4.0-190.210", - "5.4.0-192.212", - "5.4.0-193.213", - "5.4.0-195.215", - "5.4.0-196.216", - "5.4.0-198.218", - "5.4.0-200.220", - "5.4.0-202.222", - "5.4.0-204.224", - "5.4.0-205.225", - "5.4.0-208.228", - "5.4.0-211.231", - "5.4.0-212.232", - "5.4.0-214.234", - "5.4.0-215.235", - "5.4.0-216.236", - "5.4.0-218.238", - "5.4.0-219.239", - "5.4.0-220.240", - "5.4.0-221.241", - "5.4.0-222.242", - "5.4.0-223.243", - "5.4.0-224.244", - "5.4.0-225.245" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "block-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "crypto-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "crypto-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "dasd-extra-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "dasd-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fat-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fat-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "firewire-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "floppy-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fs-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fs-core-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fs-secondary-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "fs-secondary-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "input-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "input-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "ipmi-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "ipmi-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "kernel-image-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "kernel-image-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-buildinfo-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-buildinfo-5.4.0-225-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-buildinfo-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-225", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-headers-5.4.0-225", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-headers-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-headers-5.4.0-225-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-headers-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-image-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-image-5.4.0-225-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-modules-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-modules-5.4.0-225-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-modules-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-modules-extra-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-source-5.4.0", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-5.4.0-225", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-5.4.0-225-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-5.4.0-225-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-5.4.0-225-lowlatency", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "linux-udebs-generic-lpae", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "md-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "md-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "message-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "mouse-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "mouse-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "multipath-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "multipath-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nfs-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nfs-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-pcmcia-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-shared-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-shared-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-usb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "nic-usb-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "parport-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "parport-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "pata-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "pcmcia-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "pcmcia-storage-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "plip-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "plip-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "ppp-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "ppp-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "sata-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "sata-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "scsi-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "scsi-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "serial-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "storage-core-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "storage-core-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "usb-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "usb-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "virtio-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "vlan-modules-5.4.0-225-generic-di", - "binary_version": "5.4.0-225.245" - }, - { - "binary_name": "vlan-modules-5.4.0-225-generic-lpae-di", - "binary_version": "5.4.0-225.245" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@5.4.0-1154.164?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1003.3", - "5.3.0-1008.9", - "5.3.0-1009.10", - "5.3.0-1010.11", - "5.4.0-1005.5", - "5.4.0-1007.7", - "5.4.0-1008.8", - "5.4.0-1009.9", - "5.4.0-1011.11", - "5.4.0-1015.15", - "5.4.0-1017.17", - "5.4.0-1018.18", - "5.4.0-1020.20", - "5.4.0-1021.21", - "5.4.0-1022.22", - "5.4.0-1024.24", - "5.4.0-1025.25", - "5.4.0-1028.29", - "5.4.0-1029.30", - "5.4.0-1030.31", - "5.4.0-1032.33", - "5.4.0-1034.35", - "5.4.0-1035.37", - "5.4.0-1037.39", - "5.4.0-1038.40", - "5.4.0-1039.41", - "5.4.0-1041.43", - "5.4.0-1043.45", - "5.4.0-1045.47", - "5.4.0-1047.49", - "5.4.0-1048.50", - "5.4.0-1049.51", - "5.4.0-1051.53", - "5.4.0-1054.57", - "5.4.0-1055.58", - "5.4.0-1056.59", - "5.4.0-1057.60", - "5.4.0-1058.61", - "5.4.0-1059.62", - "5.4.0-1060.63", - "5.4.0-1061.64", - "5.4.0-1063.66", - "5.4.0-1064.67", - "5.4.0-1065.68", - "5.4.0-1066.69", - "5.4.0-1068.72", - "5.4.0-1069.73", - "5.4.0-1071.76", - "5.4.0-1072.77", - "5.4.0-1073.78", - "5.4.0-1075.80", - "5.4.0-1078.84", - "5.4.0-1080.87", - "5.4.0-1081.88", - "5.4.0-1083.90", - "5.4.0-1084.91", - "5.4.0-1085.92", - "5.4.0-1086.93", - "5.4.0-1088.96", - "5.4.0-1089.97", - "5.4.0-1092.100", - "5.4.0-1093.101", - "5.4.0-1094.102", - "5.4.0-1096.104", - "5.4.0-1097.105", - "5.4.0-1099.107", - "5.4.0-1100.108", - "5.4.0-1101.109", - "5.4.0-1102.110", - "5.4.0-1103.111", - "5.4.0-1104.112", - "5.4.0-1105.113", - "5.4.0-1106.114", - "5.4.0-1107.115", - "5.4.0-1108.116", - "5.4.0-1109.118", - "5.4.0-1110.119", - "5.4.0-1111.120", - "5.4.0-1112.121", - "5.4.0-1113.123", - "5.4.0-1114.124", - "5.4.0-1116.126", - "5.4.0-1117.127", - "5.4.0-1118.128", - "5.4.0-1119.129", - "5.4.0-1120.130", - "5.4.0-1121.131", - "5.4.0-1122.132", - "5.4.0-1123.133", - "5.4.0-1124.134", - "5.4.0-1125.135", - "5.4.0-1126.136", - "5.4.0-1127.137", - "5.4.0-1128.138", - "5.4.0-1129.139", - "5.4.0-1130.140", - "5.4.0-1131.141", - "5.4.0-1132.142", - "5.4.0-1133.143", - "5.4.0-1134.144", - "5.4.0-1135.145", - "5.4.0-1136.146", - "5.4.0-1137.147", - "5.4.0-1139.149", - "5.4.0-1140.150", - "5.4.0-1142.152", - "5.4.0-1144.154", - "5.4.0-1145.155", - "5.4.0-1146.156", - "5.4.0-1147.157", - "5.4.0-1148.158", - "5.4.0-1149.159", - "5.4.0-1150.160", - "5.4.0-1151.161", - "5.4.0-1152.162", - "5.4.0-1153.163", - "5.4.0-1154.164" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-5.4.0-1154", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-aws-headers-5.4.0-1154", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-aws-tools-5.4.0-1154", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-headers-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-modules-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - }, - { - "binary_name": "linux-tools-5.4.0-1154-aws", - "binary_version": "5.4.0-1154.164" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-aws-5.11", - "purl": "pkg:deb/ubuntu/linux-aws-5.11@5.11.0-1028.31~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-1009.9~20.04.2", - "5.11.0-1014.15~20.04.1", - "5.11.0-1016.17~20.04.1", - "5.11.0-1017.18~20.04.1", - "5.11.0-1019.20~20.04.1", - "5.11.0-1020.21~20.04.2", - "5.11.0-1021.22~20.04.2", - "5.11.0-1022.23~20.04.1", - "5.11.0-1023.24~20.04.1", - "5.11.0-1025.27~20.04.1", - "5.11.0-1027.30~20.04.1", - "5.11.0-1028.31~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.11-cloud-tools-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-aws-5.11-headers-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-aws-5.11-tools-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-1028-aws", - "binary_version": "5.11.0-1028.31~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-aws-5.13", - "purl": "pkg:deb/ubuntu/linux-aws-5.13@5.13.0-1031.35~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1008.9~20.04.2", - "5.13.0-1011.12~20.04.1", - "5.13.0-1012.13~20.04.1", - "5.13.0-1014.15~20.04.1", - "5.13.0-1017.19~20.04.1", - "5.13.0-1019.21~20.04.1", - "5.13.0-1021.23~20.04.2", - "5.13.0-1022.24~20.04.1", - "5.13.0-1023.25~20.04.1", - "5.13.0-1025.27~20.04.1", - "5.13.0-1028.31~20.04.1", - "5.13.0-1029.32~20.04.1", - "5.13.0-1031.35~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.13-cloud-tools-5.13.0-1031", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-aws-5.13-headers-5.13.0-1031", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-aws-5.13-tools-5.13.0-1031", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-1031-aws", - "binary_version": "5.13.0-1031.35~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-aws-5.15", - "purl": "pkg:deb/ubuntu/linux-aws-5.15@5.15.0-1098.105~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1014.18~20.04.1", - "5.15.0-1015.19~20.04.1", - "5.15.0-1017.21~20.04.1", - "5.15.0-1019.23~20.04.1", - "5.15.0-1020.24~20.04.1", - "5.15.0-1021.25~20.04.1", - "5.15.0-1022.26~20.04.1", - "5.15.0-1023.27~20.04.1", - "5.15.0-1026.30~20.04.2", - "5.15.0-1027.31~20.04.1", - "5.15.0-1028.32~20.04.1", - "5.15.0-1030.34~20.04.1", - "5.15.0-1031.35~20.04.1", - "5.15.0-1033.37~20.04.1", - "5.15.0-1034.38~20.04.1", - "5.15.0-1035.39~20.04.1", - "5.15.0-1036.40~20.04.1", - "5.15.0-1037.41~20.04.1", - "5.15.0-1038.43~20.04.1", - "5.15.0-1039.44~20.04.1", - "5.15.0-1040.45~20.04.1", - "5.15.0-1041.46~20.04.1", - "5.15.0-1043.48~20.04.1", - "5.15.0-1044.49~20.04.1", - "5.15.0-1045.50~20.04.1", - "5.15.0-1047.52~20.04.1", - "5.15.0-1048.53~20.04.1", - "5.15.0-1049.54~20.04.1", - "5.15.0-1050.55~20.04.1", - "5.15.0-1051.56~20.04.1", - "5.15.0-1052.57~20.04.1", - "5.15.0-1053.58~20.04.1", - "5.15.0-1055.60~20.04.1", - "5.15.0-1056.61~20.04.1", - "5.15.0-1057.63~20.04.1", - "5.15.0-1058.64~20.04.1", - "5.15.0-1061.67~20.04.1", - "5.15.0-1062.68~20.04.1", - "5.15.0-1063.69~20.04.1", - "5.15.0-1064.70~20.04.1", - "5.15.0-1065.71~20.04.1", - "5.15.0-1066.72~20.04.1", - "5.15.0-1067.73~20.04.1", - "5.15.0-1068.74~20.04.1", - "5.15.0-1069.75~20.04.1", - "5.15.0-1070.76~20.04.1", - "5.15.0-1071.77~20.04.1", - "5.15.0-1072.78~20.04.1", - "5.15.0-1073.79~20.04.1", - "5.15.0-1075.82~20.04.1", - "5.15.0-1077.84~20.04.1", - "5.15.0-1080.87~20.04.1", - "5.15.0-1081.88~20.04.1", - "5.15.0-1082.89~20.04.1", - "5.15.0-1083.90~20.04.1", - "5.15.0-1084.91~20.04.1", - "5.15.0-1086.93~20.04.1", - "5.15.0-1087.94~20.04.1", - "5.15.0-1088.95~20.04.1", - "5.15.0-1089.96~20.04.1", - "5.15.0-1090.97~20.04.1", - "5.15.0-1091.98~20.04.1", - "5.15.0-1092.99~20.04.1", - "5.15.0-1093.100~20.04.1", - "5.15.0-1095.102~20.04.1", - "5.15.0-1096.103~20.04.1", - "5.15.0-1097.104~20.04.1", - "5.15.0-1098.105~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.15-cloud-tools-5.15.0-1098", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-aws-5.15-headers-5.15.0-1098", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-aws-5.15-tools-5.15.0-1098", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1098-aws", - "binary_version": "5.15.0-1098.105~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-aws-5.8", - "purl": "pkg:deb/ubuntu/linux-aws-5.8@5.8.0-1042.44~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-1035.37~20.04.1", - "5.8.0-1038.40~20.04.1", - "5.8.0-1041.43~20.04.1", - "5.8.0-1042.44~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.8-cloud-tools-5.8.0-1042", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-aws-5.8-headers-5.8.0-1042", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-aws-5.8-tools-5.8.0-1042", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-image-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-1042-aws", - "binary_version": "5.8.0-1042.44~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@5.4.0-1156.163?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1003.3", - "5.3.0-1008.9", - "5.3.0-1009.10", - "5.4.0-1006.6", - "5.4.0-1008.8", - "5.4.0-1009.9", - "5.4.0-1010.10", - "5.4.0-1012.12", - "5.4.0-1016.16", - "5.4.0-1019.19", - "5.4.0-1020.20", - "5.4.0-1022.22", - "5.4.0-1023.23", - "5.4.0-1025.25", - "5.4.0-1026.26", - "5.4.0-1031.32", - "5.4.0-1032.33", - "5.4.0-1034.35", - "5.4.0-1035.36", - "5.4.0-1036.38", - "5.4.0-1039.41", - "5.4.0-1040.42", - "5.4.0-1041.43", - "5.4.0-1043.45", - "5.4.0-1044.46", - "5.4.0-1046.48", - "5.4.0-1047.49", - "5.4.0-1048.50", - "5.4.0-1049.51", - "5.4.0-1051.53", - "5.4.0-1055.57", - "5.4.0-1056.58", - "5.4.0-1058.60", - "5.4.0-1059.62", - "5.4.0-1061.64", - "5.4.0-1062.65", - "5.4.0-1063.66", - "5.4.0-1064.67", - "5.4.0-1065.68", - "5.4.0-1067.70", - "5.4.0-1068.71", - "5.4.0-1069.72", - "5.4.0-1070.73", - "5.4.0-1072.75", - "5.4.0-1073.76", - "5.4.0-1074.77", - "5.4.0-1077.80", - "5.4.0-1078.81", - "5.4.0-1080.83", - "5.4.0-1083.87", - "5.4.0-1085.90", - "5.4.0-1086.91", - "5.4.0-1089.94", - "5.4.0-1090.95", - "5.4.0-1091.96", - "5.4.0-1094.100", - "5.4.0-1095.101", - "5.4.0-1098.104", - "5.4.0-1100.106", - "5.4.0-1101.107", - "5.4.0-1103.109", - "5.4.0-1104.110", - "5.4.0-1105.111", - "5.4.0-1106.112", - "5.4.0-1107.113", - "5.4.0-1108.114", - "5.4.0-1109.115", - "5.4.0-1110.116", - "5.4.0-1111.117", - "5.4.0-1112.118", - "5.4.0-1113.119", - "5.4.0-1114.120", - "5.4.0-1115.122", - "5.4.0-1116.123", - "5.4.0-1117.124", - "5.4.0-1118.125", - "5.4.0-1119.126", - "5.4.0-1120.127", - "5.4.0-1121.128", - "5.4.0-1122.129", - "5.4.0-1123.130", - "5.4.0-1124.131", - "5.4.0-1126.133", - "5.4.0-1127.134", - "5.4.0-1128.135", - "5.4.0-1129.136", - "5.4.0-1130.137", - "5.4.0-1131.138", - "5.4.0-1132.139", - "5.4.0-1133.140", - "5.4.0-1134.141", - "5.4.0-1135.142", - "5.4.0-1136.143", - "5.4.0-1137.144", - "5.4.0-1138.145", - "5.4.0-1139.146", - "5.4.0-1140.147", - "5.4.0-1142.149", - "5.4.0-1143.150", - "5.4.0-1145.152", - "5.4.0-1147.154", - "5.4.0-1148.155", - "5.4.0-1149.156", - "5.4.0-1150.157", - "5.4.0-1151.158", - "5.4.0-1152.159", - "5.4.0-1153.160", - "5.4.0-1154.161", - "5.4.0-1156.163" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-5.4.0-1156", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-azure-headers-5.4.0-1156", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-azure-tools-5.4.0-1156", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-headers-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-modules-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - }, - { - "binary_name": "linux-tools-5.4.0-1156-azure", - "binary_version": "5.4.0-1156.163" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-azure-5.11", - "purl": "pkg:deb/ubuntu/linux-azure-5.11@5.11.0-1028.31~20.04.2?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-1007.7~20.04.2", - "5.11.0-1012.13~20.04.1", - "5.11.0-1013.14~20.04.1", - "5.11.0-1015.16~20.04.1", - "5.11.0-1017.18~20.04.1", - "5.11.0-1019.20~20.04.1", - "5.11.0-1020.21~20.04.1", - "5.11.0-1021.22~20.04.1", - "5.11.0-1022.23~20.04.1", - "5.11.0-1023.24~20.04.1", - "5.11.0-1025.27~20.04.1", - "5.11.0-1027.30~20.04.1", - "5.11.0-1028.31~20.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.11-cloud-tools-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-azure-5.11-headers-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-azure-5.11-tools-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-buildinfo-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-headers-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-modules-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-modules-extra-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - }, - { - "binary_name": "linux-tools-5.11.0-1028-azure", - "binary_version": "5.11.0-1028.31~20.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-azure-5.13", - "purl": "pkg:deb/ubuntu/linux-azure-5.13@5.13.0-1031.37~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1009.10~20.04.2", - "5.13.0-1012.14~20.04.1", - "5.13.0-1013.15~20.04.1", - "5.13.0-1014.16~20.04.1", - "5.13.0-1017.19~20.04.1", - "5.13.0-1021.24~20.04.1", - "5.13.0-1022.26~20.04.1", - "5.13.0-1023.27~20.04.1", - "5.13.0-1025.29~20.04.1", - "5.13.0-1028.33~20.04.1", - "5.13.0-1029.34~20.04.1", - "5.13.0-1031.37~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.13-cloud-tools-5.13.0-1031", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-azure-5.13-headers-5.13.0-1031", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-azure-5.13-tools-5.13.0-1031", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-1031-azure", - "binary_version": "5.13.0-1031.37~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-azure-5.15", - "purl": "pkg:deb/ubuntu/linux-azure-5.15@5.15.0-1102.111~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1007.8~20.04.1", - "5.15.0-1008.9~20.04.1", - "5.15.0-1013.16~20.04.1", - "5.15.0-1014.17~20.04.1", - "5.15.0-1017.20~20.04.1", - "5.15.0-1019.24~20.04.1", - "5.15.0-1020.25~20.04.1", - "5.15.0-1021.26~20.04.1", - "5.15.0-1022.27~20.04.1", - "5.15.0-1023.29~20.04.1", - "5.15.0-1029.36~20.04.1", - "5.15.0-1030.37~20.04.1", - "5.15.0-1031.38~20.04.1", - "5.15.0-1033.40~20.04.1", - "5.15.0-1034.41~20.04.1", - "5.15.0-1035.42~20.04.1", - "5.15.0-1036.43~20.04.1", - "5.15.0-1037.44~20.04.1", - "5.15.0-1038.45~20.04.1", - "5.15.0-1039.46~20.04.1", - "5.15.0-1040.47~20.04.1", - "5.15.0-1041.48~20.04.1", - "5.15.0-1042.49~20.04.1", - "5.15.0-1043.50~20.04.1", - "5.15.0-1045.52~20.04.1", - "5.15.0-1046.53~20.04.1", - "5.15.0-1047.54~20.04.1", - "5.15.0-1049.56~20.04.1", - "5.15.0-1050.57~20.04.1", - "5.15.0-1051.59~20.04.1", - "5.15.0-1052.60~20.04.1", - "5.15.0-1053.61~20.04.1", - "5.15.0-1054.62~20.04.1", - "5.15.0-1056.64~20.04.1", - "5.15.0-1057.65~20.04.1", - "5.15.0-1058.66~20.04.2", - "5.15.0-1059.67~20.04.1", - "5.15.0-1060.69~20.04.1", - "5.15.0-1061.70~20.04.1", - "5.15.0-1063.72~20.04.1", - "5.15.0-1064.73~20.04.1", - "5.15.0-1065.74~20.04.1", - "5.15.0-1067.76~20.04.1", - "5.15.0-1068.77~20.04.1", - "5.15.0-1070.79~20.04.1", - "5.15.0-1071.80~20.04.1", - "5.15.0-1072.81~20.04.1", - "5.15.0-1073.82~20.04.1", - "5.15.0-1074.83~20.04.1", - "5.15.0-1075.84~20.04.1", - "5.15.0-1078.87~20.04.1", - "5.15.0-1079.88~20.04.1", - "5.15.0-1081.90~20.04.1", - "5.15.0-1082.91~20.04.1", - "5.15.0-1086.95~20.04.1", - "5.15.0-1087.96~20.04.1", - "5.15.0-1088.97~20.04.1", - "5.15.0-1089.98~20.04.1", - "5.15.0-1091.100~20.04.1", - "5.15.0-1094.103~20.04.1", - "5.15.0-1095.104~20.04.1", - "5.15.0-1096.105~20.04.1", - "5.15.0-1097.106~20.04.1", - "5.15.0-1098.107~20.04.1", - "5.15.0-1102.111~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.15-cloud-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-azure-5.15-headers-5.15.0-1102", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-azure-5.15-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-modules-involflt-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-azure-5.8", - "purl": "pkg:deb/ubuntu/linux-azure-5.8@5.8.0-1043.46~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-1033.35~20.04.1", - "5.8.0-1036.38~20.04.1", - "5.8.0-1039.42~20.04.1", - "5.8.0-1040.43~20.04.1", - "5.8.0-1041.44~20.04.1", - "5.8.0-1042.45~20.04.1", - "5.8.0-1043.46~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.8-cloud-tools-5.8.0-1043", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-azure-5.8-headers-5.8.0-1043", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-azure-5.8-tools-5.8.0-1043", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-1043-azure", - "binary_version": "5.8.0-1043.46~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-azure-fde", - "purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1063.66+cvm2.2", - "5.4.0-1063.66+cvm3.2", - "5.4.0-1064.67+cvm1.1", - "5.4.0-1065.68+cvm2.1", - "5.4.0-1067.70+cvm1.1", - "5.4.0-1068.71+cvm1.1", - "5.4.0-1069.72+cvm1.1", - "5.4.0-1070.73+cvm1.1", - "5.4.0-1072.75+cvm1.1", - "5.4.0-1073.76+cvm1.1", - "5.4.0-1074.77+cvm1.1", - "5.4.0-1076.79+cvm1.1", - "5.4.0-1078.81+cvm1.1", - "5.4.0-1080.83+cvm1.1", - "5.4.0-1083.87+cvm1.1", - "5.4.0-1085.90+cvm1.1", - "5.4.0-1085.90+cvm2.1", - "5.4.0-1086.91+cvm1.1", - "5.4.0-1089.94+cvm1.2", - "5.4.0-1090.95+cvm1.1", - "5.4.0-1091.96+cvm1.1", - "5.4.0-1092.97+cvm1.1", - "5.4.0-1095.101+cvm1.1", - "5.4.0-1098.104+cvm1.1", - "5.4.0-1100.106+cvm1.1", - "5.4.0-1103.109+cvm1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde", - "binary_version": "5.4.0-1103.109+cvm1.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-azure-fde-5.15", - "purl": "pkg:deb/ubuntu/linux-azure-fde-5.15@5.15.0-1102.111~20.04.1.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1019.24~20.04.1.1", - "5.15.0-1020.25~20.04.1.1", - "5.15.0-1021.26~20.04.1.1", - "5.15.0-1029.36~20.04.1.1", - "5.15.0-1030.37~20.04.1.1", - "5.15.0-1031.38~20.04.1.1", - "5.15.0-1033.40~20.04.1.1", - "5.15.0-1034.41~20.04.1.2", - "5.15.0-1035.42~20.04.1.1", - "5.15.0-1036.43~20.04.1.1", - "5.15.0-1037.44~20.04.1.1", - "5.15.0-1038.45~20.04.1.1", - "5.15.0-1039.46~20.04.1.1", - "5.15.0-1040.47~20.04.1.1", - "5.15.0-1041.48~20.04.1.1", - "5.15.0-1042.49~20.04.1.1", - "5.15.0-1043.50~20.04.1.1", - "5.15.0-1046.53~20.04.1.1", - "5.15.0-1047.54~20.04.1.1", - "5.15.0-1049.56~20.04.1.1", - "5.15.0-1050.57~20.04.1.1", - "5.15.0-1051.59~20.04.1.1", - "5.15.0-1052.60~20.04.1.1", - "5.15.0-1053.61~20.04.1.1", - "5.15.0-1054.62~20.04.1.1", - "5.15.0-1056.64~20.04.1.1", - "5.15.0-1057.65~20.04.1.1", - "5.15.0-1058.66~20.04.2.1", - "5.15.0-1059.67~20.04.1.1", - "5.15.0-1060.69~20.04.1.1", - "5.15.0-1061.70~20.04.1.1", - "5.15.0-1063.72~20.04.1.1", - "5.15.0-1064.73~20.04.1.1", - "5.15.0-1065.74~20.04.1.1", - "5.15.0-1067.76~20.04.1.1", - "5.15.0-1068.77~20.04.1.1", - "5.15.0-1070.79~20.04.1.1", - "5.15.0-1071.80~20.04.1.1", - "5.15.0-1072.81~20.04.1.1", - "5.15.0-1073.82~20.04.1.1", - "5.15.0-1074.83~20.04.1.1", - "5.15.0-1076.85~20.04.1.1", - "5.15.0-1078.87~20.04.1.1", - "5.15.0-1081.90~20.04.1.1", - "5.15.0-1082.91~20.04.1.1", - "5.15.0-1086.95~20.04.1.1", - "5.15.0-1087.96~20.04.1.1", - "5.15.0-1088.97~20.04.1.1", - "5.15.0-1089.98~20.04.1.1", - "5.15.0-1091.100~20.04.1.1", - "5.15.0-1094.103~20.04.1.1", - "5.15.0-1096.105~20.04.1.1", - "5.15.0-1097.106~20.04.1.1", - "5.15.0-1098.107~20.04.1.1", - "5.15.0-1102.111~20.04.1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", - "binary_version": "5.15.0-1102.111~20.04.1.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-bluefield", - "purl": "pkg:deb/ubuntu/linux-bluefield@5.4.0-1112.119?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1007.10", - "5.4.0-1011.14", - "5.4.0-1012.15", - "5.4.0-1013.16", - "5.4.0-1016.19", - "5.4.0-1019.22", - "5.4.0-1020.23", - "5.4.0-1021.24", - "5.4.0-1022.25", - "5.4.0-1023.26", - "5.4.0-1025.28", - "5.4.0-1026.29", - "5.4.0-1028.31", - "5.4.0-1030.33", - "5.4.0-1032.35", - "5.4.0-1035.38", - "5.4.0-1036.39", - "5.4.0-1040.44", - "5.4.0-1042.47", - "5.4.0-1044.49", - "5.4.0-1045.50", - "5.4.0-1046.51", - "5.4.0-1047.52", - "5.4.0-1049.55", - "5.4.0-1050.56", - "5.4.0-1054.60", - "5.4.0-1058.64", - "5.4.0-1059.65", - "5.4.0-1060.66", - "5.4.0-1062.68", - "5.4.0-1064.70", - "5.4.0-1065.71", - "5.4.0-1066.72", - "5.4.0-1068.74", - "5.4.0-1070.76", - "5.4.0-1071.77", - "5.4.0-1072.78", - "5.4.0-1073.79", - "5.4.0-1074.80", - "5.4.0-1075.81", - "5.4.0-1076.82", - "5.4.0-1077.83", - "5.4.0-1078.84", - "5.4.0-1079.85", - "5.4.0-1080.87", - "5.4.0-1081.88", - "5.4.0-1082.89", - "5.4.0-1083.90", - "5.4.0-1084.91", - "5.4.0-1085.92", - "5.4.0-1086.93", - "5.4.0-1087.94", - "5.4.0-1088.95", - "5.4.0-1089.96", - "5.4.0-1090.97", - "5.4.0-1091.98", - "5.4.0-1092.99", - "5.4.0-1093.100", - "5.4.0-1094.101", - "5.4.0-1095.102", - "5.4.0-1096.103", - "5.4.0-1097.104", - "5.4.0-1098.105", - "5.4.0-1099.106", - "5.4.0-1101.108", - "5.4.0-1102.109", - "5.4.0-1103.110", - "5.4.0-1105.112", - "5.4.0-1106.113", - "5.4.0-1107.114", - "5.4.0-1108.115", - "5.4.0-1109.116", - "5.4.0-1110.117", - "5.4.0-1111.118", - "5.4.0-1112.119" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-bluefield-headers-5.4.0-1112", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-bluefield-tools-5.4.0-1112", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1112-bluefield", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-headers-5.4.0-1112-bluefield", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1112-bluefield", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-modules-5.4.0-1112-bluefield", - "binary_version": "5.4.0-1112.119" - }, - { - "binary_name": "linux-tools-5.4.0-1112-bluefield", - "binary_version": "5.4.0-1112.119" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@5.4.0-1157.166?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1004.4", - "5.3.0-1009.10", - "5.3.0-1011.12", - "5.4.0-1005.5", - "5.4.0-1007.7", - "5.4.0-1008.8", - "5.4.0-1009.9", - "5.4.0-1011.11", - "5.4.0-1015.15", - "5.4.0-1018.18", - "5.4.0-1019.19", - "5.4.0-1021.21", - "5.4.0-1022.22", - "5.4.0-1024.24", - "5.4.0-1025.25", - "5.4.0-1028.29", - "5.4.0-1029.31", - "5.4.0-1030.32", - "5.4.0-1032.34", - "5.4.0-1033.35", - "5.4.0-1034.37", - "5.4.0-1036.39", - "5.4.0-1037.40", - "5.4.0-1038.41", - "5.4.0-1040.43", - "5.4.0-1041.44", - "5.4.0-1042.45", - "5.4.0-1043.46", - "5.4.0-1044.47", - "5.4.0-1046.49", - "5.4.0-1049.53", - "5.4.0-1051.55", - "5.4.0-1052.56", - "5.4.0-1053.57", - "5.4.0-1055.59", - "5.4.0-1056.60", - "5.4.0-1057.61", - "5.4.0-1058.62", - "5.4.0-1059.63", - "5.4.0-1060.64", - "5.4.0-1062.66", - "5.4.0-1063.67", - "5.4.0-1064.68", - "5.4.0-1065.69", - "5.4.0-1067.71", - "5.4.0-1068.72", - "5.4.0-1069.73", - "5.4.0-1072.77", - "5.4.0-1073.78", - "5.4.0-1075.80", - "5.4.0-1078.84", - "5.4.0-1080.87", - "5.4.0-1083.91", - "5.4.0-1084.92", - "5.4.0-1086.94", - "5.4.0-1087.95", - "5.4.0-1089.97", - "5.4.0-1090.98", - "5.4.0-1092.101", - "5.4.0-1093.102", - "5.4.0-1096.105", - "5.4.0-1097.106", - "5.4.0-1098.107", - "5.4.0-1100.109", - "5.4.0-1101.110", - "5.4.0-1102.111", - "5.4.0-1103.112", - "5.4.0-1104.113", - "5.4.0-1105.114", - "5.4.0-1106.115", - "5.4.0-1107.116", - "5.4.0-1108.117", - "5.4.0-1109.118", - "5.4.0-1110.119", - "5.4.0-1111.120", - "5.4.0-1112.121", - "5.4.0-1113.122", - "5.4.0-1115.124", - "5.4.0-1116.125", - "5.4.0-1117.126", - "5.4.0-1118.127", - "5.4.0-1120.129", - "5.4.0-1121.130", - "5.4.0-1122.131", - "5.4.0-1123.132", - "5.4.0-1124.133", - "5.4.0-1125.134", - "5.4.0-1126.135", - "5.4.0-1127.136", - "5.4.0-1128.137", - "5.4.0-1129.138", - "5.4.0-1130.139", - "5.4.0-1131.140", - "5.4.0-1132.141", - "5.4.0-1133.142", - "5.4.0-1134.143", - "5.4.0-1135.144", - "5.4.0-1136.145", - "5.4.0-1137.146", - "5.4.0-1138.147", - "5.4.0-1139.148", - "5.4.0-1140.149", - "5.4.0-1141.150", - "5.4.0-1142.151", - "5.4.0-1143.152", - "5.4.0-1145.154", - "5.4.0-1146.155", - "5.4.0-1147.156", - "5.4.0-1148.157", - "5.4.0-1149.158", - "5.4.0-1150.159", - "5.4.0-1151.160", - "5.4.0-1152.161", - "5.4.0-1153.162", - "5.4.0-1154.163", - "5.4.0-1155.164", - "5.4.0-1156.165", - "5.4.0-1157.166" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-gcp-headers-5.4.0-1157", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-gcp-tools-5.4.0-1157", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-headers-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-modules-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - }, - { - "binary_name": "linux-tools-5.4.0-1157-gcp", - "binary_version": "5.4.0-1157.166" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gcp-5.11", - "purl": "pkg:deb/ubuntu/linux-gcp-5.11@5.11.0-1029.33~20.04.3?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-1009.10~20.04.1", - "5.11.0-1014.16~20.04.1", - "5.11.0-1017.19~20.04.1", - "5.11.0-1018.20~20.04.2", - "5.11.0-1020.22~20.04.1", - "5.11.0-1021.23~20.04.1", - "5.11.0-1022.24~20.04.1", - "5.11.0-1023.25~20.04.1", - "5.11.0-1024.26~20.04.1", - "5.11.0-1026.29~20.04.1", - "5.11.0-1028.32~20.04.1", - "5.11.0-1029.33~20.04.3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-gcp-5.11-headers-5.11.0-1029", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-gcp-5.11-tools-5.11.0-1029", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-headers-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-modules-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-modules-extra-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - }, - { - "binary_name": "linux-tools-5.11.0-1029-gcp", - "binary_version": "5.11.0-1029.33~20.04.3" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gcp-5.13", - "purl": "pkg:deb/ubuntu/linux-gcp-5.13@5.13.0-1033.40~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1008.9~20.04.3", - "5.13.0-1012.15~20.04.1", - "5.13.0-1013.16~20.04.1", - "5.13.0-1015.18~20.04.1", - "5.13.0-1019.23~20.04.1", - "5.13.0-1021.25~20.04.1", - "5.13.0-1023.28~20.04.1", - "5.13.0-1024.29~20.04.1", - "5.13.0-1025.30~20.04.1", - "5.13.0-1027.32~20.04.1", - "5.13.0-1030.36~20.04.1", - "5.13.0-1031.37~20.04.1", - "5.13.0-1033.40~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-gcp-5.13-headers-5.13.0-1033", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-gcp-5.13-tools-5.13.0-1033", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-1033-gcp", - "binary_version": "5.13.0-1033.40~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-gcp-5.15", - "purl": "pkg:deb/ubuntu/linux-gcp-5.15@5.15.0-1098.107~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1006.9~20.04.1", - "5.15.0-1012.17~20.04.1", - "5.15.0-1013.18~20.04.1", - "5.15.0-1016.21~20.04.1", - "5.15.0-1017.23~20.04.2", - "5.15.0-1018.24~20.04.1", - "5.15.0-1021.28~20.04.1", - "5.15.0-1022.29~20.04.1", - "5.15.0-1025.32~20.04.2", - "5.15.0-1026.33~20.04.1", - "5.15.0-1027.34~20.04.1", - "5.15.0-1029.36~20.04.1", - "5.15.0-1030.37~20.04.1", - "5.15.0-1031.38~20.04.1", - "5.15.0-1032.40~20.04.1", - "5.15.0-1033.41~20.04.1", - "5.15.0-1034.42~20.04.1", - "5.15.0-1035.43~20.04.1", - "5.15.0-1036.44~20.04.1", - "5.15.0-1037.45~20.04.1", - "5.15.0-1038.46~20.04.1", - "5.15.0-1039.47~20.04.1", - "5.15.0-1040.48~20.04.1", - "5.15.0-1041.49~20.04.1", - "5.15.0-1042.50~20.04.1", - "5.15.0-1044.52~20.04.1", - "5.15.0-1045.53~20.04.2", - "5.15.0-1046.54~20.04.1", - "5.15.0-1047.55~20.04.1", - "5.15.0-1048.56~20.04.1", - "5.15.0-1049.57~20.04.1", - "5.15.0-1051.59~20.04.1", - "5.15.0-1052.60~20.04.1", - "5.15.0-1053.61~20.04.1", - "5.15.0-1054.62~20.04.1", - "5.15.0-1055.63~20.04.1", - "5.15.0-1058.66~20.04.1", - "5.15.0-1059.67~20.04.1", - "5.15.0-1060.68~20.04.1", - "5.15.0-1062.70~20.04.1", - "5.15.0-1065.73~20.04.1", - "5.15.0-1066.74~20.04.1", - "5.15.0-1067.75~20.04.1", - "5.15.0-1068.76~20.04.1", - "5.15.0-1069.77~20.04.1", - "5.15.0-1070.78~20.04.1", - "5.15.0-1071.79~20.04.1", - "5.15.0-1072.80~20.04.1", - "5.15.0-1073.81~20.04.1", - "5.15.0-1074.83~20.04.1", - "5.15.0-1075.84~20.04.1", - "5.15.0-1077.86~20.04.1", - "5.15.0-1078.87~20.04.1", - "5.15.0-1081.90~20.04.1", - "5.15.0-1083.92~20.04.1", - "5.15.0-1085.94~20.04.1", - "5.15.0-1086.95~20.04.1", - "5.15.0-1087.96~20.04.2", - "5.15.0-1088.97~20.04.1", - "5.15.0-1090.99~20.04.1", - "5.15.0-1091.100~20.04.1", - "5.15.0-1092.101~20.04.1", - "5.15.0-1093.102~20.04.1", - "5.15.0-1095.104~20.04.1", - "5.15.0-1096.105~20.04.1", - "5.15.0-1097.106~20.04.1", - "5.15.0-1098.107~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-gcp-5.15-headers-5.15.0-1098", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-gcp-5.15-tools-5.15.0-1098", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1098-gcp", - "binary_version": "5.15.0-1098.107~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gcp-5.8", - "purl": "pkg:deb/ubuntu/linux-gcp-5.8@5.8.0-1039.41?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-1032.34~20.04.1", - "5.8.0-1035.37~20.04.1", - "5.8.0-1038.40~20.04.1", - "5.8.0-1039.41" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-gcp-5.8-headers-5.8.0-1039", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-gcp-5.8-tools-5.8.0-1039", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-headers-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-modules-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-modules-extra-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - }, - { - "binary_name": "linux-tools-5.8.0-1039-gcp", - "binary_version": "5.8.0-1039.41" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gke", - "purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1033.35", - "5.4.0-1035.37", - "5.4.0-1036.38", - "5.4.0-1037.39", - "5.4.0-1039.41", - "5.4.0-1041.43", - "5.4.0-1042.44", - "5.4.0-1043.45", - "5.4.0-1044.46", - "5.4.0-1046.48", - "5.4.0-1049.52", - "5.4.0-1051.54", - "5.4.0-1052.55", - "5.4.0-1053.56", - "5.4.0-1054.57", - "5.4.0-1055.58", - "5.4.0-1056.59", - "5.4.0-1057.60", - "5.4.0-1059.62", - "5.4.0-1061.64", - "5.4.0-1062.65", - "5.4.0-1063.66", - "5.4.0-1065.68", - "5.4.0-1066.69", - "5.4.0-1067.70", - "5.4.0-1068.71", - "5.4.0-1071.76", - "5.4.0-1072.77", - "5.4.0-1074.79", - "5.4.0-1076.82", - "5.4.0-1078.84", - "5.4.0-1080.86", - "5.4.0-1081.87", - "5.4.0-1083.89", - "5.4.0-1084.90", - "5.4.0-1086.93", - "5.4.0-1087.94", - "5.4.0-1090.97", - "5.4.0-1091.98", - "5.4.0-1094.101", - "5.4.0-1095.102", - "5.4.0-1096.103", - "5.4.0-1097.104", - "5.4.0-1098.105", - "5.4.0-1099.106", - "5.4.0-1100.107", - "5.4.0-1101.108", - "5.4.0-1102.109", - "5.4.0-1103.110", - "5.4.0-1104.111", - "5.4.0-1105.112" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-gke-headers-5.4.0-1105", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-gke-tools-5.4.0-1105", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-headers-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-modules-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - }, - { - "binary_name": "linux-tools-5.4.0-1105-gke", - "binary_version": "5.4.0-1105.112" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gke-5.15", - "purl": "pkg:deb/ubuntu/linux-gke-5.15@5.15.0-1039.44~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1011.14~20.04.1", - "5.15.0-1014.17~20.04.1", - "5.15.0-1015.18~20.04.1", - "5.15.0-1016.19~20.04.1", - "5.15.0-1019.23~20.04.1", - "5.15.0-1020.25~20.04.1", - "5.15.0-1023.28~20.04.2", - "5.15.0-1027.32~20.04.1", - "5.15.0-1028.33~20.04.1", - "5.15.0-1029.34~20.04.1", - "5.15.0-1031.36~20.04.1", - "5.15.0-1032.37~20.04.1", - "5.15.0-1033.38~20.04.1", - "5.15.0-1034.39~20.04.1", - "5.15.0-1036.41~20.04.1", - "5.15.0-1037.42~20.04.1", - "5.15.0-1038.43~20.04.1", - "5.15.0-1039.44~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-gke-5.15-headers-5.15.0-1039", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-gke-5.15-tools-5.15.0-1039", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1039-gke", - "binary_version": "5.15.0-1039.44~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gkeop", - "purl": "pkg:deb/ubuntu/linux-gkeop@5.4.0-1102.106?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1008.9", - "5.4.0-1009.10", - "5.4.0-1010.11", - "5.4.0-1011.12", - "5.4.0-1012.13", - "5.4.0-1013.14", - "5.4.0-1014.15", - "5.4.0-1015.16", - "5.4.0-1016.17", - "5.4.0-1018.19", - "5.4.0-1021.22", - "5.4.0-1022.23", - "5.4.0-1023.24", - "5.4.0-1024.25", - "5.4.0-1025.26", - "5.4.0-1026.27", - "5.4.0-1027.28", - "5.4.0-1029.30", - "5.4.0-1031.32", - "5.4.0-1032.33", - "5.4.0-1033.34", - "5.4.0-1034.35", - "5.4.0-1036.37", - "5.4.0-1037.38", - "5.4.0-1038.39", - "5.4.0-1039.40", - "5.4.0-1040.41", - "5.4.0-1043.44", - "5.4.0-1046.48", - "5.4.0-1048.51", - "5.4.0-1049.52", - "5.4.0-1051.54", - "5.4.0-1052.55", - "5.4.0-1053.56", - "5.4.0-1054.57", - "5.4.0-1056.60", - "5.4.0-1057.61", - "5.4.0-1060.64", - "5.4.0-1061.65", - "5.4.0-1062.66", - "5.4.0-1064.68", - "5.4.0-1065.69", - "5.4.0-1066.70", - "5.4.0-1067.71", - "5.4.0-1068.72", - "5.4.0-1069.73", - "5.4.0-1070.74", - "5.4.0-1071.75", - "5.4.0-1072.76", - "5.4.0-1073.77", - "5.4.0-1074.78", - "5.4.0-1075.79", - "5.4.0-1076.80", - "5.4.0-1077.81", - "5.4.0-1078.82", - "5.4.0-1079.83", - "5.4.0-1080.84", - "5.4.0-1081.85", - "5.4.0-1083.87", - "5.4.0-1084.88", - "5.4.0-1085.89", - "5.4.0-1086.90", - "5.4.0-1087.91", - "5.4.0-1088.92", - "5.4.0-1089.93", - "5.4.0-1090.94", - "5.4.0-1091.95", - "5.4.0-1092.96", - "5.4.0-1093.97", - "5.4.0-1094.98", - "5.4.0-1095.99", - "5.4.0-1096.100", - "5.4.0-1097.101", - "5.4.0-1098.102", - "5.4.0-1099.103", - "5.4.0-1100.104", - "5.4.0-1101.105", - "5.4.0-1102.106" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-gkeop-cloud-tools-5.4.0-1102", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-gkeop-headers-5.4.0-1102", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-gkeop-source-5.4.0", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-gkeop-tools-5.4.0-1102", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-headers-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-modules-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - }, - { - "binary_name": "linux-tools-5.4.0-1102-gkeop", - "binary_version": "5.4.0-1102.106" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-gkeop-5.15", - "purl": "pkg:deb/ubuntu/linux-gkeop-5.15@5.15.0-1055.62~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1003.5~20.04.2", - "5.15.0-1005.7~20.04.1", - "5.15.0-1007.10~20.04.1", - "5.15.0-1008.12~20.04.1", - "5.15.0-1011.15~20.04.2", - "5.15.0-1012.16~20.04.1", - "5.15.0-1013.17~20.04.1", - "5.15.0-1015.19~20.04.1", - "5.15.0-1016.21~20.04.1", - "5.15.0-1017.22~20.04.1", - "5.15.0-1018.23~20.04.1", - "5.15.0-1019.24~20.04.1", - "5.15.0-1020.25~20.04.1", - "5.15.0-1021.26~20.04.1", - "5.15.0-1022.27~20.04.1", - "5.15.0-1023.28~20.04.1", - "5.15.0-1024.29~20.04.1", - "5.15.0-1025.30~20.04.1", - "5.15.0-1026.31~20.04.1", - "5.15.0-1027.32~20.04.1", - "5.15.0-1028.33~20.04.1", - "5.15.0-1030.35~20.04.1", - "5.15.0-1031.37~20.04.1", - "5.15.0-1032.38~20.04.1", - "5.15.0-1033.39~20.04.1", - "5.15.0-1034.40~20.04.1", - "5.15.0-1035.41~20.04.1", - "5.15.0-1036.42~20.04.1", - "5.15.0-1037.43~20.04.1", - "5.15.0-1038.44~20.04.1", - "5.15.0-1039.45~20.04.1", - "5.15.0-1040.46~20.04.1", - "5.15.0-1043.50~20.04.1", - "5.15.0-1044.51~20.04.1", - "5.15.0-1045.52~20.04.1", - "5.15.0-1046.53~20.04.1", - "5.15.0-1047.54~20.04.1", - "5.15.0-1048.55~20.04.1", - "5.15.0-1049.56~20.04.1", - "5.15.0-1050.57~20.04.1", - "5.15.0-1051.58~20.04.1", - "5.15.0-1052.59~20.04.1", - "5.15.0-1053.60~20.04.1", - "5.15.0-1054.61~20.04.1", - "5.15.0-1055.62~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-gkeop-5.15-cloud-tools-5.15.0-1055", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-gkeop-5.15-headers-5.15.0-1055", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-gkeop-5.15-tools-5.15.0-1055", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1055-gkeop", - "binary_version": "5.15.0-1055.62~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-hwe-5.11", - "purl": "pkg:deb/ubuntu/linux-hwe-5.11@5.11.0-46.51~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-22.23~20.04.1", - "5.11.0-25.27~20.04.1", - "5.11.0-27.29~20.04.1", - "5.11.0-34.36~20.04.1", - "5.11.0-36.40~20.04.1", - "5.11.0-37.41~20.04.2", - "5.11.0-38.42~20.04.1", - "5.11.0-40.44~20.04.2", - "5.11.0-41.45~20.04.1", - "5.11.0-43.47~20.04.2", - "5.11.0-44.48~20.04.2", - "5.11.0-46.51~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "block-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "block-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "crypto-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "crypto-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "crypto-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "dasd-extra-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "dasd-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fat-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fat-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fat-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fb-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "firewire-core-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "floppy-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "input-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "input-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "input-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "kernel-image-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "kernel-image-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "kernel-image-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.11.0-46-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.11.0-46-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-46-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-46-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-cloud-tools-5.11.0-46", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-cloud-tools-common", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-headers-5.11.0-46", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-source-5.11.0", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-tools-5.11.0-46", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-tools-common", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-tools-host", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-udebs-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-udebs-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-hwe-5.11-udebs-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-image-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-image-5.11.0-46-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-46-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-46-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-46-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-46-generic", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-46-generic-64k", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-46-generic-lpae", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-46-lowlatency", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "md-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "md-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "md-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "message-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "message-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "mouse-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "mouse-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "mouse-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "multipath-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "multipath-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "multipath-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nfs-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nfs-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nfs-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "parport-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "parport-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "parport-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "pata-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "pcmcia-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "plip-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "plip-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "plip-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ppp-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ppp-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "ppp-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "sata-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "sata-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "sata-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "scsi-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "scsi-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "scsi-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "serial-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "usb-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "usb-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "usb-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "virtio-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "virtio-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "vlan-modules-5.11.0-46-generic-64k-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "vlan-modules-5.11.0-46-generic-di", - "binary_version": "5.11.0-46.51~20.04.1" - }, - { - "binary_name": "vlan-modules-5.11.0-46-generic-lpae-di", - "binary_version": "5.11.0-46.51~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-hwe-5.13", - "purl": "pkg:deb/ubuntu/linux-hwe-5.13@5.13.0-52.59~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-21.21~20.04.1", - "5.13.0-22.22~20.04.1", - "5.13.0-23.23~20.04.2", - "5.13.0-25.26~20.04.1", - "5.13.0-27.29~20.04.1", - "5.13.0-28.31~20.04.1", - "5.13.0-30.33~20.04.1", - "5.13.0-35.40~20.04.1", - "5.13.0-37.42~20.04.1", - "5.13.0-39.44~20.04.1", - "5.13.0-40.45~20.04.1", - "5.13.0-41.46~20.04.1", - "5.13.0-44.49~20.04.1", - "5.13.0-48.54~20.04.1", - "5.13.0-51.58~20.04.1", - "5.13.0-52.59~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "block-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "block-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "crypto-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "crypto-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "crypto-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "dasd-extra-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "dasd-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fat-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fat-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fat-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fb-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "firewire-core-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "floppy-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "input-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "input-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "input-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "kernel-image-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "kernel-image-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "kernel-image-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-52-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-52-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-52-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-52-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-cloud-tools-5.13.0-52", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-cloud-tools-common", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-headers-5.13.0-52", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-source-5.13.0", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-tools-5.13.0-52", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-tools-common", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-tools-host", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-udebs-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-udebs-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-hwe-5.13-udebs-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-image-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-image-5.13.0-52-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-52-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-52-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-52-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-52-generic", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-52-generic-64k", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-52-generic-lpae", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-52-lowlatency", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "md-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "md-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "md-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "message-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "message-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "mouse-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "mouse-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "mouse-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "multipath-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "multipath-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "multipath-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nfs-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nfs-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nfs-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "parport-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "parport-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "parport-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "pata-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "pcmcia-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "plip-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "plip-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "plip-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ppp-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ppp-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "ppp-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "sata-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "sata-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "sata-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "scsi-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "scsi-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "scsi-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "serial-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "usb-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "usb-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "usb-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "virtio-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "virtio-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "vlan-modules-5.13.0-52-generic-64k-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "vlan-modules-5.13.0-52-generic-di", - "binary_version": "5.13.0-52.59~20.04.1" - }, - { - "binary_name": "vlan-modules-5.13.0-52-generic-lpae-di", - "binary_version": "5.13.0-52.59~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-hwe-5.15", - "purl": "pkg:deb/ubuntu/linux-hwe-5.15@5.15.0-168.178~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-33.34~20.04.1", - "5.15.0-41.44~20.04.1", - "5.15.0-43.46~20.04.1", - "5.15.0-46.49~20.04.1", - "5.15.0-48.54~20.04.1", - "5.15.0-50.56~20.04.1", - "5.15.0-52.58~20.04.1", - "5.15.0-53.59~20.04.1", - "5.15.0-56.62~20.04.1", - "5.15.0-57.63~20.04.1", - "5.15.0-58.64~20.04.1", - "5.15.0-60.66~20.04.1", - "5.15.0-67.74~20.04.1", - "5.15.0-69.76~20.04.1", - "5.15.0-70.77~20.04.1", - "5.15.0-71.78~20.04.1", - "5.15.0-72.79~20.04.1", - "5.15.0-73.80~20.04.1", - "5.15.0-75.82~20.04.1", - "5.15.0-76.83~20.04.1", - "5.15.0-78.85~20.04.1", - "5.15.0-79.86~20.04.2", - "5.15.0-82.91~20.04.1", - "5.15.0-83.92~20.04.1", - "5.15.0-84.93~20.04.1", - "5.15.0-86.96~20.04.1", - "5.15.0-87.97~20.04.1", - "5.15.0-88.98~20.04.1", - "5.15.0-89.99~20.04.1", - "5.15.0-91.101~20.04.1", - "5.15.0-92.102~20.04.1", - "5.15.0-94.104~20.04.1", - "5.15.0-97.107~20.04.1", - "5.15.0-100.110~20.04.1", - "5.15.0-101.111~20.04.1", - "5.15.0-102.112~20.04.1", - "5.15.0-105.115~20.04.1", - "5.15.0-106.116~20.04.1", - "5.15.0-107.117~20.04.1", - "5.15.0-113.123~20.04.1", - "5.15.0-116.126~20.04.1", - "5.15.0-117.127~20.04.1", - "5.15.0-118.128~20.04.1", - "5.15.0-119.129~20.04.1", - "5.15.0-121.131~20.04.1", - "5.15.0-122.132~20.04.1", - "5.15.0-124.134~20.04.1", - "5.15.0-125.135~20.04.1", - "5.15.0-126.136~20.04.1", - "5.15.0-127.137~20.04.1", - "5.15.0-130.140~20.04.1", - "5.15.0-131.141~20.04.1", - "5.15.0-134.145~20.04.1", - "5.15.0-136.147~20.04.1", - "5.15.0-138.148~20.04.1", - "5.15.0-139.149~20.04.1", - "5.15.0-142.152~20.04.1", - "5.15.0-143.153~20.04.1", - "5.15.0-144.157~20.04.1", - "5.15.0-145.158~20.04.1", - "5.15.0-151.161~20.04.1", - "5.15.0-152.162~20.04.1", - "5.15.0-153.163~20.04.1", - "5.15.0-156.166~20.04.1", - "5.15.0-157.167~20.04.1", - "5.15.0-160.170~20.04.1", - "5.15.0-161.171~20.04.1", - "5.15.0-163.173~20.04.1", - "5.15.0-164.174~20.04.1", - "5.15.0-168.178~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-hwe-5.15-cloud-tools-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-hwe-5.15-headers-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-hwe-5.15-tools-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-hwe-5.8", - "purl": "pkg:deb/ubuntu/linux-hwe-5.8@5.8.0-63.71~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-23.24~20.04.1", - "5.8.0-25.26~20.04.1", - "5.8.0-28.30~20.04.1", - "5.8.0-29.31~20.04.1", - "5.8.0-31.33~20.04.1", - "5.8.0-33.36~20.04.1", - "5.8.0-34.37~20.04.2", - "5.8.0-36.40~20.04.1", - "5.8.0-38.43~20.04.1", - "5.8.0-40.45~20.04.1", - "5.8.0-41.46~20.04.1", - "5.8.0-43.49~20.04.1", - "5.8.0-44.50~20.04.1", - "5.8.0-45.51~20.04.1", - "5.8.0-48.54~20.04.1", - "5.8.0-49.55~20.04.1", - "5.8.0-50.56~20.04.1", - "5.8.0-53.60~20.04.1", - "5.8.0-55.62~20.04.1", - "5.8.0-59.66~20.04.1", - "5.8.0-63.71~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "block-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "block-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "crypto-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "crypto-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "crypto-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "dasd-extra-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "dasd-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fat-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fat-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fat-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fb-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "firewire-core-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "floppy-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "input-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "input-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "input-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "kernel-image-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "kernel-image-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "kernel-image-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-63-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-63-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-63-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-63-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-cloud-tools-5.8.0-63", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-cloud-tools-common", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-headers-5.8.0-63", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-source-5.8.0", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-tools-5.8.0-63", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-tools-common", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-tools-host", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-udebs-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-udebs-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-hwe-5.8-udebs-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-image-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-image-5.8.0-63-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-63-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-63-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-63-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-63-generic", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-63-generic-64k", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-63-generic-lpae", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-63-lowlatency", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "md-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "md-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "md-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "message-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "message-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "mouse-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "mouse-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "mouse-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "multipath-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "multipath-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "multipath-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nfs-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nfs-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nfs-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-pcmcia-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "parport-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "parport-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "parport-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "pata-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "pcmcia-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "pcmcia-storage-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "plip-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "plip-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "plip-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ppp-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ppp-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "ppp-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "sata-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "sata-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "sata-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "scsi-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "scsi-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "scsi-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "serial-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "usb-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "usb-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "usb-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "virtio-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "virtio-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "vlan-modules-5.8.0-63-generic-64k-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "vlan-modules-5.8.0-63-generic-di", - "binary_version": "5.8.0-63.71~20.04.1" - }, - { - "binary_name": "vlan-modules-5.8.0-63-generic-lpae-di", - "binary_version": "5.8.0-63.71~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-ibm", - "purl": "pkg:deb/ubuntu/linux-ibm@5.4.0-1100.105?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1003.4", - "5.4.0-1004.5", - "5.4.0-1005.6", - "5.4.0-1006.7", - "5.4.0-1007.8", - "5.4.0-1008.9", - "5.4.0-1010.11", - "5.4.0-1012.13", - "5.4.0-1013.14", - "5.4.0-1014.15", - "5.4.0-1015.16", - "5.4.0-1017.19", - "5.4.0-1018.20", - "5.4.0-1019.21", - "5.4.0-1020.22", - "5.4.0-1021.23", - "5.4.0-1023.25", - "5.4.0-1026.29", - "5.4.0-1028.32", - "5.4.0-1029.33", - "5.4.0-1031.35", - "5.4.0-1032.36", - "5.4.0-1033.37", - "5.4.0-1034.38", - "5.4.0-1036.41", - "5.4.0-1037.42", - "5.4.0-1040.45", - "5.4.0-1041.46", - "5.4.0-1042.47", - "5.4.0-1044.49", - "5.4.0-1045.50", - "5.4.0-1046.51", - "5.4.0-1047.52", - "5.4.0-1048.53", - "5.4.0-1049.54", - "5.4.0-1050.55", - "5.4.0-1051.56", - "5.4.0-1052.57", - "5.4.0-1053.58", - "5.4.0-1054.59", - "5.4.0-1056.61", - "5.4.0-1057.62", - "5.4.0-1058.63", - "5.4.0-1059.64", - "5.4.0-1060.65", - "5.4.0-1061.66", - "5.4.0-1063.68", - "5.4.0-1064.69", - "5.4.0-1065.70", - "5.4.0-1066.71", - "5.4.0-1067.72", - "5.4.0-1068.73", - "5.4.0-1069.74", - "5.4.0-1070.75", - "5.4.0-1071.76", - "5.4.0-1072.77", - "5.4.0-1073.78", - "5.4.0-1074.79", - "5.4.0-1075.80", - "5.4.0-1076.81", - "5.4.0-1077.82", - "5.4.0-1078.83", - "5.4.0-1079.84", - "5.4.0-1080.85", - "5.4.0-1081.86", - "5.4.0-1082.87", - "5.4.0-1083.88", - "5.4.0-1084.89", - "5.4.0-1085.90", - "5.4.0-1086.91", - "5.4.0-1088.93", - "5.4.0-1089.94", - "5.4.0-1090.95", - "5.4.0-1091.96", - "5.4.0-1092.97", - "5.4.0-1093.98", - "5.4.0-1094.99", - "5.4.0-1095.100", - "5.4.0-1096.101", - "5.4.0-1097.102", - "5.4.0-1098.103", - "5.4.0-1099.104", - "5.4.0-1100.105" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-headers-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-ibm-cloud-tools-common", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-ibm-headers-5.4.0-1100", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-ibm-source-5.4.0", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-ibm-tools-5.4.0-1100", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-ibm-tools-common", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-modules-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - }, - { - "binary_name": "linux-tools-5.4.0-1100-ibm", - "binary_version": "5.4.0-1100.105" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-ibm-5.15", - "purl": "pkg:deb/ubuntu/linux-ibm-5.15@5.15.0-1093.96~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1033.36~20.04.1", - "5.15.0-1034.37~20.04.1", - "5.15.0-1035.38~20.04.1", - "5.15.0-1036.39~20.04.1", - "5.15.0-1037.40~20.04.1", - "5.15.0-1038.41~20.04.1", - "5.15.0-1040.43~20.04.1", - "5.15.0-1041.44~20.04.1", - "5.15.0-1042.45~20.04.1", - "5.15.0-1043.46~20.04.1", - "5.15.0-1044.47~20.04.1", - "5.15.0-1045.48~20.04.1", - "5.15.0-1046.49~20.04.1", - "5.15.0-1047.50~20.04.1", - "5.15.0-1048.51~20.04.1", - "5.15.0-1049.52~20.04.1", - "5.15.0-1050.53~20.04.1", - "5.15.0-1053.56~20.04.1", - "5.15.0-1054.57~20.04.1", - "5.15.0-1055.58~20.04.1", - "5.15.0-1057.60~20.04.1", - "5.15.0-1058.61~20.04.1", - "5.15.0-1059.62~20.04.1", - "5.15.0-1060.63~20.04.1", - "5.15.0-1061.64~20.04.1", - "5.15.0-1062.65~20.04.1", - "5.15.0-1063.66~20.04.1", - "5.15.0-1064.67~20.04.1", - "5.15.0-1065.68~20.04.1", - "5.15.0-1066.69~20.04.1", - "5.15.0-1067.70~20.04.1", - "5.15.0-1068.71~20.04.1", - "5.15.0-1069.72~20.04.1", - "5.15.0-1074.77~20.04.1", - "5.15.0-1075.78~20.04.1", - "5.15.0-1076.79~20.04.1", - "5.15.0-1078.81~20.04.1", - "5.15.0-1079.82~20.04.1", - "5.15.0-1080.83~20.04.1", - "5.15.0-1081.84~20.04.1", - "5.15.0-1083.86~20.04.1", - "5.15.0-1085.88~20.04.1", - "5.15.0-1086.89~20.04.1", - "5.15.0-1087.90~20.04.1", - "5.15.0-1089.92~20.04.1", - "5.15.0-1090.93~20.04.1", - "5.15.0-1091.94~20.04.1", - "5.15.0-1092.95~20.04.1", - "5.15.0-1093.96~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-ibm-5.15-headers-5.15.0-1093", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-ibm-5.15-source-5.15.0", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-ibm-5.15-tools-5.15.0-1093", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-intel-5.13", - "purl": "pkg:deb/ubuntu/linux-intel-5.13@5.13.0-1017.19?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1007.7", - "5.13.0-1008.8", - "5.13.0-1009.9", - "5.13.0-1010.10", - "5.13.0-1011.11", - "5.13.0-1014.15", - "5.13.0-1017.19" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-cloud-tools-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-headers-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-cloud-tools-5.13.0-1017", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-cloud-tools-common", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-headers-5.13.0-1017", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-source-5.13.0", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-tools-5.13.0-1017", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-tools-common", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-intel-5.13-tools-host", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-modules-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-modules-extra-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - }, - { - "binary_name": "linux-tools-5.13.0-1017-intel", - "binary_version": "5.13.0-1017.19" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-intel-iotg-5.15", - "purl": "pkg:deb/ubuntu/linux-intel-iotg-5.15@5.15.0-1094.100~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1003.5~20.04.1", - "5.15.0-1008.11~20.04.1", - "5.15.0-1010.14~20.04.1", - "5.15.0-1015.20~20.04.2", - "5.15.0-1016.21~20.04.1", - "5.15.0-1017.22~20.04.1", - "5.15.0-1018.23~20.04.1", - "5.15.0-1021.26~20.04.1", - "5.15.0-1023.28~20.04.1", - "5.15.0-1025.30~20.04.1", - "5.15.0-1026.31~20.04.1", - "5.15.0-1027.32~20.04.1", - "5.15.0-1030.35~20.04.1", - "5.15.0-1031.36~20.04.1", - "5.15.0-1033.38~20.04.1", - "5.15.0-1034.39~20.04.1", - "5.15.0-1036.41~20.04.1", - "5.15.0-1037.42~20.04.1", - "5.15.0-1038.43~20.04.1", - "5.15.0-1040.46~20.04.1", - "5.15.0-1043.49~20.04.1", - "5.15.0-1045.51~20.04.1", - "5.15.0-1046.52~20.04.1", - "5.15.0-1048.54~20.04.1", - "5.15.0-1049.55~20.04.1", - "5.15.0-1050.56~20.04.1", - "5.15.0-1051.57~20.04.1", - "5.15.0-1052.58~20.04.1", - "5.15.0-1055.61~20.04.1", - "5.15.0-1058.64~20.04.1", - "5.15.0-1059.65~20.04.1", - "5.15.0-1060.66~20.04.1", - "5.15.0-1061.67~20.04.1", - "5.15.0-1062.68~20.04.1", - "5.15.0-1063.69~20.04.1", - "5.15.0-1064.70~20.04.1", - "5.15.0-1065.71~20.04.1", - "5.15.0-1066.72~20.04.1", - "5.15.0-1067.73~20.04.1", - "5.15.0-1071.77~20.04.1", - "5.15.0-1072.78~20.04.1", - "5.15.0-1073.79~20.04.2", - "5.15.0-1074.80~20.04.1", - "5.15.0-1077.83~20.04.1", - "5.15.0-1078.84~20.04.1", - "5.15.0-1079.85~20.04.1", - "5.15.0-1083.89~20.04.1", - "5.15.0-1084.90~20.04.1", - "5.15.0-1085.91~20.04.1", - "5.15.0-1086.92~20.04.1", - "5.15.0-1087.93~20.04.1", - "5.15.0-1088.94~20.04.1", - "5.15.0-1090.96~20.04.1", - "5.15.0-1091.97~20.04.1", - "5.15.0-1092.98~20.04.1", - "5.15.0-1093.99~20.04.1", - "5.15.0-1094.100~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-cloud-tools-5.15.0-1094", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-cloud-tools-common", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-headers-5.15.0-1094", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-tools-5.15.0-1094", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-tools-common", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-intel-iotg-5.15-tools-host", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-iot", - "purl": "pkg:deb/ubuntu/linux-iot@5.4.0-1058.61?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1001.3", - "5.4.0-1004.6", - "5.4.0-1005.7", - "5.4.0-1006.8", - "5.4.0-1009.11", - "5.4.0-1010.12", - "5.4.0-1011.13", - "5.4.0-1012.14", - "5.4.0-1013.15", - "5.4.0-1014.16", - "5.4.0-1017.18", - "5.4.0-1018.19", - "5.4.0-1019.20", - "5.4.0-1021.22", - "5.4.0-1022.23", - "5.4.0-1023.24", - "5.4.0-1024.25", - "5.4.0-1025.26", - "5.4.0-1026.27", - "5.4.0-1028.29", - "5.4.0-1029.30", - "5.4.0-1030.31", - "5.4.0-1031.32", - "5.4.0-1032.33", - "5.4.0-1033.34", - "5.4.0-1034.35", - "5.4.0-1035.36", - "5.4.0-1036.37", - "5.4.0-1037.38", - "5.4.0-1038.39", - "5.4.0-1039.40", - "5.4.0-1040.41", - "5.4.0-1041.42", - "5.4.0-1042.43", - "5.4.0-1043.44", - "5.4.0-1044.45", - "5.4.0-1045.46", - "5.4.0-1048.51", - "5.4.0-1049.52", - "5.4.0-1051.54", - "5.4.0-1052.55", - "5.4.0-1053.56", - "5.4.0-1054.57", - "5.4.0-1055.58", - "5.4.0-1056.59", - "5.4.0-1057.60", - "5.4.0-1058.61" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1058-iot", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-headers-5.4.0-1058-iot", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1058-iot", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-iot-headers-5.4.0-1058", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-iot-tools-5.4.0-1058", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-modules-5.4.0-1058-iot", - "binary_version": "5.4.0-1058.61" - }, - { - "binary_name": "linux-tools-5.4.0-1058-iot", - "binary_version": "5.4.0-1058.61" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@5.4.0-1141.150?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1003.3", - "5.3.0-1008.9", - "5.3.0-1009.10", - "5.4.0-1004.4", - "5.4.0-1006.6", - "5.4.0-1007.7", - "5.4.0-1008.8", - "5.4.0-1009.9", - "5.4.0-1011.11", - "5.4.0-1015.15", - "5.4.0-1018.18", - "5.4.0-1020.20", - "5.4.0-1021.21", - "5.4.0-1023.23", - "5.4.0-1024.24", - "5.4.0-1026.27", - "5.4.0-1028.29", - "5.4.0-1030.31", - "5.4.0-1031.32", - "5.4.0-1032.33", - "5.4.0-1033.34", - "5.4.0-1034.35", - "5.4.0-1036.37", - "5.4.0-1037.38", - "5.4.0-1038.39", - "5.4.0-1039.40", - "5.4.0-1040.41", - "5.4.0-1041.42", - "5.4.0-1044.46", - "5.4.0-1045.47", - "5.4.0-1046.48", - "5.4.0-1047.49", - "5.4.0-1048.50", - "5.4.0-1049.51", - "5.4.0-1050.52", - "5.4.0-1051.53", - "5.4.0-1053.55", - "5.4.0-1054.56", - "5.4.0-1055.57", - "5.4.0-1056.58", - "5.4.0-1058.61", - "5.4.0-1059.62", - "5.4.0-1061.64", - "5.4.0-1062.65", - "5.4.0-1063.66", - "5.4.0-1065.68", - "5.4.0-1068.72", - "5.4.0-1070.75", - "5.4.0-1071.76", - "5.4.0-1073.78", - "5.4.0-1074.79", - "5.4.0-1075.80", - "5.4.0-1076.81", - "5.4.0-1078.84", - "5.4.0-1079.85", - "5.4.0-1082.88", - "5.4.0-1083.89", - "5.4.0-1084.90", - "5.4.0-1086.92", - "5.4.0-1087.93", - "5.4.0-1088.94", - "5.4.0-1089.95", - "5.4.0-1090.96", - "5.4.0-1091.97", - "5.4.0-1092.98", - "5.4.0-1093.99", - "5.4.0-1094.100", - "5.4.0-1095.101", - "5.4.0-1096.102", - "5.4.0-1097.103", - "5.4.0-1098.104", - "5.4.0-1099.105", - "5.4.0-1100.106", - "5.4.0-1101.107", - "5.4.0-1102.108", - "5.4.0-1103.110", - "5.4.0-1104.111", - "5.4.0-1105.112", - "5.4.0-1106.113", - "5.4.0-1107.114", - "5.4.0-1108.115", - "5.4.0-1109.116", - "5.4.0-1110.117", - "5.4.0-1111.118", - "5.4.0-1112.119", - "5.4.0-1113.120", - "5.4.0-1114.121", - "5.4.0-1115.122", - "5.4.0-1116.123", - "5.4.0-1117.124", - "5.4.0-1118.125", - "5.4.0-1119.127", - "5.4.0-1120.128", - "5.4.0-1121.129", - "5.4.0-1122.130", - "5.4.0-1123.131", - "5.4.0-1124.132", - "5.4.0-1125.133", - "5.4.0-1126.134", - "5.4.0-1127.136", - "5.4.0-1129.138", - "5.4.0-1130.139", - "5.4.0-1131.140", - "5.4.0-1132.141", - "5.4.0-1133.142", - "5.4.0-1134.143", - "5.4.0-1135.144", - "5.4.0-1136.145", - "5.4.0-1137.146", - "5.4.0-1138.147", - "5.4.0-1139.148", - "5.4.0-1140.149", - "5.4.0-1141.150" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1141-kvm", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-headers-5.4.0-1141-kvm", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1141-kvm", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-kvm-headers-5.4.0-1141", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-kvm-tools-5.4.0-1141", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-modules-5.4.0-1141-kvm", - "binary_version": "5.4.0-1141.150" - }, - { - "binary_name": "linux-tools-5.4.0-1141-kvm", - "binary_version": "5.4.0-1141.150" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-lowlatency-hwe-5.15", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.15@5.15.0-168.178~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-33.34~20.04.1", - "5.15.0-42.45~20.04.1", - "5.15.0-43.46~20.04.1", - "5.15.0-46.49~20.04.1", - "5.15.0-48.54~20.04.1", - "5.15.0-50.56~20.04.1", - "5.15.0-52.58~20.04.1", - "5.15.0-53.59~20.04.1", - "5.15.0-56.62~20.04.1", - "5.15.0-58.64~20.04.1", - "5.15.0-60.66~20.04.1", - "5.15.0-67.74~20.04.1", - "5.15.0-69.76~20.04.1", - "5.15.0-70.77~20.04.1", - "5.15.0-71.78~20.04.1", - "5.15.0-72.79~20.04.1", - "5.15.0-73.80~20.04.1", - "5.15.0-75.82~20.04.1", - "5.15.0-76.83~20.04.1", - "5.15.0-78.85~20.04.1", - "5.15.0-79.88~20.04.1", - "5.15.0-82.91~20.04.1", - "5.15.0-83.92~20.04.1", - "5.15.0-84.93~20.04.1", - "5.15.0-86.95~20.04.1", - "5.15.0-87.96~20.04.1", - "5.15.0-88.98~20.04.1", - "5.15.0-89.99~20.04.1", - "5.15.0-91.101~20.04.1", - "5.15.0-92.102~20.04.1", - "5.15.0-94.104~20.04.1", - "5.15.0-97.107~20.04.1", - "5.15.0-100.110~20.04.1", - "5.15.0-101.111~20.04.1", - "5.15.0-102.112~20.04.1", - "5.15.0-105.115~20.04.1", - "5.15.0-106.116~20.04.1", - "5.15.0-107.117~20.04.1", - "5.15.0-110.120~20.04.1", - "5.15.0-113.123~20.04.1", - "5.15.0-116.126~20.04.1", - "5.15.0-117.127~20.04.1", - "5.15.0-118.128~20.04.1", - "5.15.0-119.129~20.04.1", - "5.15.0-121.131~20.04.1", - "5.15.0-122.132~20.04.1", - "5.15.0-124.134~20.04.1", - "5.15.0-125.135~20.04.1", - "5.15.0-126.136~20.04.1", - "5.15.0-127.137~20.04.1", - "5.15.0-128.138~20.04.1", - "5.15.0-129.139~20.04.1", - "5.15.0-131.141~20.04.1", - "5.15.0-133.143~20.04.1", - "5.15.0-134.145~20.04.1", - "5.15.0-135.146~20.04.1", - "5.15.0-136.147~20.04.1", - "5.15.0-138.148~20.04.1", - "5.15.0-139.149~20.04.1", - "5.15.0-140.150~20.04.1", - "5.15.0-142.152~20.04.1", - "5.15.0-143.153~20.04.1", - "5.15.0-144.157~20.04.1", - "5.15.0-145.158~20.04.1", - "5.15.0-152.162~20.04.1", - "5.15.0-153.163~20.04.1", - "5.15.0-156.166~20.04.1", - "5.15.0-157.167~20.04.1", - "5.15.0-160.170~20.04.1", - "5.15.0-161.171~20.04.1", - "5.15.0-163.173~20.04.1", - "5.15.0-164.174~20.04.1", - "5.15.0-168.178~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-5.15-cloud-tools-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-5.15-headers-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-5.15-tools-5.15.0-168", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-nvidia-tegra-5.15", - "purl": "pkg:deb/ubuntu/linux-nvidia-tegra-5.15@5.15.0-1051.51~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1009.9~20.04.1", - "5.15.0-1010.10~20.04.1", - "5.15.0-1012.12~20.04.1", - "5.15.0-1014.14~20.04.1", - "5.15.0-1015.15~20.04.1", - "5.15.0-1016.16~20.04.1", - "5.15.0-1017.17~20.04.1", - "5.15.0-1018.18~20.04.1", - "5.15.0-1019.19~20.04.1", - "5.15.0-1020.20~20.04.1", - "5.15.0-1022.22~20.04.1", - "5.15.0-1025.25~20.04.1", - "5.15.0-1027.27~20.04.1", - "5.15.0-1030.30~20.04.1", - "5.15.0-1032.32~20.04.1", - "5.15.0-1039.39~20.04.1", - "5.15.0-1040.40~20.04.1", - "5.15.0-1041.41~20.04.1", - "5.15.0-1042.42~20.04.1", - "5.15.0-1043.43~20.04.1", - "5.15.0-1044.44~20.04.1", - "5.15.0-1045.45~20.04.1", - "5.15.0-1046.46~20.04.1", - "5.15.0-1047.47~20.04.1", - "5.15.0-1048.48~20.04.1", - "5.15.0-1049.49~20.04.1", - "5.15.0-1050.50~20.04.1", - "5.15.0-1051.51~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-nvidia-tegra-5.15-headers-5.15.0-1051", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-nvidia-tegra-5.15-tools-5.15.0-1051", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oem-5.10", - "purl": "pkg:deb/ubuntu/linux-oem-5.10@5.10.0-1057.61?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.10.0-1008.9", - "5.10.0-1011.12", - "5.10.0-1013.14", - "5.10.0-1014.15", - "5.10.0-1016.17", - "5.10.0-1017.18", - "5.10.0-1019.20", - "5.10.0-1021.22", - "5.10.0-1022.23", - "5.10.0-1023.24", - "5.10.0-1025.26", - "5.10.0-1026.27", - "5.10.0-1029.30", - "5.10.0-1032.33", - "5.10.0-1033.34", - "5.10.0-1034.35", - "5.10.0-1038.40", - "5.10.0-1044.46", - "5.10.0-1045.47", - "5.10.0-1049.51", - "5.10.0-1050.52", - "5.10.0-1051.53", - "5.10.0-1052.54", - "5.10.0-1053.55", - "5.10.0-1055.58", - "5.10.0-1057.61" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.10.0-1057-oem", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-headers-5.10.0-1057-oem", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-image-unsigned-5.10.0-1057-oem", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-modules-5.10.0-1057-oem", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-oem-5.10-headers-5.10.0-1057", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-oem-5.10-tools-5.10.0-1057", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-oem-5.10-tools-host", - "binary_version": "5.10.0-1057.61" - }, - { - "binary_name": "linux-tools-5.10.0-1057-oem", - "binary_version": "5.10.0-1057.61" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oem-5.13", - "purl": "pkg:deb/ubuntu/linux-oem-5.13@5.13.0-1029.36?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1009.10", - "5.13.0-1010.11", - "5.13.0-1012.16", - "5.13.0-1014.18", - "5.13.0-1017.21", - "5.13.0-1019.23", - "5.13.0-1020.24", - "5.13.0-1021.25", - "5.13.0-1022.26", - "5.13.0-1026.32", - "5.13.0-1028.35", - "5.13.0-1029.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.13.0-1029-oem", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-headers-5.13.0-1029-oem", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1029-oem", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-modules-5.13.0-1029-oem", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-oem-5.13-headers-5.13.0-1029", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-oem-5.13-tools-5.13.0-1029", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-oem-5.13-tools-host", - "binary_version": "5.13.0-1029.36" - }, - { - "binary_name": "linux-tools-5.13.0-1029-oem", - "binary_version": "5.13.0-1029.36" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oem-5.14", - "purl": "pkg:deb/ubuntu/linux-oem-5.14@5.14.0-1059.67?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.14.0-1004.4", - "5.14.0-1005.5", - "5.14.0-1007.7", - "5.14.0-1008.8", - "5.14.0-1010.10", - "5.14.0-1011.11", - "5.14.0-1013.13", - "5.14.0-1018.19", - "5.14.0-1020.22", - "5.14.0-1022.24", - "5.14.0-1024.26", - "5.14.0-1027.30", - "5.14.0-1029.32", - "5.14.0-1031.34", - "5.14.0-1032.35", - "5.14.0-1033.36", - "5.14.0-1034.37", - "5.14.0-1036.40", - "5.14.0-1038.42", - "5.14.0-1042.47", - "5.14.0-1044.49", - "5.14.0-1045.51", - "5.14.0-1046.53", - "5.14.0-1047.54", - "5.14.0-1048.55", - "5.14.0-1049.56", - "5.14.0-1050.57", - "5.14.0-1051.58", - "5.14.0-1052.59", - "5.14.0-1054.61", - "5.14.0-1055.62", - "5.14.0-1056.63", - "5.14.0-1057.64", - "5.14.0-1058.66", - "5.14.0-1059.67" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-headers-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-image-unsigned-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-modules-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-modules-iwlwifi-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-oem-5.14-headers-5.14.0-1059", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-oem-5.14-tools-5.14.0-1059", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-oem-5.14-tools-host", - "binary_version": "5.14.0-1059.67" - }, - { - "binary_name": "linux-tools-5.14.0-1059-oem", - "binary_version": "5.14.0-1059.67" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oem-5.6", - "purl": "pkg:deb/ubuntu/linux-oem-5.6@5.6.0-1056.60?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.6.0-1007.7", - "5.6.0-1008.8", - "5.6.0-1010.10", - "5.6.0-1011.11", - "5.6.0-1013.13", - "5.6.0-1017.17", - "5.6.0-1018.18", - "5.6.0-1020.20", - "5.6.0-1021.21", - "5.6.0-1023.23", - "5.6.0-1026.26", - "5.6.0-1027.27", - "5.6.0-1028.28", - "5.6.0-1031.32", - "5.6.0-1032.33", - "5.6.0-1033.35", - "5.6.0-1034.36", - "5.6.0-1035.37", - "5.6.0-1036.39", - "5.6.0-1039.43", - "5.6.0-1042.46", - "5.6.0-1047.51", - "5.6.0-1048.52", - "5.6.0-1050.54", - "5.6.0-1052.56", - "5.6.0-1053.57", - "5.6.0-1054.58", - "5.6.0-1055.59", - "5.6.0-1056.60" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.6.0-1056-oem", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-headers-5.6.0-1056-oem", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-image-unsigned-5.6.0-1056-oem", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-modules-5.6.0-1056-oem", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-oem-5.6-headers-5.6.0-1056", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-oem-5.6-tools-5.6.0-1056", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-oem-5.6-tools-host", - "binary_version": "5.6.0-1056.60" - }, - { - "binary_name": "linux-tools-5.6.0-1056-oem", - "binary_version": "5.6.0-1056.60" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@5.4.0-1151.161?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1002.2", - "5.3.0-1007.8", - "5.3.0-1008.9", - "5.4.0-1005.5", - "5.4.0-1007.7", - "5.4.0-1008.8", - "5.4.0-1009.9", - "5.4.0-1011.11", - "5.4.0-1015.15", - "5.4.0-1018.18", - "5.4.0-1019.19", - "5.4.0-1021.21", - "5.4.0-1022.22", - "5.4.0-1024.24", - "5.4.0-1025.25", - "5.4.0-1028.29", - "5.4.0-1029.31", - "5.4.0-1030.32", - "5.4.0-1032.34", - "5.4.0-1034.36", - "5.4.0-1035.38", - "5.4.0-1037.40", - "5.4.0-1038.41", - "5.4.0-1039.42", - "5.4.0-1041.44", - "5.4.0-1042.45", - "5.4.0-1043.46", - "5.4.0-1045.49", - "5.4.0-1046.50", - "5.4.0-1048.52", - "5.4.0-1049.53", - "5.4.0-1052.56", - "5.4.0-1053.57", - "5.4.0-1054.58", - "5.4.0-1055.59", - "5.4.0-1056.60", - "5.4.0-1057.61", - "5.4.0-1058.62", - "5.4.0-1059.63", - "5.4.0-1061.65", - "5.4.0-1062.66", - "5.4.0-1063.67", - "5.4.0-1064.68", - "5.4.0-1066.71", - "5.4.0-1067.72", - "5.4.0-1069.75", - "5.4.0-1070.76", - "5.4.0-1071.77", - "5.4.0-1073.79", - "5.4.0-1076.83", - "5.4.0-1078.86", - "5.4.0-1079.87", - "5.4.0-1081.89", - "5.4.0-1082.90", - "5.4.0-1083.91", - "5.4.0-1084.92", - "5.4.0-1086.95", - "5.4.0-1087.96", - "5.4.0-1090.99", - "5.4.0-1091.100", - "5.4.0-1092.101", - "5.4.0-1093.102", - "5.4.0-1094.103", - "5.4.0-1097.106", - "5.4.0-1098.107", - "5.4.0-1099.108", - "5.4.0-1100.109", - "5.4.0-1101.110", - "5.4.0-1102.111", - "5.4.0-1103.112", - "5.4.0-1104.113", - "5.4.0-1105.114", - "5.4.0-1106.115", - "5.4.0-1107.116", - "5.4.0-1108.117", - "5.4.0-1109.118", - "5.4.0-1110.119", - "5.4.0-1111.120", - "5.4.0-1112.121", - "5.4.0-1113.122", - "5.4.0-1115.124", - "5.4.0-1116.125", - "5.4.0-1117.126", - "5.4.0-1118.127", - "5.4.0-1119.128", - "5.4.0-1120.129", - "5.4.0-1121.130", - "5.4.0-1122.131", - "5.4.0-1123.132", - "5.4.0-1124.133", - "5.4.0-1125.134", - "5.4.0-1126.135", - "5.4.0-1127.136", - "5.4.0-1129.138", - "5.4.0-1130.139", - "5.4.0-1131.140", - "5.4.0-1132.141", - "5.4.0-1133.142", - "5.4.0-1134.143", - "5.4.0-1135.144", - "5.4.0-1136.145", - "5.4.0-1137.146", - "5.4.0-1138.147", - "5.4.0-1140.150", - "5.4.0-1141.151", - "5.4.0-1142.152", - "5.4.0-1143.153", - "5.4.0-1144.154", - "5.4.0-1145.155", - "5.4.0-1146.156", - "5.4.0-1147.157", - "5.4.0-1149.159", - "5.4.0-1150.160", - "5.4.0-1151.161" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-headers-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-modules-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-oracle-headers-5.4.0-1151", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-oracle-tools-5.4.0-1151", - "binary_version": "5.4.0-1151.161" - }, - { - "binary_name": "linux-tools-5.4.0-1151-oracle", - "binary_version": "5.4.0-1151.161" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oracle-5.11", - "purl": "pkg:deb/ubuntu/linux-oracle-5.11@5.11.0-1028.31~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-1008.8~20.04.1", - "5.11.0-1013.14~20.04.1", - "5.11.0-1016.17~20.04.1", - "5.11.0-1017.18~20.04.1", - "5.11.0-1019.20~20.04.1", - "5.11.0-1020.21~20.04.1", - "5.11.0-1021.22~20.04.1", - "5.11.0-1022.23~20.04.1", - "5.11.0-1023.24~20.04.1", - "5.11.0-1025.27~20.04.1", - "5.11.0-1027.30~20.04.1", - "5.11.0-1028.31~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-headers-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-modules-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-oracle-5.11-headers-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-oracle-5.11-tools-5.11.0-1028", - "binary_version": "5.11.0-1028.31~20.04.1" - }, - { - "binary_name": "linux-tools-5.11.0-1028-oracle", - "binary_version": "5.11.0-1028.31~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oracle-5.13", - "purl": "pkg:deb/ubuntu/linux-oracle-5.13@5.13.0-1036.43~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1011.13~20.04.2", - "5.13.0-1015.19~20.04.1", - "5.13.0-1016.20~20.04.1", - "5.13.0-1018.22~20.04.1", - "5.13.0-1021.26~20.04.1", - "5.13.0-1025.30~20.04.1", - "5.13.0-1027.32~20.04.1", - "5.13.0-1028.33~20.04.1", - "5.13.0-1030.35~20.04.1", - "5.13.0-1033.39~20.04.1", - "5.13.0-1034.40~20.04.1", - "5.13.0-1036.43~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-headers-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-modules-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-oracle-5.13-headers-5.13.0-1036", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-oracle-5.13-tools-5.13.0-1036", - "binary_version": "5.13.0-1036.43~20.04.1" - }, - { - "binary_name": "linux-tools-5.13.0-1036-oracle", - "binary_version": "5.13.0-1036.43~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-oracle-5.15", - "purl": "pkg:deb/ubuntu/linux-oracle-5.15@5.15.0-1095.101~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1007.9~20.04.1", - "5.15.0-1013.17~20.04.1", - "5.15.0-1016.20~20.04.1", - "5.15.0-1017.22~20.04.1", - "5.15.0-1018.23~20.04.1", - "5.15.0-1019.24~20.04.1", - "5.15.0-1021.27~20.04.1", - "5.15.0-1022.28~20.04.1", - "5.15.0-1025.31~20.04.2", - "5.15.0-1027.33~20.04.1", - "5.15.0-1029.35~20.04.1", - "5.15.0-1030.36~20.04.1", - "5.15.0-1032.38~20.04.1", - "5.15.0-1033.39~20.04.1", - "5.15.0-1034.40~20.04.1", - "5.15.0-1035.41~20.04.1", - "5.15.0-1036.42~20.04.1", - "5.15.0-1037.43~20.04.1", - "5.15.0-1038.44~20.04.1", - "5.15.0-1039.45~20.04.1", - "5.15.0-1040.46~20.04.1", - "5.15.0-1041.47~20.04.1", - "5.15.0-1042.48~20.04.1", - "5.15.0-1044.50~20.04.1", - "5.15.0-1045.51~20.04.1", - "5.15.0-1046.52~20.04.1", - "5.15.0-1047.53~20.04.1", - "5.15.0-1048.54~20.04.1", - "5.15.0-1049.55~20.04.1", - "5.15.0-1050.56~20.04.1", - "5.15.0-1051.57~20.04.1", - "5.15.0-1052.58~20.04.1", - "5.15.0-1053.59~20.04.1", - "5.15.0-1054.60~20.04.1", - "5.15.0-1055.61~20.04.1", - "5.15.0-1058.64~20.04.1", - "5.15.0-1059.65~20.04.1", - "5.15.0-1061.67~20.04.1", - "5.15.0-1062.68~20.04.1", - "5.15.0-1063.69~20.04.1", - "5.15.0-1065.71~20.04.1", - "5.15.0-1066.72~20.04.1", - "5.15.0-1067.73~20.04.1", - "5.15.0-1068.74~20.04.1", - "5.15.0-1069.75~20.04.1", - "5.15.0-1070.76~20.04.1", - "5.15.0-1071.77~20.04.1", - "5.15.0-1072.78~20.04.1", - "5.15.0-1073.79~20.04.1", - "5.15.0-1074.80~20.04.1", - "5.15.0-1075.81~20.04.1", - "5.15.0-1076.82~20.04.1", - "5.15.0-1077.83~20.04.1", - "5.15.0-1078.84~20.04.1", - "5.15.0-1079.85~20.04.1", - "5.15.0-1080.86~20.04.1", - "5.15.0-1081.87~20.04.1", - "5.15.0-1083.89~20.04.1", - "5.15.0-1084.90~20.04.1", - "5.15.0-1085.91~20.04.3", - "5.15.0-1086.92~20.04.1", - "5.15.0-1088.94~20.04.1", - "5.15.0-1090.96~20.04.1", - "5.15.0-1091.97~20.04.1", - "5.15.0-1092.98~20.04.1", - "5.15.0-1093.99~20.04.1", - "5.15.0-1094.100~20.04.1", - "5.15.0-1095.101~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-oracle-5.15-headers-5.15.0-1095", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-oracle-5.15-tools-5.15.0-1095", - "binary_version": "5.15.0-1095.101~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1095-oracle", - "binary_version": "5.15.0-1095.101~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-oracle-5.8", - "purl": "pkg:deb/ubuntu/linux-oracle-5.8@5.8.0-1038.39~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-1031.32~20.04.2", - "5.8.0-1033.34~20.04.1", - "5.8.0-1034.35~20.04.2", - "5.8.0-1037.38~20.04.1", - "5.8.0-1038.39~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-oracle-5.8-headers-5.8.0-1038", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-oracle-5.8-tools-5.8.0-1038", - "binary_version": "5.8.0-1038.39~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-1038-oracle", - "binary_version": "5.8.0-1038.39~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-raspi", - "purl": "pkg:deb/ubuntu/linux-raspi@5.4.0-1136.149?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1007.7", - "5.4.0-1008.8", - "5.4.0-1011.11", - "5.4.0-1012.12", - "5.4.0-1013.13", - "5.4.0-1015.15", - "5.4.0-1016.17", - "5.4.0-1018.20", - "5.4.0-1019.21", - "5.4.0-1021.24", - "5.4.0-1022.25", - "5.4.0-1023.26", - "5.4.0-1025.28", - "5.4.0-1026.29", - "5.4.0-1028.31", - "5.4.0-1029.32", - "5.4.0-1030.33", - "5.4.0-1032.35", - "5.4.0-1033.36", - "5.4.0-1034.37", - "5.4.0-1035.38", - "5.4.0-1036.39", - "5.4.0-1038.41", - "5.4.0-1041.45", - "5.4.0-1042.46", - "5.4.0-1043.47", - "5.4.0-1044.48", - "5.4.0-1045.49", - "5.4.0-1046.50", - "5.4.0-1047.52", - "5.4.0-1048.53", - "5.4.0-1050.56", - "5.4.0-1052.58", - "5.4.0-1053.60", - "5.4.0-1055.62", - "5.4.0-1056.63", - "5.4.0-1058.65", - "5.4.0-1059.67", - "5.4.0-1060.68", - "5.4.0-1062.70", - "5.4.0-1065.75", - "5.4.0-1066.76", - "5.4.0-1068.78", - "5.4.0-1069.79", - "5.4.0-1070.80", - "5.4.0-1071.81", - "5.4.0-1073.84", - "5.4.0-1074.85", - "5.4.0-1077.88", - "5.4.0-1078.89", - "5.4.0-1079.90", - "5.4.0-1080.91", - "5.4.0-1081.92", - "5.4.0-1082.93", - "5.4.0-1083.94", - "5.4.0-1084.95", - "5.4.0-1085.96", - "5.4.0-1086.97", - "5.4.0-1088.99", - "5.4.0-1089.100", - "5.4.0-1090.101", - "5.4.0-1091.102", - "5.4.0-1092.103", - "5.4.0-1093.104", - "5.4.0-1094.105", - "5.4.0-1095.106", - "5.4.0-1096.107", - "5.4.0-1097.109", - "5.4.0-1098.110", - "5.4.0-1100.112", - "5.4.0-1101.113", - "5.4.0-1102.114", - "5.4.0-1103.115", - "5.4.0-1104.116", - "5.4.0-1105.117", - "5.4.0-1106.118", - "5.4.0-1107.119", - "5.4.0-1108.120", - "5.4.0-1109.121", - "5.4.0-1110.122", - "5.4.0-1111.123", - "5.4.0-1112.124", - "5.4.0-1113.125", - "5.4.0-1114.126", - "5.4.0-1115.127", - "5.4.0-1116.128", - "5.4.0-1117.129", - "5.4.0-1118.130", - "5.4.0-1119.131", - "5.4.0-1120.132", - "5.4.0-1121.133", - "5.4.0-1122.134", - "5.4.0-1129.142", - "5.4.0-1130.143", - "5.4.0-1131.144", - "5.4.0-1132.145", - "5.4.0-1133.146", - "5.4.0-1134.147", - "5.4.0-1135.148", - "5.4.0-1136.149" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-headers-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-image-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-modules-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-raspi-headers-5.4.0-1136", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-raspi-tools-5.4.0-1136", - "binary_version": "5.4.0-1136.149" - }, - { - "binary_name": "linux-tools-5.4.0-1136-raspi", - "binary_version": "5.4.0-1136.149" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-raspi2", - "purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.3.0-1007.8", - "5.3.0-1014.16", - "5.3.0-1015.17", - "5.3.0-1017.19", - "5.4.0-1004.4", - "5.4.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-headers-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-image-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-modules-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-raspi2-headers-5.4.0-1006", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-raspi2-tools-5.4.0-1006", - "binary_version": "5.4.0-1006.6" - }, - { - "binary_name": "linux-tools-5.4.0-1006-raspi2", - "binary_version": "5.4.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-riscv", - "purl": "pkg:deb/ubuntu/linux-riscv@5.4.0-40.45?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-24.28", - "5.4.0-26.30", - "5.4.0-27.31", - "5.4.0-28.32", - "5.4.0-30.34", - "5.4.0-31.35", - "5.4.0-33.37", - "5.4.0-34.38", - "5.4.0-36.41", - "5.4.0-37.42", - "5.4.0-39.44", - "5.4.0-40.45" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "crypto-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "fat-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "firewire-core-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "fs-core-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "fs-secondary-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "input-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "ipmi-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "kernel-image-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-buildinfo-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-headers-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-image-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-modules-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-modules-extra-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-riscv-headers-5.4.0-40", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-riscv-tools-5.4.0-40", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-tools-5.4.0-40-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "md-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "message-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "mouse-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "multipath-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "nfs-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "nic-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "nic-shared-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "nic-usb-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "parport-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "pata-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "plip-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "ppp-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "sata-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "scsi-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "storage-core-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "usb-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "virtio-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - }, - { - "binary_name": "vlan-modules-5.4.0-40-generic-di", - "binary_version": "5.4.0-40.45" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-riscv-5.11", - "purl": "pkg:deb/ubuntu/linux-riscv-5.11@5.11.0-1031.35?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.11.0-1015.16~20.04.1", - "5.11.0-1017.18~20.04.1", - "5.11.0-1018.19~20.04.2", - "5.11.0-1020.21~20.04.1", - "5.11.0-1021.22~20.04.1", - "5.11.0-1022.23~20.04.1", - "5.11.0-1023.24~20.04.1", - "5.11.0-1024.25~20.04.1", - "5.11.0-1026.28~20.04.1", - "5.11.0-1028.31~20.04.1", - "5.11.0-1029.32~20.04.1", - "5.11.0-1030.34", - "5.11.0-1031.35" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-headers-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-image-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-modules-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-modules-extra-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-riscv-5.11-headers-5.11.0-1031", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-riscv-5.11-tools-5.11.0-1031", - "binary_version": "5.11.0-1031.35" - }, - { - "binary_name": "linux-tools-5.11.0-1031-generic", - "binary_version": "5.11.0-1031.35" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-riscv-5.15", - "purl": "pkg:deb/ubuntu/linux-riscv-5.15@5.15.0-1094.98~20.04.1?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1015.17~20.04.1", - "5.15.0-1017.19~20.04.1", - "5.15.0-1018.21~20.04.1", - "5.15.0-1019.22~20.04.1", - "5.15.0-1022.26~20.04.1", - "5.15.0-1023.27~20.04.1", - "5.15.0-1026.30~20.04.2", - "5.15.0-1027.31~20.04.1", - "5.15.0-1028.32~20.04.1", - "5.15.0-1029.33~20.04.1", - "5.15.0-1030.34~20.04.1", - "5.15.0-1031.35~20.04.1", - "5.15.0-1032.36~20.04.1", - "5.15.0-1033.37~20.04.1", - "5.15.0-1034.38~20.04.1", - "5.15.0-1035.39~20.04.1", - "5.15.0-1036.40~20.04.2", - "5.15.0-1037.41~20.04.2", - "5.15.0-1038.42~20.04.2", - "5.15.0-1039.43~20.04.2", - "5.15.0-1040.44~20.04.3", - "5.15.0-1041.45~20.04.1", - "5.15.0-1043.47~20.04.1", - "5.15.0-1044.48~20.04.1", - "5.15.0-1045.49~20.04.1", - "5.15.0-1046.50~20.04.1", - "5.15.0-1047.51~20.04.1", - "5.15.0-1048.52~20.04.1", - "5.15.0-1049.53~20.04.2", - "5.15.0-1050.54~20.04.1", - "5.15.0-1051.55~20.04.1", - "5.15.0-1052.56~20.04.1", - "5.15.0-1053.57~20.04.1", - "5.15.0-1056.60~20.04.1", - "5.15.0-1057.61~20.04.1", - "5.15.0-1058.62~20.04.1", - "5.15.0-1059.63~20.04.1", - "5.15.0-1060.64~20.04.1", - "5.15.0-1061.65~20.04.1", - "5.15.0-1062.66~20.04.1", - "5.15.0-1063.67~20.04.1", - "5.15.0-1064.68~20.04.1", - "5.15.0-1065.69~20.04.1", - "5.15.0-1066.70~20.04.1", - "5.15.0-1067.71~20.04.1", - "5.15.0-1068.72~20.04.1", - "5.15.0-1069.73~20.04.1", - "5.15.0-1070.74~20.04.1", - "5.15.0-1071.75~20.04.1", - "5.15.0-1072.76~20.04.1", - "5.15.0-1073.77~20.04.1", - "5.15.0-1074.78~20.04.1", - "5.15.0-1075.79~20.04.1", - "5.15.0-1076.80~20.04.1", - "5.15.0-1077.81~20.04.1", - "5.15.0-1078.82~20.04.1", - "5.15.0-1079.83~20.04.1", - "5.15.0-1081.85~20.04.1", - "5.15.0-1082.86~20.04.1", - "5.15.0-1083.87~20.04.1", - "5.15.0-1084.88~20.04.1", - "5.15.0-1085.89~20.04.1", - "5.15.0-1086.90~20.04.1", - "5.15.0-1087.91~20.04.1", - "5.15.0-1088.92~20.04.1", - "5.15.0-1090.94~20.04.1", - "5.15.0-1091.95~20.04.1", - "5.15.0-1092.96~20.04.1", - "5.15.0-1093.97~20.04.2", - "5.15.0-1094.98~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-headers-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-image-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-modules-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-riscv-5.15-headers-5.15.0-1094", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-riscv-5.15-tools-5.15.0-1094", - "binary_version": "5.15.0-1094.98~20.04.1" - }, - { - "binary_name": "linux-tools-5.15.0-1094-generic", - "binary_version": "5.15.0-1094.98~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:20.04:LTS", - "name": "linux-riscv-5.8", - "purl": "pkg:deb/ubuntu/linux-riscv-5.8@5.8.0-29.31~20.04.1?arch=source&distro=focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.8.0-14.16~20.04.1", - "5.8.0-14.16~20.04.3", - "5.8.0-16.18~20.04.1", - "5.8.0-17.19~20.04.1", - "5.8.0-18.20~20.04.1", - "5.8.0-20.22~20.04.1", - "5.8.0-22.24~20.04.1", - "5.8.0-25.27~20.04.1", - "5.8.0-26.28~20.04.1", - "5.8.0-29.31~20.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "block-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "crypto-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "fat-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "firewire-core-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "fs-core-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "fs-secondary-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "input-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "ipmi-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "kernel-image-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-buildinfo-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-headers-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-image-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-modules-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-modules-extra-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-riscv-5.8-headers-5.8.0-29", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-riscv-5.8-tools-5.8.0-29", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-tools-5.8.0-29-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "linux-udebs-generic", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "md-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "message-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "mouse-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "multipath-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "nfs-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "nic-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "nic-shared-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "nic-usb-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "parport-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "pata-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "plip-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "ppp-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "sata-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "scsi-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "storage-core-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "usb-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "virtio-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - }, - { - "binary_name": "vlan-modules-5.8.0-29-generic-di", - "binary_version": "5.8.0-29.31~20.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:20.04:LTS", - "name": "linux-xilinx-zynqmp", - "purl": "pkg:deb/ubuntu/linux-xilinx-zynqmp@5.4.0-1071.75?arch=source&distro=esm-infra/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1020.24", - "5.4.0-1021.25", - "5.4.0-1022.26", - "5.4.0-1023.27", - "5.4.0-1024.28", - "5.4.0-1025.29", - "5.4.0-1026.30", - "5.4.0-1027.31", - "5.4.0-1028.32", - "5.4.0-1029.33", - "5.4.0-1030.34", - "5.4.0-1031.35", - "5.4.0-1032.36", - "5.4.0-1033.37", - "5.4.0-1034.38", - "5.4.0-1035.39", - "5.4.0-1036.40", - "5.4.0-1037.41", - "5.4.0-1038.42", - "5.4.0-1039.43", - "5.4.0-1040.44", - "5.4.0-1041.45", - "5.4.0-1042.46", - "5.4.0-1043.47", - "5.4.0-1044.48", - "5.4.0-1045.49", - "5.4.0-1046.50", - "5.4.0-1047.51", - "5.4.0-1048.52", - "5.4.0-1049.53", - "5.4.0-1050.54", - "5.4.0-1051.55", - "5.4.0-1052.56", - "5.4.0-1053.57", - "5.4.0-1054.58", - "5.4.0-1055.59", - "5.4.0-1056.60", - "5.4.0-1058.62", - "5.4.0-1060.64", - "5.4.0-1061.65", - "5.4.0-1062.66", - "5.4.0-1064.68", - "5.4.0-1065.69", - "5.4.0-1066.70", - "5.4.0-1067.71", - "5.4.0-1068.72", - "5.4.0-1069.73", - "5.4.0-1070.74", - "5.4.0-1071.75" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1071-xilinx-zynqmp", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-headers-5.4.0-1071-xilinx-zynqmp", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-image-5.4.0-1071-xilinx-zynqmp", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-modules-5.4.0-1071-xilinx-zynqmp", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-tools-5.4.0-1071-xilinx-zynqmp", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-xilinx-zynqmp-headers-5.4.0-1071", - "binary_version": "5.4.0-1071.75" - }, - { - "binary_name": "linux-xilinx-zynqmp-tools-5.4.0-1071", - "binary_version": "5.4.0-1071.75" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@5.4.0-1154.164+fips1?arch=source&distro=fips-updates/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1021.21+fips2", - "5.4.0-1069.73+fips2", - "5.4.0-1071.76+fips1", - "5.4.0-1072.77+fips1", - "5.4.0-1073.78+fips1", - "5.4.0-1078.84+fips1", - "5.4.0-1080.87+fips1", - "5.4.0-1081.88+fips1", - "5.4.0-1083.90+fips1", - "5.4.0-1085.92+fips1", - "5.4.0-1086.93+fips1", - "5.4.0-1088.96+fips1", - "5.4.0-1089.97+fips1", - "5.4.0-1092.100+fips1", - "5.4.0-1093.101+fips1", - "5.4.0-1094.102+fips1", - "5.4.0-1096.104+fips1", - "5.4.0-1099.107+fips1", - "5.4.0-1100.108+fips1", - "5.4.0-1101.109+fips1", - "5.4.0-1102.110+fips1", - "5.4.0-1103.111+fips1", - "5.4.0-1104.112+fips1", - "5.4.0-1105.113+fips1", - "5.4.0-1106.114+fips1", - "5.4.0-1107.115+fips1", - "5.4.0-1108.116+fips1", - "5.4.0-1109.118+fips1", - "5.4.0-1110.119+fips1", - "5.4.0-1111.120+fips1", - "5.4.0-1112.121+fips1", - "5.4.0-1113.123+fips1", - "5.4.0-1114.124+fips1", - "5.4.0-1116.126+fips1", - "5.4.0-1117.127+fips1", - "5.4.0-1118.128+fips1", - "5.4.0-1119.129+fips1", - "5.4.0-1120.130+fips1", - "5.4.0-1121.131+fips1", - "5.4.0-1122.132+fips1", - "5.4.0-1123.133+fips1", - "5.4.0-1124.134+fips1", - "5.4.0-1125.135+fips1", - "5.4.0-1126.136+fips2", - "5.4.0-1127.137+fips1", - "5.4.0-1128.138+fips1", - "5.4.0-1129.139+fips1", - "5.4.0-1130.140+fips1", - "5.4.0-1131.141+fips1", - "5.4.0-1132.142+fips1", - "5.4.0-1133.143+fips1", - "5.4.0-1134.144+fips1", - "5.4.0-1135.145+fips1", - "5.4.0-1136.146+fips1", - "5.4.0-1137.147+fips1", - "5.4.0-1139.149+fips1", - "5.4.0-1140.151+fips1", - "5.4.0-1142.153+fips1", - "5.4.0-1144.155+fips1", - "5.4.0-1145.156+fips1", - "5.4.0-1146.156+fips1", - "5.4.0-1147.157+fips1", - "5.4.0-1148.158+fips1", - "5.4.0-1149.159+fips1", - "5.4.0-1150.160+fips1", - "5.4.0-1151.161+fips1", - "5.4.0-1152.162+fips1", - "5.4.0-1153.163+fips1", - "5.4.0-1154.164+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-5.4.0-1154", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-aws-fips-tools-5.4.0-1154", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-headers-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-modules-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - }, - { - "binary_name": "linux-tools-5.4.0-1154-aws-fips", - "binary_version": "5.4.0-1154.164+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@5.4.0-1157.164+fips1?arch=source&distro=fips-updates/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1022.22+fips1", - "5.4.0-1073.76+fips1", - "5.4.0-1074.77+fips1", - "5.4.0-1076.79+fips1", - "5.4.0-1078.81+fips1", - "5.4.0-1080.83+fips1", - "5.4.0-1083.87+fips1", - "5.4.0-1085.90+fips1", - "5.4.0-1086.91+fips1", - "5.4.0-1089.94+fips1", - "5.4.0-1090.95+fips1", - "5.4.0-1091.96+fips1", - "5.4.0-1094.100+fips1", - "5.4.0-1095.101+fips1", - "5.4.0-1098.104+fips1", - "5.4.0-1100.106+fips1", - "5.4.0-1101.107+fips1", - "5.4.0-1103.109+fips1", - "5.4.0-1104.110+fips1", - "5.4.0-1105.111+fips1", - "5.4.0-1106.112+fips1", - "5.4.0-1107.113+fips1", - "5.4.0-1108.114+fips1", - "5.4.0-1109.115+fips1", - "5.4.0-1110.116+fips1", - "5.4.0-1111.117+fips1", - "5.4.0-1112.118+fips1", - "5.4.0-1113.119+fips1", - "5.4.0-1114.120+fips1", - "5.4.0-1115.122+fips1", - "5.4.0-1116.123+fips1", - "5.4.0-1117.124+fips1", - "5.4.0-1118.125+fips1", - "5.4.0-1119.126+fips1", - "5.4.0-1121.128+fips1", - "5.4.0-1122.129+fips1", - "5.4.0-1123.130+fips1", - "5.4.0-1124.131+fips1", - "5.4.0-1126.133+fips1", - "5.4.0-1127.134+fips1", - "5.4.0-1128.135+fips1", - "5.4.0-1129.136+fips1", - "5.4.0-1130.137+fips1", - "5.4.0-1131.138+fips1", - "5.4.0-1132.139+fips1", - "5.4.0-1133.140+fips1", - "5.4.0-1134.141+fips1", - "5.4.0-1135.142+fips1", - "5.4.0-1136.143+fips1", - "5.4.0-1137.144+fips1", - "5.4.0-1138.145+fips1", - "5.4.0-1139.146+fips1", - "5.4.0-1140.147+fips1", - "5.4.0-1142.149+fips1", - "5.4.0-1143.150+fips1", - "5.4.0-1145.152+fips1", - "5.4.0-1147.154+fips1", - "5.4.0-1148.156+fips1", - "5.4.0-1149.157+fips1", - "5.4.0-1151.158+fips1", - "5.4.0-1152.159+fips1", - "5.4.0-1153.160+fips1", - "5.4.0-1154.161+fips1", - "5.4.0-1155.162+fips1", - "5.4.0-1157.164+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-5.4.0-1157", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-azure-fips-headers-5.4.0-1157", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-azure-fips-tools-5.4.0-1157", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-headers-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-modules-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - }, - { - "binary_name": "linux-tools-5.4.0-1157-azure-fips", - "binary_version": "5.4.0-1157.164+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@5.4.0-1128.138?arch=source&distro=fips-updates/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1026.30", - "5.4.0-1028.32", - "5.4.0-1031.36", - "5.4.0-1032.37", - "5.4.0-1033.38", - "5.4.0-1034.40", - "5.4.0-1035.41", - "5.4.0-1036.42", - "5.4.0-1037.43", - "5.4.0-1038.44", - "5.4.0-1040.46", - "5.4.0-1041.47", - "5.4.0-1042.48", - "5.4.0-1043.49", - "5.4.0-1045.51", - "5.4.0-1046.52", - "5.4.0-1047.53", - "5.4.0-1048.54", - "5.4.0-1049.55", - "5.4.0-1051.57", - "5.4.0-1054.61", - "5.4.0-1056.64", - "5.4.0-1057.65", - "5.4.0-1059.67", - "5.4.0-1060.68", - "5.4.0-1061.69", - "5.4.0-1062.70", - "5.4.0-1064.73", - "5.4.0-1065.74", - "5.4.0-1068.77", - "5.4.0-1069.78", - "5.4.0-1070.79", - "5.4.0-1072.81", - "5.4.0-1073.82", - "5.4.0-1074.83", - "5.4.0-1075.84", - "5.4.0-1076.85", - "5.4.0-1077.86", - "5.4.0-1078.87", - "5.4.0-1079.88", - "5.4.0-1080.89", - "5.4.0-1081.90", - "5.4.0-1082.91", - "5.4.0-1083.92", - "5.4.0-1084.93", - "5.4.0-1085.94", - "5.4.0-1086.95", - "5.4.0-1087.96", - "5.4.0-1088.97", - "5.4.0-1089.98", - "5.4.0-1090.100", - "5.4.0-1091.101", - "5.4.0-1092.102", - "5.4.0-1094.104", - "5.4.0-1095.105", - "5.4.0-1096.106", - "5.4.0-1097.107", - "5.4.0-1098.108", - "5.4.0-1099.109", - "5.4.0-1100.110", - "5.4.0-1101.111", - "5.4.0-1102.112", - "5.4.0-1103.113", - "5.4.0-1104.114", - "5.4.0-1105.115", - "5.4.0-1106.116", - "5.4.0-1107.117", - "5.4.0-1108.118", - "5.4.0-1109.119", - "5.4.0-1110.120", - "5.4.0-1111.121", - "5.4.0-1112.122", - "5.4.0-1116.126", - "5.4.0-1117.127", - "5.4.0-1118.128", - "5.4.0-1119.129", - "5.4.0-1120.130", - "5.4.0-1121.131", - "5.4.0-1122.132", - "5.4.0-1123.133", - "5.4.0-1124.134", - "5.4.0-1125.135", - "5.4.0-1126.136", - "5.4.0-1127.137", - "5.4.0-1128.138" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-fips-headers-5.4.0-1128", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-fips-tools-5.4.0-1128", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-fips-tools-host", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-headers-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-modules-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - }, - { - "binary_name": "linux-tools-5.4.0-1128-fips", - "binary_version": "5.4.0-1128.138" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:20.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.4.0-1157.166+fips1?arch=source&distro=fips-updates/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1021.21+fips1", - "5.4.0-1067.71~20.04.1", - "5.4.0-1069.73+fips2", - "5.4.0-1071.75+fips1", - "5.4.0-1073.78+fips1", - "5.4.0-1075.80+fips1", - "5.4.0-1078.84+fips1", - "5.4.0-1080.87+fips1", - "5.4.0-1081.88+fips1", - "5.4.0-1086.94+fips1", - "5.4.0-1087.95+fips1", - "5.4.0-1089.97+fips1", - "5.4.0-1092.101+fips1", - "5.4.0-1093.102+fips1", - "5.4.0-1096.105+fips1", - "5.4.0-1097.106+fips1", - "5.4.0-1098.107+fips1", - "5.4.0-1100.109+fips1", - "5.4.0-1101.110+fips1", - "5.4.0-1102.111+fips1", - "5.4.0-1103.112+fips1", - "5.4.0-1104.113+fips1", - "5.4.0-1105.114+fips1", - "5.4.0-1106.115+fips1", - "5.4.0-1107.116+fips1", - "5.4.0-1108.117+fips1", - "5.4.0-1109.118+fips1", - "5.4.0-1110.119+fips1", - "5.4.0-1111.120+fips1", - "5.4.0-1112.121+fips1", - "5.4.0-1113.122+fips1", - "5.4.0-1115.124+fips1", - "5.4.0-1116.125+fips1", - "5.4.0-1117.126+fips1", - "5.4.0-1118.127+fips1", - "5.4.0-1120.129+fips1", - "5.4.0-1121.130+fips1", - "5.4.0-1122.131+fips1", - "5.4.0-1124.133+fips1", - "5.4.0-1125.134+fips1", - "5.4.0-1126.135+fips1", - "5.4.0-1127.136+fips1", - "5.4.0-1128.137+fips1", - "5.4.0-1129.138+fips1", - "5.4.0-1130.139+fips1", - "5.4.0-1131.140+fips1", - "5.4.0-1132.141+fips1", - "5.4.0-1133.142+fips1", - "5.4.0-1134.143+fips1", - "5.4.0-1135.144+fips1", - "5.4.0-1136.145+fips1", - "5.4.0-1137.146+fips1", - "5.4.0-1138.147+fips1", - "5.4.0-1139.148+fips1", - "5.4.0-1140.149+fips1", - "5.4.0-1141.150+fips1", - "5.4.0-1142.151+fips1", - "5.4.0-1143.152+fips1", - "5.4.0-1145.154+fips1", - "5.4.0-1146.155+fips1", - "5.4.0-1147.156+fips1", - "5.4.0-1148.157+fips1", - "5.4.0-1149.158+fips1", - "5.4.0-1150.159+fips1", - "5.4.0-1151.160+fips1", - "5.4.0-1152.161+fips1", - "5.4.0-1153.162+fips1", - "5.4.0-1154.163+fips1", - "5.4.0-1155.164+fips1", - "5.4.0-1156.165+fips1", - "5.4.0-1157.166+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-gcp-fips-headers-5.4.0-1157", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-gcp-fips-tools-5.4.0-1157", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-headers-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-modules-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - }, - { - "binary_name": "linux-tools-5.4.0-1157-gcp-fips", - "binary_version": "5.4.0-1157.166+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@5.4.0-1021.21+fips2?arch=source&distro=fips/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1021.21+fips2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-headers-5.4.0-1021", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-aws-fips-tools-5.4.0-1021", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-headers-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-modules-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - }, - { - "binary_name": "linux-tools-5.4.0-1021-aws-fips", - "binary_version": "5.4.0-1021.21+fips2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@5.4.0-1022.22+fips1?arch=source&distro=fips/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1022.22+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-5.4.0-1022", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-azure-fips-headers-5.4.0-1022", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-azure-fips-tools-5.4.0-1022", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-buildinfo-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-headers-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-modules-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - }, - { - "binary_name": "linux-tools-5.4.0-1022-azure-fips", - "binary_version": "5.4.0-1022.22+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@5.4.0-1007.8?arch=source&distro=fips/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1007.8" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-fips-headers-5.4.0-1007", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-fips-tools-5.4.0-1007", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-fips-tools-host", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-headers-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-modules-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - }, - { - "binary_name": "linux-tools-5.4.0-1007-fips", - "binary_version": "5.4.0-1007.8" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS:20.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.4.0-1021.21+fips1?arch=source&distro=fips/focal" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.4.0-1021.21+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-gcp-fips-headers-5.4.0-1021", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-gcp-fips-tools-5.4.0-1021", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-headers-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-modules-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-modules-extra-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - }, - { - "binary_name": "linux-tools-5.4.0-1021-gcp-fips", - "binary_version": "5.4.0-1021.21+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@5.15.0-168.178?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-19.19", - "5.15.0-17.17", - "5.15.0-18.18", - "5.15.0-22.22", - "5.15.0-23.23", - "5.15.0-25.25", - "5.15.0-27.28", - "5.15.0-30.31", - "5.15.0-33.34", - "5.15.0-35.36", - "5.15.0-37.39", - "5.15.0-39.42", - "5.15.0-40.43", - "5.15.0-41.44", - "5.15.0-43.46", - "5.15.0-46.49", - "5.15.0-47.51", - "5.15.0-48.54", - "5.15.0-50.56", - "5.15.0-52.58", - "5.15.0-53.59", - "5.15.0-56.62", - "5.15.0-57.63", - "5.15.0-58.64", - "5.15.0-60.66", - "5.15.0-67.74", - "5.15.0-69.76", - "5.15.0-70.77", - "5.15.0-71.78", - "5.15.0-72.79", - "5.15.0-73.80", - "5.15.0-75.82", - "5.15.0-76.83", - "5.15.0-78.85", - "5.15.0-79.86", - "5.15.0-82.91", - "5.15.0-83.92", - "5.15.0-84.93", - "5.15.0-86.96", - "5.15.0-87.97", - "5.15.0-88.98", - "5.15.0-89.99", - "5.15.0-91.101", - "5.15.0-92.102", - "5.15.0-94.104", - "5.15.0-97.107", - "5.15.0-100.110", - "5.15.0-101.111", - "5.15.0-102.112", - "5.15.0-105.115", - "5.15.0-106.116", - "5.15.0-107.117", - "5.15.0-112.122", - "5.15.0-113.123", - "5.15.0-116.126", - "5.15.0-117.127", - "5.15.0-118.128", - "5.15.0-119.129", - "5.15.0-121.131", - "5.15.0-122.132", - "5.15.0-124.134", - "5.15.0-125.135", - "5.15.0-126.136", - "5.15.0-127.137", - "5.15.0-128.138", - "5.15.0-130.140", - "5.15.0-131.141", - "5.15.0-133.144", - "5.15.0-134.145", - "5.15.0-135.146", - "5.15.0-136.147", - "5.15.0-138.148", - "5.15.0-139.149", - "5.15.0-140.150", - "5.15.0-141.151", - "5.15.0-142.152", - "5.15.0-143.153", - "5.15.0-144.157", - "5.15.0-151.161", - "5.15.0-152.162", - "5.15.0-153.163", - "5.15.0-156.166", - "5.15.0-157.167", - "5.15.0-160.170", - "5.15.0-161.171", - "5.15.0-163.173", - "5.15.0-164.174", - "5.15.0-168.178" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-extra-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-source-5.15.0", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168-generic-lpae", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "5.15.0-168.178" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-allwinner-5.19", - "purl": "pkg:deb/ubuntu/linux-allwinner-5.19@5.19.0-1015.15~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1007.7~22.04.1", - "5.19.0-1009.9~22.04.1", - "5.19.0-1010.10~22.04.1", - "5.19.0-1011.11~22.04.1", - "5.19.0-1012.12~22.04.1", - "5.19.0-1013.13~22.04.1", - "5.19.0-1014.14~22.04.1", - "5.19.0-1015.15~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-allwinner-5.19-headers-5.19.0-1015", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-allwinner-5.19-tools-5.19.0-1015", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-buildinfo-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-headers-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-image-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-modules-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - }, - { - "binary_name": "linux-tools-5.19.0-1015-allwinner", - "binary_version": "5.19.0-1015.15~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@5.15.0-1099.106?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1005.6", - "5.15.0-1002.4", - "5.15.0-1003.5", - "5.15.0-1004.6", - "5.15.0-1005.7", - "5.15.0-1008.10", - "5.15.0-1009.11", - "5.15.0-1011.14", - "5.15.0-1013.17", - "5.15.0-1014.18", - "5.15.0-1015.19", - "5.15.0-1017.21", - "5.15.0-1019.23", - "5.15.0-1020.24", - "5.15.0-1021.25", - "5.15.0-1022.26", - "5.15.0-1023.27", - "5.15.0-1026.30", - "5.15.0-1027.31", - "5.15.0-1028.32", - "5.15.0-1030.34", - "5.15.0-1031.35", - "5.15.0-1033.37", - "5.15.0-1034.38", - "5.15.0-1035.39", - "5.15.0-1036.40", - "5.15.0-1037.41", - "5.15.0-1038.43", - "5.15.0-1039.44", - "5.15.0-1040.45", - "5.15.0-1042.47", - "5.15.0-1043.48", - "5.15.0-1044.49", - "5.15.0-1045.50", - "5.15.0-1047.52", - "5.15.0-1048.53", - "5.15.0-1049.54", - "5.15.0-1050.55", - "5.15.0-1051.56", - "5.15.0-1052.57", - "5.15.0-1053.58", - "5.15.0-1055.60", - "5.15.0-1056.61", - "5.15.0-1057.63", - "5.15.0-1060.66", - "5.15.0-1061.67", - "5.15.0-1062.68", - "5.15.0-1063.69", - "5.15.0-1064.70", - "5.15.0-1065.71", - "5.15.0-1066.72", - "5.15.0-1067.73", - "5.15.0-1068.74", - "5.15.0-1069.75", - "5.15.0-1070.76", - "5.15.0-1071.77", - "5.15.0-1072.78", - "5.15.0-1073.79", - "5.15.0-1076.83", - "5.15.0-1078.85", - "5.15.0-1079.86", - "5.15.0-1080.87", - "5.15.0-1081.88", - "5.15.0-1082.89", - "5.15.0-1083.90", - "5.15.0-1084.91", - "5.15.0-1085.92", - "5.15.0-1086.93", - "5.15.0-1087.94", - "5.15.0-1088.95", - "5.15.0-1089.96", - "5.15.0-1090.97", - "5.15.0-1091.98", - "5.15.0-1092.99", - "5.15.0-1093.100", - "5.15.0-1095.102", - "5.15.0-1096.103", - "5.15.0-1097.104", - "5.15.0-1098.105", - "5.15.0-1099.106" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-aws-headers-5.15.0-1099", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-aws-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-headers-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-headers-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-modules-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-modules-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-tools-5.15.0-1099-aws", - "binary_version": "5.15.0-1099.106" - }, - { - "binary_name": "linux-tools-5.15.0-1099-aws-64k", - "binary_version": "5.15.0-1099.106" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-aws-5.19", - "purl": "pkg:deb/ubuntu/linux-aws-5.19@5.19.0-1029.30~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1019.20~22.04.1", - "5.19.0-1020.21~22.04.1", - "5.19.0-1022.23~22.04.1", - "5.19.0-1023.24~22.04.1", - "5.19.0-1024.25~22.04.1", - "5.19.0-1025.26~22.04.1", - "5.19.0-1026.27~22.04.1", - "5.19.0-1027.28~22.04.1", - "5.19.0-1028.29~22.04.1", - "5.19.0-1029.30~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-5.19-cloud-tools-5.19.0-1029", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-aws-5.19-headers-5.19.0-1029", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-aws-5.19-tools-5.19.0-1029", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-buildinfo-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-headers-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-modules-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - }, - { - "binary_name": "linux-tools-5.19.0-1029-aws", - "binary_version": "5.19.0-1029.30~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-aws-6.2", - "purl": "pkg:deb/ubuntu/linux-aws-6.2@6.2.0-1018.18~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1005.5~22.04.1", - "6.2.0-1006.6~22.04.1", - "6.2.0-1007.7~22.04.1", - "6.2.0-1008.8~22.04.1", - "6.2.0-1009.9~22.04.3", - "6.2.0-1010.10~22.04.1", - "6.2.0-1011.11~22.04.1", - "6.2.0-1012.12~22.04.1", - "6.2.0-1013.13~22.04.1", - "6.2.0-1014.14~22.04.1", - "6.2.0-1015.15~22.04.1", - "6.2.0-1016.16~22.04.1", - "6.2.0-1017.17~22.04.1", - "6.2.0-1018.18~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-6.2-cloud-tools-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-aws-6.2-headers-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-aws-6.2-tools-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1018-aws", - "binary_version": "6.2.0-1018.18~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-aws-6.5", - "purl": "pkg:deb/ubuntu/linux-aws-6.5@6.5.0-1024.24~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1008.8~22.04.1", - "6.5.0-1010.10~22.04.1", - "6.5.0-1011.11~22.04.1", - "6.5.0-1012.12~22.04.1", - "6.5.0-1014.14~22.04.1", - "6.5.0-1015.15~22.04.1", - "6.5.0-1016.16~22.04.1", - "6.5.0-1017.17~22.04.2", - "6.5.0-1018.18~22.04.1", - "6.5.0-1020.20~22.04.1", - "6.5.0-1021.21~22.04.1", - "6.5.0-1022.22~22.04.1", - "6.5.0-1023.23~22.04.1", - "6.5.0-1024.24~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-6.5-cloud-tools-6.5.0-1024", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-aws-6.5-headers-6.5.0-1024", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-aws-6.5-tools-6.5.0-1024", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1024-aws", - "binary_version": "6.5.0-1024.24~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-aws-6.8", - "purl": "pkg:deb/ubuntu/linux-aws-6.8@6.8.0-1044.46~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1009.9~22.04.2", - "6.8.0-1010.10~22.04.2", - "6.8.0-1011.12~22.04.1", - "6.8.0-1013.14~22.04.1", - "6.8.0-1014.15~22.04.1", - "6.8.0-1015.16~22.04.1", - "6.8.0-1016.17~22.04.2", - "6.8.0-1017.18~22.04.1", - "6.8.0-1018.19~22.04.1", - "6.8.0-1019.21~22.04.1", - "6.8.0-1020.22~22.04.1", - "6.8.0-1021.23~22.04.1", - "6.8.0-1023.25~22.04.1", - "6.8.0-1024.26~22.04.1", - "6.8.0-1027.29~22.04.1", - "6.8.0-1028.30~22.04.1", - "6.8.0-1029.31~22.04.1", - "6.8.0-1030.32~22.04.1", - "6.8.0-1031.33~22.04.1", - "6.8.0-1032.34~22.04.1", - "6.8.0-1033.35~22.04.1", - "6.8.0-1035.37~22.04.1", - "6.8.0-1036.38~22.04.1", - "6.8.0-1039.41~22.04.1", - "6.8.0-1040.42~22.04.1", - "6.8.0-1041.43~22.04.1", - "6.8.0-1042.44~22.04.1", - "6.8.0-1043.45~22.04.1", - "6.8.0-1044.46~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-6.8-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-aws-6.8-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-aws-6.8-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@5.15.0-1102.111?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1006.7", - "5.15.0-1001.2", - "5.15.0-1002.3", - "5.15.0-1003.4", - "5.15.0-1005.6", - "5.15.0-1007.8", - "5.15.0-1008.9", - "5.15.0-1010.12", - "5.15.0-1012.15", - "5.15.0-1013.16", - "5.15.0-1014.17", - "5.15.0-1017.20", - "5.15.0-1019.24", - "5.15.0-1020.25", - "5.15.0-1021.26", - "5.15.0-1022.27", - "5.15.0-1023.29", - "5.15.0-1024.30", - "5.15.0-1029.36", - "5.15.0-1030.37", - "5.15.0-1031.38", - "5.15.0-1033.40", - "5.15.0-1034.41", - "5.15.0-1035.42", - "5.15.0-1036.43", - "5.15.0-1037.44", - "5.15.0-1038.45", - "5.15.0-1039.46", - "5.15.0-1040.47", - "5.15.0-1041.48", - "5.15.0-1042.49", - "5.15.0-1044.51", - "5.15.0-1045.52", - "5.15.0-1046.53", - "5.15.0-1047.54", - "5.15.0-1049.56", - "5.15.0-1050.57", - "5.15.0-1051.59", - "5.15.0-1052.60", - "5.15.0-1053.61", - "5.15.0-1054.62", - "5.15.0-1056.64", - "5.15.0-1057.65", - "5.15.0-1058.66", - "5.15.0-1059.67", - "5.15.0-1060.69", - "5.15.0-1061.70", - "5.15.0-1063.72", - "5.15.0-1064.73", - "5.15.0-1066.75", - "5.15.0-1067.76", - "5.15.0-1068.77", - "5.15.0-1070.79", - "5.15.0-1071.80", - "5.15.0-1072.81", - "5.15.0-1073.82", - "5.15.0-1074.83", - "5.15.0-1075.84", - "5.15.0-1078.87", - "5.15.0-1079.88", - "5.15.0-1081.90", - "5.15.0-1082.91", - "5.15.0-1084.93", - "5.15.0-1086.95", - "5.15.0-1087.96", - "5.15.0-1088.97", - "5.15.0-1089.98", - "5.15.0-1090.99", - "5.15.0-1091.100", - "5.15.0-1092.101", - "5.15.0-1094.103", - "5.15.0-1095.104", - "5.15.0-1096.105", - "5.15.0-1097.106", - "5.15.0-1098.107", - "5.15.0-1099.108", - "5.15.0-1101.110", - "5.15.0-1102.111" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-azure-headers-5.15.0-1102", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-azure-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-headers-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-modules-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-modules-involflt-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - }, - { - "binary_name": "linux-tools-5.15.0-1102-azure", - "binary_version": "5.15.0-1102.111" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-5.19", - "purl": "pkg:deb/ubuntu/linux-azure-5.19@5.19.0-1027.30~22.04.2?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1020.21~22.04.1", - "5.19.0-1021.22~22.04.1", - "5.19.0-1022.23~22.04.1", - "5.19.0-1023.24~22.04.1", - "5.19.0-1025.28~22.04.1", - "5.19.0-1026.29~22.04.1", - "5.19.0-1027.30~22.04.2" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-5.19-cloud-tools-5.19.0-1027", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-azure-5.19-headers-5.19.0-1027", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-azure-5.19-tools-5.19.0-1027", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-buildinfo-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-cloud-tools-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-headers-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-modules-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - }, - { - "binary_name": "linux-tools-5.19.0-1027-azure", - "binary_version": "5.19.0-1027.30~22.04.2" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-6.2", - "purl": "pkg:deb/ubuntu/linux-azure-6.2@6.2.0-1019.19~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1005.5~22.04.1", - "6.2.0-1006.6~22.04.1", - "6.2.0-1007.7~22.04.1", - "6.2.0-1008.8~22.04.1", - "6.2.0-1009.9~22.04.3", - "6.2.0-1011.11~22.04.1", - "6.2.0-1012.12~22.04.1", - "6.2.0-1014.14~22.04.1", - "6.2.0-1015.15~22.04.1", - "6.2.0-1016.16~22.04.1", - "6.2.0-1017.17~22.04.1", - "6.2.0-1018.18~22.04.1", - "6.2.0-1019.19~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-6.2-cloud-tools-6.2.0-1019", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-azure-6.2-headers-6.2.0-1019", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-azure-6.2-tools-6.2.0-1019", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1019-azure", - "binary_version": "6.2.0-1019.19~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-6.5", - "purl": "pkg:deb/ubuntu/linux-azure-6.5@6.5.0-1025.26~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1007.7~22.04.1", - "6.5.0-1009.9~22.04.1", - "6.5.0-1010.10~22.04.1", - "6.5.0-1011.11~22.04.1", - "6.5.0-1015.15~22.04.1", - "6.5.0-1016.16~22.04.1", - "6.5.0-1017.17~22.04.1", - "6.5.0-1018.19~22.04.2", - "6.5.0-1019.20~22.04.1", - "6.5.0-1021.22~22.04.1", - "6.5.0-1022.23~22.04.1", - "6.5.0-1023.24~22.04.1", - "6.5.0-1024.25~22.04.1", - "6.5.0-1025.26~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-6.5-cloud-tools-6.5.0-1025", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-azure-6.5-headers-6.5.0-1025", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-azure-6.5-tools-6.5.0-1025", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1025-azure", - "binary_version": "6.5.0-1025.26~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-6.8", - "purl": "pkg:deb/ubuntu/linux-azure-6.8@6.8.0-1044.50~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1008.8~22.04.1", - "6.8.0-1009.9~22.04.1", - "6.8.0-1010.10~22.04.1", - "6.8.0-1012.14~22.04.1", - "6.8.0-1013.15~22.04.1", - "6.8.0-1014.16~22.04.1", - "6.8.0-1015.17~22.04.2", - "6.8.0-1017.20~22.04.1", - "6.8.0-1018.21~22.04.1", - "6.8.0-1020.23~22.04.1", - "6.8.0-1021.25~22.04.1", - "6.8.0-1025.30~22.04.1", - "6.8.0-1026.31~22.04.1", - "6.8.0-1027.32~22.04.1", - "6.8.0-1028.33~22.04.1", - "6.8.0-1029.34~22.04.1", - "6.8.0-1030.35~22.04.1", - "6.8.0-1031.36~22.04.1", - "6.8.0-1034.39~22.04.1", - "6.8.0-1036.42~22.04.1", - "6.8.0-1040.46~22.04.1", - "6.8.0-1041.47~22.04.1", - "6.8.0-1044.50~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-6.8-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-azure-6.8-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-azure-6.8-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-modules-involflt-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-fde", - "purl": "pkg:deb/ubuntu/linux-azure-fde@5.15.0-1102.111.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1019.24.1", - "5.15.0-1024.30.1", - "5.15.0-1029.36.1", - "5.15.0-1030.37.1", - "5.15.0-1031.38.1", - "5.15.0-1033.40.1", - "5.15.0-1034.41.1", - "5.15.0-1035.42.1", - "5.15.0-1036.43.1", - "5.15.0-1037.44.1", - "5.15.0-1038.45.1", - "5.15.0-1039.46.1", - "5.15.0-1041.48.1", - "5.15.0-1042.49.1", - "5.15.0-1044.51.1", - "5.15.0-1045.52.1", - "5.15.0-1046.53.1", - "5.15.0-1047.54.1", - "5.15.0-1049.56.1", - "5.15.0-1050.57.1", - "5.15.0-1051.59.1", - "5.15.0-1052.60.1", - "5.15.0-1053.61.1", - "5.15.0-1054.62.1", - "5.15.0-1056.64.1", - "5.15.0-1057.65.1", - "5.15.0-1058.66.1", - "5.15.0-1059.67.1", - "5.15.0-1060.69.1", - "5.15.0-1061.70.1", - "5.15.0-1063.72.1", - "5.15.0-1064.73.1", - "5.15.0-1065.74.1", - "5.15.0-1067.76.1", - "5.15.0-1068.77.1", - "5.15.0-1070.79.1", - "5.15.0-1071.80.1", - "5.15.0-1072.81.1", - "5.15.0-1073.82.1", - "5.15.0-1076.85.1", - "5.15.0-1078.87.1", - "5.15.0-1081.90.1", - "5.15.0-1082.91.1", - "5.15.0-1084.93.1", - "5.15.0-1086.95.1", - "5.15.0-1087.96.1", - "5.15.0-1088.97.1", - "5.15.0-1089.98.1", - "5.15.0-1090.99.1", - "5.15.0-1091.100.1", - "5.15.0-1092.101.1", - "5.15.0-1094.103.1", - "5.15.0-1095.104.1", - "5.15.0-1096.105.1", - "5.15.0-1097.106.1", - "5.15.0-1098.107.1", - "5.15.0-1102.111.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fde", - "binary_version": "5.15.0-1102.111.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-fde-5.19", - "purl": "pkg:deb/ubuntu/linux-azure-fde-5.19@5.19.0-1027.30~22.04.2.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1025.28~22.04.1.1", - "5.19.0-1026.29~22.04.1.1", - "5.19.0-1027.30~22.04.2.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-5.19.0-1027-azure-fde", - "binary_version": "5.19.0-1027.30~22.04.2.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-fde-6.2", - "purl": "pkg:deb/ubuntu/linux-azure-fde-6.2@6.2.0-1019.19~22.04.1.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1008.8~22.04.1.1", - "6.2.0-1009.9~22.04.3.1", - "6.2.0-1011.11~22.04.1.1", - "6.2.0-1012.12~22.04.1.1", - "6.2.0-1014.14~22.04.1.1", - "6.2.0-1015.15~22.04.1.1", - "6.2.0-1016.16~22.04.1.1", - "6.2.0-1017.17~22.04.1.1", - "6.2.0-1018.18~22.04.1.1", - "6.2.0-1019.19~22.04.1.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-image-unsigned-6.2.0-1019-azure-fde", - "binary_version": "6.2.0-1019.19~22.04.1.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-azure-fde-6.8", - "purl": "pkg:deb/ubuntu/linux-azure-fde-6.8@6.8.0-1044.51~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1041.48~22.04.1", - "6.8.0-1042.49~22.04.1", - "6.8.0-1044.51~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fde-6.8-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-azure-fde-6.8-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-azure-fde-6.8-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@5.15.0-1099.108?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1005.6", - "5.15.0-1001.3", - "5.15.0-1002.5", - "5.15.0-1003.6", - "5.15.0-1004.7", - "5.15.0-1005.8", - "5.15.0-1006.9", - "5.15.0-1008.12", - "5.15.0-1010.15", - "5.15.0-1013.18", - "5.15.0-1016.21", - "5.15.0-1017.23", - "5.15.0-1018.24", - "5.15.0-1019.25", - "5.15.0-1021.28", - "5.15.0-1022.29", - "5.15.0-1025.32", - "5.15.0-1026.33", - "5.15.0-1027.34", - "5.15.0-1029.36", - "5.15.0-1030.37", - "5.15.0-1031.38", - "5.15.0-1032.40", - "5.15.0-1034.42", - "5.15.0-1035.43", - "5.15.0-1036.44", - "5.15.0-1037.45", - "5.15.0-1038.46", - "5.15.0-1039.47", - "5.15.0-1040.48", - "5.15.0-1041.49", - "5.15.0-1042.50", - "5.15.0-1044.52", - "5.15.0-1045.53", - "5.15.0-1046.54", - "5.15.0-1047.55", - "5.15.0-1048.56", - "5.15.0-1049.57", - "5.15.0-1051.59", - "5.15.0-1052.60", - "5.15.0-1053.61", - "5.15.0-1054.62", - "5.15.0-1055.63", - "5.15.0-1058.66", - "5.15.0-1059.67", - "5.15.0-1060.68", - "5.15.0-1062.70", - "5.15.0-1063.71", - "5.15.0-1064.72", - "5.15.0-1065.73", - "5.15.0-1066.74", - "5.15.0-1067.75", - "5.15.0-1068.76", - "5.15.0-1069.77", - "5.15.0-1070.78", - "5.15.0-1071.79", - "5.15.0-1072.80", - "5.15.0-1073.81", - "5.15.0-1074.83", - "5.15.0-1075.84", - "5.15.0-1077.86", - "5.15.0-1078.87", - "5.15.0-1079.88", - "5.15.0-1080.89", - "5.15.0-1081.90", - "5.15.0-1082.91", - "5.15.0-1083.92", - "5.15.0-1084.93", - "5.15.0-1085.94", - "5.15.0-1086.95", - "5.15.0-1087.96", - "5.15.0-1088.97", - "5.15.0-1090.99", - "5.15.0-1091.100", - "5.15.0-1092.101", - "5.15.0-1093.102", - "5.15.0-1095.104", - "5.15.0-1096.105", - "5.15.0-1097.106", - "5.15.0-1098.107", - "5.15.0-1099.108" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-gcp-headers-5.15.0-1099", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-gcp-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-headers-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-modules-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - }, - { - "binary_name": "linux-tools-5.15.0-1099-gcp", - "binary_version": "5.15.0-1099.108" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gcp-5.19", - "purl": "pkg:deb/ubuntu/linux-gcp-5.19@5.19.0-1030.32~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1020.22~22.04.2", - "5.19.0-1021.23~22.04.1", - "5.19.0-1022.24~22.04.1", - "5.19.0-1024.26~22.04.1", - "5.19.0-1025.27~22.04.1", - "5.19.0-1026.28~22.04.1", - "5.19.0-1027.29~22.04.1", - "5.19.0-1030.32~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-gcp-5.19-headers-5.19.0-1030", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-gcp-5.19-tools-5.19.0-1030", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-headers-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-modules-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - }, - { - "binary_name": "linux-tools-5.19.0-1030-gcp", - "binary_version": "5.19.0-1030.32~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gcp-6.2", - "purl": "pkg:deb/ubuntu/linux-gcp-6.2@6.2.0-1021.23~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1009.9~22.04.3", - "6.2.0-1010.10~22.04.1", - "6.2.0-1011.11~22.04.1", - "6.2.0-1011.11~22.04.3", - "6.2.0-1012.12~22.04.1", - "6.2.0-1013.13~22.04.1", - "6.2.0-1014.14~22.04.1", - "6.2.0-1016.18~22.04.1", - "6.2.0-1017.19~22.04.1", - "6.2.0-1018.20~22.04.1", - "6.2.0-1019.21~22.04.1", - "6.2.0-1021.23~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-gcp-6.2-headers-6.2.0-1021", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-gcp-6.2-tools-6.2.0-1021", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1021-gcp", - "binary_version": "6.2.0-1021.23~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gcp-6.5", - "purl": "pkg:deb/ubuntu/linux-gcp-6.5@6.5.0-1025.27~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1010.10~22.04.3", - "6.5.0-1011.11~22.04.1", - "6.5.0-1013.13~22.04.1", - "6.5.0-1014.14~22.04.1", - "6.5.0-1015.15~22.04.1", - "6.5.0-1016.16~22.04.1", - "6.5.0-1017.17~22.04.1", - "6.5.0-1018.18~22.04.1", - "6.5.0-1020.20~22.04.1", - "6.5.0-1022.24~22.04.1", - "6.5.0-1023.25~22.04.1", - "6.5.0-1024.26~22.04.1", - "6.5.0-1025.27~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-gcp-6.5-headers-6.5.0-1025", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-gcp-6.5-tools-6.5.0-1025", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1025-gcp", - "binary_version": "6.5.0-1025.27~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gcp-6.8", - "purl": "pkg:deb/ubuntu/linux-gcp-6.8@6.8.0-1045.48~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1010.11~22.04.1", - "6.8.0-1011.12~22.04.1", - "6.8.0-1012.13~22.04.1", - "6.8.0-1013.14~22.04.1", - "6.8.0-1014.16~22.04.1", - "6.8.0-1015.17~22.04.1", - "6.8.0-1016.18~22.04.1", - "6.8.0-1017.19~22.04.1", - "6.8.0-1018.20~22.04.1", - "6.8.0-1019.21~22.04.1", - "6.8.0-1020.22~22.04.1", - "6.8.0-1021.23~22.04.1", - "6.8.0-1024.26~22.04.1", - "6.8.0-1025.27~22.04.1", - "6.8.0-1026.28~22.04.1", - "6.8.0-1027.29~22.04.1", - "6.8.0-1028.30~22.04.1", - "6.8.0-1029.31~22.04.1", - "6.8.0-1030.32~22.04.1", - "6.8.0-1031.33~22.04.1", - "6.8.0-1032.34~22.04.1", - "6.8.0-1033.35~22.04.1", - "6.8.0-1034.36~22.04.2", - "6.8.0-1036.38~22.04.1", - "6.8.0-1037.39~22.04.1", - "6.8.0-1040.42~22.04.1", - "6.8.0-1041.43~22.04.1", - "6.8.0-1042.45~22.04.1", - "6.8.0-1043.46~22.04.1", - "6.8.0-1044.47~22.04.1", - "6.8.0-1045.48~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-gcp-6.8-headers-6.8.0-1045", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-gcp-6.8-tools-6.8.0-1045", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gke", - "purl": "pkg:deb/ubuntu/linux-gke@5.15.0-1095.101?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1002.2", - "5.15.0-1003.3", - "5.15.0-1004.5", - "5.15.0-1005.6", - "5.15.0-1006.7", - "5.15.0-1008.10", - "5.15.0-1010.13", - "5.15.0-1011.14", - "5.15.0-1014.17", - "5.15.0-1015.18", - "5.15.0-1016.19", - "5.15.0-1017.20", - "5.15.0-1019.23", - "5.15.0-1020.25", - "5.15.0-1023.28", - "5.15.0-1024.29", - "5.15.0-1027.32", - "5.15.0-1028.33", - "5.15.0-1030.35", - "5.15.0-1031.36", - "5.15.0-1032.37", - "5.15.0-1033.38", - "5.15.0-1034.39", - "5.15.0-1035.40", - "5.15.0-1036.41", - "5.15.0-1037.42", - "5.15.0-1038.43", - "5.15.0-1039.44", - "5.15.0-1040.45", - "5.15.0-1041.46", - "5.15.0-1042.47", - "5.15.0-1044.49", - "5.15.0-1045.50", - "5.15.0-1046.51", - "5.15.0-1047.52", - "5.15.0-1048.53", - "5.15.0-1049.54", - "5.15.0-1050.55", - "5.15.0-1051.56", - "5.15.0-1052.57", - "5.15.0-1053.58", - "5.15.0-1054.59", - "5.15.0-1057.62", - "5.15.0-1058.63", - "5.15.0-1059.64", - "5.15.0-1060.66", - "5.15.0-1061.67", - "5.15.0-1062.68", - "5.15.0-1063.69", - "5.15.0-1064.70", - "5.15.0-1065.71", - "5.15.0-1066.72", - "5.15.0-1067.73", - "5.15.0-1068.74", - "5.15.0-1069.75", - "5.15.0-1070.76", - "5.15.0-1071.77", - "5.15.0-1072.78", - "5.15.0-1073.79", - "5.15.0-1075.81", - "5.15.0-1076.82", - "5.15.0-1077.83", - "5.15.0-1078.84", - "5.15.0-1079.85", - "5.15.0-1080.86", - "5.15.0-1081.87", - "5.15.0-1082.88", - "5.15.0-1083.89", - "5.15.0-1084.90", - "5.15.0-1085.91", - "5.15.0-1086.92", - "5.15.0-1087.93", - "5.15.0-1088.94", - "5.15.0-1089.95", - "5.15.0-1090.96", - "5.15.0-1091.97", - "5.15.0-1092.98", - "5.15.0-1093.99", - "5.15.0-1094.100", - "5.15.0-1095.101" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-gke-headers-5.15.0-1095", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-gke-tools-5.15.0-1095", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-headers-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-modules-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - }, - { - "binary_name": "linux-tools-5.15.0-1095-gke", - "binary_version": "5.15.0-1095.101" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-gkeop", - "purl": "pkg:deb/ubuntu/linux-gkeop@5.15.0-1082.90?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1001.2", - "5.15.0-1002.4", - "5.15.0-1003.5", - "5.15.0-1004.6", - "5.15.0-1005.7", - "5.15.0-1007.10", - "5.15.0-1008.12", - "5.15.0-1011.15", - "5.15.0-1012.16", - "5.15.0-1013.17", - "5.15.0-1015.19", - "5.15.0-1016.21", - "5.15.0-1017.22", - "5.15.0-1018.23", - "5.15.0-1019.24", - "5.15.0-1020.25", - "5.15.0-1021.26", - "5.15.0-1022.27", - "5.15.0-1023.28", - "5.15.0-1024.29", - "5.15.0-1025.30", - "5.15.0-1026.31", - "5.15.0-1027.32", - "5.15.0-1028.33", - "5.15.0-1030.35", - "5.15.0-1031.37", - "5.15.0-1032.38", - "5.15.0-1033.39", - "5.15.0-1034.40", - "5.15.0-1035.41", - "5.15.0-1036.42", - "5.15.0-1037.43", - "5.15.0-1038.44", - "5.15.0-1039.45", - "5.15.0-1040.46", - "5.15.0-1043.50", - "5.15.0-1044.51", - "5.15.0-1045.52", - "5.15.0-1046.53", - "5.15.0-1047.54", - "5.15.0-1048.55", - "5.15.0-1049.56", - "5.15.0-1050.57", - "5.15.0-1051.58", - "5.15.0-1052.59", - "5.15.0-1053.60", - "5.15.0-1054.61", - "5.15.0-1055.62", - "5.15.0-1056.63", - "5.15.0-1057.64", - "5.15.0-1058.66", - "5.15.0-1059.67", - "5.15.0-1060.68", - "5.15.0-1061.69", - "5.15.0-1062.70", - "5.15.0-1063.71", - "5.15.0-1064.72", - "5.15.0-1065.73", - "5.15.0-1066.74", - "5.15.0-1067.75", - "5.15.0-1068.76", - "5.15.0-1069.77", - "5.15.0-1070.78", - "5.15.0-1071.79", - "5.15.0-1073.81", - "5.15.0-1074.82", - "5.15.0-1075.83", - "5.15.0-1076.84", - "5.15.0-1078.86", - "5.15.0-1079.87", - "5.15.0-1080.88", - "5.15.0-1081.89", - "5.15.0-1082.90" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-gkeop-cloud-tools-5.15.0-1082", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-gkeop-headers-5.15.0-1082", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-gkeop-tools-5.15.0-1082", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-headers-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-modules-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - }, - { - "binary_name": "linux-tools-5.15.0-1082-gkeop", - "binary_version": "5.15.0-1082.90" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-hwe-5.19", - "purl": "pkg:deb/ubuntu/linux-hwe-5.19@5.19.0-50.50?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-28.29~22.04.1", - "5.19.0-32.33~22.04.1", - "5.19.0-35.36~22.04.1", - "5.19.0-38.39~22.04.1", - "5.19.0-40.41~22.04.1", - "5.19.0-41.42~22.04.1", - "5.19.0-42.43~22.04.1", - "5.19.0-43.44~22.04.1", - "5.19.0-45.46~22.04.1", - "5.19.0-46.47~22.04.1", - "5.19.0-50.50" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-buildinfo-5.19.0-50-generic-64k", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-buildinfo-5.19.0-50-generic-lpae", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-cloud-tools-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-headers-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-headers-5.19.0-50-generic-64k", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-headers-5.19.0-50-generic-lpae", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-cloud-tools-5.19.0-50", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-cloud-tools-common", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-headers-5.19.0-50", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-tools-5.19.0-50", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-tools-common", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-hwe-5.19-tools-host", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-image-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-image-5.19.0-50-generic-lpae", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-50-generic-64k", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-5.19.0-50-generic-64k", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-5.19.0-50-generic-lpae", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-extra-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-ipu6-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-ivsc-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-modules-iwlwifi-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-source-5.19.0", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-tools-5.19.0-50-generic", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-tools-5.19.0-50-generic-64k", - "binary_version": "5.19.0-50.50" - }, - { - "binary_name": "linux-tools-5.19.0-50-generic-lpae", - "binary_version": "5.19.0-50.50" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-hwe-6.2", - "purl": "pkg:deb/ubuntu/linux-hwe-6.2@6.2.0-39.40~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-25.25~22.04.2", - "6.2.0-26.26~22.04.1", - "6.2.0-31.31~22.04.1", - "6.2.0-32.32~22.04.1", - "6.2.0-33.33~22.04.1", - "6.2.0-34.34~22.04.1", - "6.2.0-35.35~22.04.1", - "6.2.0-36.37~22.04.1", - "6.2.0-37.38~22.04.1", - "6.2.0-39.40~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.2.0-39-generic-64k", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.2.0-39-generic-lpae", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-39-generic-64k", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-39-generic-lpae", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-cloud-tools-6.2.0-39", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-cloud-tools-common", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-headers-6.2.0-39", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-tools-6.2.0-39", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-tools-common", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-hwe-6.2-tools-host", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-image-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-image-6.2.0-39-generic-lpae", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-39-generic-64k", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-39-generic-64k", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-39-generic-lpae", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-ivsc-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-source-6.2.0", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-39-generic", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-39-generic-64k", - "binary_version": "6.2.0-39.40~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-39-generic-lpae", - "binary_version": "6.2.0-39.40~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-hwe-6.5", - "purl": "pkg:deb/ubuntu/linux-hwe-6.5@6.5.0-45.45~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-14.14~22.04.1", - "6.5.0-15.15~22.04.1", - "6.5.0-17.17~22.04.1", - "6.5.0-18.18~22.04.1", - "6.5.0-21.21~22.04.1", - "6.5.0-25.25~22.04.1", - "6.5.0-26.26~22.04.1", - "6.5.0-27.28~22.04.1", - "6.5.0-28.29~22.04.1", - "6.5.0-35.35~22.04.1", - "6.5.0-41.41~22.04.2", - "6.5.0-44.44~22.04.1", - "6.5.0-45.45~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.5.0-45-generic-64k", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-45-generic-64k", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-cloud-tools-6.5.0-45", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-cloud-tools-common", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-headers-6.5.0-45", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-tools-6.5.0-45", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-tools-common", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-hwe-6.5-tools-host", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-image-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-45-generic-64k", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-45-generic-64k", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-ivsc-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-source-6.5.0", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-45-generic", - "binary_version": "6.5.0-45.45~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-45-generic-64k", - "binary_version": "6.5.0-45.45~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-hwe-6.8", - "purl": "pkg:deb/ubuntu/linux-hwe-6.8@6.8.0-94.96~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-38.38~22.04.1", - "6.8.0-39.39~22.04.1", - "6.8.0-40.40~22.04.3", - "6.8.0-45.45~22.04.1", - "6.8.0-47.47~22.04.1", - "6.8.0-48.48~22.04.1", - "6.8.0-49.49~22.04.1", - "6.8.0-50.51~22.04.1", - "6.8.0-51.52~22.04.1", - "6.8.0-52.53~22.04.1", - "6.8.0-57.59~22.04.1", - "6.8.0-58.60~22.04.1", - "6.8.0-59.61~22.04.1", - "6.8.0-60.63~22.04.1", - "6.8.0-64.67~22.04.1", - "6.8.0-65.68~22.04.1", - "6.8.0-78.78~22.04.1", - "6.8.0-79.79~22.04.1", - "6.8.0-83.83~22.04.1", - "6.8.0-84.84~22.04.1", - "6.8.0-85.85~22.04.1", - "6.8.0-86.87~22.04.1", - "6.8.0-87.88~22.04.1", - "6.8.0-88.89~22.04.2", - "6.8.0-90.91~22.04.1", - "6.8.0-94.96~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-hwe-6.8-cloud-tools-6.8.0-94", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-hwe-6.8-headers-6.8.0-94", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-hwe-6.8-tools-6.8.0-94", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-image-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-modules-usbio-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-94-generic", - "binary_version": "6.8.0-94.96~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-ibm", - "purl": "pkg:deb/ubuntu/linux-ibm@5.15.0-1093.96?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1002.2", - "5.15.0-1003.3", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1007.8", - "5.15.0-1009.11", - "5.15.0-1010.12", - "5.15.0-1012.14", - "5.15.0-1013.15", - "5.15.0-1015.17", - "5.15.0-1017.20", - "5.15.0-1018.21", - "5.15.0-1021.24", - "5.15.0-1022.25", - "5.15.0-1023.26", - "5.15.0-1025.28", - "5.15.0-1026.29", - "5.15.0-1027.30", - "5.15.0-1028.31", - "5.15.0-1029.32", - "5.15.0-1030.33", - "5.15.0-1031.34", - "5.15.0-1032.35", - "5.15.0-1033.36", - "5.15.0-1034.37", - "5.15.0-1035.38", - "5.15.0-1036.39", - "5.15.0-1037.40", - "5.15.0-1038.41", - "5.15.0-1040.43", - "5.15.0-1041.44", - "5.15.0-1042.45", - "5.15.0-1043.46", - "5.15.0-1044.47", - "5.15.0-1045.48", - "5.15.0-1046.49", - "5.15.0-1047.50", - "5.15.0-1048.51", - "5.15.0-1049.52", - "5.15.0-1050.53", - "5.15.0-1053.56", - "5.15.0-1054.57", - "5.15.0-1055.58", - "5.15.0-1056.59", - "5.15.0-1057.60", - "5.15.0-1058.61", - "5.15.0-1059.62", - "5.15.0-1060.63", - "5.15.0-1061.64", - "5.15.0-1062.65", - "5.15.0-1063.66", - "5.15.0-1064.67", - "5.15.0-1065.68", - "5.15.0-1066.69", - "5.15.0-1067.70", - "5.15.0-1068.71", - "5.15.0-1069.72", - "5.15.0-1070.73", - "5.15.0-1071.74", - "5.15.0-1072.75", - "5.15.0-1073.76", - "5.15.0-1074.77", - "5.15.0-1075.78", - "5.15.0-1076.79", - "5.15.0-1077.80", - "5.15.0-1078.81", - "5.15.0-1079.82", - "5.15.0-1080.83", - "5.15.0-1081.84", - "5.15.0-1084.87", - "5.15.0-1085.88", - "5.15.0-1086.89", - "5.15.0-1087.90", - "5.15.0-1089.92", - "5.15.0-1090.93", - "5.15.0-1091.94", - "5.15.0-1092.95", - "5.15.0-1093.96" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-headers-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-ibm-cloud-tools-common", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-ibm-headers-5.15.0-1093", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-ibm-source-5.15.0", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-ibm-tools-5.15.0-1093", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-ibm-tools-common", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-modules-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-tools-5.15.0-1093-ibm", - "binary_version": "5.15.0-1093.96" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-ibm-6.8", - "purl": "pkg:deb/ubuntu/linux-ibm-6.8@6.8.0-1042.42~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1008.8~22.04.1", - "6.8.0-1010.10~22.04.1", - "6.8.0-1011.11~22.04.1", - "6.8.0-1012.12~22.04.1", - "6.8.0-1013.13~22.04.1", - "6.8.0-1014.14~22.04.1", - "6.8.0-1015.15~22.04.1", - "6.8.0-1016.16~22.04.1", - "6.8.0-1017.17~22.04.1", - "6.8.0-1018.18~22.04.1", - "6.8.0-1019.19~22.04.1", - "6.8.0-1023.23~22.04.1", - "6.8.0-1024.24~22.04.1", - "6.8.0-1025.25~22.04.1", - "6.8.0-1026.26~22.04.1", - "6.8.0-1027.27~22.04.1", - "6.8.0-1028.28~22.04.1", - "6.8.0-1029.29~22.04.1", - "6.8.0-1030.30~22.04.1", - "6.8.0-1033.33~22.04.1", - "6.8.0-1036.36~22.04.1", - "6.8.0-1037.37~22.04.1", - "6.8.0-1038.38~22.04.1", - "6.8.0-1039.39~22.04.1", - "6.8.0-1040.40~22.04.1", - "6.8.0-1041.41~22.04.1", - "6.8.0-1042.42~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-ibm-6.8-headers-6.8.0-1042", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-ibm-6.8-tools-6.8.0-1042", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-intel-iot-realtime", - "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1073.75" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-common", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-common", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-host", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - }, - { - "binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime", - "binary_version": "5.15.0-1073.75" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-intel-iotg", - "purl": "pkg:deb/ubuntu/linux-intel-iotg@5.15.0-1094.100?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1004.6", - "5.15.0-1008.11", - "5.15.0-1010.14", - "5.15.0-1013.17", - "5.15.0-1015.20", - "5.15.0-1016.21", - "5.15.0-1017.22", - "5.15.0-1018.23", - "5.15.0-1021.26", - "5.15.0-1023.28", - "5.15.0-1025.30", - "5.15.0-1026.31", - "5.15.0-1027.32", - "5.15.0-1028.33", - "5.15.0-1030.35", - "5.15.0-1031.36", - "5.15.0-1033.38", - "5.15.0-1034.39", - "5.15.0-1035.40", - "5.15.0-1036.41", - "5.15.0-1037.42", - "5.15.0-1038.43", - "5.15.0-1039.45", - "5.15.0-1040.46", - "5.15.0-1043.49", - "5.15.0-1045.51", - "5.15.0-1046.52", - "5.15.0-1047.53", - "5.15.0-1048.54", - "5.15.0-1049.55", - "5.15.0-1050.56", - "5.15.0-1051.57", - "5.15.0-1052.58", - "5.15.0-1055.61", - "5.15.0-1057.63", - "5.15.0-1058.64", - "5.15.0-1059.65", - "5.15.0-1060.66", - "5.15.0-1061.67", - "5.15.0-1062.68", - "5.15.0-1063.69", - "5.15.0-1064.70", - "5.15.0-1065.71", - "5.15.0-1066.72", - "5.15.0-1067.73", - "5.15.0-1071.77", - "5.15.0-1072.78", - "5.15.0-1073.79", - "5.15.0-1074.80", - "5.15.0-1075.81", - "5.15.0-1076.82", - "5.15.0-1077.83", - "5.15.0-1078.84", - "5.15.0-1079.85", - "5.15.0-1080.86", - "5.15.0-1081.87", - "5.15.0-1082.88", - "5.15.0-1083.89", - "5.15.0-1084.90", - "5.15.0-1085.91", - "5.15.0-1086.92", - "5.15.0-1087.93", - "5.15.0-1088.94", - "5.15.0-1090.96", - "5.15.0-1091.97", - "5.15.0-1092.98", - "5.15.0-1093.99", - "5.15.0-1094.100" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-headers-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-cloud-tools-5.15.0-1094", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-cloud-tools-common", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-headers-5.15.0-1094", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-tools-5.15.0-1094", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-tools-common", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-intel-iotg-tools-host", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-modules-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - }, - { - "binary_name": "linux-tools-5.15.0-1094-intel-iotg", - "binary_version": "5.15.0-1094.100" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-kvm", - "purl": "pkg:deb/ubuntu/linux-kvm@5.15.0-1091.96?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1004.4", - "5.13.0-1006.6+22.04.1", - "5.13.0-1007.7+22.04.1", - "5.13.0-1010.11+22.04.1", - "5.15.0-1002.2", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1007.7", - "5.15.0-1008.8", - "5.15.0-1010.11", - "5.15.0-1012.14", - "5.15.0-1013.16", - "5.15.0-1016.19", - "5.15.0-1017.21", - "5.15.0-1018.22", - "5.15.0-1019.23", - "5.15.0-1020.24", - "5.15.0-1021.26", - "5.15.0-1024.29", - "5.15.0-1025.30", - "5.15.0-1026.31", - "5.15.0-1028.33", - "5.15.0-1029.34", - "5.15.0-1030.35", - "5.15.0-1031.36", - "5.15.0-1032.37", - "5.15.0-1033.38", - "5.15.0-1034.39", - "5.15.0-1035.40", - "5.15.0-1037.42", - "5.15.0-1038.43", - "5.15.0-1039.44", - "5.15.0-1040.45", - "5.15.0-1041.46", - "5.15.0-1042.47", - "5.15.0-1044.49", - "5.15.0-1045.50", - "5.15.0-1046.51", - "5.15.0-1047.52", - "5.15.0-1048.53", - "5.15.0-1049.54", - "5.15.0-1050.55", - "5.15.0-1051.56", - "5.15.0-1052.57", - "5.15.0-1053.58", - "5.15.0-1054.59", - "5.15.0-1057.62", - "5.15.0-1058.63", - "5.15.0-1059.64", - "5.15.0-1060.65", - "5.15.0-1061.66", - "5.15.0-1062.67", - "5.15.0-1063.68", - "5.15.0-1064.69", - "5.15.0-1065.70", - "5.15.0-1066.71", - "5.15.0-1067.72", - "5.15.0-1068.73", - "5.15.0-1069.74", - "5.15.0-1070.75", - "5.15.0-1071.76", - "5.15.0-1072.77", - "5.15.0-1073.78", - "5.15.0-1076.81", - "5.15.0-1077.82", - "5.15.0-1078.83", - "5.15.0-1079.84", - "5.15.0-1080.85", - "5.15.0-1081.86", - "5.15.0-1082.87", - "5.15.0-1083.88", - "5.15.0-1084.89", - "5.15.0-1085.90", - "5.15.0-1086.91", - "5.15.0-1087.92", - "5.15.0-1088.93", - "5.15.0-1089.94", - "5.15.0-1090.95", - "5.15.0-1091.96" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1091-kvm", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-headers-5.15.0-1091-kvm", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1091-kvm", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-kvm-headers-5.15.0-1091", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-kvm-tools-5.15.0-1091", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-modules-5.15.0-1091-kvm", - "binary_version": "5.15.0-1091.96" - }, - { - "binary_name": "linux-tools-5.15.0-1091-kvm", - "binary_version": "5.15.0-1091.96" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-lowlatency", - "purl": "pkg:deb/ubuntu/linux-lowlatency@5.15.0-168.178?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-22.22", - "5.15.0-23.23", - "5.15.0-24.24", - "5.15.0-27.28", - "5.15.0-30.31", - "5.15.0-33.34", - "5.15.0-35.36", - "5.15.0-37.39", - "5.15.0-39.42", - "5.15.0-40.43", - "5.15.0-41.44", - "5.15.0-43.46", - "5.15.0-46.49", - "5.15.0-47.53", - "5.15.0-48.54", - "5.15.0-50.56", - "5.15.0-52.58", - "5.15.0-53.59", - "5.15.0-56.62", - "5.15.0-57.63", - "5.15.0-58.64", - "5.15.0-60.66", - "5.15.0-67.74", - "5.15.0-69.76", - "5.15.0-70.77", - "5.15.0-71.78", - "5.15.0-72.79", - "5.15.0-73.80", - "5.15.0-75.82", - "5.15.0-76.83", - "5.15.0-78.85", - "5.15.0-79.88", - "5.15.0-82.91", - "5.15.0-83.92", - "5.15.0-84.93", - "5.15.0-86.95", - "5.15.0-87.96", - "5.15.0-88.98", - "5.15.0-89.99", - "5.15.0-91.101", - "5.15.0-92.102", - "5.15.0-94.104", - "5.15.0-97.107", - "5.15.0-100.110", - "5.15.0-101.111", - "5.15.0-102.112", - "5.15.0-105.115", - "5.15.0-106.116", - "5.15.0-107.117", - "5.15.0-110.120", - "5.15.0-113.123", - "5.15.0-116.126", - "5.15.0-117.127", - "5.15.0-118.128", - "5.15.0-119.129", - "5.15.0-121.131", - "5.15.0-122.132", - "5.15.0-124.134", - "5.15.0-125.135", - "5.15.0-126.136", - "5.15.0-127.137", - "5.15.0-128.138", - "5.15.0-129.139", - "5.15.0-131.141", - "5.15.0-133.143", - "5.15.0-134.145", - "5.15.0-135.146", - "5.15.0-136.147", - "5.15.0-138.148", - "5.15.0-139.149", - "5.15.0-140.150", - "5.15.0-141.151", - "5.15.0-142.152", - "5.15.0-143.153", - "5.15.0-144.157", - "5.15.0-145.158", - "5.15.0-152.162", - "5.15.0-153.163", - "5.15.0-156.166", - "5.15.0-157.167", - "5.15.0-160.170", - "5.15.0-161.171", - "5.15.0-163.173", - "5.15.0-164.174", - "5.15.0-168.178" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-buildinfo-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-headers-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-lowlatency-cloud-tools-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-lowlatency-headers-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-lowlatency-tools-5.15.0-168", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168-lowlatency", - "binary_version": "5.15.0-168.178" - }, - { - "binary_name": "linux-tools-5.15.0-168-lowlatency-64k", - "binary_version": "5.15.0-168.178" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-lowlatency-hwe-5.19", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.19@5.19.0-1030.30?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1017.18~22.04.1", - "5.19.0-1018.19~22.04.1", - "5.19.0-1021.22~22.04.1", - "5.19.0-1022.23~22.04.1", - "5.19.0-1023.24~22.04.1", - "5.19.0-1024.25~22.04.1", - "5.19.0-1025.26~22.04.1", - "5.19.0-1027.28~22.04.1", - "5.19.0-1028.29~22.04.1", - "5.19.0-1030.30" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-buildinfo-5.19.0-1030-lowlatency-64k", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-cloud-tools-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-headers-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-headers-5.19.0-1030-lowlatency-64k", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency-64k", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-5.19.0-1030", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-common", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-headers-5.19.0-1030", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-tools-5.19.0-1030", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-tools-common", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-lowlatency-hwe-5.19-tools-host", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-modules-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-modules-5.19.0-1030-lowlatency-64k", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-modules-ipu6-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-modules-ivsc-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-modules-iwlwifi-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-tools-5.19.0-1030-lowlatency", - "binary_version": "5.19.0-1030.30" - }, - { - "binary_name": "linux-tools-5.19.0-1030-lowlatency-64k", - "binary_version": "5.19.0-1030.30" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-lowlatency-hwe-6.2", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.2@6.2.0-1018.18~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1008.8~22.04.1", - "6.2.0-1009.9~22.04.1", - "6.2.0-1011.11~22.04.1", - "6.2.0-1012.12~22.04.1", - "6.2.0-1013.13~22.04.1", - "6.2.0-1014.14~22.04.1", - "6.2.0-1015.15~22.04.1", - "6.2.0-1016.16~22.04.1", - "6.2.0-1017.17~22.04.1", - "6.2.0-1018.18~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.2.0-1018-lowlatency-64k", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1018-lowlatency-64k", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency-64k", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-common", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-headers-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-tools-6.2.0-1018", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-tools-common", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.2-tools-host", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1018-lowlatency-64k", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-ivsc-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1018-lowlatency", - "binary_version": "6.2.0-1018.18~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1018-lowlatency-64k", - "binary_version": "6.2.0-1018.18~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-lowlatency-hwe-6.5", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.5@6.5.0-45.45.1~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-14.14.1~22.04.1", - "6.5.0-15.15.1.1~22.04.1", - "6.5.0-17.17.1.1.1~22.04.1", - "6.5.0-21.21.1~22.04.1", - "6.5.0-25.25.1~22.04.1", - "6.5.0-26.26.1~22.04.1", - "6.5.0-27.28.1~22.04.1", - "6.5.0-28.29.1~22.04.1", - "6.5.0-35.35.1~22.04.1", - "6.5.0-41.41.1~22.04.1", - "6.5.0-42.42.1~22.04.1", - "6.5.0-44.44.1~22.04.1", - "6.5.0-45.45.1~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.5.0-45-lowlatency-64k", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-45-lowlatency-64k", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-45-lowlatency-64k", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-6.5.0-45", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-common", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-headers-6.5.0-45", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-lib-rust-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-tools-6.5.0-45", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-tools-common", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.5-tools-host", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-45-lowlatency-64k", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-45-lowlatency", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-45-lowlatency-64k", - "binary_version": "6.5.0-45.45.1~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-lowlatency-hwe-6.8", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.8@6.8.0-90.91.1~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-38.38.1~22.04.2", - "6.8.0-40.40.1~22.04.1", - "6.8.0-44.44.1~22.04.1", - "6.8.0-45.45.1~22.04.1", - "6.8.0-47.47.1~22.04.1", - "6.8.0-48.48.3~22.04.1", - "6.8.0-49.49.1~22.04.1", - "6.8.0-50.51.1~22.04.1", - "6.8.0-51.52.1~22.04.1", - "6.8.0-52.53.1~22.04.1", - "6.8.0-54.56.1~22.04.1", - "6.8.0-55.57.1~22.04.1", - "6.8.0-56.58.1~22.04.1", - "6.8.0-57.59.1~22.04.1", - "6.8.0-58.60.1~22.04.1", - "6.8.0-59.61.1~22.04.1", - "6.8.0-60.63.1~22.04.1", - "6.8.0-62.65.1~22.04.1", - "6.8.0-63.66.1~22.04.1", - "6.8.0-64.67.1~22.04.1", - "6.8.0-65.68.1~22.04.1", - "6.8.0-78.78.1~22.04.1", - "6.8.0-79.79.1~22.04.1", - "6.8.0-83.83.1~22.04.1", - "6.8.0-84.84.1~22.04.1", - "6.8.0-85.85.1~22.04.1", - "6.8.0-86.87.1~22.04.1", - "6.8.0-87.88.1~22.04.1", - "6.8.0-88.89.1~22.04.1", - "6.8.0-90.91.1~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.8-cloud-tools-6.8.0-90", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.8-headers-6.8.0-90", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.8-lib-rust-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.8-tools-6.8.0-90", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia", - "purl": "pkg:deb/ubuntu/linux-nvidia@5.15.0-1093.94?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1005.5", - "5.15.0-1007.7", - "5.15.0-1010.10", - "5.15.0-1015.15", - "5.15.0-1017.17", - "5.15.0-1018.18", - "5.15.0-1023.23", - "5.15.0-1025.25", - "5.15.0-1026.26", - "5.15.0-1027.27", - "5.15.0-1028.28", - "5.15.0-1029.29", - "5.15.0-1030.30", - "5.15.0-1031.31", - "5.15.0-1032.32", - "5.15.0-1033.33", - "5.15.0-1037.37", - "5.15.0-1039.39", - "5.15.0-1040.40", - "5.15.0-1041.41", - "5.15.0-1042.42", - "5.15.0-1043.43", - "5.15.0-1044.44", - "5.15.0-1045.45", - "5.15.0-1046.46", - "5.15.0-1047.47", - "5.15.0-1048.48", - "5.15.0-1053.54", - "5.15.0-1054.55", - "5.15.0-1055.56", - "5.15.0-1058.59", - "5.15.0-1059.60", - "5.15.0-1060.61", - "5.15.0-1061.62", - "5.15.0-1062.63", - "5.15.0-1063.64", - "5.15.0-1064.65", - "5.15.0-1065.66", - "5.15.0-1066.67", - "5.15.0-1067.68", - "5.15.0-1068.69", - "5.15.0-1069.70", - "5.15.0-1070.71", - "5.15.0-1071.72", - "5.15.0-1072.73", - "5.15.0-1073.74", - "5.15.0-1074.75", - "5.15.0-1075.76", - "5.15.0-1076.77", - "5.15.0-1077.78", - "5.15.0-1078.79", - "5.15.0-1079.80", - "5.15.0-1080.81", - "5.15.0-1081.82", - "5.15.0-1082.83", - "5.15.0-1083.84", - "5.15.0-1085.86", - "5.15.0-1086.87", - "5.15.0-1087.88", - "5.15.0-1088.89", - "5.15.0-1090.91", - "5.15.0-1091.92", - "5.15.0-1092.93", - "5.15.0-1093.94" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-headers-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-headers-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-modules-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-modules-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-modules-nvidia-fs-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-modules-nvidia-fs-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-cloud-tools-5.15.0-1093", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-cloud-tools-common", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-headers-5.15.0-1093", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-tools-5.15.0-1093", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-tools-common", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-nvidia-tools-host", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-tools-5.15.0-1093-nvidia", - "binary_version": "5.15.0-1093.94" - }, - { - "binary_name": "linux-tools-5.15.0-1093-nvidia-lowlatency", - "binary_version": "5.15.0-1093.94" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia-6.2", - "purl": "pkg:deb/ubuntu/linux-nvidia-6.2@6.2.0-1015.15?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1003.3~22.04.1", - "6.2.0-1009.9", - "6.2.0-1010.10", - "6.2.0-1011.11", - "6.2.0-1012.12", - "6.2.0-1013.13", - "6.2.0-1015.15" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-buildinfo-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-headers-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-headers-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-image-unsigned-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-modules-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-modules-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-modules-extra-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-nvidia-6.2-headers-6.2.0-1015", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-nvidia-6.2-tools-6.2.0-1015", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-nvidia-6.2-tools-host", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-tools-6.2.0-1015-nvidia", - "binary_version": "6.2.0-1015.15" - }, - { - "binary_name": "linux-tools-6.2.0-1015-nvidia-64k", - "binary_version": "6.2.0-1015.15" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia-6.5", - "purl": "pkg:deb/ubuntu/linux-nvidia-6.5@6.5.0-1024.25?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1004.4", - "6.5.0-1007.7", - "6.5.0-1013.13", - "6.5.0-1014.14", - "6.5.0-1015.15", - "6.5.0-1018.18", - "6.5.0-1019.19", - "6.5.0-1021.22", - "6.5.0-1022.23", - "6.5.0-1023.24", - "6.5.0-1024.25" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-buildinfo-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-headers-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-headers-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-modules-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-modules-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-nvidia-6.5-headers-6.5.0-1024", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-nvidia-6.5-tools-6.5.0-1024", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-nvidia-6.5-tools-host", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-tools-6.5.0-1024-nvidia", - "binary_version": "6.5.0-1024.25" - }, - { - "binary_name": "linux-tools-6.5.0-1024-nvidia-64k", - "binary_version": "6.5.0-1024.25" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia-6.8", - "purl": "pkg:deb/ubuntu/linux-nvidia-6.8@6.8.0-1044.47~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1008.8~22.04.1", - "6.8.0-1009.9~22.04.1", - "6.8.0-1010.10~22.04.1", - "6.8.0-1011.11~22.04.1", - "6.8.0-1012.12~22.04.1", - "6.8.0-1013.14~22.04.1", - "6.8.0-1014.15~22.04.1", - "6.8.0-1015.16~22.04.1", - "6.8.0-1017.19~22.04.1", - "6.8.0-1018.20~22.04.1", - "6.8.0-1019.21~22.04.1", - "6.8.0-1020.22~22.04.1", - "6.8.0-1021.23~22.04.1", - "6.8.0-1022.25~22.04.2", - "6.8.0-1023.26~22.04.1", - "6.8.0-1024.27~22.04.1", - "6.8.0-1025.28~22.04.1", - "6.8.0-1026.29~22.04.1", - "6.8.0-1027.30~22.04.1", - "6.8.0-1028.31~22.04.1", - "6.8.0-1029.32~22.04.1", - "6.8.0-1030.33~22.04.1", - "6.8.0-1031.34~22.04.1", - "6.8.0-1032.35~22.04.1", - "6.8.0-1035.38~22.04.1", - "6.8.0-1036.39~22.04.1", - "6.8.0-1038.41~22.04.1", - "6.8.0-1039.42~22.04.1", - "6.8.0-1040.43~22.04.1", - "6.8.0-1041.44~22.04.2", - "6.8.0-1042.45~22.04.1", - "6.8.0-1043.46~22.04.1", - "6.8.0-1044.47~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-nvidia-6.8-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-nvidia-6.8-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia-tegra", - "purl": "pkg:deb/ubuntu/linux-nvidia-tegra@5.15.0-1051.51?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1009.9", - "5.15.0-1010.10", - "5.15.0-1012.12", - "5.15.0-1013.13", - "5.15.0-1014.14", - "5.15.0-1015.15", - "5.15.0-1016.16", - "5.15.0-1017.17", - "5.15.0-1018.18", - "5.15.0-1019.19", - "5.15.0-1020.20", - "5.15.0-1021.21", - "5.15.0-1022.22", - "5.15.0-1025.25", - "5.15.0-1026.26", - "5.15.0-1027.27", - "5.15.0-1028.28", - "5.15.0-1030.30", - "5.15.0-1032.32", - "5.15.0-1033.33", - "5.15.0-1034.34", - "5.15.0-1035.35", - "5.15.0-1036.36", - "5.15.0-1037.37", - "5.15.0-1038.38", - "5.15.0-1039.39", - "5.15.0-1040.40", - "5.15.0-1041.41", - "5.15.0-1042.42", - "5.15.0-1043.43", - "5.15.0-1044.44", - "5.15.0-1045.45", - "5.15.0-1046.46", - "5.15.0-1047.47", - "5.15.0-1048.48", - "5.15.0-1049.49", - "5.15.0-1050.50", - "5.15.0-1051.51" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-headers-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-modules-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-nvidia-tegra-headers-5.15.0-1051", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-nvidia-tegra-tools-5.15.0-1051", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra", - "binary_version": "5.15.0-1051.51" - }, - { - "binary_name": "linux-tools-5.15.0-1051-nvidia-tegra-rt", - "binary_version": "5.15.0-1051.51" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-nvidia-tegra-igx", - "purl": "pkg:deb/ubuntu/linux-nvidia-tegra-igx@5.15.0-1039.39?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1001.1", - "5.15.0-1002.2", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1006.6", - "5.15.0-1007.7", - "5.15.0-1008.8", - "5.15.0-1009.9", - "5.15.0-1012.12", - "5.15.0-1013.13", - "5.15.0-1015.15", - "5.15.0-1016.16", - "5.15.0-1018.18", - "5.15.0-1019.19", - "5.15.0-1020.20", - "5.15.0-1021.21", - "5.15.0-1022.22", - "5.15.0-1023.23", - "5.15.0-1024.24", - "5.15.0-1026.26", - "5.15.0-1027.27", - "5.15.0-1028.28", - "5.15.0-1029.29", - "5.15.0-1030.30", - "5.15.0-1031.31", - "5.15.0-1032.32", - "5.15.0-1033.33", - "5.15.0-1034.34", - "5.15.0-1035.35", - "5.15.0-1036.36", - "5.15.0-1037.37", - "5.15.0-1038.38", - "5.15.0-1039.39" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1039-nvidia-tegra-igx-rt", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-headers-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-headers-5.15.0-1039-nvidia-tegra-igx-rt", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1039-nvidia-tegra-igx-rt", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-modules-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-modules-5.15.0-1039-nvidia-tegra-igx-rt", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-nvidia-tegra-igx-headers-5.15.0-1039", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-nvidia-tegra-igx-tools-5.15.0-1039", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-tools-5.15.0-1039-nvidia-tegra-igx", - "binary_version": "5.15.0-1039.39" - }, - { - "binary_name": "linux-tools-5.15.0-1039-nvidia-tegra-igx-rt", - "binary_version": "5.15.0-1039.39" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oem-5.17", - "purl": "pkg:deb/ubuntu/linux-oem-5.17@5.17.0-1035.36?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.17.0-1003.3", - "5.17.0-1004.4", - "5.17.0-1006.6", - "5.17.0-1011.12", - "5.17.0-1012.13", - "5.17.0-1013.14", - "5.17.0-1014.15", - "5.17.0-1015.16", - "5.17.0-1016.17", - "5.17.0-1017.18", - "5.17.0-1018.19", - "5.17.0-1019.20", - "5.17.0-1020.21", - "5.17.0-1021.22", - "5.17.0-1024.25", - "5.17.0-1025.26", - "5.17.0-1026.27", - "5.17.0-1027.28", - "5.17.0-1028.29", - "5.17.0-1029.30", - "5.17.0-1030.31", - "5.17.0-1031.32", - "5.17.0-1032.33", - "5.17.0-1033.34", - "5.17.0-1034.35", - "5.17.0-1035.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-headers-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-image-unsigned-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-modules-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-modules-ipu6-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-modules-ivsc-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-modules-iwlwifi-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-oem-5.17-headers-5.17.0-1035", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-oem-5.17-tools-5.17.0-1035", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-oem-5.17-tools-host", - "binary_version": "5.17.0-1035.36" - }, - { - "binary_name": "linux-tools-5.17.0-1035-oem", - "binary_version": "5.17.0-1035.36" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oem-6.0", - "purl": "pkg:deb/ubuntu/linux-oem-6.0@6.0.0-1021.21?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.0.0-1006.6", - "6.0.0-1007.7", - "6.0.0-1008.8", - "6.0.0-1009.9", - "6.0.0-1010.10", - "6.0.0-1011.11", - "6.0.0-1012.12", - "6.0.0-1013.13", - "6.0.0-1014.14", - "6.0.0-1015.15", - "6.0.0-1016.16", - "6.0.0-1017.17", - "6.0.0-1018.18", - "6.0.0-1019.19", - "6.0.0-1020.20", - "6.0.0-1021.21" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-headers-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-image-unsigned-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-modules-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-modules-ipu6-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-modules-ivsc-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-modules-iwlwifi-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-oem-6.0-headers-6.0.0-1021", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-oem-6.0-tools-6.0.0-1021", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-oem-6.0-tools-host", - "binary_version": "6.0.0-1021.21" - }, - { - "binary_name": "linux-tools-6.0.0-1021-oem", - "binary_version": "6.0.0-1021.21" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oem-6.1", - "purl": "pkg:deb/ubuntu/linux-oem-6.1@6.1.0-1036.36?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.1.0-1004.4", - "6.1.0-1006.6", - "6.1.0-1007.7", - "6.1.0-1008.8", - "6.1.0-1009.9", - "6.1.0-1010.10", - "6.1.0-1012.12", - "6.1.0-1013.13", - "6.1.0-1014.14", - "6.1.0-1015.15", - "6.1.0-1016.16", - "6.1.0-1017.17", - "6.1.0-1019.19", - "6.1.0-1020.20", - "6.1.0-1021.21", - "6.1.0-1022.22", - "6.1.0-1023.23", - "6.1.0-1024.24", - "6.1.0-1025.25", - "6.1.0-1026.26", - "6.1.0-1027.27", - "6.1.0-1028.28", - "6.1.0-1029.29", - "6.1.0-1033.33", - "6.1.0-1034.34", - "6.1.0-1035.35", - "6.1.0-1036.36" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-headers-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-image-unsigned-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-modules-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-modules-ipu6-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-modules-ivsc-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-modules-iwlwifi-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-oem-6.1-headers-6.1.0-1036", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-oem-6.1-tools-6.1.0-1036", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-oem-6.1-tools-host", - "binary_version": "6.1.0-1036.36" - }, - { - "binary_name": "linux-tools-6.1.0-1036-oem", - "binary_version": "6.1.0-1036.36" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oem-6.5", - "purl": "pkg:deb/ubuntu/linux-oem-6.5@6.5.0-1027.28?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1003.3", - "6.5.0-1004.4", - "6.5.0-1006.6", - "6.5.0-1007.7", - "6.5.0-1008.8", - "6.5.0-1009.10", - "6.5.0-1011.12", - "6.5.0-1013.14", - "6.5.0-1014.15", - "6.5.0-1015.16", - "6.5.0-1016.17", - "6.5.0-1018.19", - "6.5.0-1019.20", - "6.5.0-1020.21", - "6.5.0-1022.23", - "6.5.0-1023.24", - "6.5.0-1024.25", - "6.5.0-1025.26", - "6.5.0-1027.28" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-headers-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-modules-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-modules-ipu6-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-modules-ivsc-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-modules-iwlwifi-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-modules-usbio-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-oem-6.5-headers-6.5.0-1027", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-oem-6.5-lib-rust-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-oem-6.5-tools-6.5.0-1027", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-oem-6.5-tools-host", - "binary_version": "6.5.0-1027.28" - }, - { - "binary_name": "linux-tools-6.5.0-1027-oem", - "binary_version": "6.5.0-1027.28" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@5.15.0-1096.102?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1008.10", - "5.15.0-1001.3", - "5.15.0-1002.4", - "5.15.0-1003.5", - "5.15.0-1006.8", - "5.15.0-1007.9", - "5.15.0-1009.12", - "5.15.0-1011.15", - "5.15.0-1013.17", - "5.15.0-1016.20", - "5.15.0-1017.22", - "5.15.0-1018.23", - "5.15.0-1019.24", - "5.15.0-1021.27", - "5.15.0-1022.28", - "5.15.0-1025.31", - "5.15.0-1026.32", - "5.15.0-1027.33", - "5.15.0-1029.35", - "5.15.0-1030.36", - "5.15.0-1032.38", - "5.15.0-1033.39", - "5.15.0-1034.40", - "5.15.0-1035.41", - "5.15.0-1036.42", - "5.15.0-1037.43", - "5.15.0-1038.44", - "5.15.0-1039.45", - "5.15.0-1040.46", - "5.15.0-1041.47", - "5.15.0-1042.48", - "5.15.0-1044.50", - "5.15.0-1045.51", - "5.15.0-1046.52", - "5.15.0-1047.53", - "5.15.0-1048.54", - "5.15.0-1049.55", - "5.15.0-1050.56", - "5.15.0-1051.57", - "5.15.0-1052.58", - "5.15.0-1053.59", - "5.15.0-1054.60", - "5.15.0-1055.61", - "5.15.0-1058.64", - "5.15.0-1059.65", - "5.15.0-1060.66", - "5.15.0-1061.67", - "5.15.0-1062.68", - "5.15.0-1063.69", - "5.15.0-1064.70", - "5.15.0-1065.71", - "5.15.0-1066.72", - "5.15.0-1067.73", - "5.15.0-1068.74", - "5.15.0-1069.75", - "5.15.0-1070.76", - "5.15.0-1071.77", - "5.15.0-1072.78", - "5.15.0-1073.79", - "5.15.0-1074.80", - "5.15.0-1075.81", - "5.15.0-1076.82", - "5.15.0-1077.83", - "5.15.0-1078.84", - "5.15.0-1079.85", - "5.15.0-1080.86", - "5.15.0-1081.87", - "5.15.0-1082.88", - "5.15.0-1083.89", - "5.15.0-1084.90", - "5.15.0-1085.91", - "5.15.0-1086.92", - "5.15.0-1088.94", - "5.15.0-1089.95", - "5.15.0-1090.96", - "5.15.0-1091.97", - "5.15.0-1092.98", - "5.15.0-1093.99", - "5.15.0-1094.100", - "5.15.0-1095.101", - "5.15.0-1096.102" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-headers-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-modules-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-oracle-headers-5.15.0-1096", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-oracle-tools-5.15.0-1096", - "binary_version": "5.15.0-1096.102" - }, - { - "binary_name": "linux-tools-5.15.0-1096-oracle", - "binary_version": "5.15.0-1096.102" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oracle-6.5", - "purl": "pkg:deb/ubuntu/linux-oracle-6.5@6.5.0-1027.27~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1013.13~22.04.4", - "6.5.0-1014.14~22.04.1", - "6.5.0-1015.15~22.04.1", - "6.5.0-1016.16~22.04.1", - "6.5.0-1018.18~22.04.1", - "6.5.0-1019.19~22.04.1", - "6.5.0-1020.20~22.04.1", - "6.5.0-1021.21~22.04.1", - "6.5.0-1023.23~22.04.1", - "6.5.0-1024.24~22.04.1", - "6.5.0-1025.25~22.04.1", - "6.5.0-1026.26~22.04.1", - "6.5.0-1027.27~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-oracle-6.5-headers-6.5.0-1027", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-oracle-6.5-tools-6.5.0-1027", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1027-oracle", - "binary_version": "6.5.0-1027.27~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1027-oracle-64k", - "binary_version": "6.5.0-1027.27~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-oracle-6.8", - "purl": "pkg:deb/ubuntu/linux-oracle-6.8@6.8.0-1042.43~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1006.6~22.04.3", - "6.8.0-1008.8~22.04.1", - "6.8.0-1010.10~22.04.1", - "6.8.0-1011.11~22.04.1", - "6.8.0-1012.12~22.04.1", - "6.8.0-1013.13~22.04.1", - "6.8.0-1014.14~22.04.1", - "6.8.0-1015.15~22.04.1", - "6.8.0-1016.17~22.04.1", - "6.8.0-1017.18~22.04.1", - "6.8.0-1018.19~22.04.1", - "6.8.0-1019.20~22.04.1", - "6.8.0-1020.21~22.04.1", - "6.8.0-1021.22~22.04.1", - "6.8.0-1022.23~22.04.1", - "6.8.0-1023.24~22.04.1", - "6.8.0-1024.25~22.04.1", - "6.8.0-1025.26~22.04.1", - "6.8.0-1026.27~22.04.1", - "6.8.0-1027.28~22.04.1", - "6.8.0-1028.29~22.04.1", - "6.8.0-1029.30~22.04.1", - "6.8.0-1030.31~22.04.1", - "6.8.0-1032.33~22.04.1", - "6.8.0-1033.34~22.04.1", - "6.8.0-1035.36~22.04.1", - "6.8.0-1037.38~22.04.1", - "6.8.0-1038.39~22.04.1", - "6.8.0-1039.40~22.04.1", - "6.8.0-1040.41~22.04.1", - "6.8.0-1041.42~22.04.1", - "6.8.0-1042.43~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-oracle-6.8-headers-6.8.0-1042", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-oracle-6.8-tools-6.8.0-1042", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-raspi", - "purl": "pkg:deb/ubuntu/linux-raspi@5.15.0-1093.96?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1008.9", - "5.15.0-1002.2", - "5.15.0-1003.3", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1006.6", - "5.15.0-1008.8", - "5.15.0-1011.13", - "5.15.0-1012.14", - "5.15.0-1013.15", - "5.15.0-1014.16", - "5.15.0-1015.17", - "5.15.0-1016.18", - "5.15.0-1017.19", - "5.15.0-1018.20", - "5.15.0-1021.23", - "5.15.0-1022.24", - "5.15.0-1023.25", - "5.15.0-1024.26", - "5.15.0-1025.27", - "5.15.0-1026.28", - "5.15.0-1027.29", - "5.15.0-1028.30", - "5.15.0-1029.31", - "5.15.0-1030.32", - "5.15.0-1032.35", - "5.15.0-1033.36", - "5.15.0-1034.37", - "5.15.0-1035.38", - "5.15.0-1036.39", - "5.15.0-1037.40", - "5.15.0-1038.41", - "5.15.0-1040.43", - "5.15.0-1041.44", - "5.15.0-1042.45", - "5.15.0-1043.46", - "5.15.0-1044.47", - "5.15.0-1045.48", - "5.15.0-1046.49", - "5.15.0-1047.50", - "5.15.0-1048.51", - "5.15.0-1049.52", - "5.15.0-1050.53", - "5.15.0-1053.56", - "5.15.0-1054.57", - "5.15.0-1055.58", - "5.15.0-1058.61", - "5.15.0-1059.62", - "5.15.0-1060.63", - "5.15.0-1061.64", - "5.15.0-1062.65", - "5.15.0-1063.66", - "5.15.0-1064.67", - "5.15.0-1065.68", - "5.15.0-1066.69", - "5.15.0-1067.70", - "5.15.0-1070.73", - "5.15.0-1071.74", - "5.15.0-1072.75", - "5.15.0-1073.76", - "5.15.0-1074.77", - "5.15.0-1075.78", - "5.15.0-1076.79", - "5.15.0-1077.80", - "5.15.0-1078.81", - "5.15.0-1079.82", - "5.15.0-1080.83", - "5.15.0-1083.86", - "5.15.0-1084.87", - "5.15.0-1085.88", - "5.15.0-1086.89", - "5.15.0-1087.90", - "5.15.0-1089.92", - "5.15.0-1090.93", - "5.15.0-1091.94", - "5.15.0-1092.95", - "5.15.0-1093.96" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-headers-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-image-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-modules-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-raspi-headers-5.15.0-1093", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-raspi-tools-5.15.0-1093", - "binary_version": "5.15.0-1093.96" - }, - { - "binary_name": "linux-tools-5.15.0-1093-raspi", - "binary_version": "5.15.0-1093.96" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1032.35" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-headers-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-modules-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-cloud-tools-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-cloud-tools-common", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-headers-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-5.15.0-1032", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-common", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-realtime-tools-host", - "binary_version": "5.15.0-1032.35" - }, - { - "binary_name": "linux-tools-5.15.0-1032-realtime", - "binary_version": "5.15.0-1032.35" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-riscv", - "purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.13.0-1004.4", - "5.13.0-1006.6+22.04.1", - "5.13.0-1007.7+22.04.1", - "5.13.0-1010.11+22.04.1", - "5.15.0-1004.4", - "5.15.0-1005.5", - "5.15.0-1006.6", - "5.15.0-1007.7", - "5.15.0-1008.8", - "5.15.0-1011.12", - "5.15.0-1012.13", - "5.15.0-1014.16", - "5.15.0-1015.17", - "5.15.0-1016.18", - "5.15.0-1017.19", - "5.15.0-1018.21", - "5.15.0-1019.22", - "5.15.0-1020.23", - "5.15.0-1022.26", - "5.15.0-1023.27", - "5.15.0-1026.30", - "5.15.0-1027.31", - "5.15.0-1028.32" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-headers-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-image-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-modules-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-riscv-headers-5.15.0-1028", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-riscv-tools-5.15.0-1028", - "binary_version": "5.15.0-1028.32" - }, - { - "binary_name": "linux-tools-5.15.0-1028-generic", - "binary_version": "5.15.0-1028.32" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-riscv-5.19", - "purl": "pkg:deb/ubuntu/linux-riscv-5.19@5.19.0-1021.23~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1012.13~22.04.1", - "5.19.0-1015.16~22.04.1", - "5.19.0-1016.17~22.04.1", - "5.19.0-1017.18~22.04.1", - "5.19.0-1018.19~22.04.1", - "5.19.0-1019.21~22.04.1", - "5.19.0-1020.22~22.04.1", - "5.19.0-1021.23~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-headers-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-image-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-modules-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-riscv-5.19-headers-5.19.0-1021", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-riscv-5.19-tools-5.19.0-1021", - "binary_version": "5.19.0-1021.23~22.04.1" - }, - { - "binary_name": "linux-tools-5.19.0-1021-generic", - "binary_version": "5.19.0-1021.23~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-riscv-6.5", - "purl": "pkg:deb/ubuntu/linux-riscv-6.5@6.5.0-45.45.1~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-17.17.1.1~22.04.1", - "6.5.0-21.21.1~22.04.1", - "6.5.0-25.25.1~22.04.1", - "6.5.0-26.26.1~22.04.1", - "6.5.0-27.28.1~22.04.1", - "6.5.0-28.29.1~22.04.1", - "6.5.0-35.35.1~22.04.1", - "6.5.0-40.40.1~22.04.1", - "6.5.0-42.42.1~22.04.1", - "6.5.0-45.45.1~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-image-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-riscv-6.5-headers-6.5.0-45", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-riscv-6.5-tools-6.5.0-45", - "binary_version": "6.5.0-45.45.1~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-45-generic", - "binary_version": "6.5.0-45.45.1~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-riscv-6.8", - "purl": "pkg:deb/ubuntu/linux-riscv-6.8@6.8.0-90.91~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-38.38.1~22.04.1", - "6.8.0-39.39.1~22.04.1", - "6.8.0-40.40.1~22.04.1", - "6.8.0-41.41.1~22.04.1", - "6.8.0-44.44.1~22.04.1", - "6.8.0-47.47.1~22.04.1", - "6.8.0-48.48.1~22.04.2", - "6.8.0-49.49.1~22.04.1", - "6.8.0-50.51.1~22.04.1", - "6.8.0-51.52.1~22.04.1", - "6.8.0-52.53.1~22.04.1", - "6.8.0-53.55.1~22.04.1", - "6.8.0-55.57.1~22.04.1", - "6.8.0-56.58.1~22.04.1", - "6.8.0-57.59.1~22.04.1", - "6.8.0-58.60.1~22.04.1", - "6.8.0-59.61.1~22.04.1", - "6.8.0-62.65~22.04.1", - "6.8.0-63.66~22.04.1", - "6.8.0-64.67~22.04.1", - "6.8.0-71.71~22.04.1", - "6.8.0-78.78~22.04.1", - "6.8.0-79.79~22.04.1", - "6.8.0-83.83~22.04.1", - "6.8.0-84.84~22.04.1", - "6.8.0-86.87~22.04.1", - "6.8.0-87.88~22.04.1", - "6.8.0-88.89~22.04.1", - "6.8.0-90.91~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-90-generic", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.0-90-generic", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-image-6.8.0-90-generic", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.0-90-generic", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-riscv-6.8-headers-6.8.0-90", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-riscv-6.8-tools-6.8.0-90", - "binary_version": "6.8.0-90.91~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.0-90-generic", - "binary_version": "6.8.0-90.91~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-starfive-5.19", - "purl": "pkg:deb/ubuntu/linux-starfive-5.19@5.19.0-1020.22~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.19.0-1014.16~22.04.1", - "5.19.0-1015.17~22.04.1", - "5.19.0-1016.18~22.04.1", - "5.19.0-1017.19~22.04.1", - "5.19.0-1018.20~22.04.1", - "5.19.0-1019.21~22.04.1", - "5.19.0-1020.22~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-headers-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-image-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-modules-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-modules-extra-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-starfive-5.19-headers-5.19.0-1020", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-starfive-5.19-tools-5.19.0-1020", - "binary_version": "5.19.0-1020.22~22.04.1" - }, - { - "binary_name": "linux-tools-5.19.0-1020-starfive", - "binary_version": "5.19.0-1020.22~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-starfive-6.2", - "purl": "pkg:deb/ubuntu/linux-starfive-6.2@6.2.0-1009.10~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.2.0-1006.7~22.04.1", - "6.2.0-1007.8~22.04.1", - "6.2.0-1009.10~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-headers-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-image-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-modules-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-starfive-6.2-headers-6.2.0-1009", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-starfive-6.2-tools-6.2.0-1009", - "binary_version": "6.2.0-1009.10~22.04.1" - }, - { - "binary_name": "linux-tools-6.2.0-1009-starfive", - "binary_version": "6.2.0-1009.10~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-starfive-6.5", - "purl": "pkg:deb/ubuntu/linux-starfive-6.5@6.5.0-1018.19~22.04.1?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1007.8~22.04.1", - "6.5.0-1008.9~22.04.1", - "6.5.0-1009.10~22.04.1", - "6.5.0-1010.11~22.04.1", - "6.5.0-1011.12~22.04.1", - "6.5.0-1012.13~22.04.1", - "6.5.0-1014.15~22.04.1", - "6.5.0-1015.16~22.04.1", - "6.5.0-1016.17~22.04.1", - "6.5.0-1017.18~22.04.1", - "6.5.0-1018.19~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-headers-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-image-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-modules-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-starfive-6.5-headers-6.5.0-1018", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-starfive-6.5-tools-6.5.0-1018", - "binary_version": "6.5.0-1018.19~22.04.1" - }, - { - "binary_name": "linux-tools-6.5.0-1018-starfive", - "binary_version": "6.5.0-1018.19~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS", - "name": "linux-xilinx-zynqmp", - "purl": "pkg:deb/ubuntu/linux-xilinx-zynqmp@5.15.0-1062.66?arch=source&distro=jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1022.26", - "5.15.0-1023.27", - "5.15.0-1025.29", - "5.15.0-1027.31", - "5.15.0-1030.34", - "5.15.0-1031.35", - "5.15.0-1035.39", - "5.15.0-1036.40", - "5.15.0-1037.41", - "5.15.0-1038.42", - "5.15.0-1039.43", - "5.15.0-1041.45", - "5.15.0-1044.48", - "5.15.0-1046.50", - "5.15.0-1050.54", - "5.15.0-1051.55", - "5.15.0-1052.56", - "5.15.0-1053.57", - "5.15.0-1054.58", - "5.15.0-1055.59", - "5.15.0-1056.60", - "5.15.0-1057.61", - "5.15.0-1059.63", - "5.15.0-1060.64", - "5.15.0-1061.65", - "5.15.0-1062.66" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1062-xilinx-zynqmp", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-headers-5.15.0-1062-xilinx-zynqmp", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-image-5.15.0-1062-xilinx-zynqmp", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-modules-5.15.0-1062-xilinx-zynqmp", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-tools-5.15.0-1062-xilinx-zynqmp", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-xilinx-zynqmp-headers-5.15.0-1062", - "binary_version": "5.15.0-1062.66" - }, - { - "binary_name": "linux-xilinx-zynqmp-tools-5.15.0-1062", - "binary_version": "5.15.0-1062.66" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:22.04:LTS:for:NVIDIA:BlueField", - "name": "linux-bluefield", - "purl": "pkg:deb/ubuntu/linux-bluefield@5.15.0-1082.84?arch=source&distro=bluefield/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1011.13", - "5.15.0-1014.16", - "5.15.0-1015.17", - "5.15.0-1017.19", - "5.15.0-1019.21", - "5.15.0-1021.23", - "5.15.0-1022.24", - "5.15.0-1023.25", - "5.15.0-1024.26", - "5.15.0-1027.29", - "5.15.0-1028.30", - "5.15.0-1031.33", - "5.15.0-1032.34", - "5.15.0-1033.35", - "5.15.0-1035.37", - "5.15.0-1036.38", - "5.15.0-1037.39", - "5.15.0-1038.40", - "5.15.0-1040.42", - "5.15.0-1042.44", - "5.15.0-1043.45", - "5.15.0-1044.46", - "5.15.0-1045.47", - "5.15.0-1047.49", - "5.15.0-1048.50", - "5.15.0-1050.52", - "5.15.0-1051.53", - "5.15.0-1052.54", - "5.15.0-1053.55", - "5.15.0-1054.56", - "5.15.0-1056.58", - "5.15.0-1057.59", - "5.15.0-1058.60", - "5.15.0-1059.61", - "5.15.0-1060.62", - "5.15.0-1061.63", - "5.15.0-1062.64", - "5.15.0-1063.65", - "5.15.0-1064.66", - "5.15.0-1065.67", - "5.15.0-1066.68", - "5.15.0-1067.69", - "5.15.0-1069.71", - "5.15.0-1070.72", - "5.15.0-1072.74", - "5.15.0-1074.76", - "5.15.0-1075.77", - "5.15.0-1076.78", - "5.15.0-1077.79", - "5.15.0-1079.81", - "5.15.0-1080.82", - "5.15.0-1081.83", - "5.15.0-1082.84" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-bluefield-cloud-tools-common", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-bluefield-headers-5.15.0-1082", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-bluefield-tools-5.15.0-1082", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-bluefield-tools-host", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-headers-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-modules-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - }, - { - "binary_name": "linux-tools-5.15.0-1082-bluefield", - "binary_version": "5.15.0-1082.84" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@5.15.0-1051.56+fips1?arch=source&distro=fips-preview/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1042.47+fips1", - "5.15.0-1051.56+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-cloud-tools-5.15.0-1051", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-aws-fips-headers-5.15.0-1051", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-aws-fips-tools-5.15.0-1051", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1051-aws-fips", - "binary_version": "5.15.0-1051.56+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@5.15.0-1053.61+fips1?arch=source&distro=fips-preview/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1053.61+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-5.15.0-1053", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-azure-fips-headers-5.15.0-1053", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-azure-fips-tools-5.15.0-1053", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1053-azure-fips", - "binary_version": "5.15.0-1053.61+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@5.15.0-73.80+fips1?arch=source&distro=fips-preview/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-73.80+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-fips-headers-5.15.0-73", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-fips-tools-5.15.0-73", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-fips-tools-host", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-73-fips", - "binary_version": "5.15.0-73.80+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-preview:22.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.15.0-1048.56+fips1?arch=source&distro=fips-preview/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1048.56+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-gcp-fips-headers-5.15.0-1048", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-gcp-fips-tools-5.15.0-1048", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1048-gcp-fips", - "binary_version": "5.15.0-1048.56+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@5.15.0-1099.106+fips1?arch=source&distro=fips-updates/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1051.56+fips1", - "5.15.0-1052.57+fips1", - "5.15.0-1053.58+fips1", - "5.15.0-1055.60+fips1", - "5.15.0-1056.61+fips1", - "5.15.0-1057.63+fips1", - "5.15.0-1060.66+fips1", - "5.15.0-1061.67+fips1", - "5.15.0-1062.68+fips1", - "5.15.0-1063.69+fips1", - "5.15.0-1064.70+fips1", - "5.15.0-1065.71+fips1", - "5.15.0-1066.72+fips1", - "5.15.0-1067.73+fips1", - "5.15.0-1068.74+fips1", - "5.15.0-1069.75+fips1", - "5.15.0-1070.76+fips1", - "5.15.0-1071.77+fips1", - "5.15.0-1072.78+fips1", - "5.15.0-1073.79+fips1", - "5.15.0-1076.83+fips1", - "5.15.0-1077.84+fips1", - "5.15.0-1078.85+fips1", - "5.15.0-1079.86+fips1", - "5.15.0-1080.87+fips1", - "5.15.0-1081.88+fips1", - "5.15.0-1082.89+fips1", - "5.15.0-1083.90+fips1", - "5.15.0-1084.91+fips1", - "5.15.0-1085.92+fips1", - "5.15.0-1086.93+fips1", - "5.15.0-1087.94+fips1", - "5.15.0-1088.95+fips1", - "5.15.0-1089.96+fips1", - "5.15.0-1090.97+fips1", - "5.15.0-1091.98+fips1", - "5.15.0-1092.99+fips1", - "5.15.0-1093.100+fips1", - "5.15.0-1095.102+fips1", - "5.15.0-1096.103+fips1", - "5.15.0-1097.104+fips1", - "5.15.0-1098.105+fips1", - "5.15.0-1099.106+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-cloud-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-aws-fips-headers-5.15.0-1099", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-aws-fips-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1099-aws-fips", - "binary_version": "5.15.0-1099.106+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@5.15.0-1102.111+fips1?arch=source&distro=fips-updates/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1053.61+fips1", - "5.15.0-1058.66+fips1", - "5.15.0-1059.67+fips1", - "5.15.0-1060.69+fips1", - "5.15.0-1061.70+fips1", - "5.15.0-1063.72+fips1", - "5.15.0-1064.73+fips1", - "5.15.0-1065.74+fips1", - "5.15.0-1067.76+fips1", - "5.15.0-1068.77+fips1", - "5.15.0-1070.79+fips1", - "5.15.0-1071.80+fips1", - "5.15.0-1072.81+fips1", - "5.15.0-1073.82+fips1", - "5.15.0-1074.83+fips1", - "5.15.0-1075.84+fips1", - "5.15.0-1078.87+fips1", - "5.15.0-1079.88+fips1", - "5.15.0-1080.89+fips1", - "5.15.0-1082.91+fips1", - "5.15.0-1083.92+fips1", - "5.15.0-1085.94+fips1", - "5.15.0-1087.96+fips1", - "5.15.0-1088.97+fips1", - "5.15.0-1089.98+fips1", - "5.15.0-1090.99+fips1", - "5.15.0-1091.100+fips1", - "5.15.0-1094.103+fips1", - "5.15.0-1095.104+fips1", - "5.15.0-1096.105+fips1", - "5.15.0-1097.106+fips1", - "5.15.0-1098.107+fips1", - "5.15.0-1101.110+fips1", - "5.15.0-1102.111+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-azure-fips-headers-5.15.0-1102", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-azure-fips-tools-5.15.0-1102", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-buildinfo-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-modules-involflt-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1102-azure-fips", - "binary_version": "5.15.0-1102.111+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@5.15.0-168.178+fips1?arch=source&distro=fips-updates/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-73.80+fips1", - "5.15.0-92.102+fips1", - "5.15.0-94.104+fips1", - "5.15.0-97.107+fips1", - "5.15.0-100.110+fips1", - "5.15.0-101.111+fips1", - "5.15.0-102.112+fips1", - "5.15.0-105.115+fips1", - "5.15.0-106.116+fips1", - "5.15.0-107.117+fips1", - "5.15.0-111.121+fips1", - "5.15.0-113.123+fips1", - "5.15.0-115.125+fips1", - "5.15.0-117.127+fips1", - "5.15.0-118.128+fips1", - "5.15.0-119.129+fips1", - "5.15.0-121.131+fips1", - "5.15.0-122.132+fips1", - "5.15.0-124.134+fips1", - "5.15.0-125.135+fips1", - "5.15.0-127.137+fips1", - "5.15.0-128.138+fips1", - "5.15.0-130.140+fips1", - "5.15.0-131.141+fips1", - "5.15.0-133.144+fips1", - "5.15.0-134.145+fips1", - "5.15.0-135.146+fips1", - "5.15.0-136.147+fips1", - "5.15.0-138.148+fips1", - "5.15.0-139.149+fips1", - "5.15.0-140.150+fips1", - "5.15.0-141.151+fips1", - "5.15.0-142.152+fips1", - "5.15.0-143.153+fips1", - "5.15.0-144.157+fips1", - "5.15.0-145.158+fips1", - "5.15.0-152.162+fips1", - "5.15.0-153.163+fips1", - "5.15.0-156.166+fips1", - "5.15.0-157.167+fips1", - "5.15.0-160.170+fips1", - "5.15.0-161.171+fips1", - "5.15.0-163.173+fips1", - "5.15.0-164.174+fips1", - "5.15.0-168.178+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-fips-cloud-tools-5.15.0-168", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-fips-headers-5.15.0-168", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-fips-tools-5.15.0-168", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-168-fips", - "binary_version": "5.15.0-168.178+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:22.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@5.15.0-1099.108+fips1?arch=source&distro=fips-updates/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1048.56+fips1", - "5.15.0-1055.63+fips2", - "5.15.0-1058.66+fips1", - "5.15.0-1059.67+fips1", - "5.15.0-1060.68+fips1", - "5.15.0-1062.70+fips1", - "5.15.0-1063.71+fips1", - "5.15.0-1064.72+fips1", - "5.15.0-1065.73+fips1", - "5.15.0-1066.74+fips1", - "5.15.0-1067.75+fips1", - "5.15.0-1068.76+fips1", - "5.15.0-1069.77+fips1", - "5.15.0-1070.78+fips1", - "5.15.0-1071.79+fips1", - "5.15.0-1072.80+fips1", - "5.15.0-1073.81+fips1", - "5.15.0-1074.83+fips1", - "5.15.0-1075.84+fips1", - "5.15.0-1077.86+fips1", - "5.15.0-1078.87+fips1", - "5.15.0-1079.88+fips1", - "5.15.0-1080.89+fips1", - "5.15.0-1081.90+fips1", - "5.15.0-1082.91+fips1", - "5.15.0-1083.92+fips1", - "5.15.0-1084.93+fips1", - "5.15.0-1085.94+fips1", - "5.15.0-1086.95+fips1", - "5.15.0-1087.96+fips1", - "5.15.0-1088.97+fips1", - "5.15.0-1090.99+fips1", - "5.15.0-1091.100+fips1", - "5.15.0-1092.101+fips1", - "5.15.0-1093.102+fips1", - "5.15.0-1095.104+fips1", - "5.15.0-1096.105+fips1", - "5.15.0-1097.106+fips1", - "5.15.0-1098.107+fips1", - "5.15.0-1099.108+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-gcp-fips-headers-5.15.0-1099", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-gcp-fips-tools-5.15.0-1099", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-headers-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-modules-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - }, - { - "binary_name": "linux-tools-5.15.0-1099-gcp-fips", - "binary_version": "5.15.0-1099.108+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", - "name": "linux-intel-iot-realtime", - "purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1091.93?arch=source&distro=realtime/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1021.26", - "5.15.0-1022.27", - "5.15.0-1023.28", - "5.15.0-1024.29", - "5.15.0-1028.33", - "5.15.0-1033.35", - "5.15.0-1034.36", - "5.15.0-1035.37", - "5.15.0-1036.38", - "5.15.0-1037.39", - "5.15.0-1038.40", - "5.15.0-1039.41", - "5.15.0-1040.42", - "5.15.0-1041.43", - "5.15.0-1042.44", - "5.15.0-1043.45", - "5.15.0-1044.46", - "5.15.0-1046.48", - "5.15.0-1047.49", - "5.15.0-1048.50", - "5.15.0-1049.51", - "5.15.0-1050.52", - "5.15.0-1053.55", - "5.15.0-1054.56", - "5.15.0-1055.57", - "5.15.0-1056.58", - "5.15.0-1057.59", - "5.15.0-1058.60", - "5.15.0-1059.61", - "5.15.0-1060.62", - "5.15.0-1061.63", - "5.15.0-1063.65", - "5.15.0-1064.66", - "5.15.0-1066.68", - "5.15.0-1071.73", - "5.15.0-1072.74", - "5.15.0-1073.75", - "5.15.0-1074.76", - "5.15.0-1075.77", - "5.15.0-1076.78", - "5.15.0-1077.79", - "5.15.0-1078.80", - "5.15.0-1079.81", - "5.15.0-1080.82", - "5.15.0-1081.83", - "5.15.0-1082.84", - "5.15.0-1083.85", - "5.15.0-1084.86", - "5.15.0-1085.87", - "5.15.0-1086.88", - "5.15.0-1087.89", - "5.15.0-1088.90", - "5.15.0-1089.91", - "5.15.0-1090.92", - "5.15.0-1091.93" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-headers-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1091", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-cloud-tools-common", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-headers-5.15.0-1091", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-5.15.0-1091", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-common", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-intel-iot-realtime-tools-host", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-modules-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - }, - { - "binary_name": "linux-tools-5.15.0-1091-intel-iot-realtime", - "binary_version": "5.15.0-1091.93" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1098.107?arch=source&distro=realtime/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "5.15.0-1006.6", - "5.15.0-1007.7", - "5.15.0-1009.9", - "5.15.0-1011.11", - "5.15.0-1014.14", - "5.15.0-1015.15", - "5.15.0-1016.16", - "5.15.0-1019.19", - "5.15.0-1020.20", - "5.15.0-1021.21", - "5.15.0-1022.22", - "5.15.0-1024.25", - "5.15.0-1025.28", - "5.15.0-1028.31", - "5.15.0-1029.32", - "5.15.0-1030.33", - "5.15.0-1032.35", - "5.15.0-1033.36", - "5.15.0-1034.37", - "5.15.0-1036.39", - "5.15.0-1037.40", - "5.15.0-1038.41", - "5.15.0-1039.42", - "5.15.0-1040.45", - "5.15.0-1041.46", - "5.15.0-1042.47", - "5.15.0-1043.48", - "5.15.0-1044.49", - "5.15.0-1045.50", - "5.15.0-1046.52", - "5.15.0-1048.54", - "5.15.0-1049.55", - "5.15.0-1050.56", - "5.15.0-1051.57", - "5.15.0-1052.58", - "5.15.0-1053.59", - "5.15.0-1054.60", - "5.15.0-1055.62", - "5.15.0-1056.63", - "5.15.0-1057.64", - "5.15.0-1058.66", - "5.15.0-1061.69", - "5.15.0-1062.70", - "5.15.0-1063.71", - "5.15.0-1064.72", - "5.15.0-1065.73", - "5.15.0-1066.74", - "5.15.0-1067.75", - "5.15.0-1068.76", - "5.15.0-1069.77", - "5.15.0-1070.78", - "5.15.0-1071.79", - "5.15.0-1072.80", - "5.15.0-1073.81", - "5.15.0-1074.82", - "5.15.0-1075.83", - "5.15.0-1076.84", - "5.15.0-1077.85", - "5.15.0-1078.86", - "5.15.0-1079.87", - "5.15.0-1080.88", - "5.15.0-1081.89", - "5.15.0-1082.91", - "5.15.0-1083.92", - "5.15.0-1084.93", - "5.15.0-1085.94", - "5.15.0-1086.95", - "5.15.0-1087.96", - "5.15.0-1088.97", - "5.15.0-1089.98", - "5.15.0-1090.99", - "5.15.0-1091.100", - "5.15.0-1092.101", - "5.15.0-1093.102", - "5.15.0-1094.103", - "5.15.0-1095.104", - "5.15.0-1096.105", - "5.15.0-1097.106", - "5.15.0-1098.107" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-cloud-tools-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-headers-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-image-unsigned-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-modules-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-modules-extra-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-modules-iwlwifi-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-cloud-tools-5.15.0-1098", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-cloud-tools-common", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-headers-5.15.0-1098", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-tools-5.15.0-1098", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-tools-common", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-realtime-tools-host", - "binary_version": "5.15.0-1098.107" - }, - { - "binary_name": "linux-tools-5.15.0-1098-realtime", - "binary_version": "5.15.0-1098.107" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:22.04:LTS:Realtime:Kernel", - "name": "linux-realtime-6.8", - "purl": "pkg:deb/ubuntu/linux-realtime-6.8@6.8.1-1040.41~22.04.1?arch=source&distro=realtime/jammy" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.1-1004.4~22.04.1", - "6.8.1-1005.5~22.04.2", - "6.8.1-1006.6~22.04.1", - "6.8.1-1007.7~22.04.1", - "6.8.1-1008.8~22.04.1", - "6.8.1-1009.9~22.04.1", - "6.8.1-1010.10~22.04.1", - "6.8.1-1011.11~22.04.1", - "6.8.1-1012.12~22.04.1", - "6.8.1-1013.14~22.04.1", - "6.8.1-1014.15~22.04.1", - "6.8.1-1015.16~22.04.1", - "6.8.1-1016.17~22.04.1", - "6.8.1-1017.18~22.04.1", - "6.8.1-1018.19~22.04.1", - "6.8.1-1019.20~22.04.1", - "6.8.1-1020.21~22.04.1", - "6.8.1-1021.22~22.04.1", - "6.8.1-1022.23~22.04.1", - "6.8.1-1023.24~22.04.1", - "6.8.1-1024.25~22.04.1", - "6.8.1-1025.26~22.04.1", - "6.8.1-1026.27~22.04.1", - "6.8.1-1030.31~22.04.1", - "6.8.1-1031.32~22.04.1", - "6.8.1-1034.35~22.04.1", - "6.8.1-1035.36~22.04.1", - "6.8.1-1036.37~22.04.1", - "6.8.1-1037.38~22.04.1", - "6.8.1-1038.39~22.04.1", - "6.8.1-1039.40~22.04.1", - "6.8.1-1040.41~22.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-headers-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-modules-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-modules-extra-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-realtime-6.8-cloud-tools-6.8.1-1040", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-realtime-6.8-headers-6.8.1-1040", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-realtime-6.8-tools-6.8.1-1040", - "binary_version": "6.8.1-1040.41~22.04.1" - }, - { - "binary_name": "linux-tools-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41~22.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@6.8.0-94.96?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-9.9", - "6.6.0-14.14", - "6.8.0-11.11", - "6.8.0-20.20", - "6.8.0-22.22", - "6.8.0-28.28", - "6.8.0-31.31", - "6.8.0-35.35", - "6.8.0-36.36", - "6.8.0-38.38", - "6.8.0-39.39", - "6.8.0-40.40", - "6.8.0-41.41", - "6.8.0-44.44", - "6.8.0-45.45", - "6.8.0-47.47", - "6.8.0-48.48", - "6.8.0-49.49", - "6.8.0-50.51", - "6.8.0-51.52", - "6.8.0-52.53", - "6.8.0-53.55", - "6.8.0-54.56", - "6.8.0-55.57", - "6.8.0-56.58", - "6.8.0-57.59", - "6.8.0-58.60", - "6.8.0-59.61", - "6.8.0-60.63", - "6.8.0-62.65", - "6.8.0-63.66", - "6.8.0-64.67", - "6.8.0-71.71", - "6.8.0-78.78", - "6.8.0-79.79", - "6.8.0-83.83", - "6.8.0-84.84", - "6.8.0-85.85", - "6.8.0-86.87", - "6.8.0-87.88", - "6.8.0-88.89", - "6.8.0-90.91", - "6.8.0-94.96" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-bpf-dev", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-buildinfo-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-buildinfo-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-94", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-headers-6.8.0-94", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-headers-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-headers-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-image-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-lib-rust-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-extra-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-ipu6-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-modules-usbio-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-source-6.8.0", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-tools-6.8.0-94", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-tools-6.8.0-94-generic", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-tools-6.8.0-94-generic-64k", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "6.8.0-94.96" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "6.8.0-94.96" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@6.8.0-1044.46?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1008.8", - "6.6.0-1001.1", - "6.8.0-1001.1", - "6.8.0-1006.6", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1011.12", - "6.8.0-1012.13", - "6.8.0-1013.14", - "6.8.0-1014.15", - "6.8.0-1015.16", - "6.8.0-1016.17", - "6.8.0-1017.18", - "6.8.0-1018.20", - "6.8.0-1019.21", - "6.8.0-1020.22", - "6.8.0-1021.23", - "6.8.0-1023.25", - "6.8.0-1024.26", - "6.8.0-1025.27", - "6.8.0-1026.28", - "6.8.0-1027.29", - "6.8.0-1028.30", - "6.8.0-1029.31", - "6.8.0-1030.32", - "6.8.0-1031.33", - "6.8.0-1032.34", - "6.8.0-1033.35", - "6.8.0-1035.37", - "6.8.0-1036.38", - "6.8.0-1038.40", - "6.8.0-1039.41", - "6.8.0-1040.42", - "6.8.0-1041.43", - "6.8.0-1042.44", - "6.8.0-1043.45", - "6.8.0-1044.46" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-aws-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-aws-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-headers-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-headers-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-modules-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-modules-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-tools-6.8.0-1044-aws", - "binary_version": "6.8.0-1044.46" - }, - { - "binary_name": "linux-tools-6.8.0-1044-aws-64k", - "binary_version": "6.8.0-1044.46" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-aws-6.14", - "purl": "pkg:deb/ubuntu/linux-aws-6.14@6.14.0-1018.18~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1007.7~24.04.1", - "6.14.0-1009.9~24.04.1", - "6.14.0-1010.10~24.04.1", - "6.14.0-1011.11~24.04.1", - "6.14.0-1012.12~24.04.1", - "6.14.0-1013.13~24.04.1", - "6.14.0-1014.14~24.04.1", - "6.14.0-1015.15~24.04.1", - "6.14.0-1016.16~24.04.1", - "6.14.0-1017.17~24.04.1", - "6.14.0-1018.18~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-6.14-cloud-tools-6.14.0-1018", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-aws-6.14-headers-6.14.0-1018", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-aws-6.14-tools-6.14.0-1018", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1018-aws", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1018-aws-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@6.8.0-1044.50?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1007.7", - "6.6.0-1001.1", - "6.8.0-1001.1", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1007.7", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1012.14", - "6.8.0-1013.15", - "6.8.0-1014.16", - "6.8.0-1015.17", - "6.8.0-1016.18", - "6.8.0-1017.20", - "6.8.0-1018.21", - "6.8.0-1020.23", - "6.8.0-1021.25", - "6.8.0-1025.30", - "6.8.0-1026.31", - "6.8.0-1027.32", - "6.8.0-1028.33", - "6.8.0-1029.34", - "6.8.0-1030.35", - "6.8.0-1031.36", - "6.8.0-1034.39", - "6.8.0-1038.44", - "6.8.0-1040.46", - "6.8.0-1041.47", - "6.8.0-1042.48", - "6.8.0-1044.50" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-azure-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-azure-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-headers-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-modules-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-modules-involflt-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - }, - { - "binary_name": "linux-tools-6.8.0-1044-azure", - "binary_version": "6.8.0-1044.50" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-6.11", - "purl": "pkg:deb/ubuntu/linux-azure-6.11@6.11.0-1018.18~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-1008.8~24.04.1", - "6.11.0-1012.12~24.04.1", - "6.11.0-1013.13~24.04.1", - "6.11.0-1014.14~24.04.1", - "6.11.0-1015.15~24.04.1", - "6.11.0-1017.17~24.04.1", - "6.11.0-1018.18~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-6.11-cloud-tools-6.11.0-1018", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-azure-6.11-headers-6.11.0-1018", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-azure-6.11-tools-6.11.0-1018", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-1018-azure", - "binary_version": "6.11.0-1018.18~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-6.14", - "purl": "pkg:deb/ubuntu/linux-azure-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1010.10~24.04.1", - "6.14.0-1012.12~24.04.1", - "6.14.0-1013.13~24.04.1", - "6.14.0-1014.14~24.04.1", - "6.14.0-1017.17~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-6.14-cloud-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-azure-6.14-headers-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-azure-6.14-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1017-azure", - "binary_version": "6.14.0-1017.17~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-fde", - "purl": "pkg:deb/ubuntu/linux-azure-fde@6.8.0-1044.51?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1041.48", - "6.8.0-1044.51" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fde-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-azure-fde-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-azure-fde-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-headers-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-modules-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - }, - { - "binary_name": "linux-tools-6.8.0-1044-azure-fde", - "binary_version": "6.8.0-1044.51" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-fde-6.14", - "purl": "pkg:deb/ubuntu/linux-azure-fde-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1012.12~24.04.1", - "6.14.0-1013.13~24.04.1", - "6.14.0-1014.14~24.04.1", - "6.14.0-1015.15~24.04.1", - "6.14.0-1017.17~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fde-6.14-cloud-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-azure-fde-6.14-headers-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-azure-fde-6.14-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1017-azure-fde", - "binary_version": "6.14.0-1017.17~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-nvidia", - "purl": "pkg:deb/ubuntu/linux-azure-nvidia@6.8.0-1029.32?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1013.14", - "6.8.0-1014.15", - "6.8.0-1016.17", - "6.8.0-1018.19", - "6.8.0-1019.20", - "6.8.0-1022.23", - "6.8.0-1025.27", - "6.8.0-1027.30", - "6.8.0-1029.32" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-nvidia-cloud-tools-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-azure-nvidia-headers-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-azure-nvidia-tools-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-headers-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-modules-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-tools-6.8.0-1029-azure-nvidia", - "binary_version": "6.8.0-1029.32" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-azure-nvidia-6.14", - "purl": "pkg:deb/ubuntu/linux-azure-nvidia-6.14@6.14.0-1007.7?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1003.3", - "6.14.0-1006.6", - "6.14.0-1007.7" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-nvidia-6.14-cloud-tools-6.14.0-1007", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-azure-nvidia-6.14-headers-6.14.0-1007", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-azure-nvidia-6.14-tools-6.14.0-1007", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-headers-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-modules-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - }, - { - "binary_name": "linux-tools-6.14.0-1007-azure-nvidia", - "binary_version": "6.14.0-1007.7" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@6.8.0-1045.48?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1007.7", - "6.6.0-1001.1", - "6.8.0-1002.2", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1007.7", - "6.8.0-1008.9", - "6.8.0-1009.10", - "6.8.0-1010.11", - "6.8.0-1011.12", - "6.8.0-1012.13", - "6.8.0-1013.14", - "6.8.0-1014.16", - "6.8.0-1015.17", - "6.8.0-1016.18", - "6.8.0-1017.19", - "6.8.0-1018.20", - "6.8.0-1019.21", - "6.8.0-1020.22", - "6.8.0-1021.23", - "6.8.0-1024.26", - "6.8.0-1025.27", - "6.8.0-1026.28", - "6.8.0-1027.29", - "6.8.0-1028.30", - "6.8.0-1029.31", - "6.8.0-1030.32", - "6.8.0-1031.33", - "6.8.0-1032.34", - "6.8.0-1033.35", - "6.8.0-1034.36", - "6.8.0-1036.38", - "6.8.0-1037.39", - "6.8.0-1039.41", - "6.8.0-1040.42", - "6.8.0-1041.43", - "6.8.0-1042.45", - "6.8.0-1043.46", - "6.8.0-1044.47", - "6.8.0-1045.48" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-gcp-headers-6.8.0-1045", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-gcp-tools-6.8.0-1045", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-headers-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-headers-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-modules-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-modules-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-tools-6.8.0-1045-gcp", - "binary_version": "6.8.0-1045.48" - }, - { - "binary_name": "linux-tools-6.8.0-1045-gcp-64k", - "binary_version": "6.8.0-1045.48" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-gcp-6.11", - "purl": "pkg:deb/ubuntu/linux-gcp-6.11@6.11.0-1017.17~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-1006.6~24.04.2", - "6.11.0-1011.11~24.04.1", - "6.11.0-1013.13~24.04.1", - "6.11.0-1014.14~24.04.1", - "6.11.0-1015.15~24.04.1", - "6.11.0-1016.16~24.04.1", - "6.11.0-1017.17~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-gcp-6.11-headers-6.11.0-1017", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-gcp-6.11-lib-rust-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-gcp-6.11-tools-6.11.0-1017", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-1017-gcp", - "binary_version": "6.11.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-1017-gcp-64k", - "binary_version": "6.11.0-1017.17~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-gcp-6.14", - "purl": "pkg:deb/ubuntu/linux-gcp-6.14@6.14.0-1021.22~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1007.7~24.04.1", - "6.14.0-1011.11~24.04.1", - "6.14.0-1012.12~24.04.1", - "6.14.0-1014.15~24.04.1", - "6.14.0-1015.16~24.04.1", - "6.14.0-1016.17~24.04.1", - "6.14.0-1017.18~24.04.1", - "6.14.0-1018.19~24.04.1", - "6.14.0-1019.20~24.04.1", - "6.14.0-1020.21~24.04.1", - "6.14.0-1021.22~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-gcp-6.14-headers-6.14.0-1021", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-gcp-6.14-tools-6.14.0-1021", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-lib-rust-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1021-gcp", - "binary_version": "6.14.0-1021.22~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1021-gcp-64k", - "binary_version": "6.14.0-1021.22~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-gke", - "purl": "pkg:deb/ubuntu/linux-gke@6.8.0-1042.47?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1003.5", - "6.8.0-1004.7", - "6.8.0-1005.8", - "6.8.0-1006.9", - "6.8.0-1007.10", - "6.8.0-1008.11", - "6.8.0-1009.12", - "6.8.0-1010.13", - "6.8.0-1011.14", - "6.8.0-1012.15", - "6.8.0-1013.17", - "6.8.0-1014.18", - "6.8.0-1015.19", - "6.8.0-1016.20", - "6.8.0-1017.21", - "6.8.0-1019.23", - "6.8.0-1020.24", - "6.8.0-1021.25", - "6.8.0-1022.26", - "6.8.0-1023.27", - "6.8.0-1024.28", - "6.8.0-1025.29", - "6.8.0-1026.30", - "6.8.0-1027.31", - "6.8.0-1028.32", - "6.8.0-1029.33", - "6.8.0-1032.36", - "6.8.0-1033.37", - "6.8.0-1035.39", - "6.8.0-1036.40", - "6.8.0-1037.41", - "6.8.0-1038.43", - "6.8.0-1039.44", - "6.8.0-1040.45", - "6.8.0-1041.46", - "6.8.0-1042.47" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-gke-headers-6.8.0-1042", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-gke-tools-6.8.0-1042", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-headers-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-headers-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-modules-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-modules-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-tools-6.8.0-1042-gke", - "binary_version": "6.8.0-1042.47" - }, - { - "binary_name": "linux-tools-6.8.0-1042-gke-64k", - "binary_version": "6.8.0-1042.47" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-gkeop", - "purl": "pkg:deb/ubuntu/linux-gkeop@6.8.0-1029.32?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1001.3", - "6.8.0-1002.4", - "6.8.0-1003.5", - "6.8.0-1004.6", - "6.8.0-1006.8", - "6.8.0-1007.9", - "6.8.0-1008.10", - "6.8.0-1009.11", - "6.8.0-1010.12", - "6.8.0-1011.13", - "6.8.0-1012.14", - "6.8.0-1013.15", - "6.8.0-1014.16", - "6.8.0-1015.17", - "6.8.0-1016.18", - "6.8.0-1019.21", - "6.8.0-1020.22", - "6.8.0-1022.24", - "6.8.0-1023.25", - "6.8.0-1024.26", - "6.8.0-1025.28", - "6.8.0-1026.29", - "6.8.0-1027.30", - "6.8.0-1028.31", - "6.8.0-1029.32" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-gkeop-cloud-tools-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-gkeop-headers-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-gkeop-tools-6.8.0-1029", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-headers-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-modules-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - }, - { - "binary_name": "linux-tools-6.8.0-1029-gkeop", - "binary_version": "6.8.0-1029.32" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-hwe-6.11", - "purl": "pkg:deb/ubuntu/linux-hwe-6.11@6.11.0-29.29~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-17.17~24.04.2", - "6.11.0-19.19~24.04.1", - "6.11.0-21.21~24.04.1", - "6.11.0-24.24~24.04.1", - "6.11.0-25.25~24.04.1", - "6.11.0-26.26~24.04.1", - "6.11.0-28.28~24.04.1", - "6.11.0-29.29~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.11.0-29-generic-64k", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-29-generic-64k", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-hwe-6.11-cloud-tools-6.11.0-29", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-hwe-6.11-headers-6.11.0-29", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-hwe-6.11-lib-rust-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-hwe-6.11-tools-6.11.0-29", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-image-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-29-generic-64k", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-29-generic-64k", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-ipu7-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-usbio-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-modules-vision-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-29-generic", - "binary_version": "6.11.0-29.29~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-29-generic-64k", - "binary_version": "6.11.0-29.29~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-hwe-6.14", - "purl": "pkg:deb/ubuntu/linux-hwe-6.14@6.14.0-37.37~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-24.24~24.04.3", - "6.14.0-27.27~24.04.1", - "6.14.0-28.28~24.04.1", - "6.14.0-29.29~24.04.1", - "6.14.0-32.32~24.04.1", - "6.14.0-33.33~24.04.1", - "6.14.0-34.34~24.04.1", - "6.14.0-35.35~24.04.1", - "6.14.0-36.36~24.04.1", - "6.14.0-37.37~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-37-generic-64k", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-37-generic-64k", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-hwe-6.14-cloud-tools-6.14.0-37", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-hwe-6.14-headers-6.14.0-37", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-hwe-6.14-tools-6.14.0-37", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-image-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-37-generic-64k", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-lib-rust-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-37-generic-64k", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-ipu6-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-ipu7-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-usbio-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-modules-vision-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-37-generic", - "binary_version": "6.14.0-37.37~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-37-generic-64k", - "binary_version": "6.14.0-37.37~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-ibm", - "purl": "pkg:deb/ubuntu/linux-ibm@6.8.0-1042.42?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1009.9", - "6.8.0-1001.1", - "6.8.0-1003.3", - "6.8.0-1004.4", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1007.7", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1011.11", - "6.8.0-1012.12", - "6.8.0-1013.13", - "6.8.0-1014.14", - "6.8.0-1015.15", - "6.8.0-1016.16", - "6.8.0-1017.17", - "6.8.0-1018.18", - "6.8.0-1019.19", - "6.8.0-1022.22", - "6.8.0-1023.23", - "6.8.0-1024.24", - "6.8.0-1025.25", - "6.8.0-1026.26", - "6.8.0-1027.27", - "6.8.0-1028.28", - "6.8.0-1029.29", - "6.8.0-1030.30", - "6.8.0-1033.33", - "6.8.0-1036.36", - "6.8.0-1037.37", - "6.8.0-1038.38", - "6.8.0-1039.39", - "6.8.0-1040.40", - "6.8.0-1041.41", - "6.8.0-1042.42" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-headers-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-ibm-headers-6.8.0-1042", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-ibm-tools-6.8.0-1042", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-modules-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - }, - { - "binary_name": "linux-tools-6.8.0-1042-ibm", - "binary_version": "6.8.0-1042.42" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-lowlatency", - "purl": "pkg:deb/ubuntu/linux-lowlatency@6.8.0-90.91.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-9.9.1", - "6.6.0-14.14.1", - "6.8.0-7.7.1", - "6.8.0-25.25.3", - "6.8.0-28.28.1", - "6.8.0-31.31.1", - "6.8.0-35.35.1", - "6.8.0-36.36.1", - "6.8.0-38.38.1", - "6.8.0-39.39.1", - "6.8.0-40.40.1", - "6.8.0-41.41.1", - "6.8.0-44.44.1", - "6.8.0-45.45.1", - "6.8.0-47.47.1", - "6.8.0-48.48.3", - "6.8.0-49.49.1", - "6.8.0-50.51.1", - "6.8.0-51.52.1", - "6.8.0-52.53.1", - "6.8.0-53.55.2", - "6.8.0-54.56.1", - "6.8.0-55.57.1", - "6.8.0-56.58.1", - "6.8.0-57.59.1", - "6.8.0-58.60.1", - "6.8.0-59.61.1", - "6.8.0-60.63.1", - "6.8.0-62.65.1", - "6.8.0-63.66.1", - "6.8.0-64.67.1", - "6.8.0-65.68.1", - "6.8.0-78.78.1", - "6.8.0-79.79.1", - "6.8.0-83.83.1", - "6.8.0-84.84.1", - "6.8.0-85.85.1", - "6.8.0-86.87.1", - "6.8.0-87.88.1", - "6.8.0-88.89.1", - "6.8.0-90.91.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-headers-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-headers-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-lowlatency-cloud-tools-6.8.0-90", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-lowlatency-headers-6.8.0-90", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-lowlatency-lib-rust-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-lowlatency-tools-6.8.0-90", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-modules-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-modules-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-tools-6.8.0-90-lowlatency", - "binary_version": "6.8.0-90.91.1" - }, - { - "binary_name": "linux-tools-6.8.0-90-lowlatency-64k", - "binary_version": "6.8.0-90.91.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-lowlatency-hwe-6.11", - "purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.11@6.11.0-1016.17~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-1009.10~24.04.1", - "6.11.0-1011.12~24.04.1", - "6.11.0-1012.13~24.04.1", - "6.11.0-1013.14~24.04.1", - "6.11.0-1014.15~24.04.1", - "6.11.0-1015.16~24.04.2", - "6.11.0-1016.17~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.11.0-1016-lowlatency-64k", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.11.0-1016-lowlatency-64k", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency-64k", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.11-cloud-tools-6.11.0-1016", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.11-headers-6.11.0-1016", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.11-lib-rust-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-lowlatency-hwe-6.11-tools-6.11.0-1016", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.11.0-1016-lowlatency-64k", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-1016-lowlatency", - "binary_version": "6.11.0-1016.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.11.0-1016-lowlatency-64k", - "binary_version": "6.11.0-1016.17~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-nvidia", - "purl": "pkg:deb/ubuntu/linux-nvidia@6.8.0-1044.47?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1007.7", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1011.11", - "6.8.0-1012.12", - "6.8.0-1013.14", - "6.8.0-1014.15", - "6.8.0-1015.16", - "6.8.0-1017.19", - "6.8.0-1018.20", - "6.8.0-1019.21", - "6.8.0-1020.22", - "6.8.0-1021.23", - "6.8.0-1022.25", - "6.8.0-1023.26", - "6.8.0-1024.27", - "6.8.0-1025.28", - "6.8.0-1026.29", - "6.8.0-1027.30", - "6.8.0-1028.31", - "6.8.0-1029.32", - "6.8.0-1030.33", - "6.8.0-1031.34", - "6.8.0-1032.35", - "6.8.0-1035.38", - "6.8.0-1036.39", - "6.8.0-1038.41", - "6.8.0-1039.42", - "6.8.0-1040.43", - "6.8.0-1041.44", - "6.8.0-1042.45", - "6.8.0-1043.46", - "6.8.0-1044.47" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-nvidia-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-nvidia-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia", - "binary_version": "6.8.0-1044.47" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia-64k", - "binary_version": "6.8.0-1044.47" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-nvidia-6.11", - "purl": "pkg:deb/ubuntu/linux-nvidia-6.11@6.11.0-1016.16?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-1002.2", - "6.11.0-1003.3", - "6.11.0-1007.7", - "6.11.0-1010.10", - "6.11.0-1011.11", - "6.11.0-1012.12", - "6.11.0-1013.13", - "6.11.0-1016.16" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-buildinfo-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-headers-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-headers-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-extra-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-extra-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-nvidia-6.11-headers-6.11.0-1016", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-nvidia-6.11-lib-rust-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-nvidia-6.11-tools-6.11.0-1016", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-tools-6.11.0-1016-nvidia", - "binary_version": "6.11.0-1016.16" - }, - { - "binary_name": "linux-tools-6.11.0-1016-nvidia-64k", - "binary_version": "6.11.0-1016.16" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-nvidia-lowlatency", - "purl": "pkg:deb/ubuntu/linux-nvidia-lowlatency@6.8.0-1044.47.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1009.9.1", - "6.8.0-1011.11.1", - "6.8.0-1012.12.1", - "6.8.0-1013.14.1", - "6.8.0-1014.15.1", - "6.8.0-1015.16.1", - "6.8.0-1017.19.1", - "6.8.0-1018.20.1", - "6.8.0-1019.21.1", - "6.8.0-1020.22.1", - "6.8.0-1021.23.1", - "6.8.0-1022.25.2", - "6.8.0-1023.26.1", - "6.8.0-1024.27.1", - "6.8.0-1025.28.1", - "6.8.0-1026.29.1", - "6.8.0-1027.30.1", - "6.8.0-1028.31.1", - "6.8.0-1029.32.1", - "6.8.0-1030.33.1", - "6.8.0-1031.34.1", - "6.8.0-1032.35.1", - "6.8.0-1035.38.1", - "6.8.0-1036.39.1", - "6.8.0-1038.41.1", - "6.8.0-1039.42.1", - "6.8.0-1040.43.1", - "6.8.0-1041.44.1", - "6.8.0-1042.45.1", - "6.8.0-1043.46.1", - "6.8.0-1044.47.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-modules-nvidia-fs-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-nvidia-lowlatency-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-nvidia-lowlatency-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia-lowlatency", - "binary_version": "6.8.0-1044.47.1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-nvidia-lowlatency-64k", - "binary_version": "6.8.0-1044.47.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-nvidia-tegra", - "purl": "pkg:deb/ubuntu/linux-nvidia-tegra@6.8.0-1013.13?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1003.3", - "6.8.0-1004.4", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1012.12", - "6.8.0-1013.13" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-headers-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-headers-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-modules-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-modules-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-nvidia-tegra-headers-6.8.0-1013", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-nvidia-tegra-tools-6.8.0-1013", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-tools-6.8.0-1013-nvidia-tegra", - "binary_version": "6.8.0-1013.13" - }, - { - "binary_name": "linux-tools-6.8.0-1013-nvidia-tegra-rt", - "binary_version": "6.8.0-1013.13" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oem-6.11", - "purl": "pkg:deb/ubuntu/linux-oem-6.11@6.11.0-1027.27?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.11.0-1007.7", - "6.11.0-1008.8", - "6.11.0-1009.9", - "6.11.0-1010.10", - "6.11.0-1011.11", - "6.11.0-1012.12", - "6.11.0-1013.13", - "6.11.0-1015.15", - "6.11.0-1016.16", - "6.11.0-1017.17", - "6.11.0-1018.18", - "6.11.0-1020.20", - "6.11.0-1021.21", - "6.11.0-1022.22", - "6.11.0-1023.23", - "6.11.0-1024.24", - "6.11.0-1025.25", - "6.11.0-1027.27" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-headers-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-image-unsigned-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-ipu6-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-ipu7-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-iwlwifi-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-usbio-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-modules-vision-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-oem-6.11-headers-6.11.0-1027", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-oem-6.11-tools-6.11.0-1027", - "binary_version": "6.11.0-1027.27" - }, - { - "binary_name": "linux-tools-6.11.0-1027-oem", - "binary_version": "6.11.0-1027.27" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oem-6.14", - "purl": "pkg:deb/ubuntu/linux-oem-6.14@6.14.0-1020.20?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1004.4", - "6.14.0-1005.5", - "6.14.0-1006.6", - "6.14.0-1007.7", - "6.14.0-1008.8", - "6.14.0-1010.10", - "6.14.0-1011.11", - "6.14.0-1012.12", - "6.14.0-1013.13", - "6.14.0-1014.14", - "6.14.0-1015.15", - "6.14.0-1016.16", - "6.14.0-1017.17", - "6.14.0-1018.18", - "6.14.0-1019.19", - "6.14.0-1020.20" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-headers-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-ipu6-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-ipu7-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-iwlwifi-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-usbio-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-modules-vision-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-oem-6.14-headers-6.14.0-1020", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-oem-6.14-tools-6.14.0-1020", - "binary_version": "6.14.0-1020.20" - }, - { - "binary_name": "linux-tools-6.14.0-1020-oem", - "binary_version": "6.14.0-1020.20" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oem-6.17", - "purl": "pkg:deb/ubuntu/linux-oem-6.17@6.17.0-1010.10?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.17.0-1005.5", - "6.17.0-1006.6", - "6.17.0-1007.7", - "6.17.0-1008.8", - "6.17.0-1009.9", - "6.17.0-1010.10" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-headers-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-ipu6-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-ipu7-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-iwlwifi-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-usbio-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-modules-vision-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-oem-6.17-headers-6.17.0-1010", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-oem-6.17-tools-6.17.0-1010", - "binary_version": "6.17.0-1010.10" - }, - { - "binary_name": "linux-tools-6.17.0-1010-oem", - "binary_version": "6.17.0-1010.10" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oem-6.8", - "purl": "pkg:deb/ubuntu/linux-oem-6.8@6.8.0-1032.32?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1003.3", - "6.8.0-1004.4", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1007.7", - "6.8.0-1008.8", - "6.8.0-1009.9", - "6.8.0-1010.10", - "6.8.0-1011.11", - "6.8.0-1012.12", - "6.8.0-1013.13", - "6.8.0-1014.14", - "6.8.0-1016.16", - "6.8.0-1017.17", - "6.8.0-1018.18", - "6.8.0-1019.19", - "6.8.0-1020.20", - "6.8.0-1024.24", - "6.8.0-1025.25", - "6.8.0-1026.26", - "6.8.0-1027.27", - "6.8.0-1028.28", - "6.8.0-1029.29", - "6.8.0-1030.30", - "6.8.0-1031.31", - "6.8.0-1032.32" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-headers-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-modules-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-modules-ipu6-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-modules-usbio-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-oem-6.8-headers-6.8.0-1032", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-oem-6.8-tools-6.8.0-1032", - "binary_version": "6.8.0-1032.32" - }, - { - "binary_name": "linux-tools-6.8.0-1032-oem", - "binary_version": "6.8.0-1032.32" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@6.8.0-1042.43?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1010.10", - "6.6.0-1001.1", - "6.8.0-1001.1", - "6.8.0-1004.4", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1008.8", - "6.8.0-1010.10", - "6.8.0-1011.11", - "6.8.0-1012.12", - "6.8.0-1013.13", - "6.8.0-1014.14", - "6.8.0-1015.16", - "6.8.0-1016.17", - "6.8.0-1017.18", - "6.8.0-1018.19", - "6.8.0-1019.20", - "6.8.0-1020.21", - "6.8.0-1021.22", - "6.8.0-1022.23", - "6.8.0-1023.24", - "6.8.0-1024.25", - "6.8.0-1025.26", - "6.8.0-1026.27", - "6.8.0-1027.28", - "6.8.0-1028.29", - "6.8.0-1029.30", - "6.8.0-1030.31", - "6.8.0-1032.33", - "6.8.0-1033.34", - "6.8.0-1035.36", - "6.8.0-1037.38", - "6.8.0-1038.39", - "6.8.0-1039.40", - "6.8.0-1040.41", - "6.8.0-1041.42", - "6.8.0-1042.43" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-headers-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-headers-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-modules-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-modules-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-oracle-headers-6.8.0-1042", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-oracle-tools-6.8.0-1042", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-tools-6.8.0-1042-oracle", - "binary_version": "6.8.0-1042.43" - }, - { - "binary_name": "linux-tools-6.8.0-1042-oracle-64k", - "binary_version": "6.8.0-1042.43" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-oracle-6.14", - "purl": "pkg:deb/ubuntu/linux-oracle-6.14@6.14.0-1018.18~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1007.7~24.04.1", - "6.14.0-1009.9~24.04.1", - "6.14.0-1010.10~24.04.1", - "6.14.0-1011.11~24.04.1", - "6.14.0-1012.12~24.04.1", - "6.14.0-1013.13~24.04.1", - "6.14.0-1014.14~24.04.1", - "6.14.0-1015.15~24.04.1", - "6.14.0-1016.16~24.04.1", - "6.14.0-1017.17~24.04.1", - "6.14.0-1018.18~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-buildinfo-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-oracle-6.14-headers-6.14.0-1018", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-oracle-6.14-tools-6.14.0-1018", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1018-oracle", - "binary_version": "6.14.0-1018.18~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1018-oracle-64k", - "binary_version": "6.14.0-1018.18~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-raspi", - "purl": "pkg:deb/ubuntu/linux-raspi@6.8.0-1045.49?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-1005.7", - "6.7.0-1001.1", - "6.8.0-1001.1", - "6.8.0-1002.2", - "6.8.0-1003.3", - "6.8.0-1004.4", - "6.8.0-1005.5", - "6.8.0-1006.6", - "6.8.0-1007.7", - "6.8.0-1008.8", - "6.8.0-1009.10", - "6.8.0-1010.11", - "6.8.0-1011.12", - "6.8.0-1012.13", - "6.8.0-1013.14", - "6.8.0-1014.16", - "6.8.0-1015.17", - "6.8.0-1016.18", - "6.8.0-1017.19", - "6.8.0-1018.20", - "6.8.0-1019.23", - "6.8.0-1020.24", - "6.8.0-1024.28", - "6.8.0-1028.32", - "6.8.0-1029.33", - "6.8.0-1030.34", - "6.8.0-1031.35", - "6.8.0-1032.36", - "6.8.0-1035.39", - "6.8.0-1036.40", - "6.8.0-1038.42", - "6.8.0-1039.43", - "6.8.0-1040.44", - "6.8.0-1041.45", - "6.8.0-1042.46", - "6.8.0-1043.47", - "6.8.0-1044.48", - "6.8.0-1045.49" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1045-raspi", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-headers-6.8.0-1045-raspi", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-image-6.8.0-1045-raspi", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-modules-6.8.0-1045-raspi", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-raspi-headers-6.8.0-1045", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-raspi-tools-6.8.0-1045", - "binary_version": "6.8.0-1045.49" - }, - { - "binary_name": "linux-tools-6.8.0-1045-raspi", - "binary_version": "6.8.0-1045.49" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-raspi-realtime", - "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-2019.20" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-headers-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-image-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-modules-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-raspi-realtime-headers-6.8.0-2019", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-raspi-realtime-tools-6.8.0-2019", - "binary_version": "6.8.0-2019.20" - }, - { - "binary_name": "linux-tools-6.8.0-2019-raspi-realtime", - "binary_version": "6.8.0-2019.20" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1015.16?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.1-1015.16" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-cloud-tools-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-headers-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-image-unsigned-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-modules-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-modules-extra-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-realtime-cloud-tools-6.8.1-1015", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-realtime-headers-6.8.1-1015", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-realtime-tools-6.8.1-1015", - "binary_version": "6.8.1-1015.16" - }, - { - "binary_name": "linux-tools-6.8.1-1015-realtime", - "binary_version": "6.8.1-1015.16" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-riscv", - "purl": "pkg:deb/ubuntu/linux-riscv@6.8.0-60.63.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.5.0-9.9.1", - "6.8.0-20.20.1", - "6.8.0-28.28.1", - "6.8.0-31.31.1", - "6.8.0-35.35.1", - "6.8.0-36.36.1", - "6.8.0-38.38.1", - "6.8.0-39.39.1", - "6.8.0-40.40.1", - "6.8.0-41.41.1", - "6.8.0-44.44.1", - "6.8.0-47.47.1", - "6.8.0-48.48.1", - "6.8.0-49.49.1", - "6.8.0-50.51.1", - "6.8.0-51.52.1", - "6.8.0-52.53.1", - "6.8.0-53.55.1", - "6.8.0-55.57.1", - "6.8.0-56.58.1", - "6.8.0-57.59.1", - "6.8.0-58.60.1", - "6.8.0-59.61.1", - "6.8.0-60.63.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-60-generic", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-headers-6.8.0-60-generic", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-image-6.8.0-60-generic", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-modules-6.8.0-60-generic", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-riscv-headers-6.8.0-60", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-riscv-tools-6.8.0-60", - "binary_version": "6.8.0-60.63.1" - }, - { - "binary_name": "linux-tools-6.8.0-60-generic", - "binary_version": "6.8.0-60.63.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-riscv-6.14", - "purl": "pkg:deb/ubuntu/linux-riscv-6.14@6.14.0-37.37.1~24.04.1?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-22.22.1~24.04.1", - "6.14.0-23.23.1~24.04.1", - "6.14.0-24.24.1~24.04.1", - "6.14.0-27.27.1~24.04.1", - "6.14.0-28.28.1~24.04.1", - "6.14.0-29.29.1~24.04.1", - "6.14.0-32.32.1~24.04.1", - "6.14.0-33.33.1~24.04.1", - "6.14.0-34.34.1~24.04.1", - "6.14.0-35.35.1~24.04.1", - "6.14.0-36.36.1~24.04.1", - "6.14.0-37.37.1~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-37-generic", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-37-generic", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-image-6.14.0-37-generic", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-37-generic", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-riscv-6.14-headers-6.14.0-37", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-riscv-6.14-tools-6.14.0-37", - "binary_version": "6.14.0-37.37.1~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-37-generic", - "binary_version": "6.14.0-37.37.1~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:24.04:LTS", - "name": "linux-xilinx", - "purl": "pkg:deb/ubuntu/linux-xilinx@6.8.0-1021.22?arch=source&distro=noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1008.9", - "6.8.0-1009.10", - "6.8.0-1011.12", - "6.8.0-1012.13", - "6.8.0-1013.14", - "6.8.0-1014.15", - "6.8.0-1015.16", - "6.8.0-1017.18", - "6.8.0-1018.19", - "6.8.0-1019.20", - "6.8.0-1020.21", - "6.8.0-1021.22" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1021-xilinx", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-headers-6.8.0-1021-xilinx", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-image-6.8.0-1021-xilinx", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-modules-6.8.0-1021-xilinx", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-tools-6.8.0-1021-xilinx", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-xilinx-headers-6.8.0-1021", - "binary_version": "6.8.0-1021.22" - }, - { - "binary_name": "linux-xilinx-tools-6.8.0-1021", - "binary_version": "6.8.0-1021.22" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", - "name": "linux-aws-fips", - "purl": "pkg:deb/ubuntu/linux-aws-fips@6.8.0-1044.46+fips1?arch=source&distro=fips-updates/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1035.37+fips1", - "6.8.0-1036.38+fips1", - "6.8.0-1038.40+fips1", - "6.8.0-1039.41+fips1", - "6.8.0-1040.42+fips1", - "6.8.0-1041.43+fips1", - "6.8.0-1042.44+fips1", - "6.8.0-1043.45+fips1", - "6.8.0-1044.46+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-fips-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-aws-fips-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-aws-fips-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-aws-fips", - "binary_version": "6.8.0-1044.46+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", - "name": "linux-azure-fips", - "purl": "pkg:deb/ubuntu/linux-azure-fips@6.8.0-1044.50+fips1?arch=source&distro=fips-updates/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1034.39+fips1", - "6.8.0-1040.46+fips1", - "6.8.0-1044.50+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fips-cloud-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-azure-fips-headers-6.8.0-1044", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-azure-fips-tools-6.8.0-1044", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-buildinfo-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-headers-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-modules-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-modules-involflt-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - }, - { - "binary_name": "linux-tools-6.8.0-1044-azure-fips", - "binary_version": "6.8.0-1044.50+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", - "name": "linux-fips", - "purl": "pkg:deb/ubuntu/linux-fips@6.8.0-90.91+fips1?arch=source&distro=fips-updates/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-38.38+fips4", - "6.8.0-78.78+fips1", - "6.8.0-79.79+fips1", - "6.8.0-83.83+fips1", - "6.8.0-84.84+fips1", - "6.8.0-85.85+fips1", - "6.8.0-86.87+fips1", - "6.8.0-87.88+fips1", - "6.8.0-88.89+fips1", - "6.8.0-90.91+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-cloud-tools-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-fips-cloud-tools-6.8.0-90", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-fips-headers-6.8.0-90", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-fips-lib-rust-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-fips-tools-6.8.0-90", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-headers-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-image-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-image-hmac-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-modules-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-modules-ipu6-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-modules-usbio-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - }, - { - "binary_name": "linux-tools-6.8.0-90-fips", - "binary_version": "6.8.0-90.91+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS", - "name": "linux-gcp-fips", - "purl": "pkg:deb/ubuntu/linux-gcp-fips@6.8.0-1045.48+fips1?arch=source&distro=fips-updates/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1036.38+fips1", - "6.8.0-1037.39+fips1", - "6.8.0-1039.41+fips1", - "6.8.0-1040.42+fips1", - "6.8.0-1041.43+fips1", - "6.8.0-1042.45+fips1", - "6.8.0-1043.46+fips1", - "6.8.0-1044.47+fips1", - "6.8.0-1045.48+fips1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-gcp-fips-headers-6.8.0-1045", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-gcp-fips-tools-6.8.0-1045", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-headers-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-image-unsigned-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-image-unsigned-hmac-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-modules-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-modules-extra-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - }, - { - "binary_name": "linux-tools-6.8.0-1045-gcp-fips", - "binary_version": "6.8.0-1045.48+fips1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", - "name": "linux-raspi-realtime", - "purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2036.37?arch=source&distro=realtime/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.7.0-2001.1", - "6.8.0-2001.1", - "6.8.0-2002.2", - "6.8.0-2004.4", - "6.8.0-2005.5", - "6.8.0-2006.6", - "6.8.0-2007.7", - "6.8.0-2008.8", - "6.8.0-2009.9", - "6.8.0-2010.10", - "6.8.0-2011.11", - "6.8.0-2012.12", - "6.8.0-2013.14", - "6.8.0-2014.15", - "6.8.0-2015.16", - "6.8.0-2016.17", - "6.8.0-2017.18", - "6.8.0-2018.19", - "6.8.0-2019.20", - "6.8.0-2022.23", - "6.8.0-2023.24", - "6.8.0-2024.25", - "6.8.0-2025.26", - "6.8.0-2026.27", - "6.8.0-2028.29", - "6.8.0-2029.30", - "6.8.0-2030.31", - "6.8.0-2031.32", - "6.8.0-2032.33", - "6.8.0-2033.34", - "6.8.0-2034.35", - "6.8.0-2035.36", - "6.8.0-2036.37" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.0-2036-raspi-realtime", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-headers-6.8.0-2036-raspi-realtime", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-image-6.8.0-2036-raspi-realtime", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-modules-6.8.0-2036-raspi-realtime", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-raspi-realtime-headers-6.8.0-2036", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-raspi-realtime-tools-6.8.0-2036", - "binary_version": "6.8.0-2036.37" - }, - { - "binary_name": "linux-tools-6.8.0-2036-raspi-realtime", - "binary_version": "6.8.0-2036.37" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1040.41?arch=source&distro=realtime/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.8.0-1008.19", - "6.8.1-1001.1", - "6.8.1-1002.2", - "6.8.1-1003.3", - "6.8.1-1004.4", - "6.8.1-1005.5", - "6.8.1-1006.6", - "6.8.1-1007.7", - "6.8.1-1008.8", - "6.8.1-1009.9", - "6.8.1-1010.10", - "6.8.1-1011.11", - "6.8.1-1012.12", - "6.8.1-1013.14", - "6.8.1-1014.15", - "6.8.1-1015.16", - "6.8.1-1016.17", - "6.8.1-1017.18", - "6.8.1-1018.19", - "6.8.1-1019.20", - "6.8.1-1020.21", - "6.8.1-1021.22", - "6.8.1-1022.23", - "6.8.1-1023.24", - "6.8.1-1024.25", - "6.8.1-1025.26", - "6.8.1-1026.27", - "6.8.1-1030.31", - "6.8.1-1031.32", - "6.8.1-1033.34", - "6.8.1-1034.35", - "6.8.1-1035.36", - "6.8.1-1036.37", - "6.8.1-1037.38", - "6.8.1-1038.39", - "6.8.1-1039.40", - "6.8.1-1040.41" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-cloud-tools-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-headers-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-image-unsigned-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-modules-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-modules-extra-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-modules-iwlwifi-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-realtime-cloud-tools-6.8.1-1040", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-realtime-headers-6.8.1-1040", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-realtime-tools-6.8.1-1040", - "binary_version": "6.8.1-1040.41" - }, - { - "binary_name": "linux-tools-6.8.1-1040-realtime", - "binary_version": "6.8.1-1040.41" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:Pro:24.04:LTS:Realtime:Kernel", - "name": "linux-realtime-6.14", - "purl": "pkg:deb/ubuntu/linux-realtime-6.14@6.14.0-1017.17~24.04.1?arch=source&distro=realtime/noble" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1003.3~24.04.3", - "6.14.0-1010.10~24.04.1", - "6.14.0-1011.11~24.04.1", - "6.14.0-1012.12~24.04.1", - "6.14.0-1013.13~24.04.1", - "6.14.0-1014.14~24.04.1", - "6.14.0-1015.15~24.04.1", - "6.14.0-1016.16~24.04.1", - "6.14.0-1017.17~24.04.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-cloud-tools-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-headers-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-image-unsigned-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-extra-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-modules-iwlwifi-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-realtime-6.14-cloud-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-realtime-6.14-headers-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-realtime-6.14-tools-6.14.0-1017", - "binary_version": "6.14.0-1017.17~24.04.1" - }, - { - "binary_name": "linux-tools-6.14.0-1017-realtime", - "binary_version": "6.14.0-1017.17~24.04.1" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux", - "purl": "pkg:deb/ubuntu/linux@6.17.0-12.12?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-15.15", - "6.15.0-3.3", - "6.15.0-4.4", - "6.16.0-13.13", - "6.16.0-16.16", - "6.17.0-3.3", - "6.17.0-4.4", - "6.17.0-5.5", - "6.17.0-6.6", - "6.17.0-7.7", - "6.17.0-8.8", - "6.17.0-12.12" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "bpftool", - "binary_version": "7.7.0+6.17.0-12.12" - }, - { - "binary_name": "linux-bpf-dev", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-buildinfo-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-buildinfo-6.17.0-12-generic-64k", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-12", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-cloud-tools-common", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-headers-6.17.0-12", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-headers-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-headers-6.17.0-12-generic-64k", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-image-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-12-generic-64k", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-lib-rust-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-libc-dev", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-6.17.0-12-generic-64k", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-ipu6-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-ipu7-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-iwlwifi-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-usbio-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-modules-vision-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-perf", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-source-6.17.0", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-tools-6.17.0-12", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-tools-6.17.0-12-generic", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-tools-6.17.0-12-generic-64k", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-tools-common", - "binary_version": "6.17.0-12.12" - }, - { - "binary_name": "linux-tools-host", - "binary_version": "6.17.0-12.12" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-aws", - "purl": "pkg:deb/ubuntu/linux-aws@6.17.0-1006.6?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1005.5", - "6.14.0-1007.7+25.10.2", - "6.16.0-1001.1", - "6.17.0-1001.1", - "6.17.0-1002.2", - "6.17.0-1003.3", - "6.17.0-1004.4", - "6.17.0-1005.5", - "6.17.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-aws-cloud-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-aws-headers-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-aws-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-aws", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-aws-64k", - "binary_version": "6.17.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-azure", - "purl": "pkg:deb/ubuntu/linux-azure@6.17.0-1006.6?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1004.4", - "6.14.0-1007.7+25.10.1", - "6.16.0-1001.1", - "6.17.0-1002.2", - "6.17.0-1003.3", - "6.17.0-1004.4", - "6.17.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-cloud-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-azure-headers-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-azure-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-azure", - "binary_version": "6.17.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-azure-fde", - "purl": "pkg:deb/ubuntu/linux-azure-fde@6.17.0-1003.3?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.17.0-1003.3" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-azure-fde-cloud-tools-6.17.0-1003", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-azure-fde-headers-6.17.0-1003", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-azure-fde-tools-6.17.0-1003", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-headers-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-modules-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - }, - { - "binary_name": "linux-tools-6.17.0-1003-azure-fde", - "binary_version": "6.17.0-1003.3" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-gcp", - "purl": "pkg:deb/ubuntu/linux-gcp@6.17.0-1006.6?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1006.6", - "6.14.0-1009.9+25.10.1", - "6.16.0-1001.1", - "6.17.0-1001.1", - "6.17.0-1002.2", - "6.17.0-1003.3", - "6.17.0-1004.4", - "6.17.0-1005.5", - "6.17.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-1006-gcp", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1006-gcp-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-gcp-headers-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-gcp-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-gcp", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-gcp-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-gcp", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-gcp-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-gcp", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-gcp-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-gcp", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-gcp-64k", - "binary_version": "6.17.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-oracle", - "purl": "pkg:deb/ubuntu/linux-oracle@6.17.0-1006.6?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1005.5", - "6.14.0-1007.7+25.10.1", - "6.16.0-1001.1", - "6.17.0-1001.1", - "6.17.0-1002.2", - "6.17.0-1003.3", - "6.17.0-1005.5", - "6.17.0-1006.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-1006-oracle", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-buildinfo-6.17.0-1006-oracle-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-oracle", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-headers-6.17.0-1006-oracle-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-oracle", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1006-oracle-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-oracle", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-modules-6.17.0-1006-oracle-64k", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-oracle-headers-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-oracle-tools-6.17.0-1006", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-oracle", - "binary_version": "6.17.0-1006.6" - }, - { - "binary_name": "linux-tools-6.17.0-1006-oracle-64k", - "binary_version": "6.17.0-1006.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-raspi", - "purl": "pkg:deb/ubuntu/linux-raspi@6.17.0-1007.7?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1005.5", - "6.17.0-1003.3", - "6.17.0-1004.4", - "6.17.0-1005.5", - "6.17.0-1006.6", - "6.17.0-1007.7" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-1007-raspi", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-headers-6.17.0-1007-raspi", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-image-6.17.0-1007-raspi", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-modules-6.17.0-1007-raspi", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-raspi-headers-6.17.0-1007", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-raspi-tools-6.17.0-1007", - "binary_version": "6.17.0-1007.7" - }, - { - "binary_name": "linux-tools-6.17.0-1007-raspi", - "binary_version": "6.17.0-1007.7" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-realtime", - "purl": "pkg:deb/ubuntu/linux-realtime@6.17.0-1005.6?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-1002.2", - "6.17.0-1001.2", - "6.17.0-1002.3", - "6.17.0-1003.4", - "6.17.0-1004.5", - "6.17.0-1005.6" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-cloud-tools-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-headers-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-image-unsigned-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-modules-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-modules-iwlwifi-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-realtime-cloud-tools-6.17.0-1005", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-realtime-headers-6.17.0-1005", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-realtime-tools-6.17.0-1005", - "binary_version": "6.17.0-1005.6" - }, - { - "binary_name": "linux-tools-6.17.0-1005-realtime", - "binary_version": "6.17.0-1005.6" - } - ] - } - }, - { - "package": { - "ecosystem": "Ubuntu:25.10", - "name": "linux-riscv", - "purl": "pkg:deb/ubuntu/linux-riscv@6.17.0-8.8.1?arch=source&distro=questing" - }, - "ranges": [ - { - "type": "ECOSYSTEM", - "events": [ - { - "introduced": "0" - } - ] - } - ], - "versions": [ - "6.14.0-13.13.2", - "6.17.0-4.4.1", - "6.17.0-5.5.1", - "6.17.0-6.6.1", - "6.17.0-7.7.1", - "6.17.0-8.8.1" - ], - "ecosystem_specific": { - "binaries": [ - { - "binary_name": "linux-buildinfo-6.17.0-8-generic", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-headers-6.17.0-8-generic", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-image-6.17.0-8-generic", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-modules-6.17.0-8-generic", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-riscv-headers-6.17.0-8", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-riscv-tools-6.17.0-8", - "binary_version": "6.17.0-8.8.1" - }, - { - "binary_name": "linux-tools-6.17.0-8-generic", - "binary_version": "6.17.0-8.8.1" - } - ] - } - } - ], - "references": [ - { - "type": "REPORT", - "url": "https://ubuntu.com/security/CVE-2025-71115" - }, - { - "type": "REPORT", - "url": "https://www.cve.org/CVERecord?id=CVE-2025-71115" - }, - { - "type": "REPORT", - "url": "https://git.kernel.org/stable/c/7b5d4416964c07c902163822a30a622111172b01" - }, - { - "type": "REPORT", - "url": "https://git.kernel.org/stable/c/dbbf6d47130674640cd12a0781a0fb2a575d0e44" - } - ] -} \ No newline at end of file From ecb69142051d20179d0b400dbe1fab3b6e130c9b Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Thu, 5 Feb 2026 15:59:56 +0530 Subject: [PATCH 10/10] Collect ubuntu priority severity Signed-off-by: Keshav Priyadarshi --- vulnerabilities/importers/__init__.py | 2 + ...dvisoryseverity_scoring_system_and_more.py | 10 ++-- vulnerabilities/pipes/osv_v2.py | 46 ++++++++++++------- vulnerabilities/severity_systems.py | 10 ++-- .../ubuntu_osv_advisoryv2-expected.json | 36 +++++++-------- 5 files changed, 59 insertions(+), 45 deletions(-) diff --git a/vulnerabilities/importers/__init__.py b/vulnerabilities/importers/__init__.py index bc4a4296d..be084844b 100644 --- a/vulnerabilities/importers/__init__.py +++ b/vulnerabilities/importers/__init__.py @@ -74,6 +74,7 @@ from vulnerabilities.pipelines.v2_importers import pysec_importer as pysec_importer_v2 from vulnerabilities.pipelines.v2_importers import redhat_importer as redhat_importer_v2 from vulnerabilities.pipelines.v2_importers import ruby_importer as ruby_importer_v2 +from vulnerabilities.pipelines.v2_importers import ubuntu_osv_importer as ubuntu_osv_importer_v2 from vulnerabilities.pipelines.v2_importers import vulnrichment_importer as vulnrichment_importer_v2 from vulnerabilities.pipelines.v2_importers import xen_importer as xen_importer_v2 from vulnerabilities.utils import create_registry @@ -107,6 +108,7 @@ debian_importer_v2.DebianImporterPipeline, mattermost_importer_v2.MattermostImporterPipeline, apache_tomcat_v2.ApacheTomcatImporterPipeline, + ubuntu_osv_importer_v2.UbuntuOSVImporterPipeline, nvd_importer.NVDImporterPipeline, github_importer.GitHubAPIImporterPipeline, gitlab_importer.GitLabImporterPipeline, diff --git a/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py b/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py index d01846912..414ff6943 100644 --- a/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py +++ b/vulnerabilities/migrations/0112_alter_advisoryseverity_scoring_system_and_more.py @@ -1,4 +1,4 @@ -# Generated by Django 4.2.25 on 2026-02-04 07:49 +# Generated by Django 4.2.25 on 2026-02-05 10:10 from django.db import migrations, models @@ -29,9 +29,9 @@ class Migration(migrations.Migration): ("epss", "Exploit Prediction Scoring System"), ("ssvc", "Stakeholder-Specific Vulnerability Categorization"), ("openssl", "OpenSSL Severity"), - ("ubuntu", "Ubuntu priority"), + ("ubuntu-priority", "Ubuntu Priority"), ], - help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu: Ubuntu priority ", + help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu-priority: Ubuntu Priority ", max_length=50, ), ), @@ -54,9 +54,9 @@ class Migration(migrations.Migration): ("epss", "Exploit Prediction Scoring System"), ("ssvc", "Stakeholder-Specific Vulnerability Categorization"), ("openssl", "OpenSSL Severity"), - ("ubuntu", "Ubuntu priority"), + ("ubuntu-priority", "Ubuntu Priority"), ], - help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu: Ubuntu priority ", + help_text="Identifier for the scoring system used. Available choices are: cvssv2: CVSSv2 Base Score,\ncvssv3: CVSSv3 Base Score,\ncvssv3.1: CVSSv3.1 Base Score,\ncvssv4: CVSSv4 Base Score,\nrhbs: RedHat Bugzilla severity,\nrhas: RedHat Aggregate severity,\narchlinux: Archlinux Vulnerability Group Severity,\ncvssv3.1_qr: CVSSv3.1 Qualitative Severity Rating,\ngeneric_textual: Generic textual severity rating,\napache_httpd: Apache Httpd Severity,\napache_tomcat: Apache Tomcat Severity,\nepss: Exploit Prediction Scoring System,\nssvc: Stakeholder-Specific Vulnerability Categorization,\nopenssl: OpenSSL Severity,\nubuntu-priority: Ubuntu Priority ", max_length=50, ), ), diff --git a/vulnerabilities/pipes/osv_v2.py b/vulnerabilities/pipes/osv_v2.py index 777c1a4e1..666927ac3 100644 --- a/vulnerabilities/pipes/osv_v2.py +++ b/vulnerabilities/pipes/osv_v2.py @@ -51,6 +51,12 @@ "crates.io": "cargo", } +OSV_TO_VCIO_SEVERITY_MAP = { + "cvss_v3": "cvssv3.1", + "cvss_v4": "cvssv4", + "ubuntu": "ubuntu-priority", +} + def parse_advisory_data_v3( raw_data: dict, supported_ecosystems, advisory_url: str, advisory_text: str @@ -242,27 +248,33 @@ def get_severities(raw_data, url) -> Iterable[VulnerabilitySeverity]: try: for severity in raw_data.get("severity") or []: severity_type = severity.get("type") - score = severity.get("score") + value = severity.get("score") + severity_type = severity_type.lower() + scoring_element = None + + if ( + severity_type not in SCORING_SYSTEMS + and severity_type not in OSV_TO_VCIO_SEVERITY_MAP + ): + logger.error( + f"Unsupported severity type: {severity!r} for OSV id: {raw_data.get('id')!r}" + ) + continue - if severity_type == "CVSS_V3": - system = SCORING_SYSTEMS["cvssv3.1"] - valid_vector = score[:-1] if score and score.endswith("/") else score - value = system.compute(valid_vector) - yield VulnerabilitySeverity(system=system, value=value, scoring_elements=score) + severity_type = OSV_TO_VCIO_SEVERITY_MAP.get(severity_type, severity_type) + system = SCORING_SYSTEMS[severity_type] - elif severity_type == "CVSS_V4": - system = SCORING_SYSTEMS["cvssv4"] - valid_vector = score[:-1] if score and score.endswith("/") else score + if severity_type in ["cvssv3.1", "cvssv4"]: + scoring_element = value + valid_vector = value[:-1] if value and value.endswith("/") else value value = system.compute(valid_vector) - yield VulnerabilitySeverity(system=system, value=value, scoring_elements=score) - elif severity_type.lower() in SCORING_SYSTEMS: - system = SCORING_SYSTEMS[severity_type.lower()] - yield VulnerabilitySeverity(system=system, value=score, url=url) - else: - logger.error( - f"Unsupported severity type: {severity!r} for OSV id: {raw_data.get('id')!r}" - ) + yield VulnerabilitySeverity( + system=system, + value=value, + scoring_elements=scoring_element, + url=url, + ) except (CVSS3MalformedError, CVSS4MalformedError) as e: logger.error(f"Invalid severity {e}") diff --git a/vulnerabilities/severity_systems.py b/vulnerabilities/severity_systems.py index a25079070..27f9d7d1a 100644 --- a/vulnerabilities/severity_systems.py +++ b/vulnerabilities/severity_systems.py @@ -196,12 +196,12 @@ def get(self, scoring_elements: str) -> dict: "Low", ] -UBUNTU = ScoringSystem( - identifier="ubuntu", - name="Ubuntu priority", +UBUNTU_PRIORITY = ScoringSystem( + identifier="ubuntu-priority", + name="Ubuntu Priority", url="https://ubuntu.com/security/cves/about#priority", ) -UBUNTU.choices = [ +UBUNTU_PRIORITY.choices = [ "Critical", "High", "Medium", @@ -252,6 +252,6 @@ def get(self, scoring_elements: str): EPSS, SSVC, OPENSSL, - UBUNTU, + UBUNTU_PRIORITY, ) } diff --git a/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json index ba10bc272..f1dfe2f5d 100644 --- a/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json +++ b/vulnerabilities/tests/test_data/ubuntu/ubuntu_osv_advisoryv2-expected.json @@ -36,9 +36,9 @@ "patches": [], "severities": [ { - "system": "ubuntu", + "system": "ubuntu-priority", "value": "low", - "scoring_elements": "" + "scoring_elements": null } ], "date_published": "2014-04-05T21:55:00+00:00", @@ -139,9 +139,9 @@ "patches": [], "severities": [ { - "system": "ubuntu", + "system": "ubuntu-priority", "value": "medium", - "scoring_elements": "" + "scoring_elements": null } ], "date_published": "2020-05-24T00:00:00+00:00", @@ -199,9 +199,9 @@ "patches": [], "severities": [ { - "system": "ubuntu", + "system": "ubuntu-priority", "value": "low", - "scoring_elements": "" + "scoring_elements": null } ], "date_published": "2010-04-06T16:30:00+00:00", @@ -250,9 +250,9 @@ "patches": [], "severities": [ { - "system": "ubuntu", + "system": "ubuntu-priority", "value": "low", - "scoring_elements": "" + "scoring_elements": null } ], "date_published": "2015-03-17T00:00:00+00:00", @@ -342,15 +342,15 @@ ], "patches": [], "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, { "system": "cvssv3.1", "value": "9.8", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H" + }, + { + "system": "ubuntu-priority", + "value": "medium", + "scoring_elements": null } ], "date_published": "2020-03-23T22:15:00+00:00", @@ -440,11 +440,6 @@ ], "patches": [], "severities": [ - { - "system": "ubuntu", - "value": "medium", - "scoring_elements": "" - }, { "system": "cvssv3.1", "value": "4.2", @@ -459,6 +454,11 @@ "system": "cvssv4", "value": "2.3", "scoring_elements": "CVSS:4.0/AV:N/AC:H/AT:P/PR:L/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N" + }, + { + "system": "ubuntu-priority", + "value": "medium", + "scoring_elements": null } ], "date_published": "2025-12-09T16:17:00+00:00",