From 75f92e046bc7173cc4a46a52ad11f5708427fe2c Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Thu, 13 Feb 2025 17:13:28 +0530 Subject: [PATCH 1/4] Migrate Advisory aliases field to M2M relationship Signed-off-by: Keshav Priyadarshi --- .../0089_migrate_advisory_aliases.py | 117 ++++++++++++++++++ vulnerabilities/models.py | 9 +- vulnerabilities/tests/test_changelog.py | 9 +- 3 files changed, 128 insertions(+), 7 deletions(-) create mode 100644 vulnerabilities/migrations/0089_migrate_advisory_aliases.py diff --git a/vulnerabilities/migrations/0089_migrate_advisory_aliases.py b/vulnerabilities/migrations/0089_migrate_advisory_aliases.py new file mode 100644 index 000000000..928c6363e --- /dev/null +++ b/vulnerabilities/migrations/0089_migrate_advisory_aliases.py @@ -0,0 +1,117 @@ +# +# 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 aboutcode.pipeline import LoopProgress +from django.db import migrations +from django.db import models + +""" +Model and data migration for converting the Advisory aliases +JSON field to a concrete M2M Advisory Alias relationship. +""" + +def bulk_update(model, items, fields, logger): + item_count = 0 + if items: + try: + model.objects.bulk_update(objs=items, fields=fields) + item_count += len(items) + except Exception as e: + logger(f"Error updating Advisory: {e}") + items.clear() + return item_count + + +class Migration(migrations.Migration): + + dependencies = [ + ("vulnerabilities", "0088_fix_alpine_purl_type"), + ] + + def populate_new_advisory_aliases_field(apps, schema_editor): + Advisory = apps.get_model("vulnerabilities", "Advisory") + Alias = apps.get_model("vulnerabilities", "Alias") + advisories = Advisory.objects.all() + + chunk_size = 10000 + advisories_count = advisories.count() + print(f"\nPopulate new advisory aliases relationship.") + progress = LoopProgress( + total_iterations=advisories_count, + logger=print, + progress_step=1, + ) + for advisory in progress.iter(advisories.iterator(chunk_size=chunk_size)): + aliases = Alias.objects.filter(alias__in=advisory.old_aliases) + advisory.aliases.set(aliases) + + def reverse_populate_new_advisory_aliases_field(apps, schema_editor): + Advisory = apps.get_model("vulnerabilities", "Advisory") + advisories = Advisory.objects.all() + + updated_advisory_count = 0 + batch_size = 10000 + chunk_size = 10000 + updated_advisory = [] + progress = LoopProgress( + total_iterations=advisories.count(), + logger=print, + progress_step=1, + ) + for advisory in progress.iter(advisories.iterator(chunk_size=chunk_size)): + aliases = advisory.aliases.all() + advisory.old_aliases = [alias.alias for alias in aliases] + updated_advisory.append(advisory) + + if len(updated_advisory) > batch_size: + updated_advisory_count += bulk_update( + model=Advisory, + items=updated_advisory, + fields=["old_aliases"], + logger=print, + ) + + updated_advisory_count += bulk_update( + model=Advisory, + items=updated_advisory, + fields=["old_aliases"], + logger=print, + ) + + operations = [ + # Rename aliases field to old_aliases + migrations.AlterModelOptions( + name="advisory", + options={"ordering": ["date_published", "unique_content_id"]}, + ), + migrations.AlterUniqueTogether( + name="advisory", + unique_together={("unique_content_id", "date_published", "url")}, + ), + migrations.RenameField( + model_name="advisory", + old_name="aliases", + new_name="old_aliases", + ), + migrations.AddField( + model_name="advisory", + name="aliases", + field=models.ManyToManyField(related_name="advisories", to="vulnerabilities.alias"), + ), + # Populate the new M2M aliases relation + migrations.RunPython( + code=populate_new_advisory_aliases_field, + reverse_code=reverse_populate_new_advisory_aliases_field, + ), + # Delete old_alias field + migrations.RemoveField( + model_name="advisory", + name="old_aliases", + ), + ] diff --git a/vulnerabilities/models.py b/vulnerabilities/models.py index 9b6df7c13..4a0428feb 100644 --- a/vulnerabilities/models.py +++ b/vulnerabilities/models.py @@ -1318,7 +1318,10 @@ class Advisory(models.Model): max_length=32, blank=True, ) - aliases = models.JSONField(blank=True, default=list, help_text="A list of alias strings") + aliases = models.ManyToManyField( + Alias, + related_name="advisories", + ) summary = models.TextField( blank=True, ) @@ -1353,8 +1356,8 @@ class Advisory(models.Model): objects = AdvisoryQuerySet.as_manager() class Meta: - unique_together = ["aliases", "unique_content_id", "date_published", "url"] - ordering = ["aliases", "date_published", "unique_content_id"] + unique_together = ["unique_content_id", "date_published", "url"] + ordering = ["date_published", "unique_content_id"] def save(self, *args, **kwargs): checksum = hashlib.md5() diff --git a/vulnerabilities/tests/test_changelog.py b/vulnerabilities/tests/test_changelog.py index 1d5eedaea..3f762ac5e 100644 --- a/vulnerabilities/tests/test_changelog.py +++ b/vulnerabilities/tests/test_changelog.py @@ -17,6 +17,7 @@ from vulnerabilities import models from vulnerabilities.importer import AffectedPackage from vulnerabilities.pipelines.npm_importer import NpmImporterPipeline +from vulnerabilities.pipes.advisory import get_or_create_aliases @pytest.mark.django_db @@ -37,8 +38,8 @@ def test_package_changelog(): fixed_version=SemverVersion("1.0"), ).to_dict() ], - aliases=["CVE-123"], ) + adv.aliases.add(*get_or_create_aliases(["CVE-123"])) NpmImporterPipeline().import_advisory(advisory=adv) assert models.PackageChangeLog.objects.filter(package=pkg).count() == 1 NpmImporterPipeline().import_advisory(advisory=adv) @@ -65,8 +66,8 @@ def test_package_changelog(): affected_version_range=NpmVersionRange.from_native(">=2.0"), ).to_dict() ], - aliases=["CVE-145"], ) + adv.aliases.add(*get_or_create_aliases(["CVE-123"])) NpmImporterPipeline().import_advisory(advisory=adv) assert models.PackageChangeLog.objects.filter(package=pkg1).count() == 1 NpmImporterPipeline().import_advisory(advisory=adv) @@ -96,8 +97,8 @@ def test_vulnerability_changelog(): fixed_version=SemverVersion("1.0"), ).to_dict() ], - aliases=["CVE-TEST-1234"], ) + adv.aliases.add(*get_or_create_aliases(["CVE-TEST-1234"])) NpmImporterPipeline().import_advisory(advisory=adv) # 1 Changelogs is expected here: # 1 for importing vuln details @@ -129,8 +130,8 @@ def test_vulnerability_changelog_software_version(): fixed_version=SemverVersion("1.0"), ).to_dict() ], - aliases=["CVE-TEST-1234"], ) + adv.aliases.add(*get_or_create_aliases(["CVE-TEST-1234"])) NpmImporterPipeline().import_advisory(advisory=adv) npm_vulnerability_log = models.VulnerabilityChangeLog.objects.first() From 927833fd2e586b6e9a22be50e01b3194be69ae2e Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Sun, 23 Feb 2025 19:41:17 +0530 Subject: [PATCH 2/4] Make Alias vulnerability field optional Signed-off-by: Keshav Priyadarshi --- .../migrations/0089_migrate_advisory_aliases.py | 16 +++++++++++++++- vulnerabilities/models.py | 6 ++++-- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/vulnerabilities/migrations/0089_migrate_advisory_aliases.py b/vulnerabilities/migrations/0089_migrate_advisory_aliases.py index 928c6363e..a9f88b711 100644 --- a/vulnerabilities/migrations/0089_migrate_advisory_aliases.py +++ b/vulnerabilities/migrations/0089_migrate_advisory_aliases.py @@ -10,6 +10,7 @@ from aboutcode.pipeline import LoopProgress from django.db import migrations from django.db import models +import django.db.models.deletion """ Model and data migration for converting the Advisory aliases @@ -85,6 +86,19 @@ def reverse_populate_new_advisory_aliases_field(apps, schema_editor): ) operations = [ + # Make vulnerability relation optional + migrations.AlterField( + model_name="alias", + name="vulnerability", + field=models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + related_name="aliases", + to="vulnerabilities.vulnerability", + ), + ), + # Rename aliases field to old_aliases migrations.AlterModelOptions( name="advisory", @@ -109,7 +123,7 @@ def reverse_populate_new_advisory_aliases_field(apps, schema_editor): code=populate_new_advisory_aliases_field, reverse_code=reverse_populate_new_advisory_aliases_field, ), - # Delete old_alias field + # Delete JSON aliases field migrations.RemoveField( model_name="advisory", name="old_aliases", diff --git a/vulnerabilities/models.py b/vulnerabilities/models.py index 4a0428feb..7f5324e2a 100644 --- a/vulnerabilities/models.py +++ b/vulnerabilities/models.py @@ -1275,8 +1275,10 @@ class Alias(models.Model): vulnerability = models.ForeignKey( Vulnerability, - on_delete=models.CASCADE, related_name="aliases", + on_delete=models.SET_NULL, + null=True, + blank=True, ) objects = AliasQuerySet.as_manager() @@ -1378,7 +1380,7 @@ def to_advisory_data(self) -> "AdvisoryData": from vulnerabilities.importer import Reference return AdvisoryData( - aliases=self.aliases, + aliases=[item.alias for item in self.aliases.all()], summary=self.summary, affected_packages=[ AffectedPackage.from_dict(pkg) for pkg in self.affected_packages if pkg From 30d61cabd8b13088f82f365fdb415566d3ef23b1 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Sun, 23 Feb 2025 20:04:04 +0530 Subject: [PATCH 3/4] Use advisory alias relation in pipelines and importer Signed-off-by: Keshav Priyadarshi --- vulnerabilities/import_runner.py | 40 ++++++++++--------- .../improvers/vulnerability_status.py | 6 +-- .../pipelines/add_cvss31_to_CVEs.py | 11 ++--- vulnerabilities/pipes/advisory.py | 20 +++++++--- 4 files changed, 41 insertions(+), 36 deletions(-) diff --git a/vulnerabilities/import_runner.py b/vulnerabilities/import_runner.py index 0dcafda10..7a81e34da 100644 --- a/vulnerabilities/import_runner.py +++ b/vulnerabilities/import_runner.py @@ -15,6 +15,7 @@ from django.core.exceptions import ValidationError from django.db import transaction +from django.db.models.query import QuerySet from vulnerabilities.importer import AdvisoryData from vulnerabilities.importer import Importer @@ -96,12 +97,14 @@ def process_advisories( Insert advisories into the database Return the number of inserted advisories. """ + from vulnerabilities.pipes.advisory import get_or_create_aliases + count = 0 advisories = [] for data in advisory_datas: try: + aliases = get_or_create_aliases(aliases=data.aliases) obj, created = Advisory.objects.get_or_create( - aliases=data.aliases, summary=data.summary, affected_packages=[pkg.to_dict() for pkg in data.affected_packages], references=[ref.to_dict() for ref in data.references], @@ -113,6 +116,7 @@ def process_advisories( }, url=data.url, ) + obj.aliases.add(*aliases) if not obj.date_imported: advisories.append(obj) except Exception as e: @@ -148,6 +152,8 @@ def process_inferences(inferences: List[Inference], advisory: Advisory, improver erroneous. Also, the atomic transaction for every advisory and its inferences makes sure that date_imported of advisory is consistent. """ + from vulnerabilities.pipes.advisory import get_or_create_aliases + inferences_processed_count = 0 if not inferences: @@ -157,9 +163,10 @@ def process_inferences(inferences: List[Inference], advisory: Advisory, improver logger.info(f"Improving advisory id: {advisory.id}") for inference in inferences: + aliases = get_or_create_aliases(inference.aliases) vulnerability = get_or_create_vulnerability_and_aliases( vulnerability_id=inference.vulnerability_id, - aliases=inference.aliases, + aliases=aliases, summary=inference.summary, advisory=advisory, ) @@ -265,14 +272,13 @@ def create_valid_vulnerability_reference(url, reference_id=None): def get_or_create_vulnerability_and_aliases( - aliases: List[str], vulnerability_id=None, summary=None, advisory=None + aliases: QuerySet, vulnerability_id=None, summary=None, advisory=None ): """ Get or create vulnerabilitiy and aliases such that all existing and new aliases point to the same vulnerability """ - aliases = set(alias.strip() for alias in aliases if alias and alias.strip()) - new_alias_names, existing_vulns = get_vulns_for_aliases_and_get_new_aliases(aliases) + new_aliases, existing_vulns = get_vulns_for_aliases_and_get_new_aliases(aliases) # All aliases must point to the same vulnerability vulnerability = None @@ -310,11 +316,11 @@ def get_or_create_vulnerability_and_aliases( # f"Inconsistent summary for {vulnerability.vulnerability_id}. " # f"Existing: {vulnerability.summary!r}, provided: {summary!r}" # ) - associate_vulnerability_with_aliases(vulnerability=vulnerability, aliases=new_alias_names) + associate_vulnerability_with_aliases(vulnerability=vulnerability, aliases=new_aliases) else: try: vulnerability = create_vulnerability_and_add_aliases( - aliases=new_alias_names, summary=summary + aliases=new_aliases, summary=summary ) importer_name = get_importer_name(advisory) VulnerabilityChangeLog.log_import( @@ -324,24 +330,22 @@ def get_or_create_vulnerability_and_aliases( ) except Exception as e: logger.error( - f"Cannot create vulnerability with summary {summary!r} and {new_alias_names!r} {e!r}.\n{traceback_format_exc()}." + f"Cannot create vulnerability with summary {summary!r} and {new_aliases!r} {e!r}.\n{traceback_format_exc()}." ) return return vulnerability -def get_vulns_for_aliases_and_get_new_aliases(aliases): +def get_vulns_for_aliases_and_get_new_aliases(aliases: QuerySet): """ Return ``new_aliases`` that are not in the database and ``existing_vulns`` that point to the given ``aliases``. """ - new_aliases = set(aliases) - existing_vulns = set() - for alias in Alias.objects.filter(alias__in=aliases): - existing_vulns.add(alias.vulnerability) - new_aliases.remove(alias.alias) - return new_aliases, existing_vulns + new_aliases = aliases.filter(vulnerability__isnull=True) + existing_vulns = [alias.vulnerability for alias in aliases.filter(vulnerability__isnull=False)] + + return new_aliases, list(set(existing_vulns)) @transaction.atomic @@ -360,7 +364,5 @@ def create_vulnerability_and_add_aliases(aliases, summary): def associate_vulnerability_with_aliases(aliases, vulnerability): - for alias_name in aliases: - alias = Alias(alias=alias_name, vulnerability=vulnerability) - alias.save() - logger.info(f"New alias for {vulnerability!r}: {alias_name}") + aliases.update(vulnerability=vulnerability) + logger.info(f"New alias for {vulnerability!r}: {aliases}") diff --git a/vulnerabilities/improvers/vulnerability_status.py b/vulnerabilities/improvers/vulnerability_status.py index 214e6dc35..e9661344e 100644 --- a/vulnerabilities/improvers/vulnerability_status.py +++ b/vulnerabilities/improvers/vulnerability_status.py @@ -37,11 +37,7 @@ class VulnerabilityStatusImprover(Improver): @property def interesting_advisories(self) -> QuerySet: - return ( - Advisory.objects.filter(Q(created_by=NVDImporterPipeline.pipeline_id)) - .distinct("aliases") - .paginated() - ) + return Advisory.objects.filter(Q(created_by=NVDImporterPipeline.pipeline_id)).paginated() def get_inferences(self, advisory_data: AdvisoryData) -> Iterable[Inference]: """ diff --git a/vulnerabilities/pipelines/add_cvss31_to_CVEs.py b/vulnerabilities/pipelines/add_cvss31_to_CVEs.py index acda42b52..a9791d29c 100644 --- a/vulnerabilities/pipelines/add_cvss31_to_CVEs.py +++ b/vulnerabilities/pipelines/add_cvss31_to_CVEs.py @@ -12,6 +12,7 @@ from vulnerabilities import severity_systems from vulnerabilities.models import Advisory +from vulnerabilities.models import Alias from vulnerabilities.models import VulnerabilitySeverity from vulnerabilities.pipelines import VulnerableCodePipeline @@ -48,7 +49,6 @@ def process_cve_advisory_mapping(self): results = [] for severity in progress.iter(nvd_severities.paginated(per_page=batch_size)): - print(severity.url) cve_pattern = re.compile(r"(CVE-\d{4}-\d{4,7})").search cve_match = cve_pattern(severity.url) if cve_match: @@ -57,12 +57,10 @@ def process_cve_advisory_mapping(self): self.log(f"Could not find CVE ID in URL: {severity.url}") continue - matching_advisories = Advisory.objects.filter( - aliases=[cve_id], - created_by="nvd_importer", - ) + if matching_alias := Alias.objects.get(alias=cve_id): + matching_advisories = matching_alias.advisories.filter(created_by="nvd_importer") - for advisory in matching_advisories: + for advisory in matching_advisories or []: for reference in advisory.references: for sev in reference.get("severities", []): if sev.get("system") == "cvssv3.1": @@ -76,7 +74,6 @@ def process_cve_advisory_mapping(self): ) if results: - print(results) self._process_batch(results) self.log(f"Completed processing CVE to Advisory mappings") diff --git a/vulnerabilities/pipes/advisory.py b/vulnerabilities/pipes/advisory.py index 6637122a3..3b33438ec 100644 --- a/vulnerabilities/pipes/advisory.py +++ b/vulnerabilities/pipes/advisory.py @@ -12,6 +12,7 @@ from datetime import timezone from traceback import format_exc as traceback_format_exc from typing import Callable +from typing import List from django.db import transaction @@ -19,6 +20,7 @@ from vulnerabilities.improver import MAX_CONFIDENCE from vulnerabilities.models import Advisory from vulnerabilities.models import AffectedByPackageRelatedVulnerability +from vulnerabilities.models import Alias from vulnerabilities.models import FixingPackageRelatedVulnerability from vulnerabilities.models import Package from vulnerabilities.models import VulnerabilityReference @@ -27,11 +29,17 @@ from vulnerabilities.models import Weakness +def get_or_create_aliases(aliases: List) -> List: + for alias in aliases: + Alias.objects.get_or_create(alias=alias) + return Alias.objects.filter(alias__in=aliases) + + def insert_advisory(advisory: AdvisoryData, pipeline_id: str, logger: Callable = None): - obj = None + advisory_obj = None + aliases = get_or_create_aliases(aliases=advisory.aliases) try: - obj, _ = Advisory.objects.get_or_create( - aliases=advisory.aliases, + advisory_obj, _ = Advisory.objects.get_or_create( summary=advisory.summary, affected_packages=[pkg.to_dict() for pkg in advisory.affected_packages], references=[ref.to_dict() for ref in advisory.references], @@ -43,6 +51,7 @@ def insert_advisory(advisory: AdvisoryData, pipeline_id: str, logger: Callable = "date_collected": datetime.now(timezone.utc), }, ) + advisory_obj.aliases.add(*aliases) except Exception as e: if logger: logger( @@ -50,7 +59,7 @@ def insert_advisory(advisory: AdvisoryData, pipeline_id: str, logger: Callable = level=logging.ERROR, ) - return obj + return advisory_obj @transaction.atomic @@ -82,9 +91,10 @@ def import_advisory( affected_purls.extend(package_affected_purls) fixed_purls.extend(package_fixed_purls) + aliases = get_or_create_aliases(advisory_data.aliases) vulnerability = import_runner.get_or_create_vulnerability_and_aliases( vulnerability_id=None, - aliases=advisory_data.aliases, + aliases=aliases, summary=advisory_data.summary, advisory=advisory, ) From 2551014dc79abe7ad337e370c40f8385e385e234 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Sun, 23 Feb 2025 20:07:17 +0530 Subject: [PATCH 4/4] Update the test fixture to use the new alias field Signed-off-by: Keshav Priyadarshi --- .../tests/pipelines/test_base_pipeline.py | 11 +- .../pipelines/test_nginx_importer_pipeline.py | 1 - vulnerabilities/tests/pipes/test_advisory.py | 7 +- vulnerabilities/tests/test_add_cvsssv31.py | 18 +- ...security_advisories-importer-expected.json | 1471 ++++--- ...security_advisories-importer-expected.json | 3547 +++++++---------- vulnerabilities/tests/test_example.py | 2 +- vulnerabilities/tests/test_import_runner.py | 5 +- vulnerabilities/tests/test_openssl.py | 1 - .../tests/test_postgres_workaround.py | 5 +- .../test_vulnerability_status_improver.py | 19 +- 11 files changed, 2114 insertions(+), 2973 deletions(-) diff --git a/vulnerabilities/tests/pipelines/test_base_pipeline.py b/vulnerabilities/tests/pipelines/test_base_pipeline.py index 02e8c6b09..7d16315ad 100644 --- a/vulnerabilities/tests/pipelines/test_base_pipeline.py +++ b/vulnerabilities/tests/pipelines/test_base_pipeline.py @@ -20,6 +20,7 @@ from vulnerabilities.importer import Reference from vulnerabilities.pipelines import VulnerableCodeBaseImporterPipeline from vulnerabilities.pipelines import VulnerableCodePipeline +from vulnerabilities.pipes.advisory import get_or_create_aliases from vulnerabilities.tests.pipelines import TestLogger advisory_data1 = AdvisoryData( @@ -38,8 +39,7 @@ def get_advisory1(created_by="test_pipeline"): - return models.Advisory.objects.create( - aliases=advisory_data1.aliases, + adv = models.Advisory.objects.create( summary=advisory_data1.summary, affected_packages=[pkg.to_dict() for pkg in advisory_data1.affected_packages], references=[ref.to_dict() for ref in advisory_data1.references], @@ -47,6 +47,8 @@ def get_advisory1(created_by="test_pipeline"): created_by=created_by, date_collected=timezone.now(), ) + adv.aliases.add(*get_or_create_aliases(advisory_data1.aliases)) + return adv class TestVulnerableCodePipeline(TestCase): @@ -101,7 +103,7 @@ def test_collect_and_store_advisories(self, mock_advisories_count, mock_collect_ self.assertEqual(1, models.Advisory.objects.count()) collected_advisory = models.Advisory.objects.first() - result_aliases = collected_advisory.aliases + result_aliases = [item.alias for item in collected_advisory.aliases.all()] expected_aliases = advisory_data1.aliases self.assertEqual(expected_aliases, result_aliases) @@ -122,4 +124,5 @@ def test_import_new_advisories(self): self.assertEqual(1, imported_vulnerability.aliases.count()) expected_alias = imported_vulnerability.aliases.first() - self.assertEqual(advisory1.aliases[0], expected_alias.alias) + result_alias = advisory1.aliases.first() + self.assertEqual(result_alias.alias, expected_alias.alias) diff --git a/vulnerabilities/tests/pipelines/test_nginx_importer_pipeline.py b/vulnerabilities/tests/pipelines/test_nginx_importer_pipeline.py index c4bce99a6..80f3705bf 100644 --- a/vulnerabilities/tests/pipelines/test_nginx_importer_pipeline.py +++ b/vulnerabilities/tests/pipelines/test_nginx_importer_pipeline.py @@ -30,7 +30,6 @@ ADVISORY_FIELDS_TO_TEST = ( "unique_content_id", - "aliases", "summary", "affected_packages", "references", diff --git a/vulnerabilities/tests/pipes/test_advisory.py b/vulnerabilities/tests/pipes/test_advisory.py index a371ca551..6135fbf59 100644 --- a/vulnerabilities/tests/pipes/test_advisory.py +++ b/vulnerabilities/tests/pipes/test_advisory.py @@ -16,10 +16,10 @@ from vulnerabilities.importer import AdvisoryData from vulnerabilities.importer import AffectedPackage from vulnerabilities.importer import Reference +from vulnerabilities.pipes.advisory import get_or_create_aliases from vulnerabilities.pipes.advisory import import_advisory advisory_data1 = AdvisoryData( - aliases=["CVE-2020-13371337"], summary="vulnerability description here", affected_packages=[ AffectedPackage( @@ -34,8 +34,7 @@ def get_advisory1(created_by="test_pipeline"): - return models.Advisory.objects.create( - aliases=advisory_data1.aliases, + advisory = models.Advisory.objects.create( summary=advisory_data1.summary, affected_packages=[pkg.to_dict() for pkg in advisory_data1.affected_packages], references=[ref.to_dict() for ref in advisory_data1.references], @@ -43,6 +42,8 @@ def get_advisory1(created_by="test_pipeline"): created_by=created_by, date_collected=timezone.now(), ) + advisory.aliases.add(*get_or_create_aliases(advisory_data1.aliases)) + return advisory def get_all_vulnerability_relationships_objects(): diff --git a/vulnerabilities/tests/test_add_cvsssv31.py b/vulnerabilities/tests/test_add_cvsssv31.py index c79b51879..5879ea9a2 100644 --- a/vulnerabilities/tests/test_add_cvsssv31.py +++ b/vulnerabilities/tests/test_add_cvsssv31.py @@ -1,14 +1,20 @@ -import unittest -from unittest.mock import Mock -from unittest.mock import patch +# +# 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 django.test import TestCase from vulnerabilities.models import Advisory -from vulnerabilities.models import Alias from vulnerabilities.models import Vulnerability from vulnerabilities.models import VulnerabilitySeverity from vulnerabilities.pipelines.add_cvss31_to_CVEs import CVEAdvisoryMappingPipeline +from vulnerabilities.pipes.advisory import get_or_create_aliases from vulnerabilities.severity_systems import CVSSV3 from vulnerabilities.severity_systems import CVSSV31 @@ -16,9 +22,8 @@ class TestCVEAdvisoryMappingPipeline(TestCase): def setUp(self): self.pipeline = CVEAdvisoryMappingPipeline() - Advisory.objects.create( + advisory = Advisory.objects.create( created_by="nvd_importer", - aliases=["CVE-2024-1234"], references=[ { "severities": [ @@ -33,6 +38,7 @@ def setUp(self): ], date_collected="2024-09-27T19:38:00Z", ) + advisory.aliases.add(*get_or_create_aliases(["CVE-2024-1234"])) vuln = Vulnerability.objects.create(vulnerability_id="CVE-2024-1234") sev = VulnerabilitySeverity.objects.create( scoring_system=CVSSV3.identifier, diff --git a/vulnerabilities/tests/test_data/nginx/security_advisories-importer-expected.json b/vulnerabilities/tests/test_data/nginx/security_advisories-importer-expected.json index 938e77249..047cb209e 100644 --- a/vulnerabilities/tests/test_data/nginx/security_advisories-importer-expected.json +++ b/vulnerabilities/tests/test_data/nginx/security_advisories-importer-expected.json @@ -1,10 +1,7 @@ [ { - "unique_content_id": "e06ef4fb12b1b0817736222cc219c5be", - "aliases": [ - "CORE-2010-0121" - ], - "summary": "Vulnerabilities with Windows 8.3 filename pseudonyms", + "unique_content_id": "04f5bc12ff49a95a29c459222379abe4", + "summary": "NULL pointer dereference while writing client request body", "affected_packages": [ { "package": { @@ -13,10 +10,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.8.33", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" + "fixed_version": "1.11.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" }, { "package": { @@ -25,87 +22,51 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.7.65", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" + "fixed_version": "1.10.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" } ], - "references": [], - "date_published": null, - "weaknesses": [] - }, - { - "unique_content_id": "dab2e1aa4777dbcd579905643982aab1", - "aliases": [ - "CVE-2009-3896" - ], - "summary": "Null pointer dereference vulnerability", - "affected_packages": [ + "references": [ { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.8.14", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000179.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" }, { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.7.62", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-4450", + "severities": [], + "reference_id": "CVE-2016-4450", + "reference_type": "" }, { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.6.39", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "url": "https://nginx.org/download/patch.2016.write.txt", + "severities": [], + "reference_id": "", + "reference_type": "" }, { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.5.38", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3896", + "url": "https://nginx.org/download/patch.2016.write.txt.asc", "severities": [], - "reference_id": "CVE-2009-3896", + "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.null.pointer.txt", + "url": "https://nginx.org/download/patch.2016.write2.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.null.pointer.txt.asc", + "url": "https://nginx.org/download/patch.2016.write2.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -115,11 +76,8 @@ "weaknesses": [] }, { - "unique_content_id": "91c6638b38a1e6e2ff4997eeefef8cf8", - "aliases": [ - "CVE-2009-3898" - ], - "summary": "Directory traversal vulnerability", + "unique_content_id": "0f21f4e3d88f4af06f0c46d096e90320", + "summary": "Request line parsing vulnerability", "affected_packages": [ { "package": { @@ -130,8 +88,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.8.17", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" + "fixed_version": "1.5.7", + "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" }, { "package": { @@ -142,15 +100,39 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.7.63", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" + "fixed_version": "1.4.4", + "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3898", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4547", "severities": [], - "reference_id": "CVE-2009-3898", + "reference_id": "CVE-2013-4547", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.space.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.space.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -158,11 +140,8 @@ "weaknesses": [] }, { - "unique_content_id": "31675b37fe392d1e36b77f7198b1d008", - "aliases": [ - "CVE-2009-4487" - ], - "summary": "An error log data are not sanitized", + "unique_content_id": "13592aaee15657bff9afca8c98edf8bf", + "summary": "Memory disclosure with specially crafted HTTP backend responses", "affected_packages": [ { "package": { @@ -173,28 +152,9 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": null, - "affected_version_range": "vers:nginx/*" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4487", - "severities": [], - "reference_id": "CVE-2009-4487", - "reference_type": "" - } - ], - "date_published": null, - "weaknesses": [] - }, - { - "unique_content_id": "ef00adb6af6c2a00e81c8ec8de71eed6", - "aliases": [ - "CVE-2010-2263" - ], - "summary": "Vulnerabilities with Windows file default stream", - "affected_packages": [ + "fixed_version": "1.5.0", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" + }, { "package": { "name": "nginx", @@ -202,10 +162,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.8.40", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" + "fixed_version": "1.4.1", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" }, { "package": { @@ -214,17 +174,53 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.7.66", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" + "fixed_version": "1.2.9", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2263", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000114.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2070", "severities": [], - "reference_id": "CVE-2010-2263", + "reference_id": "CVE-2013-2070", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.proxy.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.proxy.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -232,11 +228,8 @@ "weaknesses": [] }, { - "unique_content_id": "eb41c9a738129f7f76c5ff813d190621", - "aliases": [ - "CVE-2010-2266" - ], - "summary": "Vulnerabilities with invalid UTF-8 sequence on Windows", + "unique_content_id": "2537fa6a9e8e84a3c06bb122fcbf468d", + "summary": "Excessive memory usage in HTTP/2 with zero length headers", "affected_packages": [ { "package": { @@ -245,10 +238,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.8.41", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" }, { "package": { @@ -257,17 +250,29 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "0.7.67", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" + "fixed_version": "1.16.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2266", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "severities": [ + { + "value": "low", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9516", "severities": [], - "reference_id": "CVE-2010-2266", + "reference_id": "CVE-2019-9516", "reference_type": "" } ], @@ -275,11 +280,8 @@ "weaknesses": [] }, { - "unique_content_id": "d403898b9315a9ec88d9a401af5352fb", - "aliases": [ - "CVE-2011-4315" - ], - "summary": "Buffer overflow in resolver", + "unique_content_id": "27612bc7cab82114b1549552f5ad48ff", + "summary": "1-byte memory overwrite in resolver", "affected_packages": [ { "package": { @@ -290,8 +292,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.8", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" + "fixed_version": "1.21.0", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" }, { "package": { @@ -302,15 +304,39 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" + "fixed_version": "1.20.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4315", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2021/000300.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23017", "severities": [], - "reference_id": "CVE-2011-4315", + "reference_id": "CVE-2021-23017", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2021.resolver.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2021.resolver.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -318,11 +344,8 @@ "weaknesses": [] }, { - "unique_content_id": "96c2ffdeacca4901942abd83d54f33f5", - "aliases": [ - "CVE-2011-4963" - ], - "summary": "Vulnerabilities with Windows directory aliases", + "unique_content_id": "2ec9de991e2cb7a5a0ba79bed8556a41", + "summary": "Use-after-free during CNAME response processing in resolver", "affected_packages": [ { "package": { @@ -331,10 +354,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "1.3.1", - "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" + "fixed_version": "1.9.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" }, { "package": { @@ -343,15 +366,15 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "os=windows" + "qualifiers": "" }, - "fixed_version": "1.2.1", - "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" + "fixed_version": "1.8.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000086.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", "severities": [ { "value": "medium", @@ -363,9 +386,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4963", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0746", "severities": [], - "reference_id": "CVE-2011-4963", + "reference_id": "CVE-2016-0746", "reference_type": "" } ], @@ -373,11 +396,8 @@ "weaknesses": [] }, { - "unique_content_id": "ca72fb146fcd014ee284ef66f7fc1c08", - "aliases": [ - "CVE-2012-1180" - ], - "summary": "Memory disclosure with specially crafted backend responses", + "unique_content_id": "31675b37fe392d1e36b77f7198b1d008", + "summary": "An error log data are not sanitized", "affected_packages": [ { "package": { @@ -388,45 +408,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.17", - "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.14", - "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" + "fixed_version": null, + "affected_version_range": "vers:nginx/*" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000076.html", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-1180", - "severities": [], - "reference_id": "CVE-2012-1180", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2012.memory.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2012.memory.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4487", "severities": [], - "reference_id": "", + "reference_id": "CVE-2009-4487", "reference_type": "" } ], @@ -434,11 +424,8 @@ "weaknesses": [] }, { - "unique_content_id": "901e1dc04473ff40c6e503baec5e9bf6", - "aliases": [ - "CVE-2012-2089" - ], - "summary": "Buffer overflow in the ngx_http_mp4_module", + "unique_content_id": "33d08a513ea5fef861e924f2601f7ac6", + "summary": "Memory disclosure in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -449,8 +436,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.19", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.14|>=1.1.3|<=1.1.18" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.15.5" }, { "package": { @@ -461,31 +448,37 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.15", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.14|>=1.1.3|<=1.1.18" + "fixed_version": "1.14.1", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.15.5" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000080.html", - "severities": [], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000221.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2089", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16845", "severities": [], - "reference_id": "CVE-2012-2089", + "reference_id": "CVE-2018-16845", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2012.mp4.txt", + "url": "https://nginx.org/download/patch.2018.mp4.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2012.mp4.txt.asc", + "url": "https://nginx.org/download/patch.2018.mp4.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -495,11 +488,8 @@ "weaknesses": [] }, { - "unique_content_id": "e74396e2dc204fb095c802fe54d4d176", - "aliases": [ - "CVE-2013-2028" - ], - "summary": "Stack-based buffer overflow with specially crafted request", + "unique_content_id": "3430956de63de2b1188c3d1e50c3b0cd", + "summary": "SPDY memory corruption", "affected_packages": [ { "package": { @@ -510,43 +500,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.5.0", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.4.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" + "fixed_version": "1.5.11", + "affected_version_range": "vers:nginx/1.5.10" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000132.html", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2028", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0088", "severities": [], - "reference_id": "CVE-2013-2028", + "reference_id": "CVE-2014-0088", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2013.chunked.txt", + "url": "https://nginx.org/download/patch.2014.spdy.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "url": "https://nginx.org/download/patch.2014.spdy.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -556,11 +534,8 @@ "weaknesses": [] }, { - "unique_content_id": "13592aaee15657bff9afca8c98edf8bf", - "aliases": [ - "CVE-2013-2070" - ], - "summary": "Memory disclosure with specially crafted HTTP backend responses", + "unique_content_id": "43c2f41bb851164d3495f3c204a57f20", + "summary": "Memory disclosure in HTTP/3", "affected_packages": [ { "package": { @@ -571,20 +546,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.5.0", - "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.4.1", - "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" + "fixed_version": "1.27.0", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" }, { "package": { @@ -595,13 +558,13 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.2.9", - "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" + "fixed_version": "1.26.1", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000114.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", "severities": [ { "value": "medium", @@ -613,31 +576,59 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2070", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-34161", "severities": [], - "reference_id": "CVE-2013-2070", + "reference_id": "CVE-2024-34161", "reference_type": "" - }, + } + ], + "date_published": null, + "weaknesses": [] + }, + { + "unique_content_id": "686399b9012be40d39b5366ec1695768", + "summary": "The renegotiation vulnerability in SSL protocol", + "affected_packages": [ { - "url": "https://nginx.org/download/patch.2013.chunked.txt", - "severities": [], - "reference_id": "", - "reference_type": "" + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.8.23", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" }, { - "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.7.64", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", "severities": [], - "reference_id": "", + "reference_id": "CVE-2009-3555", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2013.proxy.txt", + "url": "https://nginx.org/download/patch.cve-2009-3555.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2013.proxy.txt.asc", + "url": "https://nginx.org/download/patch.cve-2009-3555.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -647,11 +638,8 @@ "weaknesses": [] }, { - "unique_content_id": "0f21f4e3d88f4af06f0c46d096e90320", - "aliases": [ - "CVE-2013-4547" - ], - "summary": "Request line parsing vulnerability", + "unique_content_id": "71c918b8f82b4de8cfa23fc96fa0d7a7", + "summary": "Invalid pointer dereference in resolver", "affected_packages": [ { "package": { @@ -662,8 +650,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.5.7", - "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" + "fixed_version": "1.9.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" }, { "package": { @@ -674,13 +662,13 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.4.4", - "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" + "fixed_version": "1.8.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", "severities": [ { "value": "medium", @@ -692,21 +680,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4547", - "severities": [], - "reference_id": "CVE-2013-4547", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2013.space.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2013.space.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0742", "severities": [], - "reference_id": "", + "reference_id": "CVE-2016-0742", "reference_type": "" } ], @@ -714,11 +690,8 @@ "weaknesses": [] }, { - "unique_content_id": "3430956de63de2b1188c3d1e50c3b0cd", - "aliases": [ - "CVE-2014-0088" - ], - "summary": "SPDY memory corruption", + "unique_content_id": "74ec3c647d544d6e6935492b7dceb572", + "summary": "Excessive CPU usage in HTTP/2 with priority changes", "affected_packages": [ { "package": { @@ -729,33 +702,39 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.5.11", - "affected_version_range": "vers:nginx/1.5.10" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.16.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000132.html", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0088", - "severities": [], - "reference_id": "CVE-2014-0088", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2014.spdy.txt", - "severities": [], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "severities": [ + { + "value": "low", + "system": "generic_textual", + "scoring_elements": "" + } + ], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2014.spdy.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9513", "severities": [], - "reference_id": "", + "reference_id": "CVE-2019-9513", "reference_type": "" } ], @@ -763,11 +742,8 @@ "weaknesses": [] }, { - "unique_content_id": "db01da77157a7a773285dc98169416ec", - "aliases": [ - "CVE-2014-0133" - ], - "summary": "SPDY heap buffer overflow", + "unique_content_id": "79d9b38e6e89e3f3fc5ca4b2e64d0faa", + "summary": "Stack overflow and use-after-free in HTTP/3", "affected_packages": [ { "package": { @@ -778,8 +754,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.5.12", - "affected_version_range": "vers:nginx/>=1.3.15|<=1.5.11" + "fixed_version": "1.27.0", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" }, { "package": { @@ -790,33 +766,27 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.4.7", - "affected_version_range": "vers:nginx/>=1.3.15|<=1.5.11" + "fixed_version": "1.26.1", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000135.html", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0133", - "severities": [], - "reference_id": "CVE-2014-0133", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2014.spdy2.txt", - "severities": [], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2014.spdy2.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-31079", "severities": [], - "reference_id": "", + "reference_id": "CVE-2024-31079", "reference_type": "" } ], @@ -825,9 +795,6 @@ }, { "unique_content_id": "83d5fba07f12acd2e4947e68d233fbe5", - "aliases": [ - "CVE-2014-3556" - ], "summary": "STARTTLS command injection", "affected_packages": [ { @@ -891,11 +858,8 @@ "weaknesses": [] }, { - "unique_content_id": "ce87032bced3f187b1c0fbacc52b8c16", - "aliases": [ - "CVE-2014-3616" - ], - "summary": "SSL session reuse vulnerability", + "unique_content_id": "8ca47577347bd9f2027e09e32bc74866", + "summary": "Excessive CPU usage in HTTP/2 with small window updates", "affected_packages": [ { "package": { @@ -906,8 +870,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.7.5", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" }, { "package": { @@ -918,13 +882,13 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.6.2", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" + "fixed_version": "1.16.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000147.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", "severities": [ { "value": "medium", @@ -936,9 +900,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3616", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9511", "severities": [], - "reference_id": "CVE-2014-3616", + "reference_id": "CVE-2019-9511", "reference_type": "" } ], @@ -946,11 +910,8 @@ "weaknesses": [] }, { - "unique_content_id": "71c918b8f82b4de8cfa23fc96fa0d7a7", - "aliases": [ - "CVE-2016-0742" - ], - "summary": "Invalid pointer dereference in resolver", + "unique_content_id": "901e1dc04473ff40c6e503baec5e9bf6", + "summary": "Buffer overflow in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -961,8 +922,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.9.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.1.19", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.14|>=1.1.3|<=1.1.18" }, { "package": { @@ -973,27 +934,33 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.8.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.0.15", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.14|>=1.1.3|<=1.1.18" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000080.html", + "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0742", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2089", "severities": [], - "reference_id": "CVE-2016-0742", + "reference_id": "CVE-2012-2089", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2012.mp4.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2012.mp4.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -1001,11 +968,8 @@ "weaknesses": [] }, { - "unique_content_id": "2ec9de991e2cb7a5a0ba79bed8556a41", - "aliases": [ - "CVE-2016-0746" - ], - "summary": "Use-after-free during CNAME response processing in resolver", + "unique_content_id": "91c6638b38a1e6e2ff4997eeefef8cf8", + "summary": "Directory traversal vulnerability", "affected_packages": [ { "package": { @@ -1016,8 +980,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.9.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "0.8.17", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" }, { "package": { @@ -1028,27 +992,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.8.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "0.7.63", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0746", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3898", "severities": [], - "reference_id": "CVE-2016-0746", + "reference_id": "CVE-2009-3898", "reference_type": "" } ], @@ -1057,9 +1009,6 @@ }, { "unique_content_id": "925abc90d30273fe8cb404b7f3c8dfd3", - "aliases": [ - "CVE-2016-0747" - ], "summary": "Insufficient limits of CNAME resolution in resolver", "affected_packages": [ { @@ -1111,11 +1060,8 @@ "weaknesses": [] }, { - "unique_content_id": "04f5bc12ff49a95a29c459222379abe4", - "aliases": [ - "CVE-2016-4450" - ], - "summary": "NULL pointer dereference while writing client request body", + "unique_content_id": "96c2ffdeacca4901942abd83d54f33f5", + "summary": "Vulnerabilities with Windows directory aliases", "affected_packages": [ { "package": { @@ -1124,10 +1070,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "1.11.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" + "fixed_version": "1.3.1", + "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" }, { "package": { @@ -1136,15 +1082,15 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "1.10.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" + "fixed_version": "1.2.1", + "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2016/000179.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000086.html", "severities": [ { "value": "medium", @@ -1156,33 +1102,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-4450", - "severities": [], - "reference_id": "CVE-2016-4450", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2016.write.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2016.write.txt.asc", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2016.write2.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2016.write2.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4963", "severities": [], - "reference_id": "", + "reference_id": "CVE-2011-4963", "reference_type": "" } ], @@ -1191,9 +1113,6 @@ }, { "unique_content_id": "b3192a372fdac00b2cdf462b562cf73b", - "aliases": [ - "CVE-2017-7529" - ], "summary": "Integer overflow in the range filter", "affected_packages": [ { @@ -1257,11 +1176,8 @@ "weaknesses": [] }, { - "unique_content_id": "cb70875e6e02b2d41dd8876b4729bf84", - "aliases": [ - "CVE-2018-16843" - ], - "summary": "Excessive memory usage in HTTP/2", + "unique_content_id": "b3d7627b206f561242cdd2eae0e3bbeb", + "summary": "Buffer overwrite in HTTP/3", "affected_packages": [ { "package": { @@ -1272,8 +1188,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.15.6", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "1.27.0", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" }, { "package": { @@ -1284,16 +1200,16 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.14.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "1.26.1", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", "severities": [ { - "value": "low", + "value": "medium", "system": "generic_textual", "scoring_elements": "" } @@ -1302,9 +1218,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16843", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-32760", "severities": [], - "reference_id": "CVE-2018-16843", + "reference_id": "CVE-2024-32760", "reference_type": "" } ], @@ -1312,11 +1228,8 @@ "weaknesses": [] }, { - "unique_content_id": "cf47abf58659080601c4cd87a119a769", - "aliases": [ - "CVE-2018-16844" - ], - "summary": "Excessive CPU usage in HTTP/2", + "unique_content_id": "b72c609cd1be7c77f4432e1bc8c365f3", + "summary": "NULL pointer dereference in HTTP/3", "affected_packages": [ { "package": { @@ -1327,8 +1240,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.15.6", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "1.27.0", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" }, { "package": { @@ -1339,16 +1252,16 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.14.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "1.26.1", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", "severities": [ { - "value": "low", + "value": "medium", "system": "generic_textual", "scoring_elements": "" } @@ -1357,9 +1270,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16844", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35200", "severities": [], - "reference_id": "CVE-2018-16844", + "reference_id": "CVE-2024-35200", "reference_type": "" } ], @@ -1367,11 +1280,84 @@ "weaknesses": [] }, { - "unique_content_id": "33d08a513ea5fef861e924f2601f7ac6", - "aliases": [ - "CVE-2018-16845" + "unique_content_id": "c616b60f7fd802e88ca29fce6222654e", + "summary": "Buffer underflow vulnerability", + "affected_packages": [ + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.8.15", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.7.62", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.6.39", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.5.38", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + } ], - "summary": "Memory disclosure in the ngx_http_mp4_module", + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-2629", + "severities": [], + "reference_id": "CVE-2009-2629", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.180065.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.180065.txt.asc", + "severities": [], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": null, + "weaknesses": [] + }, + { + "unique_content_id": "ca72fb146fcd014ee284ef66f7fc1c08", + "summary": "Memory disclosure with specially crafted backend responses", "affected_packages": [ { "package": { @@ -1382,8 +1368,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.15.6", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.15.5" + "fixed_version": "1.1.17", + "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" }, { "package": { @@ -1394,37 +1380,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.14.1", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.15.5" + "fixed_version": "1.0.14", + "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000221.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2012/000076.html", + "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16845", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-1180", "severities": [], - "reference_id": "CVE-2018-16845", + "reference_id": "CVE-2012-1180", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2018.mp4.txt", + "url": "https://nginx.org/download/patch.2012.memory.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2018.mp4.txt.asc", + "url": "https://nginx.org/download/patch.2012.memory.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -1434,11 +1414,8 @@ "weaknesses": [] }, { - "unique_content_id": "8ca47577347bd9f2027e09e32bc74866", - "aliases": [ - "CVE-2019-9511" - ], - "summary": "Excessive CPU usage in HTTP/2 with small window updates", + "unique_content_id": "cb70875e6e02b2d41dd8876b4729bf84", + "summary": "Excessive memory usage in HTTP/2", "affected_packages": [ { "package": { @@ -1449,8 +1426,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" }, { "package": { @@ -1461,16 +1438,16 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.14.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", "severities": [ { - "value": "medium", + "value": "low", "system": "generic_textual", "scoring_elements": "" } @@ -1479,9 +1456,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9511", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16843", "severities": [], - "reference_id": "CVE-2019-9511", + "reference_id": "CVE-2018-16843", "reference_type": "" } ], @@ -1489,11 +1466,8 @@ "weaknesses": [] }, { - "unique_content_id": "74ec3c647d544d6e6935492b7dceb572", - "aliases": [ - "CVE-2019-9513" - ], - "summary": "Excessive CPU usage in HTTP/2 with priority changes", + "unique_content_id": "ce87032bced3f187b1c0fbacc52b8c16", + "summary": "SSL session reuse vulnerability", "affected_packages": [ { "package": { @@ -1504,8 +1478,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.7.5", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" }, { "package": { @@ -1516,16 +1490,16 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.6.2", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000147.html", "severities": [ { - "value": "low", + "value": "medium", "system": "generic_textual", "scoring_elements": "" } @@ -1534,9 +1508,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9513", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3616", "severities": [], - "reference_id": "CVE-2019-9513", + "reference_id": "CVE-2014-3616", "reference_type": "" } ], @@ -1544,11 +1518,8 @@ "weaknesses": [] }, { - "unique_content_id": "2537fa6a9e8e84a3c06bb122fcbf468d", - "aliases": [ - "CVE-2019-9516" - ], - "summary": "Excessive memory usage in HTTP/2 with zero length headers", + "unique_content_id": "cf47abf58659080601c4cd87a119a769", + "summary": "Excessive CPU usage in HTTP/2", "affected_packages": [ { "package": { @@ -1559,8 +1530,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" }, { "package": { @@ -1571,13 +1542,13 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "1.14.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", "severities": [ { "value": "low", @@ -1589,9 +1560,9 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9516", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16844", "severities": [], - "reference_id": "CVE-2019-9516", + "reference_id": "CVE-2018-16844", "reference_type": "" } ], @@ -1599,11 +1570,8 @@ "weaknesses": [] }, { - "unique_content_id": "27612bc7cab82114b1549552f5ad48ff", - "aliases": [ - "CVE-2021-23017" - ], - "summary": "1-byte memory overwrite in resolver", + "unique_content_id": "d403898b9315a9ec88d9a401af5352fb", + "summary": "Buffer overflow in resolver", "affected_packages": [ { "package": { @@ -1614,8 +1582,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.21.0", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" + "fixed_version": "1.1.8", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" }, { "package": { @@ -1626,39 +1594,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.20.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" + "fixed_version": "1.0.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2021/000300.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23017", - "severities": [], - "reference_id": "CVE-2021-23017", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2021.resolver.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2021.resolver.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4315", "severities": [], - "reference_id": "", + "reference_id": "CVE-2011-4315", "reference_type": "" } ], @@ -1666,11 +1610,8 @@ "weaknesses": [] }, { - "unique_content_id": "dad2ebc242641f6a276b00769ef57efa", - "aliases": [ - "CVE-2022-41741" - ], - "summary": "Memory corruption in the ngx_http_mp4_module", + "unique_content_id": "dab2e1aa4777dbcd579905643982aab1", + "summary": "Null pointer dereference vulnerability", "affected_packages": [ { "package": { @@ -1681,8 +1622,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.23.2", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" + "fixed_version": "0.8.14", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" }, { "package": { @@ -1693,52 +1634,9 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.22.1", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" - } - ], - "references": [ - { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2022/RBRRON6PYBJJM2XIAPQBFBVLR4Q6IHRA.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41741", - "severities": [], - "reference_id": "CVE-2022-41741", - "reference_type": "" - }, - { - "url": "https://nginx.org/download/patch.2022.mp4.txt", - "severities": [], - "reference_id": "", - "reference_type": "" + "fixed_version": "0.7.62", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" }, - { - "url": "https://nginx.org/download/patch.2022.mp4.txt.asc", - "severities": [], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": null, - "weaknesses": [] - }, - { - "unique_content_id": "e17dde538a78c978602298541bcd29f0", - "aliases": [ - "CVE-2022-41742" - ], - "summary": "Memory disclosure in the ngx_http_mp4_module", - "affected_packages": [ { "package": { "name": "nginx", @@ -1748,8 +1646,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.23.2", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" + "fixed_version": "0.6.39", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" }, { "package": { @@ -1760,37 +1658,25 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.22.1", - "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" + "fixed_version": "0.5.38", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2022/RBRRON6PYBJJM2XIAPQBFBVLR4Q6IHRA.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41742", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3896", "severities": [], - "reference_id": "CVE-2022-41742", + "reference_id": "CVE-2009-3896", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2022.mp4.txt", + "url": "https://nginx.org/download/patch.null.pointer.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.2022.mp4.txt.asc", + "url": "https://nginx.org/download/patch.null.pointer.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -1800,11 +1686,8 @@ "weaknesses": [] }, { - "unique_content_id": "e4c6a0358264fb7523f6ee40f844854f", - "aliases": [ - "CVE-2024-24989" - ], - "summary": "NULL pointer dereference in HTTP/3", + "unique_content_id": "dad2ebc242641f6a276b00769ef57efa", + "summary": "Memory corruption in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -1815,34 +1698,9 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.25.4", - "affected_version_range": "vers:nginx/1.25.3" - } - ], - "references": [ - { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/NW6MNW34VZ6HDIHH5YFBIJYZJN7FGNAV.html", - "severities": [], - "reference_id": "", - "reference_type": "" + "fixed_version": "1.23.2", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24989", - "severities": [], - "reference_id": "CVE-2024-24989", - "reference_type": "" - } - ], - "date_published": null, - "weaknesses": [] - }, - { - "unique_content_id": "f87492771be35866bf4dce017ea54dc8", - "aliases": [ - "CVE-2024-24990" - ], - "summary": "Use-after-free in HTTP/3", - "affected_packages": [ { "package": { "name": "nginx", @@ -1852,21 +1710,39 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.25.4", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.3" + "fixed_version": "1.22.1", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/NW6MNW34VZ6HDIHH5YFBIJYZJN7FGNAV.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2022/RBRRON6PYBJJM2XIAPQBFBVLR4Q6IHRA.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41741", + "severities": [], + "reference_id": "CVE-2022-41741", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2022.mp4.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24990", + "url": "https://nginx.org/download/patch.2022.mp4.txt.asc", "severities": [], - "reference_id": "CVE-2024-24990", + "reference_id": "", "reference_type": "" } ], @@ -1874,11 +1750,8 @@ "weaknesses": [] }, { - "unique_content_id": "79d9b38e6e89e3f3fc5ca4b2e64d0faa", - "aliases": [ - "CVE-2024-31079" - ], - "summary": "Stack overflow and use-after-free in HTTP/3", + "unique_content_id": "db01da77157a7a773285dc98169416ec", + "summary": "SPDY heap buffer overflow", "affected_packages": [ { "package": { @@ -1889,8 +1762,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.27.0", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "1.5.12", + "affected_version_range": "vers:nginx/>=1.3.15|<=1.5.11" }, { "package": { @@ -1901,27 +1774,33 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.26.1", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "1.4.7", + "affected_version_range": "vers:nginx/>=1.3.15|<=1.5.11" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2014/000135.html", + "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-31079", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0133", "severities": [], - "reference_id": "CVE-2024-31079", + "reference_id": "CVE-2014-0133", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2014.spdy2.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2014.spdy2.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -1929,11 +1808,8 @@ "weaknesses": [] }, { - "unique_content_id": "b3d7627b206f561242cdd2eae0e3bbeb", - "aliases": [ - "CVE-2024-32760" - ], - "summary": "Buffer overwrite in HTTP/3", + "unique_content_id": "e06ef4fb12b1b0817736222cc219c5be", + "summary": "Vulnerabilities with Windows 8.3 filename pseudonyms", "affected_packages": [ { "package": { @@ -1942,10 +1818,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "1.27.0", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "0.8.33", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" }, { "package": { @@ -1954,41 +1830,19 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "1.26.1", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" - } - ], - "references": [ - { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-32760", - "severities": [], - "reference_id": "CVE-2024-32760", - "reference_type": "" + "fixed_version": "0.7.65", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" } ], + "references": [], "date_published": null, "weaknesses": [] }, { - "unique_content_id": "43c2f41bb851164d3495f3c204a57f20", - "aliases": [ - "CVE-2024-34161" - ], - "summary": "Memory disclosure in HTTP/3", + "unique_content_id": "e17dde538a78c978602298541bcd29f0", + "summary": "Memory disclosure in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -1999,8 +1853,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.27.0", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "1.23.2", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" }, { "package": { @@ -2011,13 +1865,13 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.26.1", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "1.22.1", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.23.1" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2022/RBRRON6PYBJJM2XIAPQBFBVLR4Q6IHRA.html", "severities": [ { "value": "medium", @@ -2029,9 +1883,21 @@ "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-34161", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-41742", "severities": [], - "reference_id": "CVE-2024-34161", + "reference_id": "CVE-2022-41742", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2022.mp4.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2022.mp4.txt.asc", + "severities": [], + "reference_id": "", "reference_type": "" } ], @@ -2039,10 +1905,7 @@ "weaknesses": [] }, { - "unique_content_id": "b72c609cd1be7c77f4432e1bc8c365f3", - "aliases": [ - "CVE-2024-35200" - ], + "unique_content_id": "e4c6a0358264fb7523f6ee40f844854f", "summary": "NULL pointer dereference in HTTP/3", "affected_packages": [ { @@ -2054,39 +1917,21 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.27.0", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.26.1", - "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.5|1.26.0" + "fixed_version": "1.25.4", + "affected_version_range": "vers:nginx/1.25.3" } ], "references": [ { - "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/GMY32CSHFH6VFTN76HJNX7WNEX4RLHF6.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/NW6MNW34VZ6HDIHH5YFBIJYZJN7FGNAV.html", + "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35200", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24989", "severities": [], - "reference_id": "CVE-2024-35200", + "reference_id": "CVE-2024-24989", "reference_type": "" } ], @@ -2094,12 +1939,8 @@ "weaknesses": [] }, { - "unique_content_id": "686399b9012be40d39b5366ec1695768", - "aliases": [ - "VU#120541", - "CVE-2009-3555" - ], - "summary": "The renegotiation vulnerability in SSL protocol", + "unique_content_id": "e74396e2dc204fb095c802fe54d4d176", + "summary": "Stack-based buffer overflow with specially crafted request", "affected_packages": [ { "package": { @@ -2110,8 +1951,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.8.23", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" + "fixed_version": "1.5.0", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" }, { "package": { @@ -2122,25 +1963,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.7.64", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" + "fixed_version": "1.4.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html", "severities": [], - "reference_id": "CVE-2009-3555", + "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.cve-2009-3555.txt", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2028", + "severities": [], + "reference_id": "CVE-2013-2028", + "reference_type": "" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.cve-2009-3555.txt.asc", + "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", "severities": [], "reference_id": "", "reference_type": "" @@ -2150,12 +1997,8 @@ "weaknesses": [] }, { - "unique_content_id": "c616b60f7fd802e88ca29fce6222654e", - "aliases": [ - "VU#180065", - "CVE-2009-2629" - ], - "summary": "Buffer underflow vulnerability", + "unique_content_id": "eb41c9a738129f7f76c5ff813d190621", + "summary": "Vulnerabilities with invalid UTF-8 sequence on Windows", "affected_packages": [ { "package": { @@ -2164,10 +2007,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "0.8.15", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "0.8.41", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" }, { "package": { @@ -2176,11 +2019,27 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "0.7.62", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" - }, + "fixed_version": "0.7.67", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2266", + "severities": [], + "reference_id": "CVE-2010-2266", + "reference_type": "" + } + ], + "date_published": null, + "weaknesses": [] + }, + { + "unique_content_id": "ef00adb6af6c2a00e81c8ec8de71eed6", + "summary": "Vulnerabilities with Windows file default stream", + "affected_packages": [ { "package": { "name": "nginx", @@ -2188,10 +2047,10 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "0.6.39", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "0.8.40", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" }, { "package": { @@ -2200,29 +2059,51 @@ "subpath": "", "version": "", "namespace": "", - "qualifiers": "" + "qualifiers": "os=windows" }, - "fixed_version": "0.5.38", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "0.7.66", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-2629", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2263", "severities": [], - "reference_id": "CVE-2009-2629", + "reference_id": "CVE-2010-2263", "reference_type": "" - }, + } + ], + "date_published": null, + "weaknesses": [] + }, + { + "unique_content_id": "f87492771be35866bf4dce017ea54dc8", + "summary": "Use-after-free in HTTP/3", + "affected_packages": [ { - "url": "https://nginx.org/download/patch.180065.txt", + "package": { + "name": "nginx", + "type": "nginx", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.25.4", + "affected_version_range": "vers:nginx/>=1.25.0|<=1.25.3" + } + ], + "references": [ + { + "url": "https://mailman.nginx.org/pipermail/nginx-announce/2024/NW6MNW34VZ6HDIHH5YFBIJYZJN7FGNAV.html", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://nginx.org/download/patch.180065.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-24990", "severities": [], - "reference_id": "", + "reference_id": "CVE-2024-24990", "reference_type": "" } ], diff --git a/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json b/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json index 12f141ef7..fa6223064 100644 --- a/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json +++ b/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json @@ -1,59 +1,7 @@ [ { - "unique_content_id": "88aac050ad73754e929805f2ab5e64e7", - "aliases": [ - "VC-OPENSSL-20141015" - ], - "summary": "OpenSSL has added support for TLS_FALLBACK_SCSV to allow applications to block the ability for a MITM attacker to force a protocol downgrade. Some client applications (such as browsers) will reconnect using a downgraded protocol to work around interoperability bugs in older servers. This could be exploited by an active man-in-the-middle to downgrade connections to SSL 3.0 even if both sides of the connection support higher protocols. SSL 3.0 contains a number of weaknesses including POODLE (CVE-2014-3566). See also https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00 and https://www.openssl.org/~bodo/ssl-poodle.pdf", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0o", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1j", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" - } - ], - "references": [], - "date_published": "2014-10-15T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "35448b5f7b3fba9f72b91c02f114fb54", - "aliases": [ - "CVE-2002-0655", - "VC-OPENSSL-20020730-CVE-2002-0655" - ], - "summary": "Inproper handling of ASCII representations of integers on 64 bit platforms allowed remote attackers to cause a denial of service or possibly execute arbitrary code.", + "unique_content_id": "167751346aa8fefc0a6e3b73ccb1f1a0", + "summary": "A buffer overflow when Kerberos is enabled allowed attackers to execute arbitrary code by sending a long master key. Note that this flaw did not affect any released version of 0.9.6 or 0.9.7", "affected_packages": [ { "package": { @@ -64,15 +12,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.6e", - "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d" + "fixed_version": "0.9.7", + "affected_version_range": "vers:openssl/0.9.7-beta3" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0655", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0657", "severities": [], - "reference_id": "CVE-2002-0655", + "reference_id": "CVE-2002-0657", "reference_type": "" }, { @@ -86,12 +34,8 @@ "weaknesses": [] }, { - "unique_content_id": "829a6d1f23353afa49ace62ba465a58f", - "aliases": [ - "CVE-2002-0656", - "VC-OPENSSL-20020730-CVE-2002-0656" - ], - "summary": "A buffer overflow allowed remote attackers to execute arbitrary code by sending a large client master key in SSL2 or a large session ID in SSL3.", + "unique_content_id": "35448b5f7b3fba9f72b91c02f114fb54", + "summary": "Inproper handling of ASCII representations of integers on 64 bit platforms allowed remote attackers to cause a denial of service or possibly execute arbitrary code.", "affected_packages": [ { "package": { @@ -108,9 +52,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0656", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0655", "severities": [], - "reference_id": "CVE-2002-0656", + "reference_id": "CVE-2002-0655", "reference_type": "" }, { @@ -124,12 +68,8 @@ "weaknesses": [] }, { - "unique_content_id": "167751346aa8fefc0a6e3b73ccb1f1a0", - "aliases": [ - "CVE-2002-0657", - "VC-OPENSSL-20020730-CVE-2002-0657" - ], - "summary": "A buffer overflow when Kerberos is enabled allowed attackers to execute arbitrary code by sending a long master key. Note that this flaw did not affect any released version of 0.9.6 or 0.9.7", + "unique_content_id": "829a6d1f23353afa49ace62ba465a58f", + "summary": "A buffer overflow allowed remote attackers to execute arbitrary code by sending a large client master key in SSL2 or a large session ID in SSL3.", "affected_packages": [ { "package": { @@ -140,15 +80,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.7", - "affected_version_range": "vers:openssl/0.9.7-beta3" + "fixed_version": "0.9.6e", + "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0657", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0656", "severities": [], - "reference_id": "CVE-2002-0657", + "reference_id": "CVE-2002-0656", "reference_type": "" }, { @@ -163,10 +103,6 @@ }, { "unique_content_id": "cd2aa8fefe14c523b0f404ea639582db", - "aliases": [ - "CVE-2002-0659", - "VC-OPENSSL-20020730-CVE-2002-0659" - ], "summary": "A flaw in the ASN1 library allowed remote attackers to cause a denial of service by sending invalid encodings.", "affected_packages": [ { @@ -201,10 +137,6 @@ }, { "unique_content_id": "8544420c83cf74faff35e8829adaa340", - "aliases": [ - "CVE-2002-1568", - "VC-OPENSSL-20020808-CVE-2002-1568" - ], "summary": "The use of assertions when detecting buffer overflow attacks allowed remote attackers to cause a denial of service (crash) by sending certain messages to cause OpenSSL to abort from a failed assertion, as demonstrated using SSLv2 CLIENT_MASTER_KEY messages, which were not properly handled in s2_srvr.c.", "affected_packages": [ { @@ -239,10 +171,6 @@ }, { "unique_content_id": "61d2edb3343321c505bed6e2c93025b1", - "aliases": [ - "CVE-2003-0078", - "VC-OPENSSL-20030219-CVE-2003-0078" - ], "summary": "sl3_get_record in s3_pkt.c did not perform a MAC computation if an incorrect block cipher padding was used, causing an information leak (timing discrepancy) that may make it easier to launch cryptographic attacks that rely on distinguishing between padding and MAC verification errors, possibly leading to extraction of the original plaintext, aka the \"Vaudenay timing attack.\"", "affected_packages": [ { @@ -288,12 +216,8 @@ "weaknesses": [] }, { - "unique_content_id": "a0eeb293e46b8d3bbd5029ccaa8585bd", - "aliases": [ - "CVE-2003-0131", - "VC-OPENSSL-20030319-CVE-2003-0131" - ], - "summary": "The SSL and TLS components allowed remote attackers to perform an unauthorized RSA private key operation via a modified Bleichenbacher attack that uses a large number of SSL or TLS connections using PKCS #1 v1.5 padding that caused OpenSSL to leak information regarding the relationship between ciphertext and the associated plaintext, aka the \"Klima-Pokorny-Rosa attack\"", + "unique_content_id": "4fbc2d1aad1223b8ab887ce8d4d07175", + "summary": "RSA blinding was not enabled by default, which could allow local and remote attackers to obtain a server's private key by determining factors using timing differences on (1) the number of extra reductions during Montgomery reduction, and (2) the use of different integer multiplication algorithms (\"Karatsuba\" and normal).", "affected_packages": [ { "package": { @@ -322,28 +246,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0131", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0147", "severities": [], - "reference_id": "CVE-2003-0131", + "reference_id": "CVE-2003-0147", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20030319.txt", + "url": "https://www.openssl.org/news/secadv/20030317.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2003-03-19T00:00:00+00:00", + "date_published": "2003-03-14T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "4fbc2d1aad1223b8ab887ce8d4d07175", - "aliases": [ - "CVE-2003-0147", - "VC-OPENSSL-20030314-CVE-2003-0147" - ], - "summary": "RSA blinding was not enabled by default, which could allow local and remote attackers to obtain a server's private key by determining factors using timing differences on (1) the number of extra reductions during Montgomery reduction, and (2) the use of different integer multiplication algorithms (\"Karatsuba\" and normal).", + "unique_content_id": "a0eeb293e46b8d3bbd5029ccaa8585bd", + "summary": "The SSL and TLS components allowed remote attackers to perform an unauthorized RSA private key operation via a modified Bleichenbacher attack that uses a large number of SSL or TLS connections using PKCS #1 v1.5 padding that caused OpenSSL to leak information regarding the relationship between ciphertext and the associated plaintext, aka the \"Klima-Pokorny-Rosa attack\"", "affected_packages": [ { "package": { @@ -372,41 +292,25 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0147", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0131", "severities": [], - "reference_id": "CVE-2003-0147", + "reference_id": "CVE-2003-0131", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20030317.txt", + "url": "https://www.openssl.org/news/secadv/20030319.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2003-03-14T00:00:00+00:00", + "date_published": "2003-03-19T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "525144b2cfc83c2afb4746cbb043f665", - "aliases": [ - "CVE-2003-0543", - "VC-OPENSSL-20030930-CVE-2003-0543" - ], - "summary": "An integer overflow could allow remote attackers to cause a denial of service (crash) via an SSL client certificate with certain ASN.1 tag values.", + "unique_content_id": "23009992dbac485c71608f4cf9811ef2", + "summary": "Certain ASN.1 encodings that were rejected as invalid by the parser could trigger a bug in the deallocation of the corresponding data structure, corrupting the stack, leading to a crash.", "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.6k", - "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j" - }, { "package": { "name": "openssl", @@ -422,9 +326,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0543", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0545", "severities": [], - "reference_id": "CVE-2003-0543", + "reference_id": "CVE-2003-0545", "reference_type": "" }, { @@ -438,12 +342,8 @@ "weaknesses": [] }, { - "unique_content_id": "b20ae6e077855796c5fa2ea663a88269", - "aliases": [ - "CVE-2003-0544", - "VC-OPENSSL-20030930-CVE-2003-0544" - ], - "summary": "Incorrect tracking of the number of characters in certain ASN.1 inputs could allow remote attackers to cause a denial of service (crash) by sending an SSL client certificate that causes OpenSSL to read past the end of a buffer when the long form is used.", + "unique_content_id": "525144b2cfc83c2afb4746cbb043f665", + "summary": "An integer overflow could allow remote attackers to cause a denial of service (crash) via an SSL client certificate with certain ASN.1 tag values.", "affected_packages": [ { "package": { @@ -454,8 +354,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.7c", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" + "fixed_version": "0.9.6k", + "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j" }, { "package": { @@ -466,15 +366,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.6k", - "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j" + "fixed_version": "0.9.7c", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0544", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0543", "severities": [], - "reference_id": "CVE-2003-0544", + "reference_id": "CVE-2003-0543", "reference_type": "" }, { @@ -488,12 +388,8 @@ "weaknesses": [] }, { - "unique_content_id": "23009992dbac485c71608f4cf9811ef2", - "aliases": [ - "CVE-2003-0545", - "VC-OPENSSL-20030930-CVE-2003-0545" - ], - "summary": "Certain ASN.1 encodings that were rejected as invalid by the parser could trigger a bug in the deallocation of the corresponding data structure, corrupting the stack, leading to a crash.", + "unique_content_id": "b20ae6e077855796c5fa2ea663a88269", + "summary": "Incorrect tracking of the number of characters in certain ASN.1 inputs could allow remote attackers to cause a denial of service (crash) by sending an SSL client certificate that causes OpenSSL to read past the end of a buffer when the long form is used.", "affected_packages": [ { "package": { @@ -506,13 +402,25 @@ }, "fixed_version": "0.9.7c", "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.6k", + "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0545", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0544", "severities": [], - "reference_id": "CVE-2003-0545", + "reference_id": "CVE-2003-0544", "reference_type": "" }, { @@ -527,10 +435,6 @@ }, { "unique_content_id": "47507506fbd9633ba7a6429dc0db28b5", - "aliases": [ - "CVE-2003-0851", - "VC-OPENSSL-20031104-CVE-2003-0851" - ], "summary": "A flaw in OpenSSL 0.9.6k (only) would cause certain ASN.1 sequences to trigger a large recursion. On platforms such as Windows this large recursion cannot be handled correctly and so the bug causes OpenSSL to crash. A remote attacker could exploit this flaw if they can send arbitrary ASN.1 sequences which would cause OpenSSL to crash. This could be performed for example by sending a client certificate to a SSL/TLS enabled server which is configured to accept them.", "affected_packages": [ { @@ -565,10 +469,6 @@ }, { "unique_content_id": "2c802d89f18645aa477b635d3a5242ad", - "aliases": [ - "CVE-2004-0079", - "VC-OPENSSL-20040317-CVE-2004-0079" - ], "summary": "The Codenomicon TLS Test Tool uncovered a null-pointer assignment in the do_change_cipher_spec() function. A remote attacker could perform a carefully crafted SSL/TLS handshake against a server that used the OpenSSL library in such a way as to cause a crash.", "affected_packages": [ { @@ -615,10 +515,6 @@ }, { "unique_content_id": "6f23a0db775050dc33df47c7cc883b11", - "aliases": [ - "CVE-2004-0081", - "VC-OPENSSL-20040317-CVE-2004-0081" - ], "summary": "The Codenomicon TLS Test Tool found that some unknown message types were handled incorrectly, allowing a remote attacker to cause a denial of service (infinite loop).", "affected_packages": [ { @@ -653,10 +549,6 @@ }, { "unique_content_id": "cb0e8758b89ae43b1ed34bfb3c0b3b56", - "aliases": [ - "CVE-2004-0112", - "VC-OPENSSL-20040317-CVE-2004-0112" - ], "summary": "A flaw in SSL/TLS handshaking code when using Kerberos ciphersuites. A remote attacker could perform a carefully crafted SSL/TLS handshake against a server configured to use Kerberos ciphersuites in such a way as to cause OpenSSL to crash. Most applications have no ability to use Kerberos ciphersuites and will therefore be unaffected.", "affected_packages": [ { @@ -691,10 +583,6 @@ }, { "unique_content_id": "de61ebaf88fec68edc50b1bbc3c82f15", - "aliases": [ - "CVE-2004-0975", - "VC-OPENSSL-20040930-CVE-2004-0975" - ], "summary": "The der_chop script created temporary files insecurely which could allow local users to overwrite files via a symlink attack on temporary files. Note that it is quite unlikely that a user would be using the redundant der_chop script, and this script was removed from the OpenSSL distribution.", "affected_packages": [ { @@ -741,10 +629,6 @@ }, { "unique_content_id": "9cc871a9e62ad5ca419397816ae02f3f", - "aliases": [ - "CVE-2005-2969", - "VC-OPENSSL-20051011-CVE-2005-2969" - ], "summary": "A deprecated option, SSL_OP_MISE_SSLV2_RSA_PADDING, could allow an attacker acting as a \"man in the middle\" to force a connection to downgrade to SSL 2.0 even if both parties support better protocols.", "affected_packages": [ { @@ -802,12 +686,8 @@ "weaknesses": [] }, { - "unique_content_id": "95ecb527c6494eb3dc0e22337c257b02", - "aliases": [ - "CVE-2006-2937", - "VC-OPENSSL-20060928-CVE-2006-2937" - ], - "summary": "During the parsing of certain invalid ASN.1 structures an error condition is mishandled. This can result in an infinite loop which consumes system memory", + "unique_content_id": "509415f8d684ef69f274426ff454ee18", + "summary": "Daniel Bleichenbacher discovered an attack on PKCS #1 v1.5 signatures where under certain circumstances it may be possible for an attacker to forge a PKCS #1 v1.5 signature that would be incorrectly verified by OpenSSL.", "affected_packages": [ { "package": { @@ -818,8 +698,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.7l", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e|0.9.7f|0.9.7g|0.9.7h|0.9.7i|0.9.7j|0.9.7k" + "fixed_version": "0.9.7k", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e|0.9.7f|0.9.7g|0.9.7h|0.9.7i|0.9.7j" }, { "package": { @@ -830,33 +710,41 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8d", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" + "fixed_version": "0.9.8c", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": null, + "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j|0.9.6k|0.9.6l|0.9.6m" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-2937", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4339", "severities": [], - "reference_id": "CVE-2006-2937", + "reference_id": "CVE-2006-4339", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20060928.txt", + "url": "https://www.openssl.org/news/secadv/20060905.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2006-09-28T00:00:00+00:00", + "date_published": "2006-09-05T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "1ed97c8f77a2948144952bbf2df0d15f", - "aliases": [ - "CVE-2006-2940", - "VC-OPENSSL-20060928-CVE-2006-2940" - ], "summary": "Certain types of public key can take disproportionate amounts of time to process. This could be used by an attacker in a denial of service attack.", "affected_packages": [ { @@ -915,10 +803,6 @@ }, { "unique_content_id": "275102d3f86e163b329b3bd7e4032658", - "aliases": [ - "CVE-2006-3738", - "VC-OPENSSL-20060928-CVE-2006-3738" - ], "summary": "A buffer overflow was discovered in the SSL_get_shared_ciphers() utility function. An attacker could send a list of ciphers to an application that uses this function and overrun a buffer.", "affected_packages": [ { @@ -976,12 +860,8 @@ "weaknesses": [] }, { - "unique_content_id": "509415f8d684ef69f274426ff454ee18", - "aliases": [ - "CVE-2006-4339", - "VC-OPENSSL-20060905-CVE-2006-4339" - ], - "summary": "Daniel Bleichenbacher discovered an attack on PKCS #1 v1.5 signatures where under certain circumstances it may be possible for an attacker to forge a PKCS #1 v1.5 signature that would be incorrectly verified by OpenSSL.", + "unique_content_id": "65804b3824faa47750e76089a0851d29", + "summary": "A flaw in the SSLv2 client code was discovered. When a client application used OpenSSL to create an SSLv2 connection to a malicious server, that server could cause the client to crash.", "affected_packages": [ { "package": { @@ -992,8 +872,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.7k", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e|0.9.7f|0.9.7g|0.9.7h|0.9.7i|0.9.7j" + "fixed_version": "0.9.7l", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e|0.9.7f|0.9.7g|0.9.7h|0.9.7i|0.9.7j|0.9.7k" }, { "package": { @@ -1004,8 +884,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8c", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b" + "fixed_version": "0.9.8d", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" }, { "package": { @@ -1022,28 +902,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4339", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4343", "severities": [], - "reference_id": "CVE-2006-4339", + "reference_id": "CVE-2006-4343", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20060905.txt", + "url": "https://www.openssl.org/news/secadv/20060928.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2006-09-05T00:00:00+00:00", + "date_published": "2006-09-28T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "65804b3824faa47750e76089a0851d29", - "aliases": [ - "CVE-2006-4343", - "VC-OPENSSL-20060928-CVE-2006-4343" - ], - "summary": "A flaw in the SSLv2 client code was discovered. When a client application used OpenSSL to create an SSLv2 connection to a malicious server, that server could cause the client to crash.", + "unique_content_id": "95ecb527c6494eb3dc0e22337c257b02", + "summary": "During the parsing of certain invalid ASN.1 structures an error condition is mishandled. This can result in an infinite loop which consumes system memory", "affected_packages": [ { "package": { @@ -1068,25 +944,13 @@ }, "fixed_version": "0.9.8d", "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": null, - "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c|0.9.6d|0.9.6e|0.9.6f|0.9.6g|0.9.6h|0.9.6i|0.9.6j|0.9.6k|0.9.6l|0.9.6m" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4343", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-2937", "severities": [], - "reference_id": "CVE-2006-4343", + "reference_id": "CVE-2006-2937", "reference_type": "" }, { @@ -1100,13 +964,9 @@ "weaknesses": [] }, { - "unique_content_id": "df251bb60bdec54891d4de225180f2ee", - "aliases": [ - "CVE-2007-4995", - "VC-OPENSSL-20071012-CVE-2007-4995" - ], - "summary": "A flaw in DTLS support. An attacker could create a malicious client or server that could trigger a heap overflow. This is possibly exploitable to run arbitrary code, but it has not been verified.", - "affected_packages": [ + "unique_content_id": "987af90a510832e0adfe428cf642f8b3", + "summary": "A flaw was found in the SSL_get_shared_ciphers() utility function. An attacker could send a list of ciphers to an application that used this function and overrun a buffer with a single byte. Few applications make use of this vulnerable function and generally it is used only when applications are compiled for debugging.", + "affected_packages": [ { "package": { "name": "openssl", @@ -1122,9 +982,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-4995", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-5135", "severities": [], - "reference_id": "CVE-2007-4995", + "reference_id": "CVE-2007-5135", "reference_type": "" }, { @@ -1138,12 +998,8 @@ "weaknesses": [] }, { - "unique_content_id": "987af90a510832e0adfe428cf642f8b3", - "aliases": [ - "CVE-2007-5135", - "VC-OPENSSL-20071012-CVE-2007-5135" - ], - "summary": "A flaw was found in the SSL_get_shared_ciphers() utility function. An attacker could send a list of ciphers to an application that used this function and overrun a buffer with a single byte. Few applications make use of this vulnerable function and generally it is used only when applications are compiled for debugging.", + "unique_content_id": "df251bb60bdec54891d4de225180f2ee", + "summary": "A flaw in DTLS support. An attacker could create a malicious client or server that could trigger a heap overflow. This is possibly exploitable to run arbitrary code, but it has not been verified.", "affected_packages": [ { "package": { @@ -1160,9 +1016,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-5135", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-4995", "severities": [], - "reference_id": "CVE-2007-5135", + "reference_id": "CVE-2007-4995", "reference_type": "" }, { @@ -1177,10 +1033,6 @@ }, { "unique_content_id": "2583bf8ccba8c985bab919b69ccc00e5", - "aliases": [ - "CVE-2008-0891", - "VC-OPENSSL-20080528-CVE-2008-0891" - ], "summary": "Testing using the Codenomicon TLS test suite discovered a flaw in the handling of server name extension data in OpenSSL 0.9.8f and OpenSSL 0.9.8g. If OpenSSL has been compiled using the non-default TLS server name extensions, a remote attacker could send a carefully crafted packet to a server application using OpenSSL and cause it to crash.", "affected_packages": [ { @@ -1215,10 +1067,6 @@ }, { "unique_content_id": "707840f8f10854ba4abf1409b159f35d", - "aliases": [ - "CVE-2008-1672", - "VC-OPENSSL-20080528-CVE-2008-1672" - ], "summary": "Testing using the Codenomicon TLS test suite discovered a flaw if the 'Server Key exchange message' is omitted from a TLS handshake in OpenSSL 0.9.8f and OpenSSL 0.9.8g. If a client connects to a malicious server with particular cipher suites, the server could cause the client to crash.", "affected_packages": [ { @@ -1253,10 +1101,6 @@ }, { "unique_content_id": "a52c691f587165864b42caa4be445576", - "aliases": [ - "CVE-2008-5077", - "VC-OPENSSL-20090107-CVE-2008-5077" - ], "summary": "The Google Security Team discovered several functions inside OpenSSL incorrectly checked the result after calling the EVP_VerifyFinal function, allowing a malformed signature to be treated as a good signature rather than as an error. This issue affected the signature checks on DSA and ECDSA keys used with SSL/TLS. One way to exploit this flaw would be for a remote attacker who is in control of a malicious server or who can use a 'man in the middle' attack to present a malformed SSL/TLS signature from a certificate chain to a vulnerable client, bypassing validation.", "affected_packages": [ { @@ -1290,12 +1134,8 @@ "weaknesses": [] }, { - "unique_content_id": "6ec3760bac617981cc8cd2369115f10e", - "aliases": [ - "CVE-2009-0590", - "VC-OPENSSL-20090325-CVE-2009-0590" - ], - "summary": "The function ASN1_STRING_print_ex() when used to print a BMPString or UniversalString will crash with an invalid memory access if the encoded length of the string is illegal. Any OpenSSL application which prints out the contents of a certificate could be affected by this bug, including SSL servers, clients and S/MIME software.", + "unique_content_id": "e872aef605740cacbb7547101151f4c7", + "summary": "Fix denial of service flaw due in the DTLS implementation. A remote attacker could use this flaw to cause a DTLS server to crash.", "affected_packages": [ { "package": { @@ -1306,33 +1146,29 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8k", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j" + "fixed_version": "0.9.8m", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0590", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1387", "severities": [], - "reference_id": "CVE-2009-0590", + "reference_id": "CVE-2009-1387", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20090325.txt", + "url": "https://web.archive.org/web/20100710092848/https://rt.openssl.org/Ticket/Display.html?id=1838", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2009-03-25T00:00:00+00:00", + "date_published": "2009-02-05T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "2b44645ffc6197aaeb99296cc87b3258", - "aliases": [ - "CVE-2009-0591", - "VC-OPENSSL-20090325-CVE-2009-0591" - ], "summary": "The function CMS_verify() does not correctly handle an error condition involving malformed signed attributes. This will cause an invalid set of signed attributes to appear valid and content digests will not be checked.", "affected_packages": [ { @@ -1367,10 +1203,6 @@ }, { "unique_content_id": "4fffdc4369dd44a30fae0836347f91de", - "aliases": [ - "CVE-2009-0789", - "VC-OPENSSL-20090325-CVE-2009-0789" - ], "summary": "When a malformed ASN1 structure is received it's contents are freed up and zeroed and an error condition returned. On a small number of platforms where sizeof(long) < sizeof(void *) (for example WIN64) this can cause an invalid memory access later resulting in a crash when some invalid structures are read, for example RSA public keys.", "affected_packages": [ { @@ -1404,12 +1236,8 @@ "weaknesses": [] }, { - "unique_content_id": "e250eb725e8ae34ba3933779594935f6", - "aliases": [ - "CVE-2009-1377", - "VC-OPENSSL-20090512-CVE-2009-1377" - ], - "summary": "Fix a denial of service flaw in the DTLS implementation. Records are buffered if they arrive with a future epoch to be processed after finishing the corresponding handshake. There is currently no limitation to this buffer allowing an attacker to perform a DOS attack to a DTLS server by sending records with future epochs until there is no memory left.", + "unique_content_id": "6ec3760bac617981cc8cd2369115f10e", + "summary": "The function ASN1_STRING_print_ex() when used to print a BMPString or UniversalString will crash with an invalid memory access if the encoded length of the string is illegal. Any OpenSSL application which prints out the contents of a certificate could be affected by this bug, including SSL servers, clients and S/MIME software.", "affected_packages": [ { "package": { @@ -1420,39 +1248,29 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8m", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" + "fixed_version": "0.9.8k", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1377", - "severities": [], - "reference_id": "CVE-2009-1377", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/88b48dc68024dcc437da4296c9fb04419b0ccbe1", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0590", "severities": [], - "reference_id": "", + "reference_id": "CVE-2009-0590", "reference_type": "" }, { - "url": "https://web.archive.org/web/20120306065500/http://rt.openssl.org/Ticket/Display.html?id=1930&user=guest&pass=guest", + "url": "https://www.openssl.org/news/secadv/20090325.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2009-05-12T00:00:00+00:00", + "date_published": "2009-03-25T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "868b6df2d8ffc22c9f9d83fd7da54401", - "aliases": [ - "CVE-2009-1378", - "VC-OPENSSL-20090512-CVE-2009-1378" - ], "summary": "Fix a denial of service flaw in the DTLS implementation. In dtls1_process_out_of_seq_message() the check if the current message is already buffered was missing. For every new message was memory allocated, allowing an attacker to perform an denial of service attack against a DTLS server by sending out of seq handshake messages until there is no memory left.", "affected_packages": [ { @@ -1493,10 +1311,6 @@ }, { "unique_content_id": "9233bcc1b091ea2d0fe8d8a2820191f5", - "aliases": [ - "CVE-2009-1379", - "VC-OPENSSL-20090512-CVE-2009-1379" - ], "summary": "Use-after-free vulnerability in the dtls1_retrieve_buffered_fragment function could cause a client accessing a malicious DTLS server to crash.", "affected_packages": [ { @@ -1536,12 +1350,8 @@ "weaknesses": [] }, { - "unique_content_id": "0097aaf34c70d34f665917931de0a380", - "aliases": [ - "CVE-2009-1386", - "VC-OPENSSL-20090602-CVE-2009-1386" - ], - "summary": "Fix a NULL pointer dereference if a DTLS server recieved ChangeCipherSpec as first record. A remote attacker could use this flaw to cause a DTLS server to crash", + "unique_content_id": "e250eb725e8ae34ba3933779594935f6", + "summary": "Fix a denial of service flaw in the DTLS implementation. Records are buffered if they arrive with a future epoch to be processed after finishing the corresponding handshake. There is currently no limitation to this buffer allowing an attacker to perform a DOS attack to a DTLS server by sending records with future epochs until there is no memory left.", "affected_packages": [ { "package": { @@ -1552,34 +1362,36 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8i", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h" + "fixed_version": "0.9.8m", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1386", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1377", "severities": [], - "reference_id": "CVE-2009-1386", + "reference_id": "CVE-2009-1377", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/1cbf663a6c89dcf8f7706d30a8bae675e2e0199a", + "url": "https://github.com/openssl/openssl/commit/88b48dc68024dcc437da4296c9fb04419b0ccbe1", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://web.archive.org/web/20120306065500/http://rt.openssl.org/Ticket/Display.html?id=1930&user=guest&pass=guest", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2009-06-02T00:00:00+00:00", + "date_published": "2009-05-12T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "e872aef605740cacbb7547101151f4c7", - "aliases": [ - "CVE-2009-1387", - "VC-OPENSSL-20090205-CVE-2009-1387" - ], - "summary": "Fix denial of service flaw due in the DTLS implementation. A remote attacker could use this flaw to cause a DTLS server to crash.", + "unique_content_id": "0097aaf34c70d34f665917931de0a380", + "summary": "Fix a NULL pointer dereference if a DTLS server recieved ChangeCipherSpec as first record. A remote attacker could use this flaw to cause a DTLS server to crash", "affected_packages": [ { "package": { @@ -1590,34 +1402,30 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8m", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" + "fixed_version": "0.9.8i", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1387", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1386", "severities": [], - "reference_id": "CVE-2009-1387", + "reference_id": "CVE-2009-1386", "reference_type": "" }, { - "url": "https://web.archive.org/web/20100710092848/https://rt.openssl.org/Ticket/Display.html?id=1838", + "url": "https://github.com/openssl/openssl/commit/1cbf663a6c89dcf8f7706d30a8bae675e2e0199a", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2009-02-05T00:00:00+00:00", + "date_published": "2009-06-02T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "e4f35efada1573e600eeb3f197a9654e", - "aliases": [ - "CVE-2009-3245", - "VC-OPENSSL-20100223-CVE-2009-3245" - ], - "summary": "It was discovered that OpenSSL did not always check the return value of the bn_wexpand() function. An attacker able to trigger a memory allocation failure in that function could cause an application using the OpenSSL library to crash or, possibly, execute arbitrary code", + "unique_content_id": "3ede4a6de30467e840dadb6b1a2f94fc", + "summary": "Implement RFC5746 to address vulnerabilities in SSL/TLS renegotiation.", "affected_packages": [ { "package": { @@ -1634,28 +1442,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3245", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", "severities": [], - "reference_id": "CVE-2009-3245", + "reference_id": "CVE-2009-3555", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/7e4cae1d2f555cbe9226b377aff4b56c9f7ddd4d", + "url": "https://www.openssl.org/news/secadv/20091111.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2010-02-23T00:00:00+00:00", + "date_published": "2009-11-05T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "3ede4a6de30467e840dadb6b1a2f94fc", - "aliases": [ - "CVE-2009-3555", - "VC-OPENSSL-20091105-CVE-2009-3555" - ], - "summary": "Implement RFC5746 to address vulnerabilities in SSL/TLS renegotiation.", + "unique_content_id": "91d6f4b44c2f61e0b1d98cbec9e4633d", + "summary": "A memory leak in the zlib_stateful_finish function in crypto/comp/c_zlib.c allows remote attackers to cause a denial of service via vectors that trigger incorrect calls to the CRYPTO_cleanup_all_ex_data function.", "affected_packages": [ { "package": { @@ -1672,28 +1476,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4355", "severities": [], - "reference_id": "CVE-2009-3555", + "reference_id": "CVE-2009-4355", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20091111.txt", + "url": "https://github.com/openssl/openssl/commit/1b31b5ad560b16e2fe1cad54a755e3e6b5e778a3", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2009-11-05T00:00:00+00:00", + "date_published": "2010-01-13T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "91d6f4b44c2f61e0b1d98cbec9e4633d", - "aliases": [ - "CVE-2009-4355", - "VC-OPENSSL-20100113-CVE-2009-4355" - ], - "summary": "A memory leak in the zlib_stateful_finish function in crypto/comp/c_zlib.c allows remote attackers to cause a denial of service via vectors that trigger incorrect calls to the CRYPTO_cleanup_all_ex_data function.", + "unique_content_id": "f07be07de5fe8173dc2934d11c36c94d", + "summary": "A missing return value check flaw was discovered in OpenSSL, that could possibly cause OpenSSL to call a Kerberos library function with invalid arguments, resulting in a NULL pointer dereference crash in the MIT Kerberos library. In certain configurations, a remote attacker could use this flaw to crash a TLS/SSL server using OpenSSL by requesting Kerberos cipher suites during the TLS handshake", "affected_packages": [ { "package": { @@ -1704,34 +1504,30 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8m", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" + "fixed_version": "0.9.8n", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4355", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0433", "severities": [], - "reference_id": "CVE-2009-4355", + "reference_id": "CVE-2010-0433", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/1b31b5ad560b16e2fe1cad54a755e3e6b5e778a3", + "url": "https://github.com/openssl/openssl/commit/cca1cd9a3447dd067503e4a85ebd1679ee78a48e", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2010-01-13T00:00:00+00:00", + "date_published": "2010-01-19T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "f07be07de5fe8173dc2934d11c36c94d", - "aliases": [ - "CVE-2010-0433", - "VC-OPENSSL-20100119-CVE-2010-0433" - ], - "summary": "A missing return value check flaw was discovered in OpenSSL, that could possibly cause OpenSSL to call a Kerberos library function with invalid arguments, resulting in a NULL pointer dereference crash in the MIT Kerberos library. In certain configurations, a remote attacker could use this flaw to crash a TLS/SSL server using OpenSSL by requesting Kerberos cipher suites during the TLS handshake", + "unique_content_id": "e4f35efada1573e600eeb3f197a9654e", + "summary": "It was discovered that OpenSSL did not always check the return value of the bn_wexpand() function. An attacker able to trigger a memory allocation failure in that function could cause an application using the OpenSSL library to crash or, possibly, execute arbitrary code", "affected_packages": [ { "package": { @@ -1742,33 +1538,29 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8n", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m" + "fixed_version": "0.9.8m", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0433", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3245", "severities": [], - "reference_id": "CVE-2010-0433", + "reference_id": "CVE-2009-3245", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/cca1cd9a3447dd067503e4a85ebd1679ee78a48e", + "url": "https://github.com/openssl/openssl/commit/7e4cae1d2f555cbe9226b377aff4b56c9f7ddd4d", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2010-01-19T00:00:00+00:00", + "date_published": "2010-02-23T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "94276d565fb0e1af8800da5df17f96be", - "aliases": [ - "CVE-2010-0740", - "VC-OPENSSL-20100324-CVE-2010-0740" - ], "summary": "In TLS connections, certain incorrectly formatted records can cause an OpenSSL client or server to crash due to a read attempt at NULL.", "affected_packages": [ { @@ -1802,12 +1594,8 @@ "weaknesses": [] }, { - "unique_content_id": "fdfe8fe89fb08b0cedb50a64445793f9", - "aliases": [ - "CVE-2010-0742", - "VC-OPENSSL-20100601-CVE-2010-0742" - ], - "summary": "A flaw in the handling of CMS structures containing OriginatorInfo was found which could lead to a write to invalid memory address or double free. CMS support is disabled by default in OpenSSL 0.9.8 versions.", + "unique_content_id": "bfee13b4a1f7df094ab9f172cf3556c9", + "summary": "An invalid Return value check in pkey_rsa_verifyrecover was discovered. When verification recovery fails for RSA keys an uninitialised buffer with an undefined length is returned instead of an error code. This could lead to an information leak.", "affected_packages": [ { "package": { @@ -1820,25 +1608,13 @@ }, "fixed_version": "1.0.0a", "affected_version_range": "vers:openssl/1.0.0" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.8o", - "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0742", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-1633", "severities": [], - "reference_id": "CVE-2010-0742", + "reference_id": "CVE-2010-1633", "reference_type": "" }, { @@ -1852,12 +1628,8 @@ "weaknesses": [] }, { - "unique_content_id": "bfee13b4a1f7df094ab9f172cf3556c9", - "aliases": [ - "CVE-2010-1633", - "VC-OPENSSL-20100601-CVE-2010-1633" - ], - "summary": "An invalid Return value check in pkey_rsa_verifyrecover was discovered. When verification recovery fails for RSA keys an uninitialised buffer with an undefined length is returned instead of an error code. This could lead to an information leak.", + "unique_content_id": "fdfe8fe89fb08b0cedb50a64445793f9", + "summary": "A flaw in the handling of CMS structures containing OriginatorInfo was found which could lead to a write to invalid memory address or double free. CMS support is disabled by default in OpenSSL 0.9.8 versions.", "affected_packages": [ { "package": { @@ -1870,13 +1642,25 @@ }, "fixed_version": "1.0.0a", "affected_version_range": "vers:openssl/1.0.0" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.8o", + "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-1633", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0742", "severities": [], - "reference_id": "CVE-2010-1633", + "reference_id": "CVE-2010-0742", "reference_type": "" }, { @@ -1891,10 +1675,6 @@ }, { "unique_content_id": "76c3ba83fe766ac2a084b0bd3de847f5", - "aliases": [ - "CVE-2010-3864", - "VC-OPENSSL-20101116-CVE-2010-3864" - ], "summary": "A flaw in the OpenSSL TLS server extension code parsing which on affected servers can be exploited in a buffer overrun attack. Any OpenSSL based TLS server is vulnerable if it is multi-threaded and uses OpenSSL's internal caching mechanism. Servers that are multi-process and/or disable internal session caching are NOT affected.", "affected_packages": [ { @@ -1941,10 +1721,6 @@ }, { "unique_content_id": "316f2dc208adb956396af86e8d35c818", - "aliases": [ - "CVE-2010-4180", - "VC-OPENSSL-20101202-CVE-2010-4180" - ], "summary": "A flaw in the OpenSSL SSL/TLS server code where an old bug workaround allows malicious clients to modify the stored session cache ciphersuite. In some cases the ciphersuite can be downgraded to a weaker one on subsequent connections. This issue only affects OpenSSL based SSL/TLS server if it uses OpenSSL's internal caching mechanisms and the SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG flag (many applications enable this by using the SSL_OP_ALL option).", "affected_packages": [ { @@ -1991,10 +1767,6 @@ }, { "unique_content_id": "a65500a311ab1c4e556fa47df1b487e1", - "aliases": [ - "CVE-2010-4252", - "VC-OPENSSL-20101202-CVE-2010-4252" - ], "summary": "An error in OpenSSL's experimental J-PAKE implementation which could lead to successful validation by someone with no knowledge of the shared secret. The OpenSSL Team still consider the implementation of J-PAKE to be experimental and is not compiled by default.", "affected_packages": [ { @@ -2028,12 +1800,8 @@ "weaknesses": [] }, { - "unique_content_id": "5c73df85af33b3649d0f8f5cf48465d3", - "aliases": [ - "CVE-2010-5298", - "VC-OPENSSL-20140408-CVE-2010-5298" - ], - "summary": "A race condition in the ssl3_read_bytes function can allow remote attackers to inject data across sessions or cause a denial of service. This flaw only affects multithreaded applications using OpenSSL 1.0.0 and 1.0.1, where SSL_MODE_RELEASE_BUFFERS is enabled, which is not the default and not common.", + "unique_content_id": "4d2690fa788437a1517d397eabb14249", + "summary": "A buffer over-read flaw was discovered in the way OpenSSL parsed the Certificate Status Request TLS extensions in ClientHello TLS handshake messages. A remote attacker could possibly use this flaw to crash an SSL server using the affected OpenSSL functionality.", "affected_packages": [ { "package": { @@ -2044,8 +1812,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0m", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" + "fixed_version": "0.9.8r", + "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q" }, { "package": { @@ -2056,34 +1824,30 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1h", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" + "fixed_version": "1.0.0d", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-5298", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-0014", "severities": [], - "reference_id": "CVE-2010-5298", + "reference_id": "CVE-2011-0014", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://www.openssl.org/news/secadv/20110208.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2014-04-08T00:00:00+00:00", + "date_published": "2011-02-08T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "4d2690fa788437a1517d397eabb14249", - "aliases": [ - "CVE-2011-0014", - "VC-OPENSSL-20110208-CVE-2011-0014" - ], - "summary": "A buffer over-read flaw was discovered in the way OpenSSL parsed the Certificate Status Request TLS extensions in ClientHello TLS handshake messages. A remote attacker could possibly use this flaw to crash an SSL server using the affected OpenSSL functionality.", + "unique_content_id": "220a4682b4ef1cc32a29898f3057b9b3", + "summary": "Under certain circumstances OpenSSL's internal certificate verification routines can incorrectly accept a CRL whose nextUpdate field is in the past. Applications are only affected by the CRL checking vulnerability if they enable OpenSSL's internal CRL checking which is off by default. Applications which use their own custom CRL checking (such as Apache) are not affected.", "affected_packages": [ { "package": { @@ -2094,65 +1858,15 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8r", - "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0d", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c" + "fixed_version": "1.0.0e", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-0014", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-3207", "severities": [], - "reference_id": "CVE-2011-0014", - "reference_type": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20110208.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2011-02-08T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "220a4682b4ef1cc32a29898f3057b9b3", - "aliases": [ - "CVE-2011-3207", - "VC-OPENSSL-20110906-CVE-2011-3207" - ], - "summary": "Under certain circumstances OpenSSL's internal certificate verification routines can incorrectly accept a CRL whose nextUpdate field is in the past. Applications are only affected by the CRL checking vulnerability if they enable OpenSSL's internal CRL checking which is off by default. Applications which use their own custom CRL checking (such as Apache) are not affected.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0e", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-3207", - "severities": [], - "reference_id": "CVE-2011-3207", + "reference_id": "CVE-2011-3207", "reference_type": "" }, { @@ -2167,10 +1881,6 @@ }, { "unique_content_id": "990e85544590d4e2411449cfbc182afd", - "aliases": [ - "CVE-2011-3210", - "VC-OPENSSL-20110906-CVE-2011-3210" - ], "summary": "OpenSSL server code for ephemeral ECDH ciphersuites is not thread-safe, and furthermore can crash if a client violates the protocol by sending handshake messages in incorrect order. Only server-side applications that specifically support ephemeral ECDH ciphersuites are affected, and only if ephemeral ECDH ciphersuites are enabled in the configuration.", "affected_packages": [ { @@ -2216,12 +1926,8 @@ "weaknesses": [] }, { - "unique_content_id": "6a353734271d92996f12a08fde03f7bb", - "aliases": [ - "CVE-2011-4108", - "VC-OPENSSL-20120104-CVE-2011-4108" - ], - "summary": "OpenSSL was susceptable an extension of the Vaudenay padding oracle attack on CBC mode encryption which enables an efficient plaintext recovery attack against the OpenSSL implementation of DTLS by exploiting timing differences arising during decryption processing.", + "unique_content_id": "48361e01b38b28352705c300f7ee407b", + "summary": "Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack.", "affected_packages": [ { "package": { @@ -2250,9 +1956,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4108", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4619", "severities": [], - "reference_id": "CVE-2011-4108", + "reference_id": "CVE-2011-4619", "reference_type": "" }, { @@ -2267,10 +1973,6 @@ }, { "unique_content_id": "5459b1f4a775b3122cdb0ec3ad815b3d", - "aliases": [ - "CVE-2011-4109", - "VC-OPENSSL-20120104-CVE-2011-4109" - ], "summary": "If X509_V_FLAG_POLICY_CHECK is set in OpenSSL 0.9.8, then a policy check failure can lead to a double-free. The bug does not occur unless this flag is set. Users of OpenSSL 1.0.0 are not affected", "affected_packages": [ { @@ -2304,12 +2006,8 @@ "weaknesses": [] }, { - "unique_content_id": "85e39cd316fb40cbdc47d19d1f93fade", - "aliases": [ - "CVE-2011-4576", - "VC-OPENSSL-20120104-CVE-2011-4576" - ], - "summary": "OpenSSL failed to clear the bytes used as block cipher padding in SSL 3.0 records which could leak the contents of memory in some circumstances.", + "unique_content_id": "578281e8060ac1dc67b9d229e4b003ab", + "summary": "RFC 3779 data can be included in certificates, and if it is malformed, may trigger an assertion failure. This could be used in a denial-of-service attack. Builds of OpenSSL are only vulnerable if configured with \"enable-rfc3779\", which is not a default.", "affected_packages": [ { "package": { @@ -2338,9 +2036,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4576", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4577", "severities": [], - "reference_id": "CVE-2011-4576", + "reference_id": "CVE-2011-4577", "reference_type": "" }, { @@ -2354,12 +2052,8 @@ "weaknesses": [] }, { - "unique_content_id": "578281e8060ac1dc67b9d229e4b003ab", - "aliases": [ - "CVE-2011-4577", - "VC-OPENSSL-20120104-CVE-2011-4577" - ], - "summary": "RFC 3779 data can be included in certificates, and if it is malformed, may trigger an assertion failure. This could be used in a denial-of-service attack. Builds of OpenSSL are only vulnerable if configured with \"enable-rfc3779\", which is not a default.", + "unique_content_id": "5af91d2aece046ccf3bc688d3dff09d5", + "summary": "A flaw in the fix to CVE-2011-4108 can be exploited in a denial of service attack. Only DTLS applications are affected.", "affected_packages": [ { "package": { @@ -2370,8 +2064,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8s", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r" + "fixed_version": "0.9.8t", + "affected_version_range": "vers:openssl/0.9.8s" }, { "package": { @@ -2382,19 +2076,19 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0f", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e" + "fixed_version": "1.0.0g", + "affected_version_range": "vers:openssl/1.0.0f" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4577", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0050", "severities": [], - "reference_id": "CVE-2011-4577", + "reference_id": "CVE-2012-0050", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://www.openssl.org/news/secadv/20120118.txt", "severities": [], "reference_id": "", "reference_type": "" @@ -2404,12 +2098,8 @@ "weaknesses": [] }, { - "unique_content_id": "48361e01b38b28352705c300f7ee407b", - "aliases": [ - "CVE-2011-4619", - "VC-OPENSSL-20120104-CVE-2011-4619" - ], - "summary": "Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack.", + "unique_content_id": "6a353734271d92996f12a08fde03f7bb", + "summary": "OpenSSL was susceptable an extension of the Vaudenay padding oracle attack on CBC mode encryption which enables an efficient plaintext recovery attack against the OpenSSL implementation of DTLS by exploiting timing differences arising during decryption processing.", "affected_packages": [ { "package": { @@ -2438,9 +2128,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4619", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4108", "severities": [], - "reference_id": "CVE-2011-4619", + "reference_id": "CVE-2011-4108", "reference_type": "" }, { @@ -2454,13 +2144,21 @@ "weaknesses": [] }, { - "unique_content_id": "9c9b9e8b9a5f1a355656382f71722432", - "aliases": [ - "CVE-2012-0027", - "VC-OPENSSL-20120104-CVE-2012-0027" - ], - "summary": "A malicious TLS client can send an invalid set of GOST parameters which will cause the server to crash due to lack of error checking. This could be used in a denial-of-service attack. Only users of the OpenSSL GOST ENGINE are affected by this bug.", + "unique_content_id": "85e39cd316fb40cbdc47d19d1f93fade", + "summary": "OpenSSL failed to clear the bytes used as block cipher padding in SSL 3.0 records which could leak the contents of memory in some circumstances.", "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.8s", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r" + }, { "package": { "name": "openssl", @@ -2476,9 +2174,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0027", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4576", "severities": [], - "reference_id": "CVE-2012-0027", + "reference_id": "CVE-2011-4576", "reference_type": "" }, { @@ -2492,12 +2190,8 @@ "weaknesses": [] }, { - "unique_content_id": "5af91d2aece046ccf3bc688d3dff09d5", - "aliases": [ - "CVE-2012-0050", - "VC-OPENSSL-20120104-CVE-2012-0050" - ], - "summary": "A flaw in the fix to CVE-2011-4108 can be exploited in a denial of service attack. Only DTLS applications are affected.", + "unique_content_id": "9c9b9e8b9a5f1a355656382f71722432", + "summary": "A malicious TLS client can send an invalid set of GOST parameters which will cause the server to crash due to lack of error checking. This could be used in a denial-of-service attack. Only users of the OpenSSL GOST ENGINE are affected by this bug.", "affected_packages": [ { "package": { @@ -2508,31 +2202,19 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8t", - "affected_version_range": "vers:openssl/0.9.8s" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0g", - "affected_version_range": "vers:openssl/1.0.0f" + "fixed_version": "1.0.0f", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0050", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0027", "severities": [], - "reference_id": "CVE-2012-0050", + "reference_id": "CVE-2012-0027", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20120118.txt", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "", "reference_type": "" @@ -2543,10 +2225,6 @@ }, { "unique_content_id": "6744bf2a3fd6eba6b18d59fb648d443b", - "aliases": [ - "CVE-2012-0884", - "VC-OPENSSL-20120312-CVE-2012-0884" - ], "summary": "A weakness in the OpenSSL CMS and PKCS #7 code can be exploited using Bleichenbacher's attack on PKCS #1 v1.5 RSA padding also known as the million message attack (MMA). Only users of CMS, PKCS #7, or S/MIME decryption operations are affected, SSL/TLS applications are not affected by this issue.", "affected_packages": [ { @@ -2593,10 +2271,6 @@ }, { "unique_content_id": "c4e836c345751d38a3bff43c10e5a655", - "aliases": [ - "CVE-2012-2110", - "VC-OPENSSL-20120419-CVE-2012-2110" - ], "summary": "Multiple numeric conversion errors, leading to a buffer overflow, were found in the way OpenSSL parsed ASN.1 (Abstract Syntax Notation One) data from BIO (OpenSSL's I/O abstraction) inputs. Specially-crafted DER (Distinguished Encoding Rules) encoded data read from a file or other BIO input could cause an application using the OpenSSL library to crash or, potentially, execute arbitrary code.", "affected_packages": [ { @@ -2655,10 +2329,6 @@ }, { "unique_content_id": "7451866670acf0bd4a5f0c9d74bdfb18", - "aliases": [ - "CVE-2012-2131", - "VC-OPENSSL-20120424-CVE-2012-2131" - ], "summary": "It was discovered that the fix for CVE-2012-2110 released on 19 Apr 2012 was not sufficient to correct the issue for OpenSSL 0.9.8. This issue only affects OpenSSL 0.9.8v. OpenSSL 1.0.1a and 1.0.0i already contain a patch sufficient to correct CVE-2012-2110.", "affected_packages": [ { @@ -2693,10 +2363,6 @@ }, { "unique_content_id": "9a9efe32bb6fb903c9814b808b7f0206", - "aliases": [ - "CVE-2012-2333", - "VC-OPENSSL-20120510-CVE-2012-2333" - ], "summary": "An integer underflow flaw, leading to a buffer over-read, was found in the way OpenSSL handled TLS 1.1, TLS 1.2, and DTLS (Datagram Transport Layer Security) application data record lengths when using a block cipher in CBC (cipher-block chaining) mode. A malicious TLS 1.1, TLS 1.2, or DTLS client or server could use this flaw to crash its connection peer.", "affected_packages": [ { @@ -2754,13 +2420,33 @@ "weaknesses": [] }, { - "unique_content_id": "9c755e2b9ac36e9d77e7aa63ca6b91e5", - "aliases": [ - "CVE-2012-2686", - "VC-OPENSSL-20130205-CVE-2012-2686" - ], - "summary": "A flaw in the OpenSSL handling of CBC ciphersuites in TLS 1.1 and TLS 1.2 on AES-NI supporting platforms can be exploited in a DoS attack.", + "unique_content_id": "d1003ac6fdcb1a2a4d7bca936e239b42", + "summary": "A weakness in the handling of CBC ciphersuites in SSL, TLS and DTLS which could lead to plaintext recovery by exploiting timing differences arising during MAC processing.", "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.8y", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.0k", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j" + }, { "package": { "name": "openssl", @@ -2776,9 +2462,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2686", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-0169", "severities": [], - "reference_id": "CVE-2012-2686", + "reference_id": "CVE-2013-0169", "reference_type": "" }, { @@ -2788,15 +2474,11 @@ "reference_type": "" } ], - "date_published": "2013-02-05T00:00:00+00:00", + "date_published": "2013-02-04T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "084bb9ad1da9dafc260f041cfdaf868e", - "aliases": [ - "CVE-2013-0166", - "VC-OPENSSL-20130205-CVE-2013-0166" - ], "summary": "A flaw in the OpenSSL handling of OCSP response verification can be exploited in a denial of service attack.", "affected_packages": [ { @@ -2854,12 +2536,8 @@ "weaknesses": [] }, { - "unique_content_id": "d1003ac6fdcb1a2a4d7bca936e239b42", - "aliases": [ - "CVE-2013-0169", - "VC-OPENSSL-20130204-CVE-2013-0169" - ], - "summary": "A weakness in the handling of CBC ciphersuites in SSL, TLS and DTLS which could lead to plaintext recovery by exploiting timing differences arising during MAC processing.", + "unique_content_id": "9c755e2b9ac36e9d77e7aa63ca6b91e5", + "summary": "A flaw in the OpenSSL handling of CBC ciphersuites in TLS 1.1 and TLS 1.2 on AES-NI supporting platforms can be exploited in a DoS attack.", "affected_packages": [ { "package": { @@ -2870,9 +2548,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8y", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x" + "fixed_version": "1.0.1d", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2686", + "severities": [], + "reference_id": "CVE-2012-2686", + "reference_type": "" }, + { + "url": "https://www.openssl.org/news/secadv/20130205.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2013-02-05T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "cd972700acea991417121019f009bac1", + "summary": "A flaw in DTLS handling can cause an application using OpenSSL and DTLS to crash. This is not a vulnerability for OpenSSL prior to 1.0.0.", + "affected_packages": [ { "package": { "name": "openssl", @@ -2882,8 +2582,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0k", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j" + "fixed_version": "1.0.0l", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k" }, { "package": { @@ -2894,34 +2594,30 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1d", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c" + "fixed_version": "1.0.1f", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-0169", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6450", "severities": [], - "reference_id": "CVE-2013-0169", + "reference_id": "CVE-2013-6450", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20130205.txt", + "url": "https://github.com/openssl/openssl/commit/3462896", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2013-02-04T00:00:00+00:00", + "date_published": "2013-12-13T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "0e3a3a12e8060b9395fe7b48a7276377", - "aliases": [ - "CVE-2013-4353", - "VC-OPENSSL-20140106-CVE-2013-4353" - ], - "summary": "A carefully crafted invalid TLS handshake could crash OpenSSL with a NULL pointer exception. A malicious server could use this flaw to crash a connecting client. This issue only affected OpenSSL 1.0.1 versions.", + "unique_content_id": "bd7c16b098a35e13b1659e8c4934253d", + "summary": "A flaw in OpenSSL can cause an application using OpenSSL to crash when using TLS version 1.2. This issue only affected OpenSSL 1.0.1 versions.", "affected_packages": [ { "package": { @@ -2938,28 +2634,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4353", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6449", "severities": [], - "reference_id": "CVE-2013-4353", + "reference_id": "CVE-2013-6449", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/197e0ea817ad64820789d86711d55ff50d71f631", + "url": "https://github.com/openssl/openssl/commit/ca98926", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2014-01-06T00:00:00+00:00", + "date_published": "2013-12-14T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "bd7c16b098a35e13b1659e8c4934253d", - "aliases": [ - "CVE-2013-6449", - "VC-OPENSSL-20131214-CVE-2013-6449" - ], - "summary": "A flaw in OpenSSL can cause an application using OpenSSL to crash when using TLS version 1.2. This issue only affected OpenSSL 1.0.1 versions.", + "unique_content_id": "0e3a3a12e8060b9395fe7b48a7276377", + "summary": "A carefully crafted invalid TLS handshake could crash OpenSSL with a NULL pointer exception. A malicious server could use this flaw to crash a connecting client. This issue only affected OpenSSL 1.0.1 versions.", "affected_packages": [ { "package": { @@ -2976,28 +2668,24 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6449", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4353", "severities": [], - "reference_id": "CVE-2013-6449", + "reference_id": "CVE-2013-4353", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/ca98926", + "url": "https://github.com/openssl/openssl/commit/197e0ea817ad64820789d86711d55ff50d71f631", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2013-12-14T00:00:00+00:00", + "date_published": "2014-01-06T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "cd972700acea991417121019f009bac1", - "aliases": [ - "CVE-2013-6450", - "VC-OPENSSL-20131213-CVE-2013-6450" - ], - "summary": "A flaw in DTLS handling can cause an application using OpenSSL and DTLS to crash. This is not a vulnerability for OpenSSL prior to 1.0.0.", + "unique_content_id": "5d7762928fe0665ff593f8b93f0f7c2d", + "summary": "Fix for the attack described in the paper \"Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack\"", "affected_packages": [ { "package": { @@ -3008,58 +2696,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0l", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1f", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6450", - "severities": [], - "reference_id": "CVE-2013-6450", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/3462896", - "severities": [], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2013-12-13T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "5d7762928fe0665ff593f8b93f0f7c2d", - "aliases": [ - "CVE-2014-0076", - "VC-OPENSSL-20140214-CVE-2014-0076" - ], - "summary": "Fix for the attack described in the paper \"Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack\"", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3117,10 +2755,6 @@ }, { "unique_content_id": "3b9f07c3f3fc9a3177b7cba6994626f2", - "aliases": [ - "CVE-2014-0160", - "VC-OPENSSL-20140407-CVE-2014-0160" - ], "summary": "A missing bounds check in the handling of the TLS heartbeat extension can be used to reveal up to 64kB of memory to a connected client or server (a.k.a. Heartbleed). This issue did not affect versions of OpenSSL prior to 1.0.1.", "affected_packages": [ { @@ -3154,25 +2788,9 @@ "weaknesses": [] }, { - "unique_content_id": "da21b7edec2a01bd2495586e3e344a2c", - "aliases": [ - "CVE-2014-0195", - "VC-OPENSSL-20140605-CVE-2014-0195" - ], - "summary": "A buffer overrun attack can be triggered by sending invalid DTLS fragments to an OpenSSL DTLS client or server. This is potentially exploitable to run arbitrary code on a vulnerable client or server. Only applications using OpenSSL as a DTLS client or server affected.", + "unique_content_id": "5c73df85af33b3649d0f8f5cf48465d3", + "summary": "A race condition in the ssl3_read_bytes function can allow remote attackers to inject data across sessions or cause a denial of service. This flaw only affects multithreaded applications using OpenSSL 1.0.0 and 1.0.1, where SSL_MODE_RELEASE_BUFFERS is enabled, which is not the default and not common.", "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" - }, { "package": { "name": "openssl", @@ -3200,9 +2818,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0195", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-5298", "severities": [], - "reference_id": "CVE-2014-0195", + "reference_id": "CVE-2010-5298", "reference_type": "" }, { @@ -3212,15 +2830,11 @@ "reference_type": "" } ], - "date_published": "2014-06-05T00:00:00+00:00", + "date_published": "2014-04-08T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "ee4174c785ef4de123c8f5c8c4fbf9b2", - "aliases": [ - "CVE-2014-0198", - "VC-OPENSSL-20140421-CVE-2014-0198" - ], "summary": "A flaw in the do_ssl3_write function can allow remote attackers to cause a denial of service via a NULL pointer dereference. This flaw only affects OpenSSL 1.0.0 and 1.0.1 where SSL_MODE_RELEASE_BUFFERS is enabled, which is not the default and not common.", "affected_packages": [ { @@ -3266,12 +2880,8 @@ "weaknesses": [] }, { - "unique_content_id": "bc12de8c2221021ccb7c3659b08cd3f5", - "aliases": [ - "CVE-2014-0221", - "VC-OPENSSL-20140605-CVE-2014-0221" - ], - "summary": "By sending an invalid DTLS handshake to an OpenSSL DTLS client the code can be made to recurse eventually crashing in a DoS attack. Only applications using OpenSSL as a DTLS client are affected.", + "unique_content_id": "4e8f724565b6429137ea959defa72090", + "summary": "OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack.", "affected_packages": [ { "package": { @@ -3312,9 +2922,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0221", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3470", "severities": [], - "reference_id": "CVE-2014-0221", + "reference_id": "CVE-2014-3470", "reference_type": "" }, { @@ -3324,15 +2934,11 @@ "reference_type": "" } ], - "date_published": "2014-06-05T00:00:00+00:00", + "date_published": "2014-05-30T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "a73f61be805e75d9468e11afb3158d45", - "aliases": [ - "CVE-2014-0224", - "VC-OPENSSL-20140605-CVE-2014-0224" - ], "summary": "An attacker can force the use of weak keying material in OpenSSL SSL/TLS clients and servers. This can be exploited by a Man-in-the-middle (MITM) attack where the attacker can decrypt and modify traffic from the attacked client and server.", "affected_packages": [ { @@ -3390,12 +2996,8 @@ "weaknesses": [] }, { - "unique_content_id": "4e8f724565b6429137ea959defa72090", - "aliases": [ - "CVE-2014-3470", - "VC-OPENSSL-20140530-CVE-2014-3470" - ], - "summary": "OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack.", + "unique_content_id": "bc12de8c2221021ccb7c3659b08cd3f5", + "summary": "By sending an invalid DTLS handshake to an OpenSSL DTLS client the code can be made to recurse eventually crashing in a DoS attack. Only applications using OpenSSL as a DTLS client are affected.", "affected_packages": [ { "package": { @@ -3436,9 +3038,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3470", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0221", "severities": [], - "reference_id": "CVE-2014-3470", + "reference_id": "CVE-2014-0221", "reference_type": "" }, { @@ -3448,16 +3050,12 @@ "reference_type": "" } ], - "date_published": "2014-05-30T00:00:00+00:00", + "date_published": "2014-06-05T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "913ba8a6e88c02283428f89a6d24952b", - "aliases": [ - "CVE-2014-3505", - "VC-OPENSSL-20140806-CVE-2014-3505" - ], - "summary": "A Double Free was found when processing DTLS packets. An attacker can force an error condition which causes openssl to crash whilst processing DTLS packets due to memory being freed twice. This could lead to a Denial of Service attack.", + "unique_content_id": "da21b7edec2a01bd2495586e3e344a2c", + "summary": "A buffer overrun attack can be triggered by sending invalid DTLS fragments to an OpenSSL DTLS client or server. This is potentially exploitable to run arbitrary code on a vulnerable client or server. Only applications using OpenSSL as a DTLS client or server affected.", "affected_packages": [ { "package": { @@ -3468,8 +3066,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3480,8 +3078,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0n", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" + "fixed_version": "1.0.0m", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" }, { "package": { @@ -3492,34 +3090,30 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1i", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h" + "fixed_version": "1.0.1h", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3505", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0195", "severities": [], - "reference_id": "CVE-2014-3505", + "reference_id": "CVE-2014-0195", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", + "url": "https://www.openssl.org/news/secadv/20140605.txt", "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2014-08-06T00:00:00+00:00", + "date_published": "2014-06-05T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "27f89a41dfab2654a12a2d701b68ad9c", - "aliases": [ - "CVE-2014-3506", - "VC-OPENSSL-20140806-CVE-2014-3506" - ], - "summary": "A DTLS flaw leading to memory exhaustion was found. An attacker can force openssl to consume large amounts of memory whilst processing DTLS handshake messages. This could lead to a Denial of Service attack.", + "unique_content_id": "073034548d58e9674b4080cd0c36f8cb", + "summary": "A flaw in handling DTLS anonymous EC(DH) ciphersuites was found. OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to a denial of service attack. A malicious server can crash the client with a null pointer dereference (read) by specifying an anonymous (EC)DH ciphersuite and sending carefully crafted handshake messages.", "affected_packages": [ { "package": { @@ -3560,9 +3154,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3506", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3510", "severities": [], - "reference_id": "CVE-2014-3506", + "reference_id": "CVE-2014-3510", "reference_type": "" }, { @@ -3576,12 +3170,8 @@ "weaknesses": [] }, { - "unique_content_id": "48ecff4dbadf3f99198fcfb4138048d8", - "aliases": [ - "CVE-2014-3507", - "VC-OPENSSL-20140806-CVE-2014-3507" - ], - "summary": "A DTLS memory leak from zero-length fragments was found. By sending carefully crafted DTLS packets an attacker could cause OpenSSL to leak memory. This could lead to a Denial of Service attack.", + "unique_content_id": "27f89a41dfab2654a12a2d701b68ad9c", + "summary": "A DTLS flaw leading to memory exhaustion was found. An attacker can force openssl to consume large amounts of memory whilst processing DTLS handshake messages. This could lead to a Denial of Service attack.", "affected_packages": [ { "package": { @@ -3593,7 +3183,7 @@ "qualifiers": "" }, "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3605,7 +3195,7 @@ "qualifiers": "" }, "fixed_version": "1.0.0n", - "affected_version_range": "vers:openssl/1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" }, { "package": { @@ -3622,9 +3212,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3507", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3506", "severities": [], - "reference_id": "CVE-2014-3507", + "reference_id": "CVE-2014-3506", "reference_type": "" }, { @@ -3638,12 +3228,8 @@ "weaknesses": [] }, { - "unique_content_id": "e1e9269594db16c804a566e20f436cd2", - "aliases": [ - "CVE-2014-3508", - "VC-OPENSSL-20140806-CVE-2014-3508" - ], - "summary": "A flaw in OBJ_obj2txt may cause pretty printing functions such as X509_name_oneline, X509_name_print_ex, to leak some information from the stack. Applications may be affected if they echo pretty printing output to the attacker. OpenSSL SSL/TLS clients and servers themselves are not affected.", + "unique_content_id": "48ecff4dbadf3f99198fcfb4138048d8", + "summary": "A DTLS memory leak from zero-length fragments was found. By sending carefully crafted DTLS packets an attacker could cause OpenSSL to leak memory. This could lead to a Denial of Service attack.", "affected_packages": [ { "package": { @@ -3655,7 +3241,7 @@ "qualifiers": "" }, "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" + "affected_version_range": "vers:openssl/0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3667,7 +3253,7 @@ "qualifiers": "" }, "fixed_version": "1.0.0n", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" + "affected_version_range": "vers:openssl/1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" }, { "package": { @@ -3684,9 +3270,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3508", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3507", "severities": [], - "reference_id": "CVE-2014-3508", + "reference_id": "CVE-2014-3507", "reference_type": "" }, { @@ -3700,25 +3286,9 @@ "weaknesses": [] }, { - "unique_content_id": "db4e7a865c812a2f137555357a4ea54a", - "aliases": [ - "CVE-2014-3509", - "VC-OPENSSL-20140806-CVE-2014-3509" - ], - "summary": "A race condition was found in ssl_parse_serverhello_tlsext. If a multithreaded client connects to a malicious server using a resumed session and the server sends an ec point format extension, it could write up to 255 bytes to freed memory.", + "unique_content_id": "4c289b7168ed3ac1dc649dd94e296ee2", + "summary": "A SRP buffer overrun was found. A malicious client or server can send invalid SRP parameters and overrun an internal buffer. Only applications which are explicitly set up for SRP use are affected.", "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0n", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" - }, { "package": { "name": "openssl", @@ -3734,9 +3304,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3509", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3512", "severities": [], - "reference_id": "CVE-2014-3509", + "reference_id": "CVE-2014-3512", "reference_type": "" }, { @@ -3750,12 +3320,8 @@ "weaknesses": [] }, { - "unique_content_id": "073034548d58e9674b4080cd0c36f8cb", - "aliases": [ - "CVE-2014-3510", - "VC-OPENSSL-20140806-CVE-2014-3510" - ], - "summary": "A flaw in handling DTLS anonymous EC(DH) ciphersuites was found. OpenSSL DTLS clients enabling anonymous (EC)DH ciphersuites are subject to a denial of service attack. A malicious server can crash the client with a null pointer dereference (read) by specifying an anonymous (EC)DH ciphersuite and sending carefully crafted handshake messages.", + "unique_content_id": "913ba8a6e88c02283428f89a6d24952b", + "summary": "A Double Free was found when processing DTLS packets. An attacker can force an error condition which causes openssl to crash whilst processing DTLS packets due to memory being freed twice. This could lead to a Denial of Service attack.", "affected_packages": [ { "package": { @@ -3767,7 +3333,7 @@ "qualifiers": "" }, "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" + "affected_version_range": "vers:openssl/0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3796,9 +3362,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3510", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3505", "severities": [], - "reference_id": "CVE-2014-3510", + "reference_id": "CVE-2014-3505", "reference_type": "" }, { @@ -3813,10 +3379,6 @@ }, { "unique_content_id": "a5d66943f85ab01f18b1181d5dccceb3", - "aliases": [ - "CVE-2014-3511", - "VC-OPENSSL-20140806-CVE-2014-3511" - ], "summary": "A flaw in the OpenSSL SSL/TLS server code causes the server to negotiate TLS 1.0 instead of higher protocol versions when the ClientHello message is badly fragmented. This allows a man-in-the-middle attacker to force a downgrade to TLS 1.0 even if both the server and the client support a higher protocol version, by modifying the client's TLS records.", "affected_packages": [ { @@ -3850,12 +3412,8 @@ "weaknesses": [] }, { - "unique_content_id": "4c289b7168ed3ac1dc649dd94e296ee2", - "aliases": [ - "CVE-2014-3512", - "VC-OPENSSL-20140806-CVE-2014-3512" - ], - "summary": "A SRP buffer overrun was found. A malicious client or server can send invalid SRP parameters and overrun an internal buffer. Only applications which are explicitly set up for SRP use are affected.", + "unique_content_id": "cca76ec7e4ca1da60dc37bfb7065a74d", + "summary": "A crash was found affecting SRP ciphersuites used in a Server Hello message. The issue affects OpenSSL clients and allows a malicious server to crash the client with a null pointer dereference (read) by specifying an SRP ciphersuite even though it was not properly negotiated with the client. This could lead to a Denial of Service.", "affected_packages": [ { "package": { @@ -3872,9 +3430,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3512", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-5139", "severities": [], - "reference_id": "CVE-2014-3512", + "reference_id": "CVE-2014-5139", "reference_type": "" }, { @@ -3888,12 +3446,8 @@ "weaknesses": [] }, { - "unique_content_id": "3dbf91d5443471c2da6cf221eddf9898", - "aliases": [ - "CVE-2014-3513", - "VC-OPENSSL-20141015-CVE-2014-3513" - ], - "summary": "A flaw in the DTLS SRTP extension parsing code allows an attacker, who sends a carefully crafted handshake message, to cause OpenSSL to fail to free up to 64k of memory causing a memory leak. This could be exploited in a Denial Of Service attack. This issue affects OpenSSL 1.0.1 server implementations for both SSL/TLS and DTLS regardless of whether SRTP is used or configured. Implementations of OpenSSL that have been compiled with OPENSSL_NO_SRTP defined are not affected.", + "unique_content_id": "db4e7a865c812a2f137555357a4ea54a", + "summary": "A race condition was found in ssl_parse_serverhello_tlsext. If a multithreaded client connects to a malicious server using a resumed session and the server sends an ec point format extension, it could write up to 255 bytes to freed memory.", "affected_packages": [ { "package": { @@ -3904,40 +3458,42 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1j", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" + "fixed_version": "1.0.0n", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1i", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3513", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3509", "severities": [], - "reference_id": "CVE-2014-3513", + "reference_id": "CVE-2014-3509", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20141015.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "", "reference_type": "" } ], - "date_published": "2014-10-15T00:00:00+00:00", + "date_published": "2014-08-06T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "63bf7bb20dcd1c7a3214c025ea53c1da", - "aliases": [ - "CVE-2014-3567", - "VC-OPENSSL-20141015-CVE-2014-3567" - ], - "summary": "When an OpenSSL SSL/TLS/DTLS server receives a session ticket the integrity of that ticket is first verified. In the event of a session ticket integrity check failing, OpenSSL will fail to free memory causing a memory leak. By sending a large number of invalid session tickets an attacker could exploit this issue in a Denial Of Service attack.", + "unique_content_id": "e1e9269594db16c804a566e20f436cd2", + "summary": "A flaw in OBJ_obj2txt may cause pretty printing functions such as X509_name_oneline, X509_name_print_ex, to leak some information from the stack. Applications may be affected if they echo pretty printing output to the attacker. OpenSSL SSL/TLS clients and servers themselves are not affected.", "affected_packages": [ { "package": { @@ -3948,8 +3504,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" + "fixed_version": "0.9.8zb", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3960,8 +3516,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0o", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n" + "fixed_version": "1.0.0n", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m" }, { "package": { @@ -3972,23 +3528,57 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1j", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" + "fixed_version": "1.0.1i", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3567", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3508", "severities": [], - "reference_id": "CVE-2014-3567", + "reference_id": "CVE-2014-3508", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20141015.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual", + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2014-08-06T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "3dbf91d5443471c2da6cf221eddf9898", + "summary": "A flaw in the DTLS SRTP extension parsing code allows an attacker, who sends a carefully crafted handshake message, to cause OpenSSL to fail to free up to 64k of memory causing a memory leak. This could be exploited in a Denial Of Service attack. This issue affects OpenSSL 1.0.1 server implementations for both SSL/TLS and DTLS regardless of whether SRTP is used or configured. Implementations of OpenSSL that have been compiled with OPENSSL_NO_SRTP defined are not affected.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1j", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3513", + "severities": [], + "reference_id": "CVE-2014-3513", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20141015.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual", "scoring_elements": "" } ], @@ -4000,12 +3590,8 @@ "weaknesses": [] }, { - "unique_content_id": "ba13f3aea682e9e1c5fab3672da07088", - "aliases": [ - "CVE-2014-3568", - "VC-OPENSSL-20141015-CVE-2014-3568" - ], - "summary": "When OpenSSL is configured with \"no-ssl3\" as a build option, servers could accept and complete a SSL 3.0 handshake, and clients could be configured to send them.", + "unique_content_id": "63bf7bb20dcd1c7a3214c025ea53c1da", + "summary": "When an OpenSSL SSL/TLS/DTLS server receives a session ticket the integrity of that ticket is first verified. In the event of a session ticket integrity check failing, OpenSSL will fail to free memory causing a memory leak. By sending a large number of invalid session tickets an attacker could exploit this issue in a Denial Of Service attack.", "affected_packages": [ { "package": { @@ -4017,7 +3603,7 @@ "qualifiers": "" }, "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" + "affected_version_range": "vers:openssl/0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -4046,16 +3632,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3568", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3567", "severities": [], - "reference_id": "CVE-2014-3568", + "reference_id": "CVE-2014-3567", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20141015.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -4068,12 +3654,8 @@ "weaknesses": [] }, { - "unique_content_id": "d615f85fc740c95b6b98e150b56d1ae3", - "aliases": [ - "CVE-2014-3569", - "VC-OPENSSL-20141021-CVE-2014-3569" - ], - "summary": "When openssl is built with the no-ssl3 option and a SSL v3 ClientHello is received the ssl method would be set to NULL which could later result in a NULL pointer dereference.", + "unique_content_id": "88aac050ad73754e929805f2ab5e64e7", + "summary": "OpenSSL has added support for TLS_FALLBACK_SCSV to allow applications to block the ability for a MITM attacker to force a protocol downgrade. Some client applications (such as browsers) will reconnect using a downgraded protocol to work around interoperability bugs in older servers. This could be exploited by an active man-in-the-middle to downgrade connections to SSL 3.0 even if both sides of the connection support higher protocols. SSL 3.0 contains a number of weaknesses including POODLE (CVE-2014-3566). See also https://tools.ietf.org/html/draft-ietf-tls-downgrade-scsv-00 and https://www.openssl.org/~bodo/ssl-poodle.pdf", "affected_packages": [ { "package": { @@ -4084,8 +3666,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8zc" + "fixed_version": "0.9.8zc", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -4096,8 +3678,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0p", - "affected_version_range": "vers:openssl/1.0.0o" + "fixed_version": "1.0.0o", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n" }, { "package": { @@ -4108,40 +3690,17 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1k", - "affected_version_range": "vers:openssl/1.0.1j" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3569", - "severities": [], - "reference_id": "CVE-2014-3569", - "reference_type": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20150108.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" + "fixed_version": "1.0.1j", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" } ], - "date_published": "2014-10-21T00:00:00+00:00", + "references": [], + "date_published": "2014-10-15T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "f2f9de1344eacac2f17f6642b9655651", - "aliases": [ - "CVE-2014-3570", - "VC-OPENSSL-20150108-CVE-2014-3570" - ], - "summary": "Bignum squaring (BN_sqr) may produce incorrect results on some platforms, including x86_64. This bug occurs at random with a very low probability, and is not known to be exploitable in any way, though its exact impact is difficult to determine. The following has been determined: *) The probability of BN_sqr producing an incorrect result at random is very low: 1/2^64 on the single affected 32-bit platform (MIPS) and 1/2^128 on affected 64-bit platforms. *) On most platforms, RSA follows a different code path and RSA operations are not affected at all. For the remaining platforms (e.g. OpenSSL built without assembly support), pre-existing countermeasures thwart bug attacks [1]. *) Static ECDH is theoretically affected: it is possible to construct elliptic curve points that would falsely appear to be on the given curve. However, there is no known computationally feasible way to construct such points with low order, and so the security of static ECDH private keys is believed to be unaffected. *) Other routines known to be theoretically affected are modular exponentiation, primality testing, DSA, RSA blinding, JPAKE and SRP. No exploits are known and straightforward bug attacks fail - either the attacker cannot control when the bug triggers, or no private key material is involved.", + "unique_content_id": "ba13f3aea682e9e1c5fab3672da07088", + "summary": "When OpenSSL is configured with \"no-ssl3\" as a build option, servers could accept and complete a SSL 3.0 handshake, and clients could be configured to send them.", "affected_packages": [ { "package": { @@ -4152,8 +3711,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "fixed_version": "0.9.8zc", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -4164,8 +3723,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0p", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o" + "fixed_version": "1.0.0o", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n" }, { "package": { @@ -4176,19 +3735,19 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1k", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j" + "fixed_version": "1.0.1j", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3570", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3568", "severities": [], - "reference_id": "CVE-2014-3570", + "reference_id": "CVE-2014-3568", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20141015.txt", "severities": [ { "value": "Low", @@ -4200,16 +3759,12 @@ "reference_type": "" } ], - "date_published": "2015-01-08T00:00:00+00:00", + "date_published": "2014-10-15T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "b80715d645997362b4be69a335b46cd5", - "aliases": [ - "CVE-2014-3571", - "VC-OPENSSL-20150105-CVE-2014-3571" - ], - "summary": "A carefully crafted DTLS message can cause a segmentation fault in OpenSSL due to a NULL pointer dereference. This could lead to a Denial Of Service attack.", + "unique_content_id": "d615f85fc740c95b6b98e150b56d1ae3", + "summary": "When openssl is built with the no-ssl3 option and a SSL v3 ClientHello is received the ssl method would be set to NULL which could later result in a NULL pointer dereference.", "affected_packages": [ { "package": { @@ -4221,7 +3776,7 @@ "qualifiers": "" }, "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "affected_version_range": "vers:openssl/0.9.8zc" }, { "package": { @@ -4233,7 +3788,7 @@ "qualifiers": "" }, "fixed_version": "1.0.0p", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o" + "affected_version_range": "vers:openssl/1.0.0o" }, { "package": { @@ -4245,21 +3800,21 @@ "qualifiers": "" }, "fixed_version": "1.0.1k", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j" + "affected_version_range": "vers:openssl/1.0.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3571", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3569", "severities": [], - "reference_id": "CVE-2014-3571", + "reference_id": "CVE-2014-3569", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -4268,15 +3823,11 @@ "reference_type": "" } ], - "date_published": "2015-01-05T00:00:00+00:00", + "date_published": "2014-10-21T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "16d87492de289b2cbfd7ba3ef7e106fc", - "aliases": [ - "CVE-2014-3572", - "VC-OPENSSL-20150105-CVE-2014-3572" - ], "summary": "An OpenSSL client will accept a handshake using an ephemeral ECDH ciphersuite using an ECDSA certificate if the server key exchange message is omitted. This effectively removes forward secrecy from the ciphersuite.", "affected_packages": [ { @@ -4340,50 +3891,8 @@ "weaknesses": [] }, { - "unique_content_id": "cca76ec7e4ca1da60dc37bfb7065a74d", - "aliases": [ - "CVE-2014-5139", - "VC-OPENSSL-20140806-CVE-2014-5139" - ], - "summary": "A crash was found affecting SRP ciphersuites used in a Server Hello message. The issue affects OpenSSL clients and allows a malicious server to crash the client with a null pointer dereference (read) by specifying an SRP ciphersuite even though it was not properly negotiated with the client. This could lead to a Denial of Service.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1i", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-5139", - "severities": [], - "reference_id": "CVE-2014-5139", - "reference_type": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2014-08-06T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "1d42619f9d572e6c6f831da1d4b5347c", - "aliases": [ - "CVE-2014-8176", - "VC-OPENSSL-20150611-CVE-2014-8176" - ], - "summary": "This vulnerability does not affect current versions of OpenSSL. It existed in previous OpenSSL versions and was fixed in June 2014. If a DTLS peer receives application data between the ChangeCipherSpec and Finished messages, buffering of such data may cause an invalid free, resulting in a segmentation fault or potentially, memory corruption.", + "unique_content_id": "3f5c428c988da21fcf75625d7764c31e", + "summary": "OpenSSL accepts several non-DER-variations of certificate signature algorithm and signature encodings. OpenSSL also does not enforce a match between the signature algorithm between the signed and unsigned portions of the certificate. By modifying the contents of the signature algorithm or the encoding of the signature, it is possible to change the certificate's fingerprint. This does not allow an attacker to forge certificates, and does not affect certificate verification or OpenSSL servers/clients in any other way. It also does not affect common revocation mechanisms. Only custom applications that rely on the uniqueness of the fingerprint (e.g. certificate blacklists) may be affected.", "affected_packages": [ { "package": { @@ -4394,8 +3903,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" + "fixed_version": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4406,8 +3915,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0m", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" + "fixed_version": "1.0.0p", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o" }, { "package": { @@ -4418,22 +3927,22 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1h", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" + "fixed_version": "1.0.1k", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8176", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8275", "severities": [], - "reference_id": "CVE-2014-8176", + "reference_id": "CVE-2014-8275", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20150611.txt", + "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -4442,16 +3951,12 @@ "reference_type": "" } ], - "date_published": "2015-06-11T00:00:00+00:00", + "date_published": "2015-01-05T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "3f5c428c988da21fcf75625d7764c31e", - "aliases": [ - "CVE-2014-8275", - "VC-OPENSSL-20150105-CVE-2014-8275" - ], - "summary": "OpenSSL accepts several non-DER-variations of certificate signature algorithm and signature encodings. OpenSSL also does not enforce a match between the signature algorithm between the signed and unsigned portions of the certificate. By modifying the contents of the signature algorithm or the encoding of the signature, it is possible to change the certificate's fingerprint. This does not allow an attacker to forge certificates, and does not affect certificate verification or OpenSSL servers/clients in any other way. It also does not affect common revocation mechanisms. Only custom applications that rely on the uniqueness of the fingerprint (e.g. certificate blacklists) may be affected.", + "unique_content_id": "b80715d645997362b4be69a335b46cd5", + "summary": "A carefully crafted DTLS message can cause a segmentation fault in OpenSSL due to a NULL pointer dereference. This could lead to a Denial Of Service attack.", "affected_packages": [ { "package": { @@ -4492,16 +3997,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8275", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3571", "severities": [], - "reference_id": "CVE-2014-8275", + "reference_id": "CVE-2014-3571", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -4515,10 +4020,6 @@ }, { "unique_content_id": "ecbce64df0cdd160db419c6db1cd9dc4", - "aliases": [ - "CVE-2015-0204", - "VC-OPENSSL-20150106-CVE-2015-0204" - ], "summary": "An OpenSSL client will accept the use of an RSA temporary key in a non-export RSA key exchange ciphersuite. A server could present a weak temporary key and downgrade the security of the session.", "affected_packages": [ { @@ -4583,10 +4084,6 @@ }, { "unique_content_id": "14a72a501af8865388558895f94f4719", - "aliases": [ - "CVE-2015-0205", - "VC-OPENSSL-20150108-CVE-2015-0205" - ], "summary": "An OpenSSL server will accept a DH certificate for client authentication without the certificate verify message. This effectively allows a client to authenticate without the use of a private key. This only affects servers which trust a client certificate authority which issues certificates containing DH keys: these are extremely rare and hardly ever encountered.", "affected_packages": [ { @@ -4639,10 +4136,6 @@ }, { "unique_content_id": "ae55e9f4f7210581875a2de83cc058ec", - "aliases": [ - "CVE-2015-0206", - "VC-OPENSSL-20150108-CVE-2015-0206" - ], "summary": "A memory leak can occur in the dtls1_buffer_record function under certain conditions. In particular this could occur if an attacker sent repeated DTLS records with the same sequence number but for the next epoch. The memory leak could be exploited by an attacker in a Denial of Service attack through memory exhaustion.", "affected_packages": [ { @@ -4694,12 +4187,8 @@ "weaknesses": [] }, { - "unique_content_id": "66636a0c48ff0f39676cc43ff2fad975", - "aliases": [ - "CVE-2015-0207", - "VC-OPENSSL-20150319-CVE-2015-0207" - ], - "summary": "Segmentation fault in DTLSv1_listen. A defect in the implementation of DTLSv1_listen means that state is preserved in the SSL object from one invocation to the next that can lead to a segmentation fault. Errors processing the initial ClientHello can trigger this scenario. An example of such an error could be that a DTLS1.0 only client is attempting to connect to a DTLS1.2 only server.", + "unique_content_id": "f2f9de1344eacac2f17f6642b9655651", + "summary": "Bignum squaring (BN_sqr) may produce incorrect results on some platforms, including x86_64. This bug occurs at random with a very low probability, and is not known to be exploitable in any way, though its exact impact is difficult to determine. The following has been determined: *) The probability of BN_sqr producing an incorrect result at random is very low: 1/2^64 on the single affected 32-bit platform (MIPS) and 1/2^128 on affected 64-bit platforms. *) On most platforms, RSA follows a different code path and RSA operations are not affected at all. For the remaining platforms (e.g. OpenSSL built without assembly support), pre-existing countermeasures thwart bug attacks [1]. *) Static ECDH is theoretically affected: it is possible to construct elliptic curve points that would falsely appear to be on the given curve. However, there is no known computationally feasible way to construct such points with low order, and so the security of static ECDH private keys is believed to be unaffected. *) Other routines known to be theoretically affected are modular exponentiation, primality testing, DSA, RSA blinding, JPAKE and SRP. No exploits are known and straightforward bug attacks fail - either the attacker cannot control when the bug triggers, or no private key material is involved.", "affected_packages": [ { "package": { @@ -4710,22 +4199,46 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "fixed_version": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.0p", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1k", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0207", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3570", "severities": [], - "reference_id": "CVE-2015-0207", + "reference_id": "CVE-2014-3570", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20150319.txt", + "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -4734,60 +4247,12 @@ "reference_type": "" } ], - "date_published": "2015-03-19T00:00:00+00:00", + "date_published": "2015-01-08T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "5d5cb3ddc2d7d372e96fc9e7eb0e6172", - "aliases": [ - "CVE-2015-0208", - "VC-OPENSSL-20150319-CVE-2015-0208" - ], - "summary": "Segmentation fault for invalid PSS parameters. The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and invalid parameters. Since these routines are used to verify certificate signature algorithms this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0208", - "severities": [], - "reference_id": "CVE-2015-0208", - "reference_type": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20150319.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2015-03-19T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "b91a75f67326a148c90e6ad45ba11839", - "aliases": [ - "CVE-2015-0209", - "VC-OPENSSL-20150319-CVE-2015-0209" - ], - "summary": "Use After Free following d2i_ECPrivatekey error. A malformed EC private key file consumed via the d2i_ECPrivateKey function could cause a use after free condition. This, in turn, could cause a double free in several private key parsing functions (such as d2i_PrivateKey or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption for applications that receive EC private keys from untrusted sources. This scenario is considered rare.", + "unique_content_id": "fde824bdb24f286066693f15a53a9c11", + "summary": "X509_to_X509_REQ NULL pointer deref. The function X509_to_X509_REQ will crash with a NULL pointer dereference if the certificate key is invalid. This function is rarely used in practice.", "affected_packages": [ { "package": { @@ -4840,9 +4305,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0209", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0288", "severities": [], - "reference_id": "CVE-2015-0209", + "reference_id": "CVE-2015-0288", "reference_type": "" }, { @@ -4858,15 +4323,11 @@ "reference_type": "" } ], - "date_published": "2015-03-19T00:00:00+00:00", + "date_published": "2015-03-02T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "92852e9f71e2d4220063d01c7e871d0f", - "aliases": [ - "CVE-2015-0285", - "VC-OPENSSL-20150310-CVE-2015-0285" - ], "summary": "Under certain conditions an OpenSSL 1.0.2 client can complete a handshake with an unseeded PRNG. If the handshake succeeds then the client random that has been used will have been generated from a PRNG with insufficient entropy and therefore the output may be predictable.", "affected_packages": [ { @@ -4906,12 +4367,8 @@ "weaknesses": [] }, { - "unique_content_id": "d0946aba30cf839fdbc468685b6bd683", - "aliases": [ - "CVE-2015-0286", - "VC-OPENSSL-20150319-CVE-2015-0286" - ], - "summary": "Segmentation fault in ASN1_TYPE_cmp. The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check certificate signature algorithm consistency this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", + "unique_content_id": "037837042ea4921162841a8a572dedb7", + "summary": "A vulnerability existed in previous versions of OpenSSL related to the processing of base64 encoded data. Any code path that reads base64 data from an untrusted source could be affected (such as the PEM processing routines). Maliciously crafted base 64 data could trigger a segmenation fault or memory corruption.", "affected_packages": [ { "package": { @@ -4922,8 +4379,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8zd|0.9.8ze" + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" }, { "package": { @@ -4934,8 +4391,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0r", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" + "fixed_version": "1.0.0m", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" }, { "package": { @@ -4946,9 +4403,37 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1m", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" + "fixed_version": "1.0.1h", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0292", + "severities": [], + "reference_id": "CVE-2015-0292", + "reference_type": "" }, + { + "url": "https://www.openssl.org/news/secadv/20150319.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2015-03-19T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "5d5cb3ddc2d7d372e96fc9e7eb0e6172", + "summary": "Segmentation fault for invalid PSS parameters. The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and invalid parameters. Since these routines are used to verify certificate signature algorithms this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", + "affected_packages": [ { "package": { "name": "openssl", @@ -4964,9 +4449,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0286", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0208", "severities": [], - "reference_id": "CVE-2015-0286", + "reference_id": "CVE-2015-0208", "reference_type": "" }, { @@ -4986,12 +4471,48 @@ "weaknesses": [] }, { - "unique_content_id": "7f14c539a7b1d7b62b178e81a164ca57", - "aliases": [ - "CVE-2015-0287", - "VC-OPENSSL-20150319-CVE-2015-0287" + "unique_content_id": "66636a0c48ff0f39676cc43ff2fad975", + "summary": "Segmentation fault in DTLSv1_listen. A defect in the implementation of DTLSv1_listen means that state is preserved in the SSL object from one invocation to the next that can lead to a segmentation fault. Errors processing the initial ClientHello can trigger this scenario. An example of such an error could be that a DTLS1.0 only client is attempting to connect to a DTLS1.2 only server.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2a", + "affected_version_range": "vers:openssl/1.0.2" + } ], - "summary": "ASN.1 structure reuse memory corruption. Reusing a structure in ASN.1 parsing may allow an attacker to cause memory corruption via an invalid write. Such reuse is and has been strongly discouraged and is believed to be rare.", + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0207", + "severities": [], + "reference_id": "CVE-2015-0207", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20150319.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2015-03-19T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "6b326dde327d1535193796cfd337f305", + "summary": "DoS via reachable assert in SSLv2 servers. A malicious client can trigger an OPENSSL_assert in servers that both support SSLv2 and enable export cipher suites by sending a specially crafted SSLv2 CLIENT-MASTER-KEY message.", "affected_packages": [ { "package": { @@ -5044,9 +4565,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0287", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0293", "severities": [], - "reference_id": "CVE-2015-0287", + "reference_id": "CVE-2015-0293", "reference_type": "" }, { @@ -5066,12 +4587,8 @@ "weaknesses": [] }, { - "unique_content_id": "fde824bdb24f286066693f15a53a9c11", - "aliases": [ - "CVE-2015-0288", - "VC-OPENSSL-20150302-CVE-2015-0288" - ], - "summary": "X509_to_X509_REQ NULL pointer deref. The function X509_to_X509_REQ will crash with a NULL pointer dereference if the certificate key is invalid. This function is rarely used in practice.", + "unique_content_id": "7f14c539a7b1d7b62b178e81a164ca57", + "summary": "ASN.1 structure reuse memory corruption. Reusing a structure in ASN.1 parsing may allow an attacker to cause memory corruption via an invalid write. Such reuse is and has been strongly discouraged and is believed to be rare.", "affected_packages": [ { "package": { @@ -5124,16 +4641,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0288", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0287", "severities": [], - "reference_id": "CVE-2015-0288", + "reference_id": "CVE-2015-0287", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -5142,53 +4659,13 @@ "reference_type": "" } ], - "date_published": "2015-03-02T00:00:00+00:00", + "date_published": "2015-03-19T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "a6996bfe711e793b22ceb3d47c975099", - "aliases": [ - "CVE-2015-0289", - "VC-OPENSSL-20150319-CVE-2015-0289" - ], - "summary": "PKCS#7 NULL pointer dereference. The PKCS#7 parsing code does not handle missing outer ContentInfo correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with missing content and trigger a NULL pointer dereference on parsing. Applications that verify PKCS#7 signatures, decrypt PKCS#7 data or otherwise parse PKCS#7 structures from untrusted sources are affected. OpenSSL clients and servers are not affected.", + "unique_content_id": "87c491358b43983d41be3e34f577787f", + "summary": "Empty CKE with client auth and DHE. If client auth is used then a server can seg fault in the event of a DHE ciphersuite being selected and a zero length ClientKeyExchange message being sent by the client. This could be exploited in a DoS attack.", "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0r", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1m", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" - }, { "package": { "name": "openssl", @@ -5204,9 +4681,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0289", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1787", "severities": [], - "reference_id": "CVE-2015-0289", + "reference_id": "CVE-2015-1787", "reference_type": "" }, { @@ -5227,10 +4704,6 @@ }, { "unique_content_id": "8c8ab1d205efac4fa9eeb6888a73d02b", - "aliases": [ - "CVE-2015-0290", - "VC-OPENSSL-20150319-CVE-2015-0290" - ], "summary": "Multiblock corrupted pointer. OpenSSL 1.0.2 introduced the \"multiblock\" performance improvement. This feature only applies on 64 bit x86 architecture platforms that support AES NI instructions. A defect in the implementation of \"multiblock\" can cause OpenSSL's internal write buffer to become incorrectly set to NULL when using non-blocking IO. Typically, when the user application is using a socket BIO for writing, this will only result in a failed connection. However if some other BIO is used then it is likely that a segmentation fault will be triggered, thus enabling a potential DoS attack.", "affected_packages": [ { @@ -5271,10 +4744,6 @@ }, { "unique_content_id": "9c790e8e82381b71bd62ae5a2403aa43", - "aliases": [ - "CVE-2015-0291", - "VC-OPENSSL-20150319-CVE-2015-0291" - ], "summary": "ClientHello sigalgs DoS. If a client connects to an OpenSSL 1.0.2 server and renegotiates with an invalid signature algorithms extension a NULL pointer dereference will occur. This can be exploited in a DoS attack against the server.", "affected_packages": [ { @@ -5314,12 +4783,8 @@ "weaknesses": [] }, { - "unique_content_id": "037837042ea4921162841a8a572dedb7", - "aliases": [ - "CVE-2015-0292", - "VC-OPENSSL-20150319-CVE-2015-0292" - ], - "summary": "A vulnerability existed in previous versions of OpenSSL related to the processing of base64 encoded data. Any code path that reads base64 data from an untrusted source could be affected (such as the PEM processing routines). Maliciously crafted base 64 data could trigger a segmenation fault or memory corruption.", + "unique_content_id": "a6996bfe711e793b22ceb3d47c975099", + "summary": "PKCS#7 NULL pointer dereference. The PKCS#7 parsing code does not handle missing outer ContentInfo correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with missing content and trigger a NULL pointer dereference on parsing. Applications that verify PKCS#7 signatures, decrypt PKCS#7 data or otherwise parse PKCS#7 structures from untrusted sources are affected. OpenSSL clients and servers are not affected.", "affected_packages": [ { "package": { @@ -5330,8 +4795,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" }, { "package": { @@ -5342,8 +4807,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0m", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" + "fixed_version": "1.0.0r", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" }, { "package": { @@ -5354,15 +4819,27 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1h", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" + "fixed_version": "1.0.1m", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0292", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0289", "severities": [], - "reference_id": "CVE-2015-0292", + "reference_id": "CVE-2015-0289", "reference_type": "" }, { @@ -5382,12 +4859,8 @@ "weaknesses": [] }, { - "unique_content_id": "6b326dde327d1535193796cfd337f305", - "aliases": [ - "CVE-2015-0293", - "VC-OPENSSL-20150319-CVE-2015-0293" - ], - "summary": "DoS via reachable assert in SSLv2 servers. A malicious client can trigger an OPENSSL_assert in servers that both support SSLv2 and enable export cipher suites by sending a specially crafted SSLv2 CLIENT-MASTER-KEY message.", + "unique_content_id": "b91a75f67326a148c90e6ad45ba11839", + "summary": "Use After Free following d2i_ECPrivatekey error. A malformed EC private key file consumed via the d2i_ECPrivateKey function could cause a use after free condition. This, in turn, could cause a double free in several private key parsing functions (such as d2i_PrivateKey or EVP_PKCS82PKEY) and could lead to a DoS attack or memory corruption for applications that receive EC private keys from untrusted sources. This scenario is considered rare.", "affected_packages": [ { "package": { @@ -5440,16 +4913,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0293", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0209", "severities": [], - "reference_id": "CVE-2015-0293", + "reference_id": "CVE-2015-0209", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -5462,13 +4935,45 @@ "weaknesses": [] }, { - "unique_content_id": "87c491358b43983d41be3e34f577787f", - "aliases": [ - "CVE-2015-1787", - "VC-OPENSSL-20150319-CVE-2015-1787" - ], - "summary": "Empty CKE with client auth and DHE. If client auth is used then a server can seg fault in the event of a DHE ciphersuite being selected and a zero length ClientKeyExchange message being sent by the client. This could be exploited in a DoS attack.", + "unique_content_id": "d0946aba30cf839fdbc468685b6bd683", + "summary": "Segmentation fault in ASN1_TYPE_cmp. The function ASN1_TYPE_cmp will crash with an invalid read if an attempt is made to compare ASN.1 boolean types. Since ASN1_TYPE_cmp is used to check certificate signature algorithm consistency this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8zd|0.9.8ze" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.0r", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1m", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" + }, { "package": { "name": "openssl", @@ -5484,9 +4989,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1787", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0286", "severities": [], - "reference_id": "CVE-2015-1787", + "reference_id": "CVE-2015-0286", "reference_type": "" }, { @@ -5506,12 +5011,8 @@ "weaknesses": [] }, { - "unique_content_id": "742341fd7596524c221d7ac8aa8025de", - "aliases": [ - "CVE-2015-1788", - "VC-OPENSSL-20150611-CVE-2015-1788" - ], - "summary": "When processing an ECParameters structure OpenSSL enters an infinite loop if the curve specified is over a specially malformed binary polynomial field. This can be used to perform denial of service against any system which processes public keys, certificate requests or certificates. This includes TLS clients and TLS servers with client authentication enabled.", + "unique_content_id": "c9cffc6fc71a28da39de00bca06f0ce3", + "summary": "If a NewSessionTicket is received by a multi-threaded client when attempting to reuse a previous ticket then a race condition can occur potentially leading to a double free of the ticket data.", "affected_packages": [ { "package": { @@ -5522,8 +5023,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8s", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r" + "fixed_version": "0.9.8zg", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze|0.9.8zf" }, { "package": { @@ -5534,8 +5035,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0e", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d" + "fixed_version": "1.0.0s", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q|1.0.0r" }, { "package": { @@ -5564,16 +5065,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1788", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1791", "severities": [], - "reference_id": "CVE-2015-1788", + "reference_id": "CVE-2015-1791", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -5582,15 +5083,11 @@ "reference_type": "" } ], - "date_published": "2015-06-11T00:00:00+00:00", + "date_published": "2015-06-02T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "154f6f04f63ee6fba925180ed9e059c1", - "aliases": [ - "CVE-2015-1789", - "VC-OPENSSL-20150611-CVE-2015-1789" - ], "summary": "X509_cmp_time does not properly check the length of the ASN1_TIME string and can read a few bytes out of bounds. In addition, X509_cmp_time accepts an arbitrary number of fractional seconds in the time string. An attacker can use this to craft malformed certificates and CRLs of various sizes and potentially cause a segmentation fault, resulting in a DoS on applications that verify certificates or CRLs. TLS clients that verify CRLs are affected. TLS clients and servers with client authentication enabled may be affected if they use custom verification callbacks.", "affected_packages": [ { @@ -5666,11 +5163,71 @@ "weaknesses": [] }, { - "unique_content_id": "2b988a60b7d38da17ad12c1d84455a70", - "aliases": [ - "CVE-2015-1790", - "VC-OPENSSL-20150611-CVE-2015-1790" + "unique_content_id": "1d42619f9d572e6c6f831da1d4b5347c", + "summary": "This vulnerability does not affect current versions of OpenSSL. It existed in previous OpenSSL versions and was fixed in June 2014. If a DTLS peer receives application data between the ChangeCipherSpec and Finished messages, buffering of such data may cause an invalid free, resulting in a segmentation fault or potentially, memory corruption.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.0m", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1h", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8176", + "severities": [], + "reference_id": "CVE-2014-8176", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20150611.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } ], + "date_published": "2015-06-11T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "2b988a60b7d38da17ad12c1d84455a70", "summary": "The PKCS#7 parsing code does not handle missing inner EncryptedContent correctly. An attacker can craft malformed ASN.1-encoded PKCS#7 blobs with missing content and trigger a NULL pointer dereference on parsing. Applications that decrypt PKCS#7 data or otherwise parse PKCS#7 structures from untrusted sources are affected. OpenSSL clients and servers are not affected.", "affected_packages": [ { @@ -5746,12 +5303,8 @@ "weaknesses": [] }, { - "unique_content_id": "c9cffc6fc71a28da39de00bca06f0ce3", - "aliases": [ - "CVE-2015-1791", - "VC-OPENSSL-20150602-CVE-2015-1791" - ], - "summary": "If a NewSessionTicket is received by a multi-threaded client when attempting to reuse a previous ticket then a race condition can occur potentially leading to a double free of the ticket data.", + "unique_content_id": "303206c390cb78e168c8425d3c6d2c91", + "summary": "When verifying a signedData message the CMS code can enter an infinite loop if presented with an unknown hash function OID. This can be used to perform denial of service against any system which verifies signedData messages using the CMS code.", "affected_packages": [ { "package": { @@ -5804,16 +5357,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1791", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1792", "severities": [], - "reference_id": "CVE-2015-1791", + "reference_id": "CVE-2015-1792", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -5822,16 +5375,12 @@ "reference_type": "" } ], - "date_published": "2015-06-02T00:00:00+00:00", + "date_published": "2015-06-11T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "303206c390cb78e168c8425d3c6d2c91", - "aliases": [ - "CVE-2015-1792", - "VC-OPENSSL-20150611-CVE-2015-1792" - ], - "summary": "When verifying a signedData message the CMS code can enter an infinite loop if presented with an unknown hash function OID. This can be used to perform denial of service against any system which verifies signedData messages using the CMS code.", + "unique_content_id": "742341fd7596524c221d7ac8aa8025de", + "summary": "When processing an ECParameters structure OpenSSL enters an infinite loop if the curve specified is over a specially malformed binary polynomial field. This can be used to perform denial of service against any system which processes public keys, certificate requests or certificates. This includes TLS clients and TLS servers with client authentication enabled.", "affected_packages": [ { "package": { @@ -5842,8 +5391,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zg", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze|0.9.8zf" + "fixed_version": "0.9.8s", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r" }, { "package": { @@ -5854,8 +5403,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0s", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q|1.0.0r" + "fixed_version": "1.0.0e", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d" }, { "package": { @@ -5884,9 +5433,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1792", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1788", "severities": [], - "reference_id": "CVE-2015-1792", + "reference_id": "CVE-2015-1788", "reference_type": "" }, { @@ -5907,10 +5456,6 @@ }, { "unique_content_id": "78795bf94381c0a1772ed444fb576c91", - "aliases": [ - "CVE-2015-1793", - "VC-OPENSSL-20150709-CVE-2015-1793" - ], "summary": "An error in the implementation of the alternative certificate chain logic could allow an attacker to cause certain checks on untrusted certificates to be bypassed, such as the CA flag, enabling them to use a valid leaf certificate to act as a CA and \"issue\" an invalid certificate.", "affected_packages": [ { @@ -5963,10 +5508,6 @@ }, { "unique_content_id": "34e7fc0f12a532fb0e3f133767651b82", - "aliases": [ - "CVE-2015-1794", - "VC-OPENSSL-20150811-CVE-2015-1794" - ], "summary": "If a client receives a ServerKeyExchange for an anonymous DH ciphersuite with the value of p set to 0 then a seg fault can occur leading to a possible denial of service attack.", "affected_packages": [ { @@ -6006,13 +5547,21 @@ "weaknesses": [] }, { - "unique_content_id": "c49999301ee8aa01a9ddd428979f0bc4", - "aliases": [ - "CVE-2015-3193", - "VC-OPENSSL-20151203-CVE-2015-3193" - ], - "summary": "There is a carry propagating bug in the x86_64 Montgomery squaring procedure. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. For example this can occur by default in OpenSSL DHE based SSL/TLS ciphersuites.", + "unique_content_id": "3c8cc92c8be75ecbbf22aa5caa33bfa9", + "summary": "The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and absent mask generation function parameter. Since these routines are used to verify certificate signature algorithms this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1q", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p" + }, { "package": { "name": "openssl", @@ -6028,9 +5577,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3193", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3194", "severities": [], - "reference_id": "CVE-2015-3193", + "reference_id": "CVE-2015-3194", "reference_type": "" }, { @@ -6050,12 +5599,8 @@ "weaknesses": [] }, { - "unique_content_id": "3c8cc92c8be75ecbbf22aa5caa33bfa9", - "aliases": [ - "CVE-2015-3194", - "VC-OPENSSL-20151203-CVE-2015-3194" - ], - "summary": "The signature verification routines will crash with a NULL pointer dereference if presented with an ASN.1 signature using the RSA PSS algorithm and absent mask generation function parameter. Since these routines are used to verify certificate signature algorithms this can be used to crash any certificate verification operation and exploited in a DoS attack. Any application which performs certificate verification is vulnerable including OpenSSL clients and servers which enable client authentication.", + "unique_content_id": "58623263c1b67d72553e0282afd5d03a", + "summary": "If PSK identity hints are received by a multi-threaded client then the values are wrongly updated in the parent SSL_CTX structure. This can result in a race condition potentially leading to a double free of the identify hint data.", "affected_packages": [ { "package": { @@ -6066,8 +5611,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1q", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p" + "fixed_version": "1.0.0t", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0h|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q|1.0.0r|1.0.0s" }, { "package": { @@ -6078,22 +5623,34 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2e", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d" + "fixed_version": "1.0.1p", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2d", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3194", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3196", "severities": [], - "reference_id": "CVE-2015-3194", + "reference_id": "CVE-2015-3196", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20151203.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -6107,10 +5664,6 @@ }, { "unique_content_id": "aa54b531fb7b90075a099e3d74098089", - "aliases": [ - "CVE-2015-3195", - "VC-OPENSSL-20151203-CVE-2015-3195" - ], "summary": "When presented with a malformed X509_ATTRIBUTE structure OpenSSL will leak memory. This structure is used by the PKCS#7 and CMS routines so any application which reads PKCS#7 or CMS data from untrusted sources is affected. SSL/TLS is not affected.", "affected_packages": [ { @@ -6186,12 +5739,8 @@ "weaknesses": [] }, { - "unique_content_id": "58623263c1b67d72553e0282afd5d03a", - "aliases": [ - "CVE-2015-3196", - "VC-OPENSSL-20151203-CVE-2015-3196" - ], - "summary": "If PSK identity hints are received by a multi-threaded client then the values are wrongly updated in the parent SSL_CTX structure. This can result in a race condition potentially leading to a double free of the identify hint data.", + "unique_content_id": "c49999301ee8aa01a9ddd428979f0bc4", + "summary": "There is a carry propagating bug in the x86_64 Montgomery squaring procedure. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. For example this can occur by default in OpenSSL DHE based SSL/TLS ciphersuites.", "affected_packages": [ { "package": { @@ -6202,46 +5751,22 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.0t", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0h|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q|1.0.0r|1.0.0s" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1p", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.2d", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c" + "fixed_version": "1.0.2e", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3196", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3193", "severities": [], - "reference_id": "CVE-2015-3196", + "reference_id": "CVE-2015-3193", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20151203.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -6255,10 +5780,6 @@ }, { "unique_content_id": "a1b7aec7c53c8018f9f0fc9118de71b4", - "aliases": [ - "CVE-2015-3197", - "VC-OPENSSL-20160128-CVE-2015-3197" - ], "summary": "A malicious client can negotiate SSLv2 ciphers that have been disabled on the server and complete SSLv2 handshakes even if all SSLv2 ciphers have been disabled, provided that the SSLv2 protocol was not also disabled via SSL_OP_NO_SSLv2.", "affected_packages": [ { @@ -6311,10 +5832,6 @@ }, { "unique_content_id": "bb0ba32b691bb5c4273824bad2f457a9", - "aliases": [ - "CVE-2016-0701", - "VC-OPENSSL-20160128-CVE-2016-0701" - ], "summary": "Historically OpenSSL usually only ever generated DH parameters based on \"safe\" primes. More recently (in version 1.0.2) support was provided for generating X9.42 style parameter files such as those required for RFC 5114 support. The primes used in such files may not be \"safe\". Where an application is using DH configured with parameters based on primes that are not \"safe\" then an attacker could use this fact to find a peer's private DH exponent. This attack requires that the attacker complete multiple handshakes in which the peer uses the same private DH exponent. For example this could be used to discover a TLS server's private DH exponent if it's reusing the private DH exponent or it's using a static DH ciphersuite. OpenSSL provides the option SSL_OP_SINGLE_DH_USE for ephemeral DH (DHE) in TLS. It is not on by default. If the option is not set then the server reuses the same private DH exponent for the life of the server process and would be vulnerable to this attack. It is believed that many popular applications do set this option and would therefore not be at risk. OpenSSL before 1.0.2f will reuse the key if: - SSL_CTX_set_tmp_dh()/SSL_set_tmp_dh() is used and SSL_OP_SINGLE_DH_USE is not set. - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used, and both the parameters and the key are set and SSL_OP_SINGLE_DH_USE is not used. This is an undocumted feature and parameter files don't contain the key. - Static DH ciphersuites are used. The key is part of the certificate and so it will always reuse it. This is only supported in 1.0.2. It will not reuse the key for DHE ciphers suites if: - SSL_OP_SINGLE_DH_USE is set - SSL_CTX_set_tmp_dh_callback()/SSL_set_tmp_dh_callback() is used and the callback does not provide the key, only the parameters. The callback is almost always used like this. Non-safe primes are generated by OpenSSL when using: - genpkey with the dh_rfc5114 option. This will write an X9.42 style file including the prime-order subgroup size \"q\". This is supported since the 1.0.2 version. Older versions can't read files generated in this way. - dhparam with the -dsaparam option. This has always been documented as requiring the single use. The fix for this issue adds an additional check where a \"q\" parameter is available (as is the case in X9.42 based parameters). This detects the only known attack, and is the only possible defense for static DH ciphersuites. This could have some performance impact. Additionally the SSL_OP_SINGLE_DH_USE option has been switched on by default and cannot be disabled. This could have some performance impact.", "affected_packages": [ { @@ -6354,12 +5871,8 @@ "weaknesses": [] }, { - "unique_content_id": "5115d9fca6da89c0f09b18c66063043e", - "aliases": [ - "CVE-2016-0702", - "VC-OPENSSL-20160301-CVE-2016-0702" - ], - "summary": "A side-channel attack was found which makes use of cache-bank conflicts on the Intel Sandy-Bridge microarchitecture which could lead to the recovery of RSA keys. The ability to exploit this issue is limited as it relies on an attacker who has control of code in a thread running on the same hyper-threaded core as the victim thread which is performing decryptions.", + "unique_content_id": "1e32ac05e706f05b60d0c367814faf5b", + "summary": "A double free bug was discovered when OpenSSL parses malformed DSA private keys and could lead to a DoS attack or memory corruption for applications that receive DSA private keys from untrusted sources. This scenario is considered rare.", "affected_packages": [ { "package": { @@ -6388,9 +5901,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0702", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0705", "severities": [], - "reference_id": "CVE-2016-0702", + "reference_id": "CVE-2016-0705", "reference_type": "" }, { @@ -6411,10 +5924,6 @@ }, { "unique_content_id": "356419ba58928dd92651de3bd8726759", - "aliases": [ - "CVE-2016-0703", - "VC-OPENSSL-20160301-CVE-2016-0703" - ], "summary": "This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address vulnerability CVE-2015-0293. s2_srvr.c did not enforce that clear-key-length is 0 for non-export ciphers. If clear-key bytes are present for these ciphers, they *displace* encrypted-key bytes. This leads to an efficient divide-and-conquer key recovery attack: if an eavesdropper has intercepted an SSLv2 handshake, they can use the server as an oracle to determine the SSLv2 master-key, using only 16 connections to the server and negligible computation. More importantly, this leads to a more efficient version of DROWN that is effective against non-export ciphersuites, and requires no significant computation.", "affected_packages": [ { @@ -6490,12 +5999,8 @@ "weaknesses": [] }, { - "unique_content_id": "ca04670f15a036f2d20611d996b2e03d", - "aliases": [ - "CVE-2016-0704", - "VC-OPENSSL-20160301-CVE-2016-0704" - ], - "summary": "This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address the vulnerability CVE-2015-0293. s2_srvr.c overwrite the wrong bytes in the master-key when applying Bleichenbacher protection for export cipher suites. This provides a Bleichenbacher oracle, and could potentially allow more efficient variants of the DROWN attack.", + "unique_content_id": "4f983dc0849c0739895c99ff8042ef0f", + "summary": "A cross-protocol attack was discovered that could lead to decryption of TLS sessions by using a server supporting SSLv2 and EXPORT cipher suites as a Bleichenbacher RSA padding oracle. Note that traffic between clients and non-vulnerable servers can be decrypted provided another server supporting SSLv2 and EXPORT ciphers (even with a different protocol such as SMTP, IMAP or POP) shares the RSA keys of the non-vulnerable server. This vulnerability is known as DROWN (CVE-2016-0800). Recovering one session key requires the attacker to perform approximately 2^50 computation, as well as thousands of connections to the affected server. A more efficient variant of the DROWN attack exists against unpatched OpenSSL servers using versions that predate 1.0.2a, 1.0.1m, 1.0.0r and 0.9.8zf released on 19/Mar/2015 (see CVE-2016-0703 below). Users can avoid this issue by disabling the SSLv2 protocol in all their SSL/TLS servers, if they've not done so already. Disabling all SSLv2 ciphers is also sufficient, provided the patches for CVE-2015-3197 (fixed in OpenSSL 1.0.1r and 1.0.2f) have been deployed. Servers that have not disabled the SSLv2 protocol, and are not patched for CVE-2015-3197 are vulnerable to DROWN even if all SSLv2 ciphers are nominally disabled, because malicious clients can force the use of SSLv2 with EXPORT ciphers. OpenSSL 1.0.2g and 1.0.1s deploy the following mitigation against DROWN: SSLv2 is now by default disabled at build-time. Builds that are not configured with \"enable-ssl2\" will not support SSLv2. Even if \"enable-ssl2\" is used, users who want to negotiate SSLv2 via the version-flexible SSLv23_method() will need to explicitly call either of: SSL_CTX_clear_options(ctx, SSL_OP_NO_SSLv2); or SSL_clear_options(ssl, SSL_OP_NO_SSLv2); as appropriate. Even if either of those is used, or the application explicitly uses the version-specific SSLv2_method() or its client or server variants, SSLv2 ciphers vulnerable to exhaustive search key recovery have been removed. Specifically, the SSLv2 40-bit EXPORT ciphers, and SSLv2 56-bit DES are no longer available. In addition, weak ciphers in SSLv3 and up are now disabled in default builds of OpenSSL. Builds that are not configured with \"enable-weak-ssl-ciphers\" will not provide any \"EXPORT\" or \"LOW\" strength ciphers.", "affected_packages": [ { "package": { @@ -6506,32 +6011,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.0r", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.1m", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" + "fixed_version": "1.0.1s", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r" }, { "package": { @@ -6542,22 +6023,22 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "fixed_version": "1.0.2g", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0704", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0800", "severities": [], - "reference_id": "CVE-2016-0704", + "reference_id": "CVE-2016-0800", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160301.txt", "severities": [ { - "value": "Moderate", + "value": "High", "system": "generic_textual", "scoring_elements": "" } @@ -6570,12 +6051,8 @@ "weaknesses": [] }, { - "unique_content_id": "1e32ac05e706f05b60d0c367814faf5b", - "aliases": [ - "CVE-2016-0705", - "VC-OPENSSL-20160301-CVE-2016-0705" - ], - "summary": "A double free bug was discovered when OpenSSL parses malformed DSA private keys and could lead to a DoS attack or memory corruption for applications that receive DSA private keys from untrusted sources. This scenario is considered rare.", + "unique_content_id": "5115d9fca6da89c0f09b18c66063043e", + "summary": "A side-channel attack was found which makes use of cache-bank conflicts on the Intel Sandy-Bridge microarchitecture which could lead to the recovery of RSA keys. The ability to exploit this issue is limited as it relies on an attacker who has control of code in a thread running on the same hyper-threaded core as the victim thread which is performing decryptions.", "affected_packages": [ { "package": { @@ -6604,9 +6081,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0705", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0702", "severities": [], - "reference_id": "CVE-2016-0705", + "reference_id": "CVE-2016-0702", "reference_type": "" }, { @@ -6626,12 +6103,8 @@ "weaknesses": [] }, { - "unique_content_id": "dcfad5e453c456b47b7dcb85f3bbf948", - "aliases": [ - "CVE-2016-0797", - "VC-OPENSSL-20160301-CVE-2016-0797" - ], - "summary": "In the BN_hex2bn function the number of hex digits is calculated using an int value |i|. Later |bn_expand| is called with a value of |i * 4|. For large values of |i| this can result in |bn_expand| not allocating any memory because |i * 4| is negative. This can leave the internal BIGNUM data field as NULL leading to a subsequent NULL ptr deref. For very large values of |i|, the calculation |i * 4| could be a positive value smaller than |i|. In this case memory is allocated to the internal BIGNUM data field, but it is insufficiently sized leading to heap corruption. A similar issue exists in BN_dec2bn. This could have security consequences if BN_hex2bn/BN_dec2bn is ever called by user applications with very large untrusted hex/dec data. This is anticipated to be a rare occurrence. All OpenSSL internal usage of these functions use data that is not expected to be untrusted, e.g. config file data or application command line arguments. If user developed applications generate config file data based on untrusted data then it is possible that this could also lead to security consequences. This is also anticipated to be rare.", + "unique_content_id": "56718964514021ad2571d5e9bb4e1ba9", + "summary": "The SRP user database lookup method SRP_VBASE_get_by_user had confusing memory management semantics; the returned pointer was sometimes newly allocated, and sometimes owned by the callee. The calling code has no way of distinguishing these two cases. Specifically, SRP servers that configure a secret seed to hide valid login information are vulnerable to a memory leak: an attacker connecting with an invalid username can cause a memory leak of around 300 bytes per connection. Servers that do not configure SRP, or configure SRP but do not configure a seed are not vulnerable. In Apache, the seed directive is known as SSLSRPUnknownUserSeed. To mitigate the memory leak, the seed handling in SRP_VBASE_get_by_user is now disabled even if the user has configured a seed. Applications are advised to migrate to SRP_VBASE_get1_by_user. However, note that OpenSSL makes no strong guarantees about the indistinguishability of valid and invalid logins. In particular, computations are currently not carried out in constant time.", "affected_packages": [ { "package": { @@ -6660,9 +6133,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0797", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0798", "severities": [], - "reference_id": "CVE-2016-0797", + "reference_id": "CVE-2016-0798", "reference_type": "" }, { @@ -6682,12 +6155,8 @@ "weaknesses": [] }, { - "unique_content_id": "56718964514021ad2571d5e9bb4e1ba9", - "aliases": [ - "CVE-2016-0798", - "VC-OPENSSL-20160301-CVE-2016-0798" - ], - "summary": "The SRP user database lookup method SRP_VBASE_get_by_user had confusing memory management semantics; the returned pointer was sometimes newly allocated, and sometimes owned by the callee. The calling code has no way of distinguishing these two cases. Specifically, SRP servers that configure a secret seed to hide valid login information are vulnerable to a memory leak: an attacker connecting with an invalid username can cause a memory leak of around 300 bytes per connection. Servers that do not configure SRP, or configure SRP but do not configure a seed are not vulnerable. In Apache, the seed directive is known as SSLSRPUnknownUserSeed. To mitigate the memory leak, the seed handling in SRP_VBASE_get_by_user is now disabled even if the user has configured a seed. Applications are advised to migrate to SRP_VBASE_get1_by_user. However, note that OpenSSL makes no strong guarantees about the indistinguishability of valid and invalid logins. In particular, computations are currently not carried out in constant time.", + "unique_content_id": "65ffc54cdd6e37ee324ff207835500d6", + "summary": "The internal |fmtstr| function used in processing a \"%s\" format string in the BIO_*printf functions could overflow while calculating the length of a string and cause an OOB read when printing very long strings. Additionally the internal |doapr_outch| function can attempt to write to an OOB memory location (at an offset from the NULL pointer) in the event of a memory allocation failure. In 1.0.2 and below this could be caused where the size of a buffer to be allocated is greater than INT_MAX. E.g. this could be in processing a very long \"%s\" format string. Memory leaks can also occur. The first issue may mask the second issue dependent on compiler behaviour. These problems could enable attacks where large amounts of untrusted data is passed to the BIO_*printf functions. If applications use these functions in this way then they could be vulnerable. OpenSSL itself uses these functions when printing out human-readable dumps of ASN.1 data. Therefore applications that print this data could be vulnerable if the data is from untrusted sources. OpenSSL command line applications could also be vulnerable where they print out ASN.1 data, or if untrusted data is passed as command line arguments. Libssl is not considered directly vulnerable. Additionally certificates etc received via remote connections via libssl are also unlikely to be able to trigger these issues because of message size limits enforced within libssl.", "affected_packages": [ { "package": { @@ -6716,9 +6185,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0798", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0799", "severities": [], - "reference_id": "CVE-2016-0798", + "reference_id": "CVE-2016-0799", "reference_type": "" }, { @@ -6738,12 +6207,8 @@ "weaknesses": [] }, { - "unique_content_id": "65ffc54cdd6e37ee324ff207835500d6", - "aliases": [ - "CVE-2016-0799", - "VC-OPENSSL-20160301-CVE-2016-0799" - ], - "summary": "The internal |fmtstr| function used in processing a \"%s\" format string in the BIO_*printf functions could overflow while calculating the length of a string and cause an OOB read when printing very long strings. Additionally the internal |doapr_outch| function can attempt to write to an OOB memory location (at an offset from the NULL pointer) in the event of a memory allocation failure. In 1.0.2 and below this could be caused where the size of a buffer to be allocated is greater than INT_MAX. E.g. this could be in processing a very long \"%s\" format string. Memory leaks can also occur. The first issue may mask the second issue dependent on compiler behaviour. These problems could enable attacks where large amounts of untrusted data is passed to the BIO_*printf functions. If applications use these functions in this way then they could be vulnerable. OpenSSL itself uses these functions when printing out human-readable dumps of ASN.1 data. Therefore applications that print this data could be vulnerable if the data is from untrusted sources. OpenSSL command line applications could also be vulnerable where they print out ASN.1 data, or if untrusted data is passed as command line arguments. Libssl is not considered directly vulnerable. Additionally certificates etc received via remote connections via libssl are also unlikely to be able to trigger these issues because of message size limits enforced within libssl.", + "unique_content_id": "ca04670f15a036f2d20611d996b2e03d", + "summary": "This issue only affected versions of OpenSSL prior to March 19th 2015 at which time the code was refactored to address the vulnerability CVE-2015-0293. s2_srvr.c overwrite the wrong bytes in the master-key when applying Bleichenbacher protection for export cipher suites. This provides a Bleichenbacher oracle, and could potentially allow more efficient variants of the DROWN attack.", "affected_packages": [ { "package": { @@ -6754,8 +6219,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1s", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e|0.9.8f|0.9.8g|0.9.8h|0.9.8i|0.9.8j|0.9.8k|0.9.8l|0.9.8m|0.9.8n|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8v|0.9.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" }, { "package": { @@ -6766,22 +6231,46 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2g", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f" + "fixed_version": "1.0.0r", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d|1.0.0e|1.0.0f|1.0.0g|1.0.0i|1.0.0j|1.0.0k|1.0.0l|1.0.0m|1.0.0n|1.0.0o|1.0.0p|1.0.0q" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.1m", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0799", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0704", "severities": [], - "reference_id": "CVE-2016-0799", + "reference_id": "CVE-2016-0704", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160301.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -6794,12 +6283,8 @@ "weaknesses": [] }, { - "unique_content_id": "4f983dc0849c0739895c99ff8042ef0f", - "aliases": [ - "CVE-2016-0800", - "VC-OPENSSL-20160301-CVE-2016-0800" - ], - "summary": "A cross-protocol attack was discovered that could lead to decryption of TLS sessions by using a server supporting SSLv2 and EXPORT cipher suites as a Bleichenbacher RSA padding oracle. Note that traffic between clients and non-vulnerable servers can be decrypted provided another server supporting SSLv2 and EXPORT ciphers (even with a different protocol such as SMTP, IMAP or POP) shares the RSA keys of the non-vulnerable server. This vulnerability is known as DROWN (CVE-2016-0800). Recovering one session key requires the attacker to perform approximately 2^50 computation, as well as thousands of connections to the affected server. A more efficient variant of the DROWN attack exists against unpatched OpenSSL servers using versions that predate 1.0.2a, 1.0.1m, 1.0.0r and 0.9.8zf released on 19/Mar/2015 (see CVE-2016-0703 below). Users can avoid this issue by disabling the SSLv2 protocol in all their SSL/TLS servers, if they've not done so already. Disabling all SSLv2 ciphers is also sufficient, provided the patches for CVE-2015-3197 (fixed in OpenSSL 1.0.1r and 1.0.2f) have been deployed. Servers that have not disabled the SSLv2 protocol, and are not patched for CVE-2015-3197 are vulnerable to DROWN even if all SSLv2 ciphers are nominally disabled, because malicious clients can force the use of SSLv2 with EXPORT ciphers. OpenSSL 1.0.2g and 1.0.1s deploy the following mitigation against DROWN: SSLv2 is now by default disabled at build-time. Builds that are not configured with \"enable-ssl2\" will not support SSLv2. Even if \"enable-ssl2\" is used, users who want to negotiate SSLv2 via the version-flexible SSLv23_method() will need to explicitly call either of: SSL_CTX_clear_options(ctx, SSL_OP_NO_SSLv2); or SSL_clear_options(ssl, SSL_OP_NO_SSLv2); as appropriate. Even if either of those is used, or the application explicitly uses the version-specific SSLv2_method() or its client or server variants, SSLv2 ciphers vulnerable to exhaustive search key recovery have been removed. Specifically, the SSLv2 40-bit EXPORT ciphers, and SSLv2 56-bit DES are no longer available. In addition, weak ciphers in SSLv3 and up are now disabled in default builds of OpenSSL. Builds that are not configured with \"enable-weak-ssl-ciphers\" will not provide any \"EXPORT\" or \"LOW\" strength ciphers.", + "unique_content_id": "dcfad5e453c456b47b7dcb85f3bbf948", + "summary": "In the BN_hex2bn function the number of hex digits is calculated using an int value |i|. Later |bn_expand| is called with a value of |i * 4|. For large values of |i| this can result in |bn_expand| not allocating any memory because |i * 4| is negative. This can leave the internal BIGNUM data field as NULL leading to a subsequent NULL ptr deref. For very large values of |i|, the calculation |i * 4| could be a positive value smaller than |i|. In this case memory is allocated to the internal BIGNUM data field, but it is insufficiently sized leading to heap corruption. A similar issue exists in BN_dec2bn. This could have security consequences if BN_hex2bn/BN_dec2bn is ever called by user applications with very large untrusted hex/dec data. This is anticipated to be a rare occurrence. All OpenSSL internal usage of these functions use data that is not expected to be untrusted, e.g. config file data or application command line arguments. If user developed applications generate config file data based on untrusted data then it is possible that this could also lead to security consequences. This is also anticipated to be rare.", "affected_packages": [ { "package": { @@ -6828,16 +6313,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0800", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0797", "severities": [], - "reference_id": "CVE-2016-0800", + "reference_id": "CVE-2016-0797", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160301.txt", "severities": [ { - "value": "High", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -6850,12 +6335,8 @@ "weaknesses": [] }, { - "unique_content_id": "80621d002083a0f1c1d9267b2575c2af", - "aliases": [ - "CVE-2016-2105", - "VC-OPENSSL-20160503-CVE-2016-2105" - ], - "summary": "An overflow can occur in the EVP_EncodeUpdate() function which is used for Base64 encoding of binary data. If an attacker is able to supply very large amounts of input data then a length check can overflow resulting in a heap corruption. Internally to OpenSSL the EVP_EncodeUpdate() function is primarly used by the PEM_write_bio* family of functions. These are mainly used within the OpenSSL command line applications. These internal uses are not considered vulnerable because all calls are bounded with length checks so no overflow is possible. User applications that call these APIs directly with large amounts of untrusted data may be vulnerable. (Note: Initial analysis suggested that the PEM_write_bio* were vulnerable, and this is reflected in the patch commit message. This is no longer believed to be the case).", + "unique_content_id": "0d33c0311add27a6e1a49d7a3d965c38", + "summary": "When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio() a short invalid encoding can casuse allocation of large amounts of memory potentially consuming excessive resources or exhausting memory. Any application parsing untrusted data through d2i BIO functions is affected. The memory based functions such as d2i_X509() are *not* affected. Since the memory based functions are used by the TLS library, TLS applications are not affected.", "affected_packages": [ { "package": { @@ -6884,9 +6365,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2105", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2109", "severities": [], - "reference_id": "CVE-2016-2105", + "reference_id": "CVE-2016-2109", "reference_type": "" }, { @@ -6907,10 +6388,6 @@ }, { "unique_content_id": "6646efbc2c3440a5aaedd5479df16fe0", - "aliases": [ - "CVE-2016-2106", - "VC-OPENSSL-20160503-CVE-2016-2106" - ], "summary": "An overflow can occur in the EVP_EncryptUpdate() function. If an attacker is able to supply very large amounts of input data after a previous call to EVP_EncryptUpdate() with a partial block then a length check can overflow resulting in a heap corruption. Following an analysis of all OpenSSL internal usage of the EVP_EncryptUpdate() function all usage is one of two forms. The first form is where the EVP_EncryptUpdate() call is known to be the first called function after an EVP_EncryptInit(), and therefore that specific call must be safe. The second form is where the length passed to EVP_EncryptUpdate() can be seen from the code to be some small value and therefore there is no possibility of an overflow. Since all instances are one of these two forms, it is believed that there can be no overflows in internal code due to this problem. It should be noted that EVP_DecryptUpdate() can call EVP_EncryptUpdate() in certain code paths. Also EVP_CipherUpdate() is a synonym for EVP_EncryptUpdate(). All instances of these calls have also been analysed too and it is believed there are no instances in internal usage where an overflow could occur. This could still represent a security issue for end user code that calls this function directly.", "affected_packages": [ { @@ -6962,12 +6439,8 @@ "weaknesses": [] }, { - "unique_content_id": "eaa2fce419eaf5b4ea668e9106c1fd43", - "aliases": [ - "CVE-2016-2107", - "VC-OPENSSL-20160503-CVE-2016-2107" - ], - "summary": "A MITM attacker can use a padding oracle attack to decrypt traffic when the connection uses an AES CBC cipher and the server support AES-NI. This issue was introduced as part of the fix for Lucky 13 padding attack (CVE-2013-0169). The padding check was rewritten to be in constant time by making sure that always the same bytes are read and compared against either the MAC or padding bytes. But it no longer checked that there was enough data to have both the MAC and padding bytes.", + "unique_content_id": "80621d002083a0f1c1d9267b2575c2af", + "summary": "An overflow can occur in the EVP_EncodeUpdate() function which is used for Base64 encoding of binary data. If an attacker is able to supply very large amounts of input data then a length check can overflow resulting in a heap corruption. Internally to OpenSSL the EVP_EncodeUpdate() function is primarly used by the PEM_write_bio* family of functions. These are mainly used within the OpenSSL command line applications. These internal uses are not considered vulnerable because all calls are bounded with length checks so no overflow is possible. User applications that call these APIs directly with large amounts of untrusted data may be vulnerable. (Note: Initial analysis suggested that the PEM_write_bio* were vulnerable, and this is reflected in the patch commit message. This is no longer believed to be the case).", "affected_packages": [ { "package": { @@ -6996,22 +6469,16 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2107", - "severities": [], - "reference_id": "CVE-2016-2107", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/68595c0c2886e7942a14f98c17a55a88afb6c292", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2105", "severities": [], - "reference_id": "", + "reference_id": "CVE-2016-2105", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160503.txt", "severities": [ { - "value": "High", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -7024,12 +6491,8 @@ "weaknesses": [] }, { - "unique_content_id": "eadc3ef5343caffdb16fc7a845983d99", - "aliases": [ - "CVE-2016-2108", - "VC-OPENSSL-20160503-CVE-2016-2108" - ], - "summary": "This issue affected versions of OpenSSL prior to April 2015. The bug causing the vulnerability was fixed on April 18th 2015, and released as part of the June 11th 2015 security releases. The security impact of the bug was not known at the time. In previous versions of OpenSSL, ASN.1 encoding the value zero represented as a negative integer can cause a buffer underflow with an out-of-bounds write in i2c_ASN1_INTEGER. The ASN.1 parser does not normally create \"negative zeroes\" when parsing ASN.1 input, and therefore, an attacker cannot trigger this bug. However, a second, independent bug revealed that the ASN.1 parser (specifically, d2i_ASN1_TYPE) can misinterpret a large universal tag as a negative zero value. Large universal tags are not present in any common ASN.1 structures (such as X509) but are accepted as part of ANY structures. Therefore, if an application deserializes untrusted ASN.1 structures containing an ANY field, and later reserializes them, an attacker may be able to trigger an out-of-bounds write. This has been shown to cause memory corruption that is potentially exploitable with some malloc implementations. Applications that parse and re-encode X509 certificates are known to be vulnerable. Applications that verify RSA signatures on X509 certificates may also be vulnerable; however, only certificates with valid signatures trigger ASN.1 re-encoding and hence the bug. Specifically, since OpenSSL's default TLS X509 chain verification code verifies the certificate chain from root to leaf, TLS handshakes could only be targeted with valid certificates issued by trusted Certification Authorities.", + "unique_content_id": "9448f7ccc33194fa36bbdb2f40e749b2", + "summary": "ASN1 Strings that are over 1024 bytes can cause an overread in applications using the X509_NAME_oneline() function on EBCDIC systems. This could result in arbitrary stack data being returned in the buffer.", "affected_packages": [ { "package": { @@ -7040,8 +6503,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1o", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n" + "fixed_version": "1.0.1t", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r|1.0.1s" }, { "package": { @@ -7052,22 +6515,22 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2c", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b" + "fixed_version": "1.0.2h", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2108", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2176", "severities": [], - "reference_id": "CVE-2016-2108", + "reference_id": "CVE-2016-2176", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160503.txt", "severities": [ { - "value": "High", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -7080,12 +6543,8 @@ "weaknesses": [] }, { - "unique_content_id": "0d33c0311add27a6e1a49d7a3d965c38", - "aliases": [ - "CVE-2016-2109", - "VC-OPENSSL-20160503-CVE-2016-2109" - ], - "summary": "When ASN.1 data is read from a BIO using functions such as d2i_CMS_bio() a short invalid encoding can casuse allocation of large amounts of memory potentially consuming excessive resources or exhausting memory. Any application parsing untrusted data through d2i BIO functions is affected. The memory based functions such as d2i_X509() are *not* affected. Since the memory based functions are used by the TLS library, TLS applications are not affected.", + "unique_content_id": "eaa2fce419eaf5b4ea668e9106c1fd43", + "summary": "A MITM attacker can use a padding oracle attack to decrypt traffic when the connection uses an AES CBC cipher and the server support AES-NI. This issue was introduced as part of the fix for Lucky 13 padding attack (CVE-2013-0169). The padding check was rewritten to be in constant time by making sure that always the same bytes are read and compared against either the MAC or padding bytes. But it no longer checked that there was enough data to have both the MAC and padding bytes.", "affected_packages": [ { "package": { @@ -7114,16 +6573,22 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2109", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2107", "severities": [], - "reference_id": "CVE-2016-2109", + "reference_id": "CVE-2016-2107", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/68595c0c2886e7942a14f98c17a55a88afb6c292", + "severities": [], + "reference_id": "", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160503.txt", "severities": [ { - "value": "Low", + "value": "High", "system": "generic_textual", "scoring_elements": "" } @@ -7136,12 +6601,8 @@ "weaknesses": [] }, { - "unique_content_id": "9448f7ccc33194fa36bbdb2f40e749b2", - "aliases": [ - "CVE-2016-2176", - "VC-OPENSSL-20160503-CVE-2016-2176" - ], - "summary": "ASN1 Strings that are over 1024 bytes can cause an overread in applications using the X509_NAME_oneline() function on EBCDIC systems. This could result in arbitrary stack data being returned in the buffer.", + "unique_content_id": "eadc3ef5343caffdb16fc7a845983d99", + "summary": "This issue affected versions of OpenSSL prior to April 2015. The bug causing the vulnerability was fixed on April 18th 2015, and released as part of the June 11th 2015 security releases. The security impact of the bug was not known at the time. In previous versions of OpenSSL, ASN.1 encoding the value zero represented as a negative integer can cause a buffer underflow with an out-of-bounds write in i2c_ASN1_INTEGER. The ASN.1 parser does not normally create \"negative zeroes\" when parsing ASN.1 input, and therefore, an attacker cannot trigger this bug. However, a second, independent bug revealed that the ASN.1 parser (specifically, d2i_ASN1_TYPE) can misinterpret a large universal tag as a negative zero value. Large universal tags are not present in any common ASN.1 structures (such as X509) but are accepted as part of ANY structures. Therefore, if an application deserializes untrusted ASN.1 structures containing an ANY field, and later reserializes them, an attacker may be able to trigger an out-of-bounds write. This has been shown to cause memory corruption that is potentially exploitable with some malloc implementations. Applications that parse and re-encode X509 certificates are known to be vulnerable. Applications that verify RSA signatures on X509 certificates may also be vulnerable; however, only certificates with valid signatures trigger ASN.1 re-encoding and hence the bug. Specifically, since OpenSSL's default TLS X509 chain verification code verifies the certificate chain from root to leaf, TLS handshakes could only be targeted with valid certificates issued by trusted Certification Authorities.", "affected_packages": [ { "package": { @@ -7152,8 +6613,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1t", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r|1.0.1s" + "fixed_version": "1.0.1o", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n" }, { "package": { @@ -7164,22 +6625,22 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2h", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g" + "fixed_version": "1.0.2c", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2176", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2108", "severities": [], - "reference_id": "CVE-2016-2176", + "reference_id": "CVE-2016-2108", "reference_type": "" }, { "url": "https://www.openssl.org/news/secadv/20160503.txt", "severities": [ { - "value": "Low", + "value": "High", "system": "generic_textual", "scoring_elements": "" } @@ -7193,10 +6654,6 @@ }, { "unique_content_id": "4c10365eacf49048d2ca1f3d490de4c2", - "aliases": [ - "CVE-2016-2177", - "VC-OPENSSL-20160601-CVE-2016-2177" - ], "summary": "Avoid some undefined pointer arithmetic A common idiom in the codebase is to check limits in the following manner: \"p + len > limit\" Where \"p\" points to some malloc'd data of SIZE bytes and limit == p + SIZE \"len\" here could be from some externally supplied data (e.g. from a TLS message). The rules of C pointer arithmetic are such that \"p + len\" is only well defined where len <= SIZE. Therefore the above idiom is actually undefined behaviour. For example this could cause problems if some malloc implementation provides an address for \"p\" such that \"p + len\" actually overflows for values of len that are too big and therefore p + len < limit.", "affected_packages": [ { @@ -7249,10 +6706,6 @@ }, { "unique_content_id": "69c98b0d04f2bf1a2d1f044b54108625", - "aliases": [ - "CVE-2016-2178", - "VC-OPENSSL-20160607-CVE-2016-2178" - ], "summary": "Operations in the DSA signing algorithm should run in constant time in order to avoid side channel attacks. A flaw in the OpenSSL DSA implementation means that a non-constant time codepath is followed for certain operations. This has been demonstrated through a cache-timing attack to be sufficient for an attacker to recover the private DSA key.", "affected_packages": [ { @@ -7304,12 +6757,8 @@ "weaknesses": [] }, { - "unique_content_id": "c541cb508cce45e8ffa33b03c44a7706", - "aliases": [ - "CVE-2016-2179", - "VC-OPENSSL-20160822-CVE-2016-2179" - ], - "summary": "In a DTLS connection where handshake messages are delivered out-of-order those messages that OpenSSL is not yet ready to process will be buffered for later use. Under certain circumstances, a flaw in the logic means that those messages do not get removed from the buffer even though the handshake has been completed. An attacker could force up to approx. 15 messages to remain in the buffer when they are no longer required. These messages will be cleared when the DTLS connection is closed. The default maximum size for a message is 100k. Therefore the attacker could force an additional 1500k to be consumed per connection. By opening many simulataneous connections an attacker could cause a DoS attack through memory exhaustion.", + "unique_content_id": "c3ef560f8d241b1b75cdef3199faa45c", + "summary": "The function TS_OBJ_print_bio() misuses OBJ_obj2txt(): the return value is the total length the OID text representation would use and not the amount of data written. This will result in OOB reads when large OIDs are presented.", "affected_packages": [ { "package": { @@ -7338,21 +6787,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2179", - "severities": [], - "reference_id": "CVE-2016-2179", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/00a4c1421407b6ac796688871b0a49a179c694d9", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/26f2c5774f117aea588e8f31fad38bcf14e83bec", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2180", "severities": [], - "reference_id": "", + "reference_id": "CVE-2016-2180", "reference_type": "" }, { @@ -7368,16 +6805,12 @@ "reference_type": "" } ], - "date_published": "2016-08-22T00:00:00+00:00", + "date_published": "2016-07-22T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "c3ef560f8d241b1b75cdef3199faa45c", - "aliases": [ - "CVE-2016-2180", - "VC-OPENSSL-20160722-CVE-2016-2180" - ], - "summary": "The function TS_OBJ_print_bio() misuses OBJ_obj2txt(): the return value is the total length the OID text representation would use and not the amount of data written. This will result in OOB reads when large OIDs are presented.", + "unique_content_id": "e29c5c80d781403086304ecb4fce7a59", + "summary": "The function BN_bn2dec() does not check the return value of BN_div_word(). This can cause an OOB write if an application uses this function with an overly large BIGNUM. This could be a problem if an overly large certificate or CRL is printed out from an untrusted source. TLS is not affected because record limits will reject an oversized certificate before it is parsed.", "affected_packages": [ { "package": { @@ -7406,9 +6839,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2180", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2182", "severities": [], - "reference_id": "CVE-2016-2180", + "reference_id": "CVE-2016-2182", "reference_type": "" }, { @@ -7424,15 +6857,11 @@ "reference_type": "" } ], - "date_published": "2016-07-22T00:00:00+00:00", + "date_published": "2016-08-16T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "bad085048774b51abab2b4e37c3868a0", - "aliases": [ - "CVE-2016-2181", - "VC-OPENSSL-20160819-CVE-2016-2181" - ], "summary": "A flaw in the DTLS replay attack protection mechanism means that records that arrive for future epochs update the replay protection \"window\" before the MAC for the record has been validated. This could be exploited by an attacker by sending a record for the next epoch (which does not have to decrypt or have a valid MAC), with a very large sequence number. This means that all subsequent legitimate packets are dropped causing a denial of service for a specific DTLS connection.", "affected_packages": [ { @@ -7496,13 +6925,9 @@ "weaknesses": [] }, { - "unique_content_id": "e29c5c80d781403086304ecb4fce7a59", - "aliases": [ - "CVE-2016-2182", - "VC-OPENSSL-20160816-CVE-2016-2182" - ], - "summary": "The function BN_bn2dec() does not check the return value of BN_div_word(). This can cause an OOB write if an application uses this function with an overly large BIGNUM. This could be a problem if an overly large certificate or CRL is printed out from an untrusted source. TLS is not affected because record limits will reject an oversized certificate before it is parsed.", - "affected_packages": [ + "unique_content_id": "c541cb508cce45e8ffa33b03c44a7706", + "summary": "In a DTLS connection where handshake messages are delivered out-of-order those messages that OpenSSL is not yet ready to process will be buffered for later use. Under certain circumstances, a flaw in the logic means that those messages do not get removed from the buffer even though the handshake has been completed. An attacker could force up to approx. 15 messages to remain in the buffer when they are no longer required. These messages will be cleared when the DTLS connection is closed. The default maximum size for a message is 100k. Therefore the attacker could force an additional 1500k to be consumed per connection. By opening many simulataneous connections an attacker could cause a DoS attack through memory exhaustion.", + "affected_packages": [ { "package": { "name": "openssl", @@ -7530,57 +6955,25 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2182", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2179", "severities": [], - "reference_id": "CVE-2016-2182", + "reference_id": "CVE-2016-2179", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual", - "scoring_elements": "" - } - ], + "url": "https://github.com/openssl/openssl/commit/00a4c1421407b6ac796688871b0a49a179c694d9", + "severities": [], "reference_id": "", "reference_type": "" - } - ], - "date_published": "2016-08-16T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "659c848c83841e30d1052e8d49e18051", - "aliases": [ - "CVE-2016-2183", - "VC-OPENSSL-20160824-CVE-2016-2183" - ], - "summary": "Because DES (and triple-DES) has only a 64-bit block size, birthday attacks are a real concern. For example, with the ability to run Javascript in a browser, it is possible to send enough traffic to cause a collision, and then use that information to recover something like a session Cookie. Triple-DES, which shows up as “DES-CBC3” in an OpenSSL cipher string, is still used on the Web, and major browsers are not yet willing to completely disable it. If you run a server, you should disable triple-DES. This is generally a configuration issue. If you run an old server that doesn’t support any better ciphers than DES or RC4, you should upgrade. For 1.0.2 and 1.0.1, we removed the triple-DES ciphers from the “HIGH” keyword and put them into “MEDIUM.” Note that we did not remove them from the “DEFAULT” keyword. For the 1.1.0 release, we treat triple-DES just like we are treating RC4. It is not compiled by default; you have to use “enable-weak-ssl-ciphers” as a config option. Even when those ciphers are compiled, triple-DES is only in the “MEDIUM” keyword. In addition we also removed it from the “DEFAULT” keyword.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.2i", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h" - } - ], - "references": [ + }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2183", + "url": "https://github.com/openssl/openssl/commit/26f2c5774f117aea588e8f31fad38bcf14e83bec", "severities": [], - "reference_id": "CVE-2016-2183", + "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/blog/blog/2016/08/24/sweet32/", + "url": "https://www.openssl.org/news/secadv/20160922.txt", "severities": [ { "value": "Low", @@ -7592,15 +6985,11 @@ "reference_type": "" } ], - "date_published": "2016-08-24T00:00:00+00:00", + "date_published": "2016-08-22T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "cfaace2e186847527636a2195766fc52", - "aliases": [ - "CVE-2016-6302", - "VC-OPENSSL-20160823-CVE-2016-6302" - ], "summary": "If a server uses SHA512 for TLS session ticket HMAC it is vulnerable to a DoS attack where a malformed ticket will result in an OOB read which will ultimately crash. The use of SHA512 in TLS session tickets is comparatively rare as it requires a custom server callback and ticket lookup mechanism.", "affected_packages": [ { @@ -7665,10 +7054,6 @@ }, { "unique_content_id": "2af63a761bf4ddbbaeb92afa382151cf", - "aliases": [ - "CVE-2016-6303", - "VC-OPENSSL-20160824-CVE-2016-6303" - ], "summary": "An overflow can occur in MDC2_Update() either if called directly or through the EVP_DigestUpdate() function using MDC2. If an attacker is able to supply very large amounts of input data after a previous call to EVP_EncryptUpdate() with a partial block then a length check can overflow resulting in a heap corruption. The amount of data needed is comparable to SIZE_MAX which is impractical on most platforms.", "affected_packages": [ { @@ -7732,12 +7117,8 @@ "weaknesses": [] }, { - "unique_content_id": "3b3ff4143b6859104d216a310d58db58", - "aliases": [ - "CVE-2016-6304", - "VC-OPENSSL-20160922-CVE-2016-6304" - ], - "summary": "A malicious client can send an excessively large OCSP Status Request extension. If that client continually requests renegotiation, sending a large OCSP Status Request extension each time, then there will be unbounded memory growth on the server. This will eventually lead to a Denial Of Service attack through memory exhaustion. Servers with a default configuration are vulnerable even if they do not support OCSP. Builds using the \"no-ocsp\" build time option are not affected. Servers using OpenSSL versions prior to 1.0.1g are not vulnerable in a default configuration, instead only if an application explicitly enables OCSP stapling support.", + "unique_content_id": "659c848c83841e30d1052e8d49e18051", + "summary": "Because DES (and triple-DES) has only a 64-bit block size, birthday attacks are a real concern. For example, with the ability to run Javascript in a browser, it is possible to send enough traffic to cause a collision, and then use that information to recover something like a session Cookie. Triple-DES, which shows up as \u201cDES-CBC3\u201d in an OpenSSL cipher string, is still used on the Web, and major browsers are not yet willing to completely disable it. If you run a server, you should disable triple-DES. This is generally a configuration issue. If you run an old server that doesn\u2019t support any better ciphers than DES or RC4, you should upgrade. For 1.0.2 and 1.0.1, we removed the triple-DES ciphers from the \u201cHIGH\u201d keyword and put them into \u201cMEDIUM.\u201d Note that we did not remove them from the \u201cDEFAULT\u201d keyword. For the 1.1.0 release, we treat triple-DES just like we are treating RC4. It is not compiled by default; you have to use \u201cenable-weak-ssl-ciphers\u201d as a config option. Even when those ciphers are compiled, triple-DES is only in the \u201cMEDIUM\u201d keyword. In addition we also removed it from the \u201cDEFAULT\u201d keyword.", "affected_packages": [ { "package": { @@ -7748,9 +7129,37 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.1u", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r|1.0.1s|1.0.1t" + "fixed_version": "1.0.2i", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2183", + "severities": [], + "reference_id": "CVE-2016-2183", + "reference_type": "" }, + { + "url": "https://www.openssl.org/blog/blog/2016/08/24/sweet32/", + "severities": [ + { + "value": "Low", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2016-08-24T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "17585a9b090ed55460ac0cad6c3b5f6e", + "summary": "In OpenSSL 1.0.2 and earlier some missing message length checks can result in OOB reads of up to 2 bytes beyond an allocated buffer. There is a theoretical DoS risk but this has not been observed in practice on common platforms. The messages affected are client certificate, client certificate request and server certificate. As a result the attack can only be performed against a client or a server which enables client authentication.", + "affected_packages": [ { "package": { "name": "openssl", @@ -7760,8 +7169,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2i", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h" + "fixed_version": "1.0.1u", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b|1.0.1c|1.0.1d|1.0.1e|1.0.1f|1.0.1g|1.0.1h|1.0.1i|1.0.1j|1.0.1k|1.0.1l|1.0.1m|1.0.1n|1.0.1o|1.0.1p|1.0.1q|1.0.1r|1.0.1s|1.0.1t" }, { "package": { @@ -7772,31 +7181,71 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "fixed_version": "1.0.2i", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6304", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6306", "severities": [], - "reference_id": "CVE-2016-6304", + "reference_id": "CVE-2016-6306", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/2c0d295e26306e15a92eb23a84a1802005c1c137", + "url": "https://github.com/openssl/openssl/commit/bb1a4866034255749ac578adb06a76335fc117b1", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/ea39b16b71e4e72a228a4535bd6d6a02c5edbc1f", + "url": "https://github.com/openssl/openssl/commit/006a788c84e541c8920dd2ad85fb62b52185c519", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/a59ab1c4dd27a4c7c6e88f3c33747532fd144412", + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2016-09-21T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "8ee9b8d2efa51108b44de0e5f0671902", + "summary": "A DTLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Due to way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6308", + "severities": [], + "reference_id": "CVE-2016-6308", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/df6b5e29ffea2d5a3e08de92fb765fdb21c7a21e", "severities": [], "reference_id": "", "reference_type": "" @@ -7805,7 +7254,7 @@ "url": "https://www.openssl.org/news/secadv/20160922.txt", "severities": [ { - "value": "High", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -7814,16 +7263,12 @@ "reference_type": "" } ], - "date_published": "2016-09-22T00:00:00+00:00", + "date_published": "2016-09-21T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "ec3000e978936c5dc59eeb71d14f61d0", - "aliases": [ - "CVE-2016-6305", - "VC-OPENSSL-20160922-CVE-2016-6305" - ], - "summary": "OpenSSL 1.1.0 SSL/TLS will hang during a call to SSL_peek() if the peer sends an empty record. This could be exploited by a malicious peer in a Denial Of Service attack.", + "unique_content_id": "f598dbb4cacf63ed93e588c1db8ff5b8", + "summary": "A TLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Due to way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service.", "affected_packages": [ { "package": { @@ -7840,13 +7285,13 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6305", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6307", "severities": [], - "reference_id": "CVE-2016-6305", + "reference_id": "CVE-2016-6307", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/63658103d4441924f8dbfc517b99bb54758a98b9", + "url": "https://github.com/openssl/openssl/commit/4b390b6c3f8df925dc92a3dd6b022baa9a2f4650", "severities": [], "reference_id": "", "reference_type": "" @@ -7855,7 +7300,7 @@ "url": "https://www.openssl.org/news/secadv/20160922.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -7864,16 +7309,12 @@ "reference_type": "" } ], - "date_published": "2016-09-22T00:00:00+00:00", + "date_published": "2016-09-21T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "17585a9b090ed55460ac0cad6c3b5f6e", - "aliases": [ - "CVE-2016-6306", - "VC-OPENSSL-20160921-CVE-2016-6306" - ], - "summary": "In OpenSSL 1.0.2 and earlier some missing message length checks can result in OOB reads of up to 2 bytes beyond an allocated buffer. There is a theoretical DoS risk but this has not been observed in practice on common platforms. The messages affected are client certificate, client certificate request and server certificate. As a result the attack can only be performed against a client or a server which enables client authentication.", + "unique_content_id": "3b3ff4143b6859104d216a310d58db58", + "summary": "A malicious client can send an excessively large OCSP Status Request extension. If that client continually requests renegotiation, sending a large OCSP Status Request extension each time, then there will be unbounded memory growth on the server. This will eventually lead to a Denial Of Service attack through memory exhaustion. Servers with a default configuration are vulnerable even if they do not support OCSP. Builds using the \"no-ocsp\" build time option are not affected. Servers using OpenSSL versions prior to 1.0.1g are not vulnerable in a default configuration, instead only if an application explicitly enables OCSP stapling support.", "affected_packages": [ { "package": { @@ -7898,23 +7339,41 @@ }, "fixed_version": "1.0.2i", "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6306", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6304", "severities": [], - "reference_id": "CVE-2016-6306", + "reference_id": "CVE-2016-6304", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/bb1a4866034255749ac578adb06a76335fc117b1", + "url": "https://github.com/openssl/openssl/commit/2c0d295e26306e15a92eb23a84a1802005c1c137", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/006a788c84e541c8920dd2ad85fb62b52185c519", + "url": "https://github.com/openssl/openssl/commit/ea39b16b71e4e72a228a4535bd6d6a02c5edbc1f", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/a59ab1c4dd27a4c7c6e88f3c33747532fd144412", "severities": [], "reference_id": "", "reference_type": "" @@ -7923,7 +7382,7 @@ "url": "https://www.openssl.org/news/secadv/20160922.txt", "severities": [ { - "value": "Low", + "value": "High", "system": "generic_textual", "scoring_elements": "" } @@ -7932,16 +7391,12 @@ "reference_type": "" } ], - "date_published": "2016-09-21T00:00:00+00:00", + "date_published": "2016-09-22T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "f598dbb4cacf63ed93e588c1db8ff5b8", - "aliases": [ - "CVE-2016-6307", - "VC-OPENSSL-20160921-CVE-2016-6307" - ], - "summary": "A TLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Due to way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service.", + "unique_content_id": "ec3000e978936c5dc59eeb71d14f61d0", + "summary": "OpenSSL 1.1.0 SSL/TLS will hang during a call to SSL_peek() if the peer sends an empty record. This could be exploited by a malicious peer in a Denial Of Service attack.", "affected_packages": [ { "package": { @@ -7958,13 +7413,13 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6307", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6305", "severities": [], - "reference_id": "CVE-2016-6307", + "reference_id": "CVE-2016-6305", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/4b390b6c3f8df925dc92a3dd6b022baa9a2f4650", + "url": "https://github.com/openssl/openssl/commit/63658103d4441924f8dbfc517b99bb54758a98b9", "severities": [], "reference_id": "", "reference_type": "" @@ -7973,7 +7428,7 @@ "url": "https://www.openssl.org/news/secadv/20160922.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -7982,16 +7437,12 @@ "reference_type": "" } ], - "date_published": "2016-09-21T00:00:00+00:00", + "date_published": "2016-09-22T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "8ee9b8d2efa51108b44de0e5f0671902", - "aliases": [ - "CVE-2016-6308", - "VC-OPENSSL-20160921-CVE-2016-6308" - ], - "summary": "A DTLS message includes 3 bytes for its length in the header for the message. This would allow for messages up to 16Mb in length. Messages of this length are excessive and OpenSSL includes a check to ensure that a peer is sending reasonably sized messages in order to avoid too much memory being consumed to service a connection. A flaw in the logic of version 1.1.0 means that memory for the message is allocated too early, prior to the excessive message length check. Due to way memory is allocated in OpenSSL this could mean an attacker could force up to 21Mb to be allocated to service a connection. This could lead to a Denial of Service through memory exhaustion. However, the excessive message length check still takes place, and this would cause the connection to immediately fail. Assuming that the application calls SSL_free() on the failed conneciton in a timely manner then the 21Mb of allocated memory will then be immediately freed again. Therefore the excessive memory allocation will be transitory in nature. This then means that there is only a security impact if: 1) The application does not call SSL_free() in a timely manner in the event that the connection fails or 2) The application is working in a constrained environment where there is very little free memory or 3) The attacker initiates multiple connection attempts such that there are multiple connections in a state where memory has been allocated for the connection; SSL_free() has not yet been called; and there is insufficient memory to service the multiple requests. Except in the instance of (1) above any Denial Of Service is likely to be transitory because as soon as the connection fails the memory is subsequently freed again in the SSL_free() call. However there is an increased risk during this period of application crashes due to the lack of memory - which would then mean a more serious Denial of Service.", + "unique_content_id": "76efc0216d0391eac89b5097852a6f7e", + "summary": "This issue only affects OpenSSL 1.0.2i, released on 22nd September 2016. A bug fix which included a CRL sanity check was added to OpenSSL 1.1.0 but was omitted from OpenSSL 1.0.2i. As a result any attempt to use CRLs in OpenSSL 1.0.2i will crash with a null pointer exception.", "affected_packages": [ { "package": { @@ -8002,28 +7453,28 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "fixed_version": "1.0.2j", + "affected_version_range": "vers:openssl/1.0.2i" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6308", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7052", "severities": [], - "reference_id": "CVE-2016-6308", + "reference_id": "CVE-2016-7052", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/df6b5e29ffea2d5a3e08de92fb765fdb21c7a21e", + "url": "https://github.com/openssl/openssl/commit/6e629b5be45face20b4ca71c4fcbfed78b864a2e", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", + "url": "https://www.openssl.org/news/secadv/20160926.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -8032,15 +7483,11 @@ "reference_type": "" } ], - "date_published": "2016-09-21T00:00:00+00:00", + "date_published": "2016-09-26T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "ec731ec05e8399f02edc888b078cfcf1", - "aliases": [ - "CVE-2016-6309", - "VC-OPENSSL-20160926-CVE-2016-6309" - ], "summary": "This issue only affects OpenSSL 1.1.0a, released on 22nd September 2016. The patch applied to address CVE-2016-6307 resulted in an issue where if a message larger than approx 16k is received then the underlying buffer to store the incoming message is reallocated and moved. Unfortunately a dangling pointer to the old location is left which results in an attempt to write to the previously freed location. This is likely to result in a crash, however it could potentially lead to execution of arbitrary code.", "affected_packages": [ { @@ -8086,12 +7533,8 @@ "weaknesses": [] }, { - "unique_content_id": "76efc0216d0391eac89b5097852a6f7e", - "aliases": [ - "CVE-2016-7052", - "VC-OPENSSL-20160926-CVE-2016-7052" - ], - "summary": "This issue only affects OpenSSL 1.0.2i, released on 22nd September 2016. A bug fix which included a CRL sanity check was added to OpenSSL 1.1.0 but was omitted from OpenSSL 1.0.2i. As a result any attempt to use CRLs in OpenSSL 1.0.2i will crash with a null pointer exception.", + "unique_content_id": "2260cd2fea019c35edd74053d43afbfa", + "summary": "TLS connections using *-CHACHA20-POLY1305 ciphersuites are susceptible to a DoS attack by corrupting larger payloads. This can result in an OpenSSL crash. This issue is not considered to be exploitable beyond a DoS.", "affected_packages": [ { "package": { @@ -8102,28 +7545,28 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2j", - "affected_version_range": "vers:openssl/1.0.2i" + "fixed_version": "1.1.0c", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7052", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7054", "severities": [], - "reference_id": "CVE-2016-7052", + "reference_id": "CVE-2016-7054", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/6e629b5be45face20b4ca71c4fcbfed78b864a2e", + "url": "https://github.com/openssl/openssl/commit/99d97842ddb5fbbbfb5e9820a64ebd19afe569f6", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20160926.txt", + "url": "https://www.openssl.org/news/secadv/20161110.txt", "severities": [ { - "value": "Moderate", + "value": "High", "system": "generic_textual", "scoring_elements": "" } @@ -8132,15 +7575,11 @@ "reference_type": "" } ], - "date_published": "2016-09-26T00:00:00+00:00", + "date_published": "2016-11-10T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "ad064a076d4f4136c4ff5cc9a1c32cb4", - "aliases": [ - "CVE-2016-7053", - "VC-OPENSSL-20161110-CVE-2016-7053" - ], "summary": "Applications parsing invalid CMS structures can crash with a NULL pointer dereference. This is caused by a bug in the handling of the ASN.1 CHOICE type in OpenSSL 1.1.0 which can result in a NULL value being passed to the structure callback if an attempt is made to free certain invalid encodings. Only CHOICE structures using a callback which do not handle NULL value are affected.", "affected_packages": [ { @@ -8185,62 +7624,8 @@ "date_published": "2016-11-10T00:00:00+00:00", "weaknesses": [] }, - { - "unique_content_id": "2260cd2fea019c35edd74053d43afbfa", - "aliases": [ - "CVE-2016-7054", - "VC-OPENSSL-20161110-CVE-2016-7054" - ], - "summary": "TLS connections using *-CHACHA20-POLY1305 ciphersuites are susceptible to a DoS attack by corrupting larger payloads. This can result in an OpenSSL crash. This issue is not considered to be exploitable beyond a DoS.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.0c", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7054", - "severities": [], - "reference_id": "CVE-2016-7054", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/99d97842ddb5fbbbfb5e9820a64ebd19afe569f6", - "severities": [], - "reference_id": "", - "reference_type": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20161110.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2016-11-10T00:00:00+00:00", - "weaknesses": [] - }, { "unique_content_id": "c46f2f9d6517a007f907f8a2e4c84820", - "aliases": [ - "CVE-2016-7055", - "VC-OPENSSL-20161110-CVE-2016-7055" - ], "summary": "There is a carry propagating bug in the Broadwell-specific Montgomery multiplication procedure that handles input lengths divisible by, but longer than 256 bits. Analysis suggests that attacks against RSA, DSA and DH private keys are impossible. This is because the subroutine in question is not used in operations with the private key itself and an input of the attacker's direct choice. Otherwise the bug can manifest itself as transient authentication and key negotiation failures or reproducible erroneous outcome of public-key operations with specially crafted input. Among EC algorithms only Brainpool P-512 curves are affected and one presumably can attack ECDH key negotiation. Impact was not analyzed in detail, because pre-requisites for attack are considered unlikely. Namely multiple clients have to choose the curve in question and the server has to share the private key among them, neither of which is default behaviour. Even then only clients that chose the curve will be affected.", "affected_packages": [ { @@ -8305,10 +7690,6 @@ }, { "unique_content_id": "6f703a0f132094abbd39fd883ed6e241", - "aliases": [ - "CVE-2017-3730", - "VC-OPENSSL-20170126-CVE-2017-3730" - ], "summary": "If a malicious server supplies bad parameters for a DHE or ECDHE key exchange then this can result in the client attempting to dereference a NULL pointer leading to a client crash. This could be exploited in a Denial of Service attack.", "affected_packages": [ { @@ -8354,12 +7735,8 @@ "weaknesses": [] }, { - "unique_content_id": "c271a33647e7cdefdce8ed38c15e1bb7", - "aliases": [ - "CVE-2017-3731", - "VC-OPENSSL-20170126-CVE-2017-3731" - ], - "summary": "If an SSL/TLS server or client is running on a 32-bit host, and a specific cipher is being used, then a truncated packet can cause that server or client to perform an out-of-bounds read, usually resulting in a crash. For OpenSSL 1.1.0, the crash can be triggered when using CHACHA20/POLY1305; users should upgrade to 1.1.0d. For Openssl 1.0.2, the crash can be triggered when using RC4-MD5; users who have not disabled that algorithm should update to 1.0.2k", + "unique_content_id": "b14fc26f1382b65b58128617820053c3", + "summary": "There is a carry propagating bug in the x86_64 Montgomery squaring procedure. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. For example this can occur by default in OpenSSL DHE based SSL/TLS ciphersuites. Note: This issue is very similar to CVE-2015-3193 but must be treated as a separate problem.", "affected_packages": [ { "package": { @@ -8388,19 +7765,19 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3731", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3732", "severities": [], - "reference_id": "CVE-2017-3731", + "reference_id": "CVE-2017-3732", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/00d965474b22b54e4275232bc71ee0c699c5cd21", + "url": "https://github.com/openssl/openssl/commit/a59b90bf491410f1f2bc4540cc21f1980fd14c5b", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/51d009043670a627d6abe66894126851cf3690e9", + "url": "https://github.com/openssl/openssl/commit/760d04342a495ee86bf5adc71a91d126af64397f", "severities": [], "reference_id": "", "reference_type": "" @@ -8422,12 +7799,8 @@ "weaknesses": [] }, { - "unique_content_id": "b14fc26f1382b65b58128617820053c3", - "aliases": [ - "CVE-2017-3732", - "VC-OPENSSL-20170126-CVE-2017-3732" - ], - "summary": "There is a carry propagating bug in the x86_64 Montgomery squaring procedure. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. For example this can occur by default in OpenSSL DHE based SSL/TLS ciphersuites. Note: This issue is very similar to CVE-2015-3193 but must be treated as a separate problem.", + "unique_content_id": "c271a33647e7cdefdce8ed38c15e1bb7", + "summary": "If an SSL/TLS server or client is running on a 32-bit host, and a specific cipher is being used, then a truncated packet can cause that server or client to perform an out-of-bounds read, usually resulting in a crash. For OpenSSL 1.1.0, the crash can be triggered when using CHACHA20/POLY1305; users should upgrade to 1.1.0d. For Openssl 1.0.2, the crash can be triggered when using RC4-MD5; users who have not disabled that algorithm should update to 1.0.2k", "affected_packages": [ { "package": { @@ -8456,19 +7829,19 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3732", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3731", "severities": [], - "reference_id": "CVE-2017-3732", + "reference_id": "CVE-2017-3731", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/a59b90bf491410f1f2bc4540cc21f1980fd14c5b", + "url": "https://github.com/openssl/openssl/commit/00d965474b22b54e4275232bc71ee0c699c5cd21", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/760d04342a495ee86bf5adc71a91d126af64397f", + "url": "https://github.com/openssl/openssl/commit/51d009043670a627d6abe66894126851cf3690e9", "severities": [], "reference_id": "", "reference_type": "" @@ -8491,10 +7864,6 @@ }, { "unique_content_id": "e5c015c5ea09f74ca8830fc675109209", - "aliases": [ - "CVE-2017-3733", - "VC-OPENSSL-20170216-CVE-2017-3733" - ], "summary": "During a renegotiation handshake if the Encrypt-Then-Mac extension is negotiated where it was not in the original handshake (or vice-versa) then this can cause OpenSSL to crash (dependent on ciphersuite). Both clients and servers are affected.", "affected_packages": [ { @@ -8541,10 +7910,6 @@ }, { "unique_content_id": "3e3d332a535202d4a355d9c6f46f8511", - "aliases": [ - "CVE-2017-3735", - "VC-OPENSSL-20170828-CVE-2017-3735" - ], "summary": "While parsing an IPAdressFamily extension in an X.509 certificate, it is possible to do a one-byte overread. This would result in an incorrect text display of the certificate.", "affected_packages": [ { @@ -8609,10 +7974,6 @@ }, { "unique_content_id": "135805c0fbb3f388567abe5a782e3678", - "aliases": [ - "CVE-2017-3736", - "VC-OPENSSL-20171102-CVE-2017-3736" - ], "summary": "There is a carry propagating bug in the x86_64 Montgomery squaring procedure. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be very significant and likely only accessible to a limited number of attackers. An attacker would additionally need online access to an unpatched system using the target private key in a scenario with persistent DH parameters and a private key that is shared between multiple clients. This only affects processors that support the BMI1, BMI2 and ADX extensions like Intel Broadwell (5th generation) and later or AMD Ryzen.", "affected_packages": [ { @@ -8677,10 +8038,6 @@ }, { "unique_content_id": "37c832cd6a7a445e21de6bcaae2e6aad", - "aliases": [ - "CVE-2017-3737", - "VC-OPENSSL-20171207-CVE-2017-3737" - ], "summary": "OpenSSL 1.0.2 (starting from version 1.0.2b) introduced an \"error state\" mechanism. The intent was that if a fatal error occurred during a handshake then OpenSSL would move into the error state and would immediately fail if you attempted to continue the handshake. This works as designed for the explicit handshake functions (SSL_do_handshake(), SSL_accept() and SSL_connect()), however due to a bug it does not work correctly if SSL_read() or SSL_write() is called directly. In that scenario, if the handshake fails then a fatal error will be returned in the initial function call. If SSL_read()/SSL_write() is subsequently called by the application for the same SSL object then it will succeed and the data is passed without being decrypted/encrypted directly from the SSL/TLS record layer. In order to exploit this issue an application bug would have to be present that resulted in a call to SSL_read()/SSL_write() being issued after having already received a fatal error.", "affected_packages": [ { @@ -8727,10 +8084,6 @@ }, { "unique_content_id": "fe526b02e32f024f79ab16ad59c5cd59", - "aliases": [ - "CVE-2017-3738", - "VC-OPENSSL-20171207-CVE-2017-3738" - ], "summary": "There is an overflow bug in the AVX2 Montgomery multiplication procedure used in exponentiation with 1024-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH1024 are considered just feasible, because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH1024 private key among multiple clients, which is no longer an option since CVE-2016-0701. This only affects processors that support the AVX2 but not ADX extensions like Intel Haswell (4th generation). Note: The impact from this issue is similar to CVE-2017-3736, CVE-2017-3732 and CVE-2015-3193. Due to the low severity of this issue we are not issuing a new release of OpenSSL 1.1.0 at this time. The fix will be included in OpenSSL 1.1.0h when it becomes available. The fix is also available in commit e502cc86d in the OpenSSL git repository.", "affected_packages": [ { @@ -8794,12 +8147,8 @@ "weaknesses": [] }, { - "unique_content_id": "891a444705c4d9e9d6d9514e6152b93d", - "aliases": [ - "CVE-2018-0732", - "VC-OPENSSL-20180612-CVE-2018-0732" - ], - "summary": "During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack.", + "unique_content_id": "0add28e4bf2017a49afa086624548363", + "summary": "Because of an implementation bug the PA-RISC CRYPTO_memcmp function is effectively reduced to only comparing the least significant bit of each byte. This allows an attacker to forge messages that would be considered as authenticated in an amount of tries lower than that guaranteed by the security claims of the scheme. The module can only be compiled by the HP-UX assembler, so that only HP-UX PA-RISC targets are affected.", "affected_packages": [ { "package": { @@ -8810,46 +8159,28 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0i", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.0.2p", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o" + "fixed_version": "1.1.0h", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0732", - "severities": [], - "reference_id": "CVE-2018-0732", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/ea7abeeabf92b7aca160bdd0208636d4da69f4f4", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0733", "severities": [], - "reference_id": "", + "reference_id": "CVE-2018-0733", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/3984ef0b72831da8b3ece4745cac4f8575b19098", + "url": "https://github.com/openssl/openssl/commit/56d5a4bfcaf37fa420aef2bb881aa55e61cf5f2f", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20180612.txt", + "url": "https://www.openssl.org/news/secadv/20180327.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -8858,16 +8189,12 @@ "reference_type": "" } ], - "date_published": "2018-06-12T00:00:00+00:00", + "date_published": "2018-03-27T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "0add28e4bf2017a49afa086624548363", - "aliases": [ - "CVE-2018-0733", - "VC-OPENSSL-20180327-CVE-2018-0733" - ], - "summary": "Because of an implementation bug the PA-RISC CRYPTO_memcmp function is effectively reduced to only comparing the least significant bit of each byte. This allows an attacker to forge messages that would be considered as authenticated in an amount of tries lower than that guaranteed by the security claims of the scheme. The module can only be compiled by the HP-UX assembler, so that only HP-UX PA-RISC targets are affected.", + "unique_content_id": "fd56a1d08c404d18a2425bde4a2cc222", + "summary": "Constructed ASN.1 types with a recursive definition (such as can be found in PKCS7) could eventually exceed the stack given malicious input with excessive recursion. This could result in a Denial Of Service attack. There are no such structures used within SSL/TLS that come from untrusted sources so this is considered safe.", "affected_packages": [ { "package": { @@ -8880,17 +8207,35 @@ }, "fixed_version": "1.1.0h", "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2o", + "affected_version_range": "vers:openssl/1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0733", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0739", "severities": [], - "reference_id": "CVE-2018-0733", + "reference_id": "CVE-2018-0739", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/56d5a4bfcaf37fa420aef2bb881aa55e61cf5f2f", + "url": "https://github.com/openssl/openssl/commit/2ac4c6f7b2b2af20c0e2b0ba05367e454cd11b33", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/9310d45087ae546e27e61ddf8f6367f29848220d", "severities": [], "reference_id": "", "reference_type": "" @@ -8912,12 +8257,8 @@ "weaknesses": [] }, { - "unique_content_id": "c6585613e6f674c7ea39eefc5057e85d", - "aliases": [ - "CVE-2018-0734", - "VC-OPENSSL-20181030-CVE-2018-0734" - ], - "summary": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key.", + "unique_content_id": "5ce5c73a388c1721baa86dd346bc5cca", + "summary": "The OpenSSL RSA Key generation algorithm has been shown to be vulnerable to a cache timing side channel attack. An attacker with sufficient access to mount cache timing attacks during the RSA key generation process could recover the private key.", "affected_packages": [ { "package": { @@ -8928,20 +8269,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.1a", - "affected_version_range": "vers:openssl/1.1.1" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.0j", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i" + "fixed_version": "1.1.0i", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h" }, { "package": { @@ -8952,37 +8281,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2q", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p" + "fixed_version": "1.0.2p", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0734", - "severities": [], - "reference_id": "CVE-2018-0734", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/8abfe72e8c1de1b95f50aa0d9134803b4d00070f", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0737", "severities": [], - "reference_id": "", + "reference_id": "CVE-2018-0737", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/ef11e19d1365eea2b1851e6f540a0bf365d303e7", + "url": "https://github.com/openssl/openssl/commit/6939eab03a6e23d2bd2c3f5e34fe1d48e542e787", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/43e6a58d4991a451daf4891ff05a48735df871ac", + "url": "https://github.com/openssl/openssl/commit/349a41da1ad88ad87825414752a8ff5fdd6a6c3f", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20181030.txt", + "url": "https://www.openssl.org/news/secadv/20180416.txt", "severities": [ { "value": "Low", @@ -8994,16 +8317,12 @@ "reference_type": "" } ], - "date_published": "2018-10-30T00:00:00+00:00", + "date_published": "2018-04-16T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "3193861b88f934ec25c275d622932dc2", - "aliases": [ - "CVE-2018-0735", - "VC-OPENSSL-20181029-CVE-2018-0735" - ], - "summary": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key.", + "unique_content_id": "891a444705c4d9e9d6d9514e6152b93d", + "summary": "During key agreement in a TLS handshake using a DH(E) based ciphersuite a malicious server can send a very large prime value to the client. This will cause the client to spend an unreasonably long period of time generating a key for this prime resulting in a hang until the client has finished. This could be exploited in a Denial Of Service attack.", "affected_packages": [ { "package": { @@ -9014,8 +8333,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.1a", - "affected_version_range": "vers:openssl/1.1.1" + "fixed_version": "1.1.0i", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h" }, { "package": { @@ -9026,31 +8345,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0j", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i" + "fixed_version": "1.0.2p", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0735", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0732", "severities": [], - "reference_id": "CVE-2018-0735", + "reference_id": "CVE-2018-0732", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/56fb454d281a023b3f950d969693553d3f3ceea1", + "url": "https://github.com/openssl/openssl/commit/ea7abeeabf92b7aca160bdd0208636d4da69f4f4", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/b1d6d55ece1c26fa2829e2b819b038d7b6d692b4", + "url": "https://github.com/openssl/openssl/commit/3984ef0b72831da8b3ece4745cac4f8575b19098", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20181029.txt", + "url": "https://www.openssl.org/news/secadv/20180612.txt", "severities": [ { "value": "Low", @@ -9062,16 +8381,12 @@ "reference_type": "" } ], - "date_published": "2018-10-29T00:00:00+00:00", + "date_published": "2018-06-12T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "5ce5c73a388c1721baa86dd346bc5cca", - "aliases": [ - "CVE-2018-0737", - "VC-OPENSSL-20180416-CVE-2018-0737" - ], - "summary": "The OpenSSL RSA Key generation algorithm has been shown to be vulnerable to a cache timing side channel attack. An attacker with sufficient access to mount cache timing attacks during the RSA key generation process could recover the private key.", + "unique_content_id": "3193861b88f934ec25c275d622932dc2", + "summary": "The OpenSSL ECDSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key.", "affected_packages": [ { "package": { @@ -9082,8 +8397,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0i", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h" + "fixed_version": "1.1.1a", + "affected_version_range": "vers:openssl/1.1.1" }, { "package": { @@ -9094,31 +8409,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2p", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o" + "fixed_version": "1.1.0j", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0737", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0735", "severities": [], - "reference_id": "CVE-2018-0737", + "reference_id": "CVE-2018-0735", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/6939eab03a6e23d2bd2c3f5e34fe1d48e542e787", + "url": "https://github.com/openssl/openssl/commit/56fb454d281a023b3f950d969693553d3f3ceea1", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/349a41da1ad88ad87825414752a8ff5fdd6a6c3f", + "url": "https://github.com/openssl/openssl/commit/b1d6d55ece1c26fa2829e2b819b038d7b6d692b4", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20180416.txt", + "url": "https://www.openssl.org/news/secadv/20181029.txt", "severities": [ { "value": "Low", @@ -9130,16 +8445,12 @@ "reference_type": "" } ], - "date_published": "2018-04-16T00:00:00+00:00", + "date_published": "2018-10-29T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "fd56a1d08c404d18a2425bde4a2cc222", - "aliases": [ - "CVE-2018-0739", - "VC-OPENSSL-20180327-CVE-2018-0739" - ], - "summary": "Constructed ASN.1 types with a recursive definition (such as can be found in PKCS7) could eventually exceed the stack given malicious input with excessive recursion. This could result in a Denial Of Service attack. There are no such structures used within SSL/TLS that come from untrusted sources so this is considered safe.", + "unique_content_id": "c6585613e6f674c7ea39eefc5057e85d", + "summary": "The OpenSSL DSA signature algorithm has been shown to be vulnerable to a timing side channel attack. An attacker could use variations in the signing algorithm to recover the private key.", "affected_packages": [ { "package": { @@ -9150,8 +8461,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.0h", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g" + "fixed_version": "1.1.1a", + "affected_version_range": "vers:openssl/1.1.1" }, { "package": { @@ -9162,34 +8473,52 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2o", - "affected_version_range": "vers:openssl/1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n" + "fixed_version": "1.1.0j", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2q", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0739", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0734", "severities": [], - "reference_id": "CVE-2018-0739", + "reference_id": "CVE-2018-0734", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/2ac4c6f7b2b2af20c0e2b0ba05367e454cd11b33", + "url": "https://github.com/openssl/openssl/commit/8abfe72e8c1de1b95f50aa0d9134803b4d00070f", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/9310d45087ae546e27e61ddf8f6367f29848220d", + "url": "https://github.com/openssl/openssl/commit/ef11e19d1365eea2b1851e6f540a0bf365d303e7", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20180327.txt", + "url": "https://github.com/openssl/openssl/commit/43e6a58d4991a451daf4891ff05a48735df871ac", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20181030.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -9198,15 +8527,11 @@ "reference_type": "" } ], - "date_published": "2018-03-27T00:00:00+00:00", + "date_published": "2018-10-30T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "a86eaada3e2c85065180d5d7eb1d3a31", - "aliases": [ - "CVE-2018-5407", - "VC-OPENSSL-20181102-CVE-2018-5407" - ], "summary": "OpenSSL ECC scalar multiplication, used in e.g. ECDSA and ECDH, has been shown to be vulnerable to a microarchitecture timing side channel attack. An attacker with sufficient access to mount local timing attacks during ECDSA signature generation could recover the private key.", "affected_packages": [ { @@ -9270,11 +8595,53 @@ "weaknesses": [] }, { - "unique_content_id": "939439dfee2c7c3ef79f3f7fa3e5f90b", - "aliases": [ - "CVE-2019-1543", - "VC-OPENSSL-20190306-CVE-2019-1543" + "unique_content_id": "bd17aac4dde8bee4fba0c673c8287082", + "summary": "If an application encounters a fatal protocol error and then calls SSL_shutdown() twice (once to send a close_notify, and once to receive one) then OpenSSL can respond differently to the calling application if a 0 byte record is received with invalid padding compared to if a 0 byte record is received with an invalid MAC. If the application then behaves differently based on that in a way that is detectable to the remote peer, then this amounts to a padding oracle that could be used to decrypt data. In order for this to be exploitable \"non-stitched\" ciphersuites must be in use. Stitched ciphersuites are optimised implementations of certain commonly used ciphersuites. Also the application must call SSL_shutdown() twice even if a protocol error has occurred (applications should not do this but some do anyway). AEAD ciphersuites are not impacted.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2r", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q" + } ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1559", + "severities": [], + "reference_id": "CVE-2019-1559", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/e9bbefbf0f24c57645e7ad6a5a71ae649d18ac8e", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190226.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual", + "scoring_elements": "" + } + ], + "reference_id": "", + "reference_type": "" + } + ], + "date_published": "2019-02-26T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "939439dfee2c7c3ef79f3f7fa3e5f90b", "summary": "ChaCha20-Poly1305 is an AEAD cipher, and requires a unique nonce input for every encryption operation. RFC 7539 specifies that the nonce value (IV) should be 96 bits (12 bytes). OpenSSL allows a variable nonce length and front pads the nonce with 0 bytes if it is less than 12 bytes. However it also incorrectly allows a nonce to be set of up to 16 bytes. In this case only the last 12 bytes are significant and any additional leading bytes are ignored. It is a requirement of using this cipher that nonce values are unique. Messages encrypted using a reused nonce value are susceptible to serious confidentiality and integrity attacks. If an application changes the default nonce length to be longer than 12 bytes and then makes a change to the leading bytes of the nonce expecting the new value to be a new unique nonce then such an application could inadvertently encrypt messages with a reused nonce. Additionally the ignored bytes in a long nonce are not covered by the integrity guarantee of this cipher. Any application that relies on the integrity of these ignored leading bytes of a long nonce may be further affected. Any OpenSSL internal use of this cipher, including in SSL/TLS, is safe because no such use sets such a long nonce value. However user applications that use this cipher directly and set a non-default nonce length to be longer than 12 bytes may be vulnerable. OpenSSL versions 1.1.1 and 1.1.0 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time.", "affected_packages": [ { @@ -9338,12 +8705,8 @@ "weaknesses": [] }, { - "unique_content_id": "c251f1e3c85429b0daa07cb6ea7d1e67", - "aliases": [ - "CVE-2019-1547", - "VC-OPENSSL-20190910-CVE-2019-1547" - ], - "summary": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used.", + "unique_content_id": "4213f363ba037058475897c693173044", + "summary": "OpenSSL has internal defaults for a directory tree where it can find a configuration file as well as certificates used for verification in TLS. This directory is most commonly referred to as OPENSSLDIR, and is configurable with the --prefix / --openssldir configuration options. For OpenSSL versions 1.1.0 and 1.1.1, the mingw configuration targets assume that resulting programs and libraries are installed in a Unix-like environment and the default prefix for program installation as well as for OPENSSLDIR should be '/usr/local'. However, mingw programs are Windows programs, and as such, find themselves looking at sub-directories of 'C:/usr/local', which may be world writable, which enables untrusted users to modify OpenSSL's default configuration, insert CA certificates, modify (or even replace) existing engine modules, etc. For OpenSSL 1.0.2, '/usr/local/ssl' is used as default for OPENSSLDIR on all Unix and Windows targets, including Visual C builds. However, some build instructions for the diverse Windows targets on 1.0.2 encourage you to specify your own --prefix. OpenSSL versions 1.1.1, 1.1.0 and 1.0.2 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time.", "affected_packages": [ { "package": { @@ -9384,81 +8747,37 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1547", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1552", "severities": [], - "reference_id": "CVE-2019-1547", + "reference_id": "CVE-2019-1552", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/30c22fa8b1d840036b8e203585738df62a03cec8", + "url": "https://github.com/openssl/openssl/commit/54aa9d51b09d67e90db443f682cface795f5af9e", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/7c1709c2da5414f5b6133d00a03fc8c5bf996c7a", + "url": "https://github.com/openssl/openssl/commit/e32bc855a81a2d48d215c506bdeb4f598045f7e9", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/21c856b75d81eff61aa63b4f036bb64a85bf6d46", + "url": "https://github.com/openssl/openssl/commit/b15a19c148384e73338aa7c5b12652138e35ed28", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20190910.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual", - "scoring_elements": "" - } - ], - "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2019-09-10T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "05226413367dc1d93fc68106f47a330c", - "aliases": [ - "CVE-2019-1549", - "VC-OPENSSL-20190910-CVE-2019-1549" - ], - "summary": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1549", - "severities": [], - "reference_id": "CVE-2019-1549", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/1b0fe00e2704b5e20334a16d3c9099d1ba2ef1be", + "url": "https://github.com/openssl/openssl/commit/d333ebaf9c77332754a9d5e111e2f53e1de54fdd", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20190910.txt", + "url": "https://www.openssl.org/news/secadv/20190730.txt", "severities": [ { "value": "Low", @@ -9467,32 +8786,16 @@ } ], "reference_id": "", - "reference_type": "" - } - ], - "date_published": "2019-09-10T00:00:00+00:00", - "weaknesses": [] - }, - { - "unique_content_id": "70a045decd4328c7ff88c8a1d969e8c4", - "aliases": [ - "CVE-2019-1551", - "VC-OPENSSL-20191206-CVE-2019-1551" - ], - "summary": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.1e", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d" - }, + "reference_type": "" + } + ], + "date_published": "2019-07-30T00:00:00+00:00", + "weaknesses": [] + }, + { + "unique_content_id": "05226413367dc1d93fc68106f47a330c", + "summary": "OpenSSL 1.1.1 introduced a rewritten random number generator (RNG). This was intended to include protection in the event of a fork() system call in order to ensure that the parent and child processes did not share the same RNG state. However this protection was not being used in the default case. A partial mitigation for this issue is that the output from a high precision timer is mixed into the RNG state so the likelihood of a parent and child process sharing state is significantly reduced. If an application already calls OPENSSL_init_crypto() explicitly using OPENSSL_INIT_ATFORK then this problem does not occur at all.", + "affected_packages": [ { "package": { "name": "openssl", @@ -9502,31 +8805,25 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2u", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s|1.0.2t" + "fixed_version": "1.1.1d", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", - "severities": [], - "reference_id": "CVE-2019-1551", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1549", "severities": [], - "reference_id": "", + "reference_id": "CVE-2019-1549", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/f1c5eea8a817075d31e43f5876993c6710238c98", + "url": "https://github.com/openssl/openssl/commit/1b0fe00e2704b5e20334a16d3c9099d1ba2ef1be", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20191206.txt", + "url": "https://www.openssl.org/news/secadv/20190910.txt", "severities": [ { "value": "Low", @@ -9538,16 +8835,12 @@ "reference_type": "" } ], - "date_published": "2019-12-06T00:00:00+00:00", + "date_published": "2019-09-10T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "4213f363ba037058475897c693173044", - "aliases": [ - "CVE-2019-1552", - "VC-OPENSSL-20190730-CVE-2019-1552" - ], - "summary": "OpenSSL has internal defaults for a directory tree where it can find a configuration file as well as certificates used for verification in TLS. This directory is most commonly referred to as OPENSSLDIR, and is configurable with the --prefix / --openssldir configuration options. For OpenSSL versions 1.1.0 and 1.1.1, the mingw configuration targets assume that resulting programs and libraries are installed in a Unix-like environment and the default prefix for program installation as well as for OPENSSLDIR should be '/usr/local'. However, mingw programs are Windows programs, and as such, find themselves looking at sub-directories of 'C:/usr/local', which may be world writable, which enables untrusted users to modify OpenSSL's default configuration, insert CA certificates, modify (or even replace) existing engine modules, etc. For OpenSSL 1.0.2, '/usr/local/ssl' is used as default for OPENSSLDIR on all Unix and Windows targets, including Visual C builds. However, some build instructions for the diverse Windows targets on 1.0.2 encourage you to specify your own --prefix. OpenSSL versions 1.1.1, 1.1.0 and 1.0.2 are affected by this issue. Due to the limited scope of affected deployments this has been assessed as low severity and therefore we are not creating new releases at this time.", + "unique_content_id": "45ac1a1229fc8b49656c3e6fd99221cd", + "summary": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt.", "affected_packages": [ { "package": { @@ -9588,37 +8881,31 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1552", - "severities": [], - "reference_id": "CVE-2019-1552", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/54aa9d51b09d67e90db443f682cface795f5af9e", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1563", "severities": [], - "reference_id": "", + "reference_id": "CVE-2019-1563", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/e32bc855a81a2d48d215c506bdeb4f598045f7e9", + "url": "https://github.com/openssl/openssl/commit/08229ad838c50f644d7e928e2eef147b4308ad64", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/b15a19c148384e73338aa7c5b12652138e35ed28", + "url": "https://github.com/openssl/openssl/commit/631f94db0065c78181ca9ba5546ebc8bb3884b97", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/d333ebaf9c77332754a9d5e111e2f53e1de54fdd", + "url": "https://github.com/openssl/openssl/commit/e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20190730.txt", + "url": "https://www.openssl.org/news/secadv/20190910.txt", "severities": [ { "value": "Low", @@ -9630,16 +8917,12 @@ "reference_type": "" } ], - "date_published": "2019-07-30T00:00:00+00:00", + "date_published": "2019-09-10T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "bd17aac4dde8bee4fba0c673c8287082", - "aliases": [ - "CVE-2019-1559", - "VC-OPENSSL-20190226-CVE-2019-1559" - ], - "summary": "If an application encounters a fatal protocol error and then calls SSL_shutdown() twice (once to send a close_notify, and once to receive one) then OpenSSL can respond differently to the calling application if a 0 byte record is received with invalid padding compared to if a 0 byte record is received with an invalid MAC. If the application then behaves differently based on that in a way that is detectable to the remote peer, then this amounts to a padding oracle that could be used to decrypt data. In order for this to be exploitable \"non-stitched\" ciphersuites must be in use. Stitched ciphersuites are optimised implementations of certain commonly used ciphersuites. Also the application must call SSL_shutdown() twice even if a protocol error has occurred (applications should not do this but some do anyway). AEAD ciphersuites are not impacted.", + "unique_content_id": "c251f1e3c85429b0daa07cb6ea7d1e67", + "summary": "Normally in OpenSSL EC groups always have a co-factor present and this is used in side channel resistant code paths. However, in some cases, it is possible to construct a group using explicit parameters (instead of using a named curve). In those cases it is possible that such a group does not have the cofactor present. This can occur even where all the parameters match a known named curve. If such a curve is used then OpenSSL falls back to non-side channel resistant code paths which may result in full key recovery during an ECDSA signature operation. In order to be vulnerable an attacker would have to have the ability to time the creation of a large number of signatures where explicit parameters with no co-factor present are in use by an application using libcrypto. For the avoidance of doubt libssl is not vulnerable because explicit parameters are never used.", "affected_packages": [ { "package": { @@ -9650,28 +8933,64 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2r", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q" + "fixed_version": "1.1.1d", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.1.0l", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i|1.1.0j|1.1.0k" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.0.2t", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1559", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1547", "severities": [], - "reference_id": "CVE-2019-1559", + "reference_id": "CVE-2019-1547", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/e9bbefbf0f24c57645e7ad6a5a71ae649d18ac8e", + "url": "https://github.com/openssl/openssl/commit/30c22fa8b1d840036b8e203585738df62a03cec8", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20190226.txt", + "url": "https://github.com/openssl/openssl/commit/7c1709c2da5414f5b6133d00a03fc8c5bf996c7a", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/21c856b75d81eff61aa63b4f036bb64a85bf6d46", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190910.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -9680,16 +8999,12 @@ "reference_type": "" } ], - "date_published": "2019-02-26T00:00:00+00:00", + "date_published": "2019-09-10T00:00:00+00:00", "weaknesses": [] }, { - "unique_content_id": "45ac1a1229fc8b49656c3e6fd99221cd", - "aliases": [ - "CVE-2019-1563", - "VC-OPENSSL-20190910-CVE-2019-1563" - ], - "summary": "In situations where an attacker receives automated notification of the success or failure of a decryption attempt an attacker, after sending a very large number of messages to be decrypted, can recover a CMS/PKCS7 transported encryption key or decrypt any RSA encrypted message that was encrypted with the public RSA key, using a Bleichenbacher padding oracle attack. Applications are not affected if they use a certificate together with the private RSA key to the CMS_decrypt or PKCS7_decrypt functions to select the correct recipient info to decrypt.", + "unique_content_id": "70a045decd4328c7ff88c8a1d969e8c4", + "summary": "There is an overflow bug in the x64_64 Montgomery squaring procedure used in exponentiation with 512-bit moduli. No EC algorithms are affected. Analysis suggests that attacks against 2-prime RSA1024, 3-prime RSA1536, and DSA1024 as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH512 are considered just feasible. However, for an attack the target would have to re-use the DH512 private key, which is not recommended anyway. Also applications directly using the low level API BN_mod_exp may be affected if they use BN_FLG_CONSTTIME.", "affected_packages": [ { "package": { @@ -9700,20 +9015,8 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.0l", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d|1.1.0e|1.1.0f|1.1.0g|1.1.0h|1.1.0i|1.1.0j|1.1.0k" + "fixed_version": "1.1.1e", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d" }, { "package": { @@ -9724,37 +9027,31 @@ "namespace": "", "qualifiers": "" }, - "fixed_version": "1.0.2t", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s" + "fixed_version": "1.0.2u", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s|1.0.2t" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1563", - "severities": [], - "reference_id": "CVE-2019-1563", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/08229ad838c50f644d7e928e2eef147b4308ad64", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", "severities": [], - "reference_id": "", + "reference_id": "CVE-2019-1551", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/631f94db0065c78181ca9ba5546ebc8bb3884b97", + "url": "https://github.com/openssl/openssl/commit/419102400a2811582a7a3d4a4e317d72e5ce0a8f", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f", + "url": "https://github.com/openssl/openssl/commit/f1c5eea8a817075d31e43f5876993c6710238c98", "severities": [], "reference_id": "", "reference_type": "" }, { - "url": "https://www.openssl.org/news/secadv/20190910.txt", + "url": "https://www.openssl.org/news/secadv/20191206.txt", "severities": [ { "value": "Low", @@ -9766,15 +9063,11 @@ "reference_type": "" } ], - "date_published": "2019-09-10T00:00:00+00:00", + "date_published": "2019-12-06T00:00:00+00:00", "weaknesses": [] }, { "unique_content_id": "afb9d94adcf86f7b0de8aa4f7ff7c6b4", - "aliases": [ - "CVE-2020-1967", - "VC-OPENSSL-20200421-CVE-2020-1967" - ], "summary": "Server or client applications that call the SSL_check_chain() function during or after a TLS 1.3 handshake may crash due to a NULL pointer dereference as a result of incorrect handling of the \"signature_algorithms_cert\" TLS extension. The crash occurs if an invalid or unrecognised signature algorithm is received from the peer. This could be exploited by a malicious peer in a Denial of Service attack. OpenSSL version 1.1.1d, 1.1.1e, and 1.1.1f are affected by this issue. This issue did not affect OpenSSL versions prior to 1.1.1d.", "affected_packages": [ { @@ -9821,10 +9114,6 @@ }, { "unique_content_id": "56010436497977628dcea6e96888d450", - "aliases": [ - "CVE-2020-1968", - "VC-OPENSSL-20200909-CVE-2020-1968" - ], "summary": "The Raccoon attack exploits a flaw in the TLS specification which can lead to an attacker being able to compute the pre-master secret in connections which have used a Diffie-Hellman (DH) based ciphersuite. In such a case this would result in the attacker being able to eavesdrop on all encrypted communications sent over that TLS connection. The attack can only be exploited if an implementation re-uses a DH secret across multiple TLS connections. Note that this issue only impacts DH ciphersuites and not ECDH ciphersuites. This issue affects OpenSSL 1.0.2 which is out of support and no longer receiving public updates. OpenSSL 1.1.1 is not vulnerable to this issue.", "affected_packages": [ { @@ -9865,10 +9154,6 @@ }, { "unique_content_id": "87b17158b6ad69a4d8043755547f45ad", - "aliases": [ - "CVE-2020-1971", - "VC-OPENSSL-20201208-CVE-2020-1971" - ], "summary": "The X.509 GeneralName type is a generic type for representing different types of names. One of those name types is known as EDIPartyName. OpenSSL provides a function GENERAL_NAME_cmp which compares different instances of a GENERAL_NAME to see if they are equal or not. This function behaves incorrectly when both GENERAL_NAMEs contain an EDIPARTYNAME. A NULL pointer dereference and a crash may occur leading to a possible denial of service attack. OpenSSL itself uses the GENERAL_NAME_cmp function for two purposes: 1) Comparing CRL distribution point names between an available CRL and a CRL distribution point embedded in an X509 certificate 2) When verifying that a timestamp response token signer matches the timestamp authority name (exposed via the API functions TS_RESP_verify_response and TS_RESP_verify_token) If an attacker can control both items being compared then that attacker could trigger a crash. For example if the attacker can trick a client or server into checking a malicious certificate against a malicious CRL then this may occur. Note that some applications automatically download CRLs based on a URL embedded in a certificate. This checking happens prior to the signatures on the certificate and CRL being verified. OpenSSL's s_server, s_client and verify tools have support for the \"-crl_download\" option which implements automatic CRL downloading and this attack has been demonstrated to work against those tools. Note that an unrelated bug means that affected versions of OpenSSL cannot parse or construct correct encodings of EDIPARTYNAME. However it is possible to construct a malformed EDIPARTYNAME that OpenSSL's parser will accept and hence trigger this attack. All OpenSSL 1.1.1 and 1.0.2 versions are affected by this issue. Other OpenSSL releases are out of support and have not been checked.", "affected_packages": [ { @@ -9932,13 +9217,21 @@ "weaknesses": [] }, { - "unique_content_id": "ebbc5ad78a20128d4894106ef368c8f1", - "aliases": [ - "CVE-2021-23839", - "VC-OPENSSL-20210216-CVE-2021-23839" - ], - "summary": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j.", + "unique_content_id": "510307f6edf17f0620c4a096bb61df0c", + "summary": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j.", "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": "", + "version": "", + "namespace": "", + "qualifiers": "" + }, + "fixed_version": "1.1.1j", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d|1.1.1e|1.1.1f|1.1.1g|1.1.1h|1.1.1i" + }, { "package": { "name": "openssl", @@ -9949,18 +9242,24 @@ "qualifiers": "" }, "fixed_version": "1.0.2y", - "affected_version_range": "vers:openssl/1.0.2s|1.0.2t|1.0.2u|1.0.2v|1.0.2w|1.0.2x" + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s|1.0.2t|1.0.2u|1.0.2v|1.0.2w|1.0.2x" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", "severities": [], - "reference_id": "CVE-2021-23839", + "reference_id": "CVE-2021-23841", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "url": "https://github.com/openssl/openssl/commit/122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "severities": [], + "reference_id": "", + "reference_type": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", "severities": [], "reference_id": "", "reference_type": "" @@ -9969,7 +9268,7 @@ "url": "https://www.openssl.org/news/secadv/20210216.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual", "scoring_elements": "" } @@ -9983,10 +9282,6 @@ }, { "unique_content_id": "62778ba1713cdf9851ef92f4d2f46fa7", - "aliases": [ - "CVE-2021-23840", - "VC-OPENSSL-20210216-CVE-2021-23840" - ], "summary": "Calls to EVP_CipherUpdate, EVP_EncryptUpdate and EVP_DecryptUpdate may overflow the output length argument in some cases where the input length is close to the maximum permissable length for an integer on the platform. In such cases the return value from the function call will be 1 (indicating success), but the output length value will be negative. This could cause applications to behave incorrectly or crash. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j.", "affected_packages": [ { @@ -10050,25 +9345,9 @@ "weaknesses": [] }, { - "unique_content_id": "510307f6edf17f0620c4a096bb61df0c", - "aliases": [ - "CVE-2021-23841", - "VC-OPENSSL-20210216-CVE-2021-23841" - ], - "summary": "The OpenSSL public API function X509_issuer_and_serial_hash() attempts to create a unique hash value based on the issuer and serial number data contained within an X509 certificate. However it fails to correctly handle any errors that may occur while parsing the issuer field (which might occur if the issuer field is maliciously constructed). This may subsequently result in a NULL pointer deref and a crash leading to a potential denial of service attack. The function X509_issuer_and_serial_hash() is never directly called by OpenSSL itself so applications are only vulnerable if they use this function directly and they use it on certificates that may have been obtained from untrusted sources. OpenSSL versions 1.1.1i and below are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1j. OpenSSL versions 1.0.2x and below are affected by this issue. However OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j.", + "unique_content_id": "ebbc5ad78a20128d4894106ef368c8f1", + "summary": "OpenSSL 1.0.2 supports SSLv2. If a client attempts to negotiate SSLv2 with a server that is configured to support both SSLv2 and more recent SSL and TLS versions then a check is made for a version rollback attack when unpadding an RSA signature. Clients that support SSL or TLS versions greater than SSLv2 are supposed to use a special form of padding. A server that supports greater than SSLv2 is supposed to reject connection attempts from a client where this special form of padding is present, because this indicates that a version rollback has occurred (i.e. both client and server support greater than SSLv2, and yet this is the version that is being requested). The implementation of this padding check inverted the logic so that the connection attempt is accepted if the padding is present, and rejected if it is absent. This means that such as server will accept a connection if a version rollback attack has occurred. Further the server will erroneously reject a connection if a normal SSLv2 connection attempt is made. Only OpenSSL 1.0.2 servers from version 1.0.2s to 1.0.2x are affected by this issue. In order to be vulnerable a 1.0.2 server must: 1) have configured SSLv2 support at compile time (this is off by default), 2) have configured SSLv2 support at runtime (this is off by default), 3) have configured SSLv2 ciphersuites (these are not in the default ciphersuite list) OpenSSL 1.1.1 does not have SSLv2 support and therefore is not vulnerable to this issue. The underlying error is in the implementation of the RSA_padding_check_SSLv23() function. This also affects the RSA_SSLV23_PADDING padding mode used by various other functions. Although 1.1.1 does not support SSLv2 the RSA_padding_check_SSLv23() function still exists, as does the RSA_SSLV23_PADDING padding mode. Applications that directly call that function or use that padding mode will encounter this issue. However since there is no support for the SSLv2 protocol in 1.1.1 this is considered a bug and not a security issue in that version. OpenSSL 1.0.2 is out of support and no longer receiving public updates. Premium support customers of OpenSSL 1.0.2 should upgrade to 1.0.2y. Other users should upgrade to 1.1.1j.", "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": "", - "version": "", - "namespace": "", - "qualifiers": "" - }, - "fixed_version": "1.1.1j", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d|1.1.1e|1.1.1f|1.1.1g|1.1.1h|1.1.1i" - }, { "package": { "name": "openssl", @@ -10079,24 +9358,18 @@ "qualifiers": "" }, "fixed_version": "1.0.2y", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e|1.0.2f|1.0.2g|1.0.2h|1.0.2i|1.0.2j|1.0.2k|1.0.2l|1.0.2m|1.0.2n|1.0.2o|1.0.2p|1.0.2q|1.0.2r|1.0.2s|1.0.2t|1.0.2u|1.0.2v|1.0.2w|1.0.2x" + "affected_version_range": "vers:openssl/1.0.2s|1.0.2t|1.0.2u|1.0.2v|1.0.2w|1.0.2x" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", - "severities": [], - "reference_id": "CVE-2021-23841", - "reference_type": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", "severities": [], - "reference_id": "", + "reference_id": "CVE-2021-23839", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "url": "https://github.com/openssl/openssl/commit/30919ab80a478f2d81f2e9acdcca3fa4740cd547", "severities": [], "reference_id": "", "reference_type": "" @@ -10105,7 +9378,7 @@ "url": "https://www.openssl.org/news/secadv/20210216.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual", "scoring_elements": "" } @@ -10118,12 +9391,8 @@ "weaknesses": [] }, { - "unique_content_id": "b9610772604a38aae37934639b563f2d", - "aliases": [ - "CVE-2021-3449", - "VC-OPENSSL-20210325-CVE-2021-3449" - ], - "summary": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue.", + "unique_content_id": "8017a45e047c6a8a07ddcef5b019a5a9", + "summary": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a \"purpose\" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named \"purpose\" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue.", "affected_packages": [ { "package": { @@ -10135,18 +9404,18 @@ "qualifiers": "" }, "fixed_version": "1.1.1k", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d|1.1.1e|1.1.1f|1.1.1g|1.1.1h|1.1.1i|1.1.1j" + "affected_version_range": "vers:openssl/1.1.1h|1.1.1i|1.1.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", "severities": [], - "reference_id": "CVE-2021-3449", + "reference_id": "CVE-2021-3450", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/fb9fa6b51defd48157eeb207f52181f735d96148", + "url": "https://github.com/openssl/openssl/commit/2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", "severities": [], "reference_id": "", "reference_type": "" @@ -10168,12 +9437,8 @@ "weaknesses": [] }, { - "unique_content_id": "8017a45e047c6a8a07ddcef5b019a5a9", - "aliases": [ - "CVE-2021-3450", - "VC-OPENSSL-20210325-CVE-2021-3450" - ], - "summary": "The X509_V_FLAG_X509_STRICT flag enables additional security checks of the certificates present in a certificate chain. It is not set by default. Starting from OpenSSL version 1.1.1h a check to disallow certificates in the chain that have explicitly encoded elliptic curve parameters was added as an additional strict check. An error in the implementation of this check meant that the result of a previous check to confirm that certificates in the chain are valid CA certificates was overwritten. This effectively bypasses the check that non-CA certificates must not be able to issue other certificates. If a \"purpose\" has been configured then there is a subsequent opportunity for checks that the certificate is a valid CA. All of the named \"purpose\" values implemented in libcrypto perform this check. Therefore, where a purpose is set the certificate chain will still be rejected even when the strict flag has been used. A purpose is set by default in libssl client and server certificate verification routines, but it can be overridden or removed by an application. In order to be affected, an application must explicitly set the X509_V_FLAG_X509_STRICT verification flag and either not set a purpose for the certificate verification or, in the case of TLS client or server applications, override the default purpose. OpenSSL versions 1.1.1h and newer are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue.", + "unique_content_id": "b9610772604a38aae37934639b563f2d", + "summary": "An OpenSSL TLS server may crash if sent a maliciously crafted renegotiation ClientHello message from a client. If a TLSv1.2 renegotiation ClientHello omits the signature_algorithms extension (where it was present in the initial ClientHello), but includes a signature_algorithms_cert extension then a NULL pointer dereference will result, leading to a crash and a denial of service attack. A server is only vulnerable if it has TLSv1.2 and renegotiation enabled (which is the default configuration). OpenSSL TLS clients are not impacted by this issue. All OpenSSL 1.1.1 versions are affected by this issue. Users of these versions should upgrade to OpenSSL 1.1.1k. OpenSSL 1.0.2 is not impacted by this issue.", "affected_packages": [ { "package": { @@ -10185,18 +9450,18 @@ "qualifiers": "" }, "fixed_version": "1.1.1k", - "affected_version_range": "vers:openssl/1.1.1h|1.1.1i|1.1.1j" + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c|1.1.1d|1.1.1e|1.1.1f|1.1.1g|1.1.1h|1.1.1i|1.1.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", "severities": [], - "reference_id": "CVE-2021-3450", + "reference_id": "CVE-2021-3449", "reference_type": "" }, { - "url": "https://github.com/openssl/openssl/commit/2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "url": "https://github.com/openssl/openssl/commit/fb9fa6b51defd48157eeb207f52181f735d96148", "severities": [], "reference_id": "", "reference_type": "" @@ -10219,10 +9484,6 @@ }, { "unique_content_id": "7c59ebbda08fad46ad3628c58c6e1f4f", - "aliases": [ - "CVE-2021-3711", - "VC-OPENSSL-20210824-CVE-2021-3711" - ], "summary": "In order to decrypt SM2 encrypted data an application is expected to call the API function EVP_PKEY_decrypt(). Typically an application will call this function twice. The first time, on entry, the \"out\" parameter can be NULL and, on exit, the \"outlen\" parameter is populated with the buffer size required to hold the decrypted plaintext. The application can then allocate a sufficiently sized buffer and call EVP_PKEY_decrypt() again, but this time passing a non-NULL value for the \"out\" parameter. A bug in the implementation of the SM2 decryption code means that the calculation of the buffer size required to hold the plaintext returned by the first call to EVP_PKEY_decrypt() can be smaller than the actual size required by the second call. This can lead to a buffer overflow when EVP_PKEY_decrypt() is called by the application a second time with a buffer that is too small. A malicious attacker who is able present SM2 content for decryption to an application could cause attacker chosen data to overflow the buffer by up to a maximum of 62 bytes altering the contents of other data held after the buffer, possibly changing application behaviour or causing the application to crash. The location of the buffer is application dependent but is typically heap allocated.", "affected_packages": [ { @@ -10269,10 +9530,6 @@ }, { "unique_content_id": "97ca2e1d473bc9e2e802285c56f85541", - "aliases": [ - "CVE-2021-3712", - "VC-OPENSSL-20210824-CVE-2021-3712" - ], "summary": "ASN.1 strings are represented internally within OpenSSL as an ASN1_STRING structure which contains a buffer holding the string data and a field holding the buffer length. This contrasts with normal C strings which are repesented as a buffer for the string data which is terminated with a NUL (0) byte. Although not a strict requirement, ASN.1 strings that are parsed using OpenSSL's own \"d2i\" functions (and other similar parsing functions) as well as any string whose value has been set with the ASN1_STRING_set() function will additionally NUL terminate the byte array in the ASN1_STRING structure. However, it is possible for applications to directly construct valid ASN1_STRING structures which do not NUL terminate the byte array by directly setting the \"data\" and \"length\" fields in the ASN1_STRING array. This can also happen by using the ASN1_STRING_set0() function. Numerous OpenSSL functions that print ASN.1 data have been found to assume that the ASN1_STRING byte array will be NUL terminated, even though this is not guaranteed for strings that have been directly constructed. Where an application requests an ASN.1 structure to be printed, and where that ASN.1 structure contains ASN1_STRINGs that have been directly constructed by the application without NUL terminating the \"data\" field, then a read buffer overrun can occur. The same thing can also occur during name constraints processing of certificates (for example if a certificate has been directly constructed by the application instead of loading it via the OpenSSL parsing functions, and the certificate contains non NUL terminated ASN1_STRING structures). It can also occur in the X509_get1_email(), X509_REQ_get1_email() and X509_get1_ocsp() functions. If a malicious actor can cause an application to directly construct an ASN1_STRING and then process it through one of the affected OpenSSL functions then this issue could be hit. This might result in a crash (causing a Denial of Service attack). It could also result in the disclosure of private memory contents (such as private keys, or sensitive plaintext).", "affected_packages": [ { @@ -10337,10 +9594,6 @@ }, { "unique_content_id": "1c5bbe67613cfce3a310b822466ad17e", - "aliases": [ - "CVE-2021-4044", - "VC-OPENSSL-20211214-CVE-2021-4044" - ], "summary": "Internally libssl in OpenSSL calls X509_verify_cert() on the client side to verify a certificate supplied by a server. That function may return a negative return value to indicate an internal error (for example out of memory). Such a negative return value is mishandled by OpenSSL and will cause an IO function (such as SSL_connect() or SSL_do_handshake()) to not indicate success and a subsequent call to SSL_get_error() to return the value SSL_ERROR_WANT_RETRY_VERIFY. This return value is only supposed to be returned by OpenSSL if the application has previously called SSL_CTX_set_cert_verify_callback(). Since most applications do not do this the SSL_ERROR_WANT_RETRY_VERIFY return value from SSL_get_error() will be totally unexpected and applications may not behave correctly as a result. The exact behaviour will depend on the application but it could result in crashes, infinite loops or other similar incorrect responses. This issue is made more serious in combination with a separate bug in OpenSSL 3.0 that will cause X509_verify_cert() to indicate an internal error when processing a certificate chain. This will occur where a certificate does not include the Subject Alternative Name extension but where a Certificate Authority has enforced name constraints. This issue can occur even with valid chains. By combining the two issues an attacker could induce incorrect, application dependent behaviour.", "affected_packages": [ { @@ -10387,10 +9640,6 @@ }, { "unique_content_id": "0039548ab133f97e2138bb298ccc7cae", - "aliases": [ - "CVE-2021-4160", - "VC-OPENSSL-20220128-CVE-2021-4160" - ], "summary": "There is a carry propagation bug in the MIPS32 and MIPS64 squaring procedure. Many EC algorithms are affected, including some of the TLS 1.3 default curves. Impact was not analyzed in detail, because the pre-requisites for attack are considered unlikely and include reusing private keys. Analysis suggests that attacks against RSA and DSA as a result of this defect would be very difficult to perform and are not believed likely. Attacks against DH are considered just feasible (although very difficult) because most of the work necessary to deduce information about a private key may be performed offline. The amount of resources required for such an attack would be significant. However, for an attack on TLS to be meaningful, the server would have to share the DH private key among multiple clients, which is no longer an option since CVE-2016-0701. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0.0. It was addressed in the releases of 1.1.1m and 3.0.1 on the 15th of December 2021. For the 1.0.2 release it is addressed in git commit 6fc1aaaf3 that is available to premium support customers only. It will be made available in 1.0.2zc when it is released. The issue only affects OpenSSL on MIPS platforms.", "affected_packages": [ { @@ -10473,10 +9722,6 @@ }, { "unique_content_id": "caa5eb3135dc715346ce3a32211b024e", - "aliases": [ - "CVE-2022-0778", - "VC-OPENSSL-20220315-CVE-2022-0778" - ], "summary": "The BN_mod_sqrt() function, which computes a modular square root, contains a bug that can cause it to loop forever for non-prime moduli. Internally this function is used when parsing certificates that contain elliptic curve public keys in compressed form or explicit elliptic curve parameters with a base point encoded in compressed form. It is possible to trigger the infinite loop by crafting a certificate that has invalid explicit curve parameters. Since certificate parsing happens prior to verification of the certificate signature, any process that parses an externally supplied certificate may thus be subject to a denial of service attack. The infinite loop can also be reached when parsing crafted private keys as they can contain explicit elliptic curve parameters. Thus vulnerable situations include: - TLS clients consuming server certificates - TLS servers consuming client certificates - Hosting providers taking certificates or private keys from customers - Certificate authorities parsing certification requests from subscribers - Anything else which parses ASN.1 elliptic curve parameters Also any other applications that use the BN_mod_sqrt() where the attacker can control the parameter values are vulnerable to this DoS issue. In the OpenSSL 1.0.2 version the public key is not parsed during initial parsing of the certificate which makes it slightly harder to trigger the infinite loop. However any operation which requires the public key from the certificate will trigger the infinite loop. In particular the attacker can use a self-signed certificate to trigger the loop during verification of the certificate signature. This issue affects OpenSSL versions 1.0.2, 1.1.1 and 3.0. It was addressed in the releases of 1.1.1n and 3.0.2 on the 15th March 2022.", "affected_packages": [ { diff --git a/vulnerabilities/tests/test_example.py b/vulnerabilities/tests/test_example.py index 119a8b61d..dfde6425d 100644 --- a/vulnerabilities/tests/test_example.py +++ b/vulnerabilities/tests/test_example.py @@ -76,7 +76,7 @@ def test_import_framework_using_example_importer(self): ImportRunner(ExampleImporter).run() for expected in mock_fetch_advisory_data(): - assert models.Advisory.objects.get(aliases__contains=expected["id"]) + assert models.Alias.objects.get(alias=expected["id"]).advisories.all() @pytest.mark.django_db(transaction=True) def test_improve_framework_using_example_improver(self): diff --git a/vulnerabilities/tests/test_import_runner.py b/vulnerabilities/tests/test_import_runner.py index 3f88e0963..d46a34861 100644 --- a/vulnerabilities/tests/test_import_runner.py +++ b/vulnerabilities/tests/test_import_runner.py @@ -163,7 +163,10 @@ def test_process_advisories_can_import_advisories_with_severities_and_no_date(): } ad = AdvisoryData.from_dict(advisory) ImportRunner(DummyImporter).process_advisories([ad], "test_importer_date") - advisory_aliases = list(models.Advisory.objects.all().values("aliases")) + advisory_aliases = [ + {"aliases": [item.alias for item in adv.aliases.all()]} + for adv in models.Advisory.objects.all() + ] assert advisory_aliases == [{"aliases": ["CVE-2024-31079"]}] diff --git a/vulnerabilities/tests/test_openssl.py b/vulnerabilities/tests/test_openssl.py index 0effc9515..90dbbc8b7 100644 --- a/vulnerabilities/tests/test_openssl.py +++ b/vulnerabilities/tests/test_openssl.py @@ -30,7 +30,6 @@ ADVISORY_FIELDS_TO_TEST = ( "unique_content_id", - "aliases", "summary", "affected_packages", "references", diff --git a/vulnerabilities/tests/test_postgres_workaround.py b/vulnerabilities/tests/test_postgres_workaround.py index 3b0f215ab..38943bd1a 100644 --- a/vulnerabilities/tests/test_postgres_workaround.py +++ b/vulnerabilities/tests/test_postgres_workaround.py @@ -23,6 +23,7 @@ from vulnerabilities.importer import Reference from vulnerabilities.importer import VulnerabilitySeverity from vulnerabilities.models import Advisory +from vulnerabilities.pipes.advisory import get_or_create_aliases data = AdvisoryData( aliases=["CVE-2020-8908", "GHSA-5mg8-w23w-74h3"], @@ -424,8 +425,7 @@ @pytest.mark.django_db def test_postgres_workaround_with_many_references_many_affected_packages_and_long_summary(): - Advisory.objects.get_or_create( - aliases=data.aliases, + adv, _ = Advisory.objects.get_or_create( summary=data.summary, affected_packages=[pkg.to_dict() for pkg in data.affected_packages], references=[ref.to_dict() for ref in data.references], @@ -435,3 +435,4 @@ def test_postgres_workaround_with_many_references_many_affected_packages_and_lon "date_collected": datetime.now(tz=timezone.utc), }, ) + adv.aliases.add(*get_or_create_aliases(data.aliases)) diff --git a/vulnerabilities/tests/test_vulnerability_status_improver.py b/vulnerabilities/tests/test_vulnerability_status_improver.py index 89a57c0b7..084df3a2c 100644 --- a/vulnerabilities/tests/test_vulnerability_status_improver.py +++ b/vulnerabilities/tests/test_vulnerability_status_improver.py @@ -13,12 +13,14 @@ import pytest +from vulnerabilities.import_runner import associate_vulnerability_with_aliases from vulnerabilities.improvers.vulnerability_status import VulnerabilityStatusImprover from vulnerabilities.models import Advisory from vulnerabilities.models import Alias from vulnerabilities.models import Vulnerability from vulnerabilities.models import VulnerabilityStatusType from vulnerabilities.pipelines.nvd_importer import NVDImporterPipeline +from vulnerabilities.pipes.advisory import get_or_create_aliases BASE_DIR = os.path.dirname(os.path.abspath(__file__)) @@ -31,20 +33,20 @@ @pytest.mark.django_db(transaction=True) def test_interesting_advisories(): - Advisory.objects.create( - aliases=["CVE-1"], + adv1 = Advisory.objects.create( created_by=NVDImporterPipeline.pipeline_id, summary="1", date_collected=datetime.now(), ) - Advisory.objects.create( - aliases=["CVE-1"], + adv1.aliases.add(*get_or_create_aliases(["CVE-1"])) + adv2 = Advisory.objects.create( created_by=NVDImporterPipeline.pipeline_id, summary="2", date_collected=datetime.now(), ) + adv2.aliases.add(*get_or_create_aliases(["CVE-1"])) advs = VulnerabilityStatusImprover().interesting_advisories - assert len(list(advs)) == 1 + assert len(list(advs)) == 2 @pytest.mark.django_db(transaction=True) @@ -53,13 +55,14 @@ def test_improver_end_to_end(mock_response): response = os.path.join(TEST_DATA, "CVE-2023-35866.json") mock_response.return_value = response adv = Advisory.objects.create( - aliases=["CVE-2023-35866"], created_by=NVDImporterPipeline.pipeline_id, summary="1", date_collected=datetime.now(), ) + aliases = get_or_create_aliases(aliases=["CVE-2023-35866"]) + adv.aliases.add(*aliases) v1 = Vulnerability.objects.create(summary="test") - Alias.objects.create(alias="CVE-2023-35866", vulnerability=v1) - VulnerabilityStatusImprover().get_inferences(advisory_data=adv) + associate_vulnerability_with_aliases(aliases=aliases, vulnerability=v1) + VulnerabilityStatusImprover().get_inferences(advisory_data=adv.to_advisory_data()) v1 = Vulnerability.objects.get(summary="test") assert v1.status == VulnerabilityStatusType.DISPUTED