diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 84a41a1b3..52f99a111 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -11,14 +11,17 @@ Version v30.0.0 are available. Because of these extensive changes, it is not possible to migrate existing imported data to the new schema. You will need instead to restart imports from an empty database - or request access to the new vulnerablecode.io live instance. - You can track the progress in this issue: https://github.com/nexB/vulnerablecode/issues/597 + or access the new public.vulnerablecode.io live instance. We also provide a database dump. + +- You can track the progress of this refactoring in this issue: + https://github.com/nexB/vulnerablecode/issues/597 - We added new data sources including PYSEC, GitHub and GitLab. - We improved the documentation including adding development examples for importers and improvers. - We removed the ability to edit relationships from the UI. The UI is now read-only. + - We replace the web UI with a brand new UI based on the same overall look and feel as ScanCode.io. - We added support for NixOS as a Linux deployment target. @@ -42,15 +45,17 @@ Version v30.0.0 - Add new attribute `is_resolved` - Add namespace filter -- We have provided backward compatibility for `url` and `unresolved_vulnerabilities` for now +- We have provided backward compatibility for `url` and `unresolved_vulnerabilities` for now. + These will be removed in the next major version and should be considered as deprecated. -- There is a new experimental cpe/ API endpoint to lookup for vulnerabilities by CPE and +- There is a new experimental `cpe/` API endpoint to lookup for vulnerabilities by CPE and another aliases/ endpoint to lookup for vulnerabilities by aliases. These two endpoints will be replaced by query parameters on the main vulnerabilities/ endpoint when stabilized. -- Added filters for vulnerabilities endpoint to get fixed packages in accordance to the details given in filters: - For example, when you call the endpoint this way ``/api/vulnerabilities?type=pypi&namespace=foo&name=bar``, - you will receive only fixed versioned purls of the type ``pypi``, namespace ``foo`` and name ``bar``. +- Added filters for vulnerabilities endpoint to get fixed packages in accordance + to the details given in filters: For example, when you call the endpoint this way + ``/api/vulnerabilities?type=pypi&namespace=foo&name=bar``, you will receive only + fixed versioned purls of the type ``pypi``, namespace ``foo`` and name ``bar``. - Package endpoint will give fixed packages of only those that matches type, name, namespace, subpath and qualifiers of the package queried. @@ -69,10 +74,14 @@ Version v30.0.0 their API Key in the REST API. Users can be created using the Django "createsuperuser" management command. +- The data license is now CC-BY-SA-4.0 as this is the highest common + denominator license among all the data sources we collect and aggregate. + + Other: -- we dropped calver to use a plain semver. -- we adopted vers and the new univers library to handle version ranges. +- We dropped calver to use a plain semver. +- We adopted vers and the new univers library to handle version ranges. Version v20.10 diff --git a/etc/scripts/backup.sh b/etc/scripts/backup.sh new file mode 100755 index 000000000..f35282bcb --- /dev/null +++ b/etc/scripts/backup.sh @@ -0,0 +1,6 @@ + +# backup current Db + +DBDUMP=vcio-db-dump-$(date +"%Y-%m-%d_%H%M").dump +echo "Backup vulnerablecode current DB to: $DBDUMP" +sudo -u postgres pg_dump --format=c vulnerablecode > $DBDUMP diff --git a/etc/scripts/restore.sh b/etc/scripts/restore.sh new file mode 100755 index 000000000..ce39f0096 --- /dev/null +++ b/etc/scripts/restore.sh @@ -0,0 +1,9 @@ + +# backup current Db and then restore a dump + +./backup.sh +echo "Restore vulnerablecode dump from: $1" +sudo -u postgres dropdb vulnerablecode +sudo -u postgres createdb --encoding=utf-8 --owner=vulnerablecode vulnerablecode +sudo -u postgres pg_restore --verbose -d vulnerablecode $1 + diff --git a/etc/thirdparty/virtualenv.pyz b/etc/thirdparty/virtualenv.pyz index 065893a11..f89a8ead0 100644 Binary files a/etc/thirdparty/virtualenv.pyz and b/etc/thirdparty/virtualenv.pyz differ diff --git a/etc/thirdparty/virtualenv.pyz.ABOUT b/etc/thirdparty/virtualenv.pyz.ABOUT index abbbe2def..9305787e3 100644 --- a/etc/thirdparty/virtualenv.pyz.ABOUT +++ b/etc/thirdparty/virtualenv.pyz.ABOUT @@ -1,7 +1,7 @@ about_resource: virtualenv.pyz name: get-virtualenv -version: 20.13.3 -download_url: https://github.com/pypa/get-virtualenv/raw/20.13.3/public/virtualenv.pyz +version: 20.16.5 +download_url: https://github.com/pypa/get-virtualenv/raw/20.16.5/public/virtualenv.pyz description: virtualenv is a tool to create isolated Python environments. homepage_url: https://github.com/pypa/virtualenv license_expression: lgpl-2.1-plus AND (bsd-new OR apache-2.0) AND mit AND python AND bsd-new @@ -10,4 +10,4 @@ copyright: Copyright (c) The Python Software Foundation and others redistribute: yes attribute: yes track_changes: yes -package_url: pkg:github/pypa/get-virtualenv@20.13.1#public/virtualenv.pyz \ No newline at end of file +package_url: pkg:github/pypa/get-virtualenv@20.16.5#public/virtualenv.pyz \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index aca9f557e..ec9fb7683 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 30.0.0rc3 +version = 30.0.0rc5 license = Apache-2.0 AND CC-BY-SA-4.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 diff --git a/vulnerabilities/forms.py b/vulnerabilities/forms.py index f4d729426..06ccaea69 100644 --- a/vulnerabilities/forms.py +++ b/vulnerabilities/forms.py @@ -9,29 +9,21 @@ from django import forms -from vulnerabilities.models import Package +class PackageSearchForm(forms.Form): -def get_known_package_types(): - """ - Return a list of known package types. - """ - pkg_types = [(i.type, i.type) for i in Package.objects.distinct("type").all()] - pkg_types.append((None, "Any type")) - return pkg_types - - -class PackageForm(forms.Form): - - package_name = forms.CharField( - required=False, widget=forms.TextInput(attrs={"placeholder": "Package name or purl"}) + search = forms.CharField( + required=True, + widget=forms.TextInput( + attrs={"placeholder": "Package name, purl or purl fragment"}, + ), ) -class VulnerabilityForm(forms.Form): +class VulnerabilitySearchForm(forms.Form): - vulnerability_id = forms.CharField( - required=False, + search = forms.CharField( + required=True, widget=forms.TextInput( attrs={"placeholder": "Vulnerability id or alias such as CVE or GHSA"} ), diff --git a/vulnerabilities/improve_runner.py b/vulnerabilities/improve_runner.py index 3fb16696e..af5a84908 100644 --- a/vulnerabilities/improve_runner.py +++ b/vulnerabilities/improve_runner.py @@ -11,14 +11,19 @@ from datetime import datetime from datetime import timezone from typing import List -from typing import Tuple +from django.core.exceptions import ValidationError from django.db import transaction -from vulnerabilities import models -from vulnerabilities.importer import PackageURL from vulnerabilities.improver import Inference from vulnerabilities.models import Advisory +from vulnerabilities.models import Alias +from vulnerabilities.models import Package +from vulnerabilities.models import PackageRelatedVulnerability +from vulnerabilities.models import Vulnerability +from vulnerabilities.models import VulnerabilityReference +from vulnerabilities.models import VulnerabilityRelatedReference +from vulnerabilities.models import VulnerabilitySeverity logger = logging.getLogger(__name__) @@ -63,24 +68,38 @@ def process_inferences(inferences: List[Inference], advisory: Advisory, improver logger.info(f"Improving advisory id: {advisory.id}") for inference in inferences: - vuln = get_or_create_vulnerability_and_aliases( - inference.vulnerability_id, inference.aliases, inference.summary + vulnerability = get_or_create_vulnerability_and_aliases( + vulnerability_id=inference.vulnerability_id, + alias_names=inference.aliases, + summary=inference.summary, ) - if not vuln: + + if not vulnerability: logger.warn(f"Unable to get vulnerability for inference: {inference!r}") continue for ref in inference.references: - reference, _ = models.VulnerabilityReference.objects.get_or_create( - reference_id=ref.reference_id, url=ref.url + + reference = VulnerabilityReference.objects.get_or_none( + reference_id=ref.reference_id, + url=ref.url, ) - models.VulnerabilityRelatedReference.objects.update_or_create( - reference=reference, vulnerability=vuln + if not reference: + reference = create_valid_vulnerability_reference( + reference_id=ref.reference_id, + url=ref.url, + ) + if not reference: + continue + + VulnerabilityRelatedReference.objects.update_or_create( + reference=reference, + vulnerability=vulnerability, ) for severity in ref.severities: - _vs, updated = models.VulnerabilitySeverity.objects.update_or_create( + _vs, updated = VulnerabilitySeverity.objects.update_or_create( scoring_system=severity.system.identifier, reference=reference, defaults={"value": str(severity.value)}, @@ -88,21 +107,20 @@ def process_inferences(inferences: List[Inference], advisory: Advisory, improver if updated: logger.info(f"Severity updated for reference {ref!r} to {severity.value!r}") - if inference.affected_purls: - for pkg in inference.affected_purls: - vulnerable_package, _ = _get_or_create_package(pkg) - models.PackageRelatedVulnerability( - vulnerability=vuln, - package=vulnerable_package, - created_by=improver_name, - confidence=inference.confidence, - fix=False, - ).update_or_create() + for affected_purl in inference.affected_purls or []: + vulnerable_package = Package.objects.get_or_create_from_purl(purl=affected_purl) + PackageRelatedVulnerability( + vulnerability=vulnerability, + package=vulnerable_package, + created_by=improver_name, + confidence=inference.confidence, + fix=False, + ).update_or_create() if inference.fixed_purl: - fixed_package, _ = _get_or_create_package(inference.fixed_purl) - models.PackageRelatedVulnerability( - vulnerability=vuln, + fixed_package = Package.objects.get_or_create_from_purl(purl=inference.fixed_purl) + PackageRelatedVulnerability( + vulnerability=vulnerability, package=fixed_package, created_by=improver_name, confidence=inference.confidence, @@ -113,26 +131,25 @@ def process_inferences(inferences: List[Inference], advisory: Advisory, improver advisory.save() -def _get_or_create_package(p: PackageURL) -> Tuple[models.Package, bool]: - query_kwargs = {} - # TODO: this should be revisited as this should best be a model or manager method... and possibly streamlined - query_kwargs = dict( - type=p.type or "", - namespace=p.namespace or "", - name=p.name or "", - version=p.version or "", - qualifiers=p.qualifiers or {}, - subpath=p.subpath or "", +def create_valid_vulnerability_reference(url, reference_id=None): + """ + Create and return a new validated VulnerabilityReference from a + ``url`` and ``reference_id``. + Return None and log a warning if this is not a valid reference. + """ + reference = VulnerabilityReference( + reference_id=reference_id, + url=url, ) - return models.Package.objects.get_or_create(**query_kwargs) - + try: + reference.full_clean() + except ValidationError as e: + logger.warning(f"Invalid vulnerability reference: {reference!r}: {e}") + return -def _package_url_to_package(purl: PackageURL) -> models.Package: - # FIXME: this is is likely creating a package from a purl? - p = models.Package() - p.set_package_url(purl) - return p + reference.save() + return reference def get_or_create_vulnerability_and_aliases(vulnerability_id, alias_names, summary): @@ -145,9 +162,9 @@ def get_or_create_vulnerability_and_aliases(vulnerability_id, alias_names, summa new_alias_names = set() for alias_name in alias_names: try: - alias = models.Alias.objects.get(alias=alias_name) + alias = Alias.objects.get(alias=alias_name) existing_vulns.add(alias.vulnerability) - except models.Alias.DoesNotExist: + except Alias.DoesNotExist: new_alias_names.add(alias_name) # If given set of aliases point to different vulnerabilities in the @@ -179,14 +196,14 @@ def get_or_create_vulnerability_and_aliases(vulnerability_id, alias_names, summa vulnerability = existing_alias_vuln elif vulnerability_id: try: - vulnerability = models.Vulnerability.objects.get(vulnerability_id=vulnerability_id) - except models.Vulnerability.DoesNotExist: + vulnerability = Vulnerability.objects.get(vulnerability_id=vulnerability_id) + except Vulnerability.DoesNotExist: logger.warn( f"Given vulnerability_id: {vulnerability_id} does not exist in the database" ) return else: - vulnerability = models.Vulnerability(summary=summary) + vulnerability = Vulnerability(summary=summary) vulnerability.save() if summary and summary != vulnerability.summary: @@ -196,7 +213,7 @@ def get_or_create_vulnerability_and_aliases(vulnerability_id, alias_names, summa ) for alias_name in new_alias_names: - alias = models.Alias(alias=alias_name, vulnerability=vulnerability) + alias = Alias(alias=alias_name, vulnerability=vulnerability) alias.save() logger.info(f"New alias for {vulnerability!r}: {alias_name}") diff --git a/vulnerabilities/improvers/add_missing_refid.py b/vulnerabilities/improvers/add_missing_refid.py new file mode 100644 index 000000000..80e7f6eeb --- /dev/null +++ b/vulnerabilities/improvers/add_missing_refid.py @@ -0,0 +1,46 @@ +# +# 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/nexB/vulnerablecode for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +import re +from typing import Iterable + +from django.db.models import Q +from django.db.models.query import QuerySet + +from vulnerabilities.importer import AdvisoryData +from vulnerabilities.improver import Improver +from vulnerabilities.improver import Inference +from vulnerabilities.models import VulnerabilityReference + +""" +Improver that looks for CVE References without an id and tries to set one. +""" + + +class CveIdImprover(Improver): + """ + Add a CVE reference id when missing. + Note that we only look for uppercase CVE for now + """ + + @property + def interesting_advisories(self) -> QuerySet: + return VulnerabilityReference.objects.filter( + Q(reference_id__isnull=True) | Q(reference_id__exact=""), + url__contains="nvd.nist.gov/vuln/detail/CVE-", + ) + + def get_inferences(self, advisory_data: AdvisoryData) -> Iterable[Inference]: + cve_pattern = re.compile(r"(CVE-\d{4}-\d{4,7})").search + for ref in self.interesting_advisories: + cve_match = cve_pattern(ref.url) + if cve_match: + cve = cve_match.group() + ref.reference_id = cve + ref.save() diff --git a/vulnerabilities/migrations/0005_auto_20220329_0938.py b/vulnerabilities/migrations/0005_auto_20220329_0938.py index 748f47518..7582e48fe 100644 --- a/vulnerabilities/migrations/0005_auto_20220329_0938.py +++ b/vulnerabilities/migrations/0005_auto_20220329_0938.py @@ -1,4 +1,3 @@ -# Generated by Django 4.0.2 on 2022-03-29 09:38 import hashlib import json diff --git a/vulnerabilities/migrations/0013_auto_20220503_0941.py b/vulnerabilities/migrations/0013_auto_20220503_0941.py index 8077a1561..c1178daf8 100644 --- a/vulnerabilities/migrations/0013_auto_20220503_0941.py +++ b/vulnerabilities/migrations/0013_auto_20220503_0941.py @@ -1,5 +1,3 @@ -# Generated by Django 4.0.4 on 2022-05-03 09:41 - from django.db import migrations from django.utils.http import int_to_base36 diff --git a/vulnerabilities/migrations/0014_remove_duplicate_severities.py b/vulnerabilities/migrations/0014_remove_duplicate_severities.py index 33bb1479e..84d08d641 100644 --- a/vulnerabilities/migrations/0014_remove_duplicate_severities.py +++ b/vulnerabilities/migrations/0014_remove_duplicate_severities.py @@ -1,25 +1,3 @@ -# Copyright (c) nexB Inc. and others. All rights reserved. -# http://nexb.com and https://github.com/nexB/vulnerablecode/ -# The VulnerableCode software is licensed under the Apache License version 2.0. -# Data generated with VulnerableCode require an acknowledgment. -# -# You may not use this software except in compliance with the License. -# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0 -# Unless required by applicable law or agreed to in writing, software distributed -# under the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR -# CONDITIONS OF ANY KIND, either express or implied. See the License for the -# specific language governing permissions and limitations under the License. -# -# When you publish or redistribute any data created with VulnerableCode or any VulnerableCode -# derivative work, you must accompany this data with the following acknowledgment: -# -# Generated with VulnerableCode and provided on an 'AS IS' BASIS, WITHOUT WARRANTIES -# OR CONDITIONS OF ANY KIND, either express or implied. No content created from -# VulnerableCode should be considered or used as legal advice. Consult an Attorney -# for any legal advice. -# VulnerableCode is a free software code scanning tool from nexB Inc. and others. -# Visit https://github.com/nexB/vulnerablecode/ for support and download. - from django.db import migrations from django.db.models import Count from django.db.models import Max diff --git a/vulnerabilities/migrations/0017_delete_reference_to_cpes_with_empty_urls.py b/vulnerabilities/migrations/0017_delete_reference_to_cpes_with_empty_urls.py index 33e8fffd1..85f3c3cdb 100644 --- a/vulnerabilities/migrations/0017_delete_reference_to_cpes_with_empty_urls.py +++ b/vulnerabilities/migrations/0017_delete_reference_to_cpes_with_empty_urls.py @@ -1,5 +1,3 @@ -# Generated by Django 4.0.4 on 2022-08-05 12:55 - from django.db import migrations diff --git a/vulnerabilities/migrations/0020_auto_20220905_1248.py b/vulnerabilities/migrations/0020_auto_20220905_1248.py index 3d659c1e2..330303530 100644 --- a/vulnerabilities/migrations/0020_auto_20220905_1248.py +++ b/vulnerabilities/migrations/0020_auto_20220905_1248.py @@ -1,5 +1,3 @@ -# Generated by Django 4.0.4 on 2022-09-05 12:48 - from django.db import migrations diff --git a/vulnerabilities/migrations/0024_alter_all_models_to_add_ordering.py b/vulnerabilities/migrations/0024_alter_all_models_to_add_ordering.py new file mode 100644 index 000000000..cf3071d72 --- /dev/null +++ b/vulnerabilities/migrations/0024_alter_all_models_to_add_ordering.py @@ -0,0 +1,37 @@ +# Generated by Django 4.0.7 on 2022-09-08 14:51 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('vulnerabilities', '0023_vcid_migration'), + ] + + operations = [ + migrations.AlterModelOptions( + name='advisory', + options={'ordering': ['aliases', 'date_published', 'unique_content_id']}, + ), + migrations.AlterModelOptions( + name='package', + options={'ordering': ['type', 'namespace', 'name', 'version', 'qualifiers', 'subpath']}, + ), + migrations.AlterModelOptions( + name='packagerelatedvulnerability', + options={'ordering': ['package', 'vulnerability'], 'verbose_name_plural': 'PackageRelatedVulnerabilities'}, + ), + migrations.AlterModelOptions( + name='vulnerability', + options={'ordering': ['vulnerability_id'], 'verbose_name_plural': 'Vulnerabilities'}, + ), + migrations.AlterModelOptions( + name='vulnerabilityrelatedreference', + options={'ordering': ['vulnerability', 'reference']}, + ), + migrations.AlterModelOptions( + name='vulnerabilityseverity', + options={'ordering': ['reference', 'scoring_system', 'value']}, + ), + ] diff --git a/vulnerabilities/migrations/0025_remove_duplicate_reference_urls.py b/vulnerabilities/migrations/0025_remove_duplicate_reference_urls.py new file mode 100644 index 000000000..a12f68d19 --- /dev/null +++ b/vulnerabilities/migrations/0025_remove_duplicate_reference_urls.py @@ -0,0 +1,41 @@ +from django.db import migrations +from django.db.models import Count +from django.db.models import Max + + +class Migration(migrations.Migration): + + dependencies = [ + ('vulnerabilities', '0024_alter_all_models_to_add_ordering'), + ] + + def remove_duplicate_reference_urls(apps, _): + """ + Find all duplicate references and remove all of them except for one. + Any duplication will be reprocessed by reimports if needed to correct + trhe relationships. + """ + + VulnerabilityReference = apps.get_model("vulnerabilities", "VulnerabilityReference") + + duplicates = ( + VulnerabilityReference.objects.values("url") + .order_by("url") + .annotate(max_id=Max("id"), count_id=Count("id")) + .filter(count_id__gt=1) + ) + + for duplicate in duplicates: + # Get all rows with the same url, + # exclude the latest one + # and delete rest of them + ( + VulnerabilityReference.objects + .filter(url=duplicate["url"]) + .exclude(id=duplicate["max_id"]) + .delete() + ) + + operations = [ + migrations.RunPython(remove_duplicate_reference_urls, migrations.RunPython.noop), + ] diff --git a/vulnerabilities/migrations/0026_alter_vulnerabilityreference_unique_together_and_more.py b/vulnerabilities/migrations/0026_alter_vulnerabilityreference_unique_together_and_more.py new file mode 100644 index 000000000..b90f2eb68 --- /dev/null +++ b/vulnerabilities/migrations/0026_alter_vulnerabilityreference_unique_together_and_more.py @@ -0,0 +1,22 @@ +# Generated by Django 4.0.7 on 2022-09-09 12:34 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('vulnerabilities', '0025_remove_duplicate_reference_urls'), + ] + + operations = [ + migrations.AlterUniqueTogether( + name='vulnerabilityreference', + unique_together=set(), + ), + migrations.AlterField( + model_name='vulnerabilityreference', + name='url', + field=models.URLField(help_text='URL to the vulnerability reference', max_length=1024, unique=True), + ), + ] diff --git a/vulnerabilities/models.py b/vulnerabilities/models.py index dddb869c5..49130d9ee 100644 --- a/vulnerabilities/models.py +++ b/vulnerabilities/models.py @@ -10,15 +10,21 @@ import hashlib import json import logging +from contextlib import suppress from django.conf import settings from django.core.exceptions import ValidationError from django.core.validators import MaxValueValidator from django.core.validators import MinValueValidator from django.db import models +from django.db.models.functions import Length +from django.db.models.functions import Trim from django.dispatch import receiver +from django.urls import reverse from packageurl import PackageURL from packageurl.contrib.django.models import PackageURLMixin +from packageurl.contrib.django.models import PackageURLQuerySet +from packageurl.contrib.django.models import without_empty_values from rest_framework.authtoken.models import Token from vulnerabilities.importer import AdvisoryData @@ -30,11 +36,22 @@ logger = logging.getLogger(__name__) +models.CharField.register_lookup(Length) +models.CharField.register_lookup(Trim) + + +class BaseQuerySet(models.QuerySet): + def get_or_none(self, *args, **kwargs): + """ + Returns a single object matching the given keyword arguments, `None` otherwise. + """ + with suppress(self.model.DoesNotExist, ValidationError): + return self.get(*args, **kwargs) + class Vulnerability(models.Model): """ - A software vulnerability with minimal information. Unique identifiers are - stored as ``Alias``. + A software vulnerability with a unique identifier and alternate ``aliases``. """ vulnerability_id = models.CharField( @@ -54,11 +71,19 @@ class Vulnerability(models.Model): references = models.ManyToManyField( to="VulnerabilityReference", through="VulnerabilityRelatedReference" ) + packages = models.ManyToManyField( to="Package", through="PackageRelatedVulnerability", ) + class Meta: + verbose_name_plural = "Vulnerabilities" + ordering = ["vulnerability_id"] + + def __str__(self): + return self.vulnerability_id + @property def severities(self): for reference in self.references.all(): @@ -87,11 +112,11 @@ def alias(self): """ return self.aliases.all() - def __str__(self): - return self.vulnerability_id - - class Meta: - verbose_name_plural = "Vulnerabilities" + def get_absolute_url(self): + """ + Return this Vulnerability details URL. + """ + return reverse("vulnerability_details", args=[self.vulnerability_id]) class VulnerabilityReference(models.Model): @@ -105,18 +130,21 @@ class VulnerabilityReference(models.Model): through="VulnerabilityRelatedReference", ) - url = models.URLField(max_length=1024, help_text="URL to the vulnerability reference") + url = models.URLField( + max_length=1024, + help_text="URL to the vulnerability reference", + unique=True, + ) + reference_id = models.CharField( max_length=200, help_text="An optional reference ID, such as DSA-4465-1 when available", blank=True, ) + objects = BaseQuerySet.as_manager() + class Meta: - unique_together = ( - "url", - "reference_id", - ) ordering = ["reference_id", "url"] def __str__(self): @@ -140,7 +168,35 @@ class VulnerabilityRelatedReference(models.Model): ) class Meta: - unique_together = ("vulnerability", "reference") + unique_together = ["vulnerability", "reference"] + ordering = ["vulnerability", "reference"] + + +class PackageQuerySet(BaseQuerySet, PackageURLQuerySet): + def get_or_create_from_purl(self, purl: PackageURL): + """ + Return an existing or new Package (created if neeed) given a + ``purl`` PackageURL. + """ + purl_fields = without_empty_values(purl.to_dict(encode=True)) + package, _ = Package.objects.get_or_create(**purl_fields) + return package + + def for_package_url_object(self, purl): + """ + Filter the QuerySet with the provided Package URL object or string. The + ``purl`` string is validated and transformed into filtering lookups. If + this is a PackageURL object it is reused as-is. + """ + if isinstance(purl, PackageURL): + lookups = without_empty_values(purl.to_dict(encode=True)) + return self.filter(**lookups) + + elif isinstance(purl, str): + return self.for_package_url(purl) + + else: + return self.none() class Package(PackageURLMixin): @@ -148,10 +204,6 @@ class Package(PackageURLMixin): A software package with related vulnerabilities. """ - vulnerabilities = models.ManyToManyField( - to="Vulnerability", through="PackageRelatedVulnerability" - ) - # Remove the `qualifers` and `set_package_url` overrides after # https://github.com/package-url/packageurl-python/pull/35 # https://github.com/package-url/packageurl-python/pull/67 @@ -164,15 +216,22 @@ class Package(PackageURLMixin): null=False, ) + vulnerabilities = models.ManyToManyField( + to="Vulnerability", through="PackageRelatedVulnerability" + ) + + objects = PackageQuerySet.as_manager() + + @property + def purl(self): + return self.package_url + class Meta: - unique_together = ( - "type", - "namespace", - "name", - "version", - "qualifiers", - "subpath", - ) + unique_together = ["type", "namespace", "name", "version", "qualifiers", "subpath"] + ordering = ["type", "namespace", "name", "version", "qualifiers", "subpath"] + + def __str__(self): + return self.package_url @property # TODO: consider renaming to "affected_by" @@ -211,25 +270,11 @@ def is_vulnerable(self): """ return self.vulnerable_to.exists() - def set_package_url(self, package_url): + def get_absolute_url(self): """ - Set each field values to the values of the provided `package_url` string - or PackageURL object. Existing values are overwritten including setting - values to None for provided empty values. + Return this Package details URL. """ - if not isinstance(package_url, PackageURL): - package_url = PackageURL.from_string(package_url) - - for field_name, value in package_url.to_dict().items(): - model_field = self._meta.get_field(field_name) - - if value and len(value) > model_field.max_length: - raise ValidationError(f'Value too long for field "{field_name}".') - - setattr(self, field_name, value or None) - - def __str__(self): - return self.package_url + return reverse("package_details", args=[self.purl]) class PackageRelatedVulnerability(models.Model): @@ -239,6 +284,7 @@ class PackageRelatedVulnerability(models.Model): Package, on_delete=models.CASCADE, ) + vulnerability = models.ForeignKey( Vulnerability, on_delete=models.CASCADE, @@ -261,13 +307,14 @@ class PackageRelatedVulnerability(models.Model): default=False, help_text="Does this relation fix the specified vulnerability ?" ) - def __str__(self): - return f"{self.package.package_url} {self.vulnerability.vulnerability_id}" - class Meta: - unique_together = ("package", "vulnerability") + unique_together = ["package", "vulnerability"] verbose_name_plural = "PackageRelatedVulnerabilities" indexes = [models.Index(fields=["fix"])] + ordering = ["package", "vulnerability"] + + def __str__(self): + return f"{self.package.package_url} {self.vulnerability.vulnerability_id}" def update_or_create(self): """ @@ -325,11 +372,8 @@ class VulnerabilitySeverity(models.Model): value = models.CharField(max_length=50, help_text="Example: 9.0, Important, High") class Meta: - unique_together = ( - "reference", - "scoring_system", - "value", - ) + unique_together = ["reference", "scoring_system", "value"] + ordering = ["reference", "scoring_system", "value"] class Alias(models.Model): @@ -356,6 +400,12 @@ class Alias(models.Model): related_name="aliases", ) + class Meta: + ordering = ["alias"] + + def __str__(self): + return self.alias + @property def url(self): """ @@ -368,12 +418,6 @@ def url(self): if alias.startswith("GHSA"): return f"https://github.com/advisories/{alias}" - class Meta: - ordering = ["alias"] - - def __str__(self): - return self.alias - class Advisory(models.Model): """ @@ -415,11 +459,8 @@ class Advisory(models.Model): ) class Meta: - unique_together = ( - "aliases", - "unique_content_id", - "date_published", - ) + unique_together = ["aliases", "unique_content_id", "date_published"] + ordering = ["aliases", "date_published", "unique_content_id"] def save(self, *args, **kwargs): checksum = hashlib.md5() diff --git a/vulnerabilities/templates/base.html b/vulnerabilities/templates/base.html index 3fb6b7f98..19adf208e 100644 --- a/vulnerabilities/templates/base.html +++ b/vulnerabilities/templates/base.html @@ -19,7 +19,6 @@
{% block content %}{% endblock %} -
@@ -29,12 +30,11 @@
- {{ package_form.package_name|add_class:"input" }} + {{ package_search_form.search|add_class:"input" }}
-
- {% if package_search %} -
- - {{ package_search }} -
- {% endif %} -
diff --git a/vulnerabilities/templates/packages.html b/vulnerabilities/templates/packages.html index 7bd7612e6..1e430f1bc 100644 --- a/vulnerabilities/templates/packages.html +++ b/vulnerabilities/templates/packages.html @@ -14,51 +14,16 @@ {% include "package_search_box.html" %} -{% if package_name %} +{% if search %}
-
-
-
- Package search results: -
-
- - {{ package_name }} - -
-
-
-
-
-
- Total records: {{ page_obj.paginator.count|intcomma }} -
-
- {% if page_obj.has_previous %} - 1 - « - {% else %} - 1 - « - {% endif %} - Page {{ page_obj.number|intcomma }} of {{ page_obj.paginator.num_pages|intcomma }} - {% if page_obj.has_next %} - » - - {{ page_obj.paginator.num_pages|intcomma }} - - {% else %} - » - {{ page_obj.paginator.num_pages|intcomma }} - {% endif %} + {{ page_obj.paginator.count|intcomma }} results
+ {% if is_paginated %} + {% include 'includes/pagination.html' with page_obj=page_obj %} + {% endif %}
@@ -96,8 +61,8 @@ {{ package.package_url }} + href="{{ package.get_absolute_url }}?search={{ search }}" + target="_self">{{ package.purl }} {{ package.vulnerability_count }} {{ package.patched_vulnerability_count }} @@ -112,63 +77,11 @@ - - - + + {% if is_paginated %} + {% include 'includes/pagination.html' with page_obj=page_obj %} + {% endif %} + {% endif %} {% endblock %} - -{% block scripts %} - {% include "validate_form_scripts.html" %} -{% endblock %} \ No newline at end of file diff --git a/vulnerabilities/templates/validate_form_scripts.html b/vulnerabilities/templates/validate_form_scripts.html deleted file mode 100644 index 66aa4c358..000000000 --- a/vulnerabilities/templates/validate_form_scripts.html +++ /dev/null @@ -1,26 +0,0 @@ - diff --git a/vulnerabilities/templates/vulnerabilities.html b/vulnerabilities/templates/vulnerabilities.html index 823f27252..c864223e3 100644 --- a/vulnerabilities/templates/vulnerabilities.html +++ b/vulnerabilities/templates/vulnerabilities.html @@ -14,60 +14,16 @@ {% include "vulnerability_search_box.html" %} -{% if vulnerability_id %} +{% if search %}
-
-
-
- Vulnerability search results: -
-
- - {{ vulnerability_id }} - -
-
-
-
-
- Total records: {{ page_obj.paginator.count|intcomma }} -
-
- {% if page_obj.has_previous %} - - 1 - - - « - - {% else %} - 1 - « - {% endif %} - Page {{ page_obj.number|intcomma }} of {{ page_obj.paginator.num_pages|intcomma }} - {% if page_obj.has_next %} - - » - - - {{ page_obj.paginator.num_pages|intcomma }} - - {% else %} - » - {{ page_obj.paginator.num_pages|intcomma }} - {% endif %} + {{ page_obj.paginator.count|intcomma }} results
+ {% if is_paginated %} + {% include 'includes/pagination.html' with page_obj=page_obj %} + {% endif %}
@@ -88,7 +44,7 @@ {{ vulnerability.vulnerability_id }} @@ -118,88 +74,11 @@ - + {% if is_paginated %} + {% include 'includes/pagination.html' with page_obj=page_obj %} + {% endif %} {% endif %} {% endblock %} - -{% block scripts %} - {% include "validate_form_scripts.html" %} - - -{% endblock %} \ No newline at end of file diff --git a/vulnerabilities/templates/vulnerability_details.html b/vulnerabilities/templates/vulnerability_details.html index ece2e9dc4..2f8aa9db3 100644 --- a/vulnerabilities/templates/vulnerability_details.html +++ b/vulnerabilities/templates/vulnerability_details.html @@ -1,9 +1,10 @@ {% extends "base.html" %} {% load humanize %} {% load widget_tweaks %} +{% load static %} {% block title %} -VulnerableCode Vulnerability Details +VulnerableCode Vulnerability Details - {{ vulnerability.vulnerability_id }} {% endblock %} {% block content %} @@ -19,61 +20,51 @@
-
- Vulnerability details: -
-
- - {{ vulnerability.vulnerability_id }} - -
-
-
+ Vulnerability details: + + {{ vulnerability.vulnerability_id }} +
-
+
- + @@ -90,12 +81,7 @@ - @@ -106,107 +92,121 @@ Severity ({{ severities|length }})
- {% if severities %} -
Vulnerability ID -

- {{ vulnerability.vulnerability_id }} -

-
{{ vulnerability.vulnerability_id }}
Aliases
Summary - {% if vulnerability.summary %} -

- {{ vulnerability.summary }} -

- {% endif %} +
{{ vulnerability.summary }}
+
+ + + + + + {% for severity in severities %} + + + + {% if severity.reference.url %} + + {% else %} + + {% endif %} + + {% empty %} + + + + {% endfor %} +
System Score Found at
{{ severity.scoring_system }}{{ severity.value }} + {{ severity.reference.url }}{{ severity.reference.reference_id }}
+ There are no known severity scores. +
+
+ + +
+ Fixed by packages ({{ vulnerability.resolved_to.all|length }}) +
+
+ + {% for package in vulnerability.resolved_to.all|slice:":3" %} - - - + - {% for severity in severities %} + {% empty %} - - - {% if severity.reference.url %} - - {% else %} - - {% endif %} + - {% empty %} + {% endfor %} + {% if vulnerability.resolved_to.all|length > 3 %} - - {% endfor %} -
System Score Found at + {{ package.purl }} +
+
{{ severity.scoring_system }}{{ severity.value }} - {{ severity.reference.url }}{{ severity.reference.reference_id }} + There are no known fixed packages. +
- There are no severity scores. + + ... see Fixed by packages tab for more
- {% endif %} -
- -
- - - - - - - - - + {% endif %}
- Affected packages - ({{ vulnerability.vulnerable_to.all|length }}) - (see Affected packages tab) - - - Fixed by packages - ({{ vulnerability.resolved_to.all|length }}) - (see Fixed by packages tab) - -
- {% for package in vulnerability.vulnerable_to.all %} - {% if forloop.counter <= 3 %} - {{ package.package_url }} -
- {% endif %} - {% empty %} - This vulnerability is not known to affect any packages. - {% endfor %} - {% if vulnerability.vulnerable_to.all|length > 3 %} - . . . - {% endif %} -
- {% for package in vulnerability.resolved_to.all %} - {% if forloop.counter <= 3 %} - {{ package.package_url }} -
- {% endif %} - {% empty %} - This vulnerability is not known to affect any packages. - {% endfor %} - {% if vulnerability.resolved_to.all|length > 3 %} - . . . - {% endif %} -
-
-
- {% if vulnerability.references.all %} - - +
+ Affected packages ({{ vulnerability.vulnerable_to.all|length }}) +
+
+
+ {% for package in vulnerability.vulnerable_to.all|slice:":3" %} - - + - - {% for ref in vulnerability.references.all %} + {% empty %} - {% if ref.reference_id %} - - {% else %} - - {% endif %} - + {% endfor %} + {% if vulnerability.vulnerable_to.all|length > 3 %} + + + + {% endif %}
Reference id URL + {{ package.purl }} +
+
{{ ref.reference_id }}{{ ref.url }} + There are no known affected packages. +
+ ... see Affected packages tab for more +
- {% endif %} +
+
+ +
+ + + + + + + + {% for ref in vulnerability.references.all %} + + {% if ref.reference_id %} + + {% else %} + + {% endif %} + + + {% empty %} + + + + {% endfor %} +
Reference id URL
{{ ref.reference_id }}{{ ref.url }}
+ There are no known references. +
-
+
@@ -219,7 +219,7 @@ {% for package in vulnerability.vulnerable_to.all %} @@ -235,7 +235,7 @@
- {{ package.package_url }} + {{ package.purl }} {{ package.vulnerable_to|length }} {{ package.resolved_to|length }}
-
+
@@ -248,7 +248,7 @@ {% for package in vulnerability.resolved_to.all %} @@ -263,13 +263,12 @@
- {{ package.package_url }} + {{ package.purl }} {{ package.vulnerable_to|length }} {{ package.resolved_to|length }}
+
{% endif %} -{% endblock %} + -{% block scripts %} - {% include "validate_form_scripts.html" %} {% endblock %} diff --git a/vulnerabilities/templates/vulnerability_search_box.html b/vulnerabilities/templates/vulnerability_search_box.html index 92237f30a..cf7fba134 100644 --- a/vulnerabilities/templates/vulnerability_search_box.html +++ b/vulnerabilities/templates/vulnerability_search_box.html @@ -21,12 +21,11 @@
- {% render_field vulnerability_form.vulnerability_id class="input" %} + {% render_field vulnerability_search_form.search class="input" %}
-
- {% if vuln_search %} -
- - {{ vuln_search }} -
- {% endif %} -
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 6b4f490f4..f299a7f91 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,10 @@ [ { - "unique_content_id": "dd9de89fd19c456d6452c1fe591238f8", + "unique_content_id": "9c968129f10b424807b830f0219b8d4c", "aliases": [ - "CVE-2021-23017" + "CORE-2010-0121" ], - "summary": "1-byte memory overwrite in resolver", + "summary": "Vulnerabilities with Windows 8.3 filename pseudonyms", "affected_packages": [ { "package": { @@ -13,10 +13,12 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.21.0", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" + "fixed_version": "0.8.33", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" }, { "package": { @@ -25,47 +27,23 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.20.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" - } - ], - "references": [ - { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2021/000300.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" + "qualifiers": { + "os": "windows" } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23017", - "severities": [], - "reference_id": "CVE-2021-23017" - }, - { - "url": "https://nginx.org/download/patch.2021.resolver.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2021.resolver.txt.asc", - "severities": [], - "reference_id": "" + }, + "fixed_version": "0.7.65", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" } ], + "references": [], "date_published": null }, { - "unique_content_id": "836975e8910970e6adbef6643c714424", + "unique_content_id": "b55c336a480792ece857368101645c0c", "aliases": [ - "CVE-2019-9511" + "CVE-2009-3896" ], - "summary": "Excessive CPU usage in HTTP/2 with small window updates", + "summary": "Null pointer dereference vulnerability", "affected_packages": [ { "package": { @@ -76,8 +54,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "0.8.14", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" }, { "package": { @@ -88,35 +66,59 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "0.7.62", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.6.39", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.5.38", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3896", + "severities": [], + "reference_id": "CVE-2009-3896" + }, + { + "url": "https://nginx.org/download/patch.null.pointer.txt", + "severities": [], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9511", + "url": "https://nginx.org/download/patch.null.pointer.txt.asc", "severities": [], - "reference_id": "CVE-2019-9511" + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "0ac8c5b8bbd51df34fcb6e027d5ea044", + "unique_content_id": "5df3f01df0d85143bc51ddbb453c1581", "aliases": [ - "CVE-2019-9513" + "CVE-2009-3898" ], - "summary": "Excessive CPU usage in HTTP/2 with priority changes", + "summary": "Directory traversal vulnerability", "affected_packages": [ { "package": { @@ -127,8 +129,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "0.8.17", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" }, { "package": { @@ -139,35 +141,25 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": "0.7.63", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", - "severities": [ - { - "value": "low", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9513", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3898", "severities": [], - "reference_id": "CVE-2019-9513" + "reference_id": "CVE-2009-3898" } ], "date_published": null }, { - "unique_content_id": "7d85553ab2c402dc0f68469d0789ec2c", + "unique_content_id": "480c77ca27341a47f11299017c7660b7", "aliases": [ - "CVE-2019-9516" + "CVE-2009-4487" ], - "summary": "Excessive memory usage in HTTP/2 with zero length headers", + "summary": "An error log data are not sanitized", "affected_packages": [ { "package": { @@ -178,47 +170,25 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.17.3", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.16.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" + "fixed_version": null, + "affected_version_range": "vers:nginx/*" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", - "severities": [ - { - "value": "low", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9516", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4487", "severities": [], - "reference_id": "CVE-2019-9516" + "reference_id": "CVE-2009-4487" } ], "date_published": null }, { - "unique_content_id": "7dd33f5c92c595292d689401ae2e2e5e", + "unique_content_id": "20cecfba57d0a66b04e1b4b6fb4efb26", "aliases": [ - "CVE-2018-16843" + "CVE-2010-2263" ], - "summary": "Excessive memory usage in HTTP/2", + "summary": "Vulnerabilities with Windows file default stream", "affected_packages": [ { "package": { @@ -227,10 +197,12 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.15.6", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "0.8.40", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" }, { "package": { @@ -239,37 +211,29 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.14.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "0.7.66", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", - "severities": [ - { - "value": "low", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16843", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2263", "severities": [], - "reference_id": "CVE-2018-16843" + "reference_id": "CVE-2010-2263" } ], "date_published": null }, { - "unique_content_id": "3f512172cf08fbf37eed94073722c0d1", + "unique_content_id": "646911f1d2f21611b0a3720f3523b3b2", "aliases": [ - "CVE-2018-16844" + "CVE-2010-2266" ], - "summary": "Excessive CPU usage in HTTP/2", + "summary": "Vulnerabilities with invalid UTF-8 sequence on Windows", "affected_packages": [ { "package": { @@ -278,10 +242,12 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.15.6", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "0.8.41", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" }, { "package": { @@ -290,37 +256,29 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.14.1", - "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" + "fixed_version": "0.7.67", + "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", - "severities": [ - { - "value": "low", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16844", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2266", "severities": [], - "reference_id": "CVE-2018-16844" + "reference_id": "CVE-2010-2266" } ], "date_published": null }, { - "unique_content_id": "65afa9db838c6440788e944c0c841e14", + "unique_content_id": "56a7ea32d809aa1a3181ab87eea4fe43", "aliases": [ - "CVE-2018-16845" + "CVE-2011-4315" ], - "summary": "Memory disclosure in the ngx_http_mp4_module", + "summary": "Buffer overflow in resolver", "affected_packages": [ { "package": { @@ -331,8 +289,8 @@ "namespace": null, "qualifiers": null }, - "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.8", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" }, { "package": { @@ -343,45 +301,25 @@ "namespace": null, "qualifiers": null }, - "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.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000221.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16845", - "severities": [], - "reference_id": "CVE-2018-16845" - }, - { - "url": "https://nginx.org/download/patch.2018.mp4.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2018.mp4.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4315", "severities": [], - "reference_id": "" + "reference_id": "CVE-2011-4315" } ], "date_published": null }, { - "unique_content_id": "b228b252bfacba385255fa39b0ab8a24", + "unique_content_id": "899ece25ddf860b11ce3408d7e1e8eed", "aliases": [ - "CVE-2017-7529" + "CVE-2011-4963" ], - "summary": "Integer overflow in the range filter", + "summary": "Vulnerabilities with Windows directory aliases", "affected_packages": [ { "package": { @@ -390,10 +328,12 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.13.3", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.13.2" + "fixed_version": "1.3.1", + "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" }, { "package": { @@ -402,15 +342,17 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": null + "qualifiers": { + "os": "windows" + } }, - "fixed_version": "1.12.1", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.13.2" + "fixed_version": "1.2.1", + "affected_version_range": "vers:nginx/>=0.7.52|<=1.3.0" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2017/000200.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000086.html", "severities": [ { "value": "medium", @@ -420,29 +362,19 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-7529", - "severities": [], - "reference_id": "CVE-2017-7529" - }, - { - "url": "https://nginx.org/download/patch.2017.ranges.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2017.ranges.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4963", "severities": [], - "reference_id": "" + "reference_id": "CVE-2011-4963" } ], "date_published": null }, { - "unique_content_id": "55c06fb39c2060ebd4286f059a2de757", + "unique_content_id": "aff5af1bcc53f6fa1a49917e044acf79", "aliases": [ - "CVE-2016-4450" + "CVE-2012-1180" ], - "summary": "NULL pointer dereference while writing client request body", + "summary": "Memory disclosure with specially crafted backend responses", "affected_packages": [ { "package": { @@ -453,8 +385,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.11.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" + "fixed_version": "1.1.17", + "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" }, { "package": { @@ -465,43 +397,28 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.10.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" + "fixed_version": "1.0.14", + "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000179.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-4450", - "severities": [], - "reference_id": "CVE-2016-4450" - }, - { - "url": "https://nginx.org/download/patch.2016.write.txt", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000076.html", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2016.write.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-1180", "severities": [], - "reference_id": "" + "reference_id": "CVE-2012-1180" }, { - "url": "https://nginx.org/download/patch.2016.write2.txt", + "url": "https://nginx.org/download/patch.2012.memory.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2016.write2.txt.asc", + "url": "https://nginx.org/download/patch.2012.memory.txt.asc", "severities": [], "reference_id": "" } @@ -509,11 +426,11 @@ "date_published": null }, { - "unique_content_id": "cc7df0e8e72511288d97344b777f34ba", + "unique_content_id": "b0a336b612b378d72e93193756b3e376", "aliases": [ - "CVE-2016-0742" + "CVE-2012-2089" ], - "summary": "Invalid pointer dereference in resolver", + "summary": "Buffer overflow in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -524,8 +441,8 @@ "namespace": null, "qualifiers": null }, - "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": { @@ -536,35 +453,40 @@ "namespace": null, "qualifiers": null }, - "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": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000080.html", + "severities": [], "reference_id": "" }, { - "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" + }, + { + "url": "https://nginx.org/download/patch.2012.mp4.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2012.mp4.txt.asc", + "severities": [], + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "3dd9fdd76b336623770856c554207c25", + "unique_content_id": "e35afe5b1aadcb66c5ad82c8894dff17", "aliases": [ - "CVE-2016-0746" + "CVE-2013-2028" ], - "summary": "Use-after-free during CNAME response processing in resolver", + "summary": "Stack-based buffer overflow with specially crafted request", "affected_packages": [ { "package": { @@ -575,8 +497,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.9.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.5.0", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" }, { "package": { @@ -587,35 +509,40 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.8.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.4.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html", + "severities": [], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0746", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2028", "severities": [], - "reference_id": "CVE-2016-0746" + "reference_id": "CVE-2013-2028" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "severities": [], + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "efde3660cac695e0cf1a2641d85fc960", + "unique_content_id": "bf07c722836da87901a6a99186aa1451", "aliases": [ - "CVE-2016-0747" + "CVE-2013-2070" ], - "summary": "Insufficient limits of CNAME resolution in resolver", + "summary": "Memory disclosure with specially crafted HTTP backend responses", "affected_packages": [ { "package": { @@ -626,8 +553,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.9.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.5.0", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" }, { "package": { @@ -638,13 +565,25 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.8.1", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" + "fixed_version": "1.4.1", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.2.9", + "affected_version_range": "vers:nginx/>=1.1.4|<=1.2.8|>=1.3.9|<=1.4.0" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000114.html", "severities": [ { "value": "medium", @@ -654,19 +593,39 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0747", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2070", "severities": [], - "reference_id": "CVE-2016-0747" + "reference_id": "CVE-2013-2070" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2013.proxy.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2013.proxy.txt.asc", + "severities": [], + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "de51a68688d1254c7b923c4d553673d7", + "unique_content_id": "233d69f66b16829cd2563a8d4544c4fc", "aliases": [ - "CVE-2014-3616" + "CVE-2013-4547" ], - "summary": "SSL session reuse vulnerability", + "summary": "Request line parsing vulnerability", "affected_packages": [ { "package": { @@ -677,8 +636,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.7.5", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" + "fixed_version": "1.5.7", + "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" }, { "package": { @@ -689,13 +648,13 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.6.2", - "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" + "fixed_version": "1.4.4", + "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000147.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html", "severities": [ { "value": "medium", @@ -705,19 +664,29 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3616", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4547", "severities": [], - "reference_id": "CVE-2014-3616" + "reference_id": "CVE-2013-4547" + }, + { + "url": "https://nginx.org/download/patch.2013.space.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2013.space.txt.asc", + "severities": [], + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "be04a26546034f1bf6dc81fe3f196d21", + "unique_content_id": "55dccce79c4247faa1ed8db0f8fbd44f", "aliases": [ - "CVE-2014-3556" + "CVE-2014-0088" ], - "summary": "STARTTLS command injection", + "summary": "SPDY memory corruption", "affected_packages": [ { "package": { @@ -728,45 +697,28 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.7.4", - "affected_version_range": "vers:nginx/>=1.5.6|<=1.7.3" - }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.6.1", - "affected_version_range": "vers:nginx/>=1.5.6|<=1.7.3" + "fixed_version": "1.5.11", + "affected_version_range": "vers:nginx/1.5.10" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000144.html", - "severities": [ - { - "value": "medium", - "system": "generic_textual" - } - ], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000132.html", + "severities": [], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3556", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0088", "severities": [], - "reference_id": "CVE-2014-3556" + "reference_id": "CVE-2014-0088" }, { - "url": "https://nginx.org/download/patch.2014.starttls.txt", + "url": "https://nginx.org/download/patch.2014.spdy.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2014.starttls.txt.asc", + "url": "https://nginx.org/download/patch.2014.spdy.txt.asc", "severities": [], "reference_id": "" } @@ -830,11 +782,11 @@ "date_published": null }, { - "unique_content_id": "55dccce79c4247faa1ed8db0f8fbd44f", + "unique_content_id": "be04a26546034f1bf6dc81fe3f196d21", "aliases": [ - "CVE-2014-0088" + "CVE-2014-3556" ], - "summary": "SPDY memory corruption", + "summary": "STARTTLS command injection", "affected_packages": [ { "package": { @@ -845,28 +797,45 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.5.11", - "affected_version_range": "vers:nginx/1.5.10" + "fixed_version": "1.7.4", + "affected_version_range": "vers:nginx/>=1.5.6|<=1.7.3" + }, + { + "package": { + "name": "nginx", + "type": "nginx", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.6.1", + "affected_version_range": "vers:nginx/>=1.5.6|<=1.7.3" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000132.html", - "severities": [], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000144.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0088", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3556", "severities": [], - "reference_id": "CVE-2014-0088" + "reference_id": "CVE-2014-3556" }, { - "url": "https://nginx.org/download/patch.2014.spdy.txt", + "url": "https://nginx.org/download/patch.2014.starttls.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2014.spdy.txt.asc", + "url": "https://nginx.org/download/patch.2014.starttls.txt.asc", "severities": [], "reference_id": "" } @@ -874,11 +843,11 @@ "date_published": null }, { - "unique_content_id": "233d69f66b16829cd2563a8d4544c4fc", + "unique_content_id": "de51a68688d1254c7b923c4d553673d7", "aliases": [ - "CVE-2013-4547" + "CVE-2014-3616" ], - "summary": "Request line parsing vulnerability", + "summary": "SSL session reuse vulnerability", "affected_packages": [ { "package": { @@ -889,8 +858,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.5.7", - "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" + "fixed_version": "1.7.5", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" }, { "package": { @@ -901,13 +870,13 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.4.4", - "affected_version_range": "vers:nginx/>=0.8.41|<=1.5.6" + "fixed_version": "1.6.2", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.7.4" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000125.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2014/000147.html", "severities": [ { "value": "medium", @@ -917,29 +886,19 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4547", - "severities": [], - "reference_id": "CVE-2013-4547" - }, - { - "url": "https://nginx.org/download/patch.2013.space.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2013.space.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3616", "severities": [], - "reference_id": "" + "reference_id": "CVE-2014-3616" } ], "date_published": null }, { - "unique_content_id": "bf07c722836da87901a6a99186aa1451", + "unique_content_id": "cc7df0e8e72511288d97344b777f34ba", "aliases": [ - "CVE-2013-2070" + "CVE-2016-0742" ], - "summary": "Memory disclosure with specially crafted HTTP backend responses", + "summary": "Invalid pointer dereference in resolver", "affected_packages": [ { "package": { @@ -950,20 +909,8 @@ "namespace": null, "qualifiers": null }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.9.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" }, { "package": { @@ -974,13 +921,13 @@ "namespace": null, "qualifiers": null }, - "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.8.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000114.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", "severities": [ { "value": "medium", @@ -990,39 +937,19 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2070", - "severities": [], - "reference_id": "CVE-2013-2070" - }, - { - "url": "https://nginx.org/download/patch.2013.chunked.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2013.proxy.txt", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nginx.org/download/patch.2013.proxy.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0742", "severities": [], - "reference_id": "" + "reference_id": "CVE-2016-0742" } ], "date_published": null }, { - "unique_content_id": "e35afe5b1aadcb66c5ad82c8894dff17", + "unique_content_id": "3dd9fdd76b336623770856c554207c25", "aliases": [ - "CVE-2013-2028" + "CVE-2016-0746" ], - "summary": "Stack-based buffer overflow with specially crafted request", + "summary": "Use-after-free during CNAME response processing in resolver", "affected_packages": [ { "package": { @@ -1033,8 +960,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.5.0", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" + "fixed_version": "1.9.10", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" }, { "package": { @@ -1045,40 +972,35 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.4.1", - "affected_version_range": "vers:nginx/>=1.3.9|<=1.4.0" + "fixed_version": "1.8.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.9.9" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2013/000112.html", - "severities": [], - "reference_id": "" - }, - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-2028", - "severities": [], - "reference_id": "CVE-2013-2028" - }, - { - "url": "https://nginx.org/download/patch.2013.chunked.txt", - "severities": [], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2013.chunked.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0746", "severities": [], - "reference_id": "" + "reference_id": "CVE-2016-0746" } ], "date_published": null }, { - "unique_content_id": "899ece25ddf860b11ce3408d7e1e8eed", + "unique_content_id": "efde3660cac695e0cf1a2641d85fc960", "aliases": [ - "CVE-2011-4963" + "CVE-2016-0747" ], - "summary": "Vulnerabilities with Windows directory aliases", + "summary": "Insufficient limits of CNAME resolution in resolver", "affected_packages": [ { "package": { @@ -1087,12 +1009,10 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "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": { @@ -1101,17 +1021,15 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "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": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000086.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000169.html", "severities": [ { "value": "medium", @@ -1121,19 +1039,19 @@ "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4963", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0747", "severities": [], - "reference_id": "CVE-2011-4963" + "reference_id": "CVE-2016-0747" } ], "date_published": null }, { - "unique_content_id": "b0a336b612b378d72e93193756b3e376", + "unique_content_id": "55c06fb39c2060ebd4286f059a2de757", "aliases": [ - "CVE-2012-2089" + "CVE-2016-4450" ], - "summary": "Buffer overflow in the ngx_http_mp4_module", + "summary": "NULL pointer dereference while writing client request body", "affected_packages": [ { "package": { @@ -1144,8 +1062,8 @@ "namespace": null, "qualifiers": null }, - "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.11.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" }, { "package": { @@ -1156,28 +1074,43 @@ "namespace": null, "qualifiers": null }, - "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.10.1", + "affected_version_range": "vers:nginx/>=1.3.9|<=1.11.0" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000080.html", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2016/000179.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-4450", + "severities": [], + "reference_id": "CVE-2016-4450" + }, + { + "url": "https://nginx.org/download/patch.2016.write.txt", "severities": [], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2089", + "url": "https://nginx.org/download/patch.2016.write.txt.asc", "severities": [], - "reference_id": "CVE-2012-2089" + "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2012.mp4.txt", + "url": "https://nginx.org/download/patch.2016.write2.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2012.mp4.txt.asc", + "url": "https://nginx.org/download/patch.2016.write2.txt.asc", "severities": [], "reference_id": "" } @@ -1185,11 +1118,11 @@ "date_published": null }, { - "unique_content_id": "aff5af1bcc53f6fa1a49917e044acf79", + "unique_content_id": "b228b252bfacba385255fa39b0ab8a24", "aliases": [ - "CVE-2012-1180" + "CVE-2017-7529" ], - "summary": "Memory disclosure with specially crafted backend responses", + "summary": "Integer overflow in the range filter", "affected_packages": [ { "package": { @@ -1200,8 +1133,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.17", - "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" + "fixed_version": "1.13.3", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.13.2" }, { "package": { @@ -1212,28 +1145,33 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.14", - "affected_version_range": "vers:nginx/>=0.1.0|<=1.1.16" + "fixed_version": "1.12.1", + "affected_version_range": "vers:nginx/>=0.5.6|<=1.13.2" } ], "references": [ { - "url": "http://mailman.nginx.org/pipermail/nginx-announce/2012/000076.html", - "severities": [], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2017/000200.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], "reference_id": "" }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-1180", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-7529", "severities": [], - "reference_id": "CVE-2012-1180" + "reference_id": "CVE-2017-7529" }, { - "url": "https://nginx.org/download/patch.2012.memory.txt", + "url": "https://nginx.org/download/patch.2017.ranges.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.2012.memory.txt.asc", + "url": "https://nginx.org/download/patch.2017.ranges.txt.asc", "severities": [], "reference_id": "" } @@ -1241,11 +1179,11 @@ "date_published": null }, { - "unique_content_id": "56a7ea32d809aa1a3181ab87eea4fe43", + "unique_content_id": "7dd33f5c92c595292d689401ae2e2e5e", "aliases": [ - "CVE-2011-4315" + "CVE-2018-16843" ], - "summary": "Buffer overflow in resolver", + "summary": "Excessive memory usage in HTTP/2", "affected_packages": [ { "package": { @@ -1256,8 +1194,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.8", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" }, { "package": { @@ -1268,25 +1206,35 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.10", - "affected_version_range": "vers:nginx/>=0.6.18|<=1.1.7" + "fixed_version": "1.14.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4315", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", + "severities": [ + { + "value": "low", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16843", "severities": [], - "reference_id": "CVE-2011-4315" + "reference_id": "CVE-2018-16843" } ], "date_published": null }, { - "unique_content_id": "646911f1d2f21611b0a3720f3523b3b2", + "unique_content_id": "3f512172cf08fbf37eed94073722c0d1", "aliases": [ - "CVE-2010-2266" + "CVE-2018-16844" ], - "summary": "Vulnerabilities with invalid UTF-8 sequence on Windows", + "summary": "Excessive CPU usage in HTTP/2", "affected_packages": [ { "package": { @@ -1295,12 +1243,10 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "fixed_version": "0.8.41", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" }, { "package": { @@ -1309,29 +1255,37 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "fixed_version": "0.7.67", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.40" + "fixed_version": "1.14.1", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.15.5" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-2266", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000220.html", + "severities": [ + { + "value": "low", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16844", "severities": [], - "reference_id": "CVE-2010-2266" + "reference_id": "CVE-2018-16844" } ], "date_published": null }, { - "unique_content_id": "20cecfba57d0a66b04e1b4b6fb4efb26", + "unique_content_id": "65afa9db838c6440788e944c0c841e14", "aliases": [ - "CVE-2010-2263" + "CVE-2018-16845" ], - "summary": "Vulnerabilities with Windows file default stream", + "summary": "Memory disclosure in the ngx_http_mp4_module", "affected_packages": [ { "package": { @@ -1340,12 +1294,10 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "fixed_version": "0.8.40", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" + "fixed_version": "1.15.6", + "affected_version_range": "vers:nginx/>=1.0.7|<=1.0.15|>=1.1.3|<=1.15.5" }, { "package": { @@ -1354,29 +1306,47 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "fixed_version": "0.7.66", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.39" + "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://nvd.nist.gov/vuln/detail/CVE-2010-2263", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2018/000221.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-16845", "severities": [], - "reference_id": "CVE-2010-2263" + "reference_id": "CVE-2018-16845" + }, + { + "url": "https://nginx.org/download/patch.2018.mp4.txt", + "severities": [], + "reference_id": "" + }, + { + "url": "https://nginx.org/download/patch.2018.mp4.txt.asc", + "severities": [], + "reference_id": "" } ], "date_published": null }, { - "unique_content_id": "9c968129f10b424807b830f0219b8d4c", + "unique_content_id": "836975e8910970e6adbef6643c714424", "aliases": [ - "CORE-2010-0121" + "CVE-2019-9511" ], - "summary": "Vulnerabilities with Windows 8.3 filename pseudonyms", + "summary": "Excessive CPU usage in HTTP/2 with small window updates", "affected_packages": [ { "package": { @@ -1385,38 +1355,11 @@ "subpath": null, "version": null, "namespace": null, - "qualifiers": { - "os": "windows" - } + "qualifiers": null }, - "fixed_version": "0.8.33", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" }, - { - "package": { - "name": "nginx", - "type": "nginx", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": { - "os": "windows" - } - }, - "fixed_version": "0.7.65", - "affected_version_range": "vers:nginx/>=0.7.52|<=0.8.32" - } - ], - "references": [], - "date_published": null - }, - { - "unique_content_id": "480c77ca27341a47f11299017c7660b7", - "aliases": [ - "CVE-2009-4487" - ], - "summary": "An error log data are not sanitized", - "affected_packages": [ { "package": { "name": "nginx", @@ -1426,26 +1369,35 @@ "namespace": null, "qualifiers": null }, - "fixed_version": null, - "affected_version_range": "vers:nginx/*" + "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-2009-4487", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9511", "severities": [], - "reference_id": "CVE-2009-4487" + "reference_id": "CVE-2019-9511" } ], "date_published": null }, { - "unique_content_id": "34b7ff4154010452c4dd186b7cbbcc5d", + "unique_content_id": "0ac8c5b8bbd51df34fcb6e027d5ea044", "aliases": [ - "VU#120541", - "CVE-2009-3555" + "CVE-2019-9513" ], - "summary": "The renegotiation vulnerability in SSL protocol", + "summary": "Excessive CPU usage in HTTP/2 with priority changes", "affected_packages": [ { "package": { @@ -1456,8 +1408,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.8.23", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" }, { "package": { @@ -1468,35 +1420,35 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.7.64", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" + "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-2009-3555", - "severities": [], - "reference_id": "CVE-2009-3555" - }, - { - "url": "https://nginx.org/download/patch.cve-2009-3555.txt", - "severities": [], + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "severities": [ + { + "value": "low", + "system": "generic_textual" + } + ], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.cve-2009-3555.txt.asc", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9513", "severities": [], - "reference_id": "" + "reference_id": "CVE-2019-9513" } ], "date_published": null }, { - "unique_content_id": "5df3f01df0d85143bc51ddbb453c1581", + "unique_content_id": "7d85553ab2c402dc0f68469d0789ec2c", "aliases": [ - "CVE-2009-3898" + "CVE-2019-9516" ], - "summary": "Directory traversal vulnerability", + "summary": "Excessive memory usage in HTTP/2 with zero length headers", "affected_packages": [ { "package": { @@ -1507,8 +1459,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.8.17", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" + "fixed_version": "1.17.3", + "affected_version_range": "vers:nginx/>=1.9.5|<=1.17.2" }, { "package": { @@ -1519,26 +1471,35 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.7.63", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.16" + "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-2009-3898", + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2019/000249.html", + "severities": [ + { + "value": "low", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-9516", "severities": [], - "reference_id": "CVE-2009-3898" + "reference_id": "CVE-2019-9516" } ], "date_published": null }, { - "unique_content_id": "cef6afb87317112ea248571bd6991994", + "unique_content_id": "dd9de89fd19c456d6452c1fe591238f8", "aliases": [ - "VU#180065", - "CVE-2009-2629" + "CVE-2021-23017" ], - "summary": "Buffer underflow vulnerability", + "summary": "1-byte memory overwrite in resolver", "affected_packages": [ { "package": { @@ -1549,8 +1510,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.8.15", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "1.21.0", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" }, { "package": { @@ -1561,9 +1522,47 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.7.62", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "1.20.1", + "affected_version_range": "vers:nginx/>=0.6.18|<=1.20.0" + } + ], + "references": [ + { + "url": "http://mailman.nginx.org/pipermail/nginx-announce/2021/000300.html", + "severities": [ + { + "value": "medium", + "system": "generic_textual" + } + ], + "reference_id": "" + }, + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23017", + "severities": [], + "reference_id": "CVE-2021-23017" + }, + { + "url": "https://nginx.org/download/patch.2021.resolver.txt", + "severities": [], + "reference_id": "" }, + { + "url": "https://nginx.org/download/patch.2021.resolver.txt.asc", + "severities": [], + "reference_id": "" + } + ], + "date_published": null + }, + { + "unique_content_id": "34b7ff4154010452c4dd186b7cbbcc5d", + "aliases": [ + "VU#120541", + "CVE-2009-3555" + ], + "summary": "The renegotiation vulnerability in SSL protocol", + "affected_packages": [ { "package": { "name": "nginx", @@ -1573,8 +1572,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.6.39", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "fixed_version": "0.8.23", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.22" }, { "package": { @@ -1585,23 +1584,23 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.5.38", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" + "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-2629", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", "severities": [], - "reference_id": "CVE-2009-2629" + "reference_id": "CVE-2009-3555" }, { - "url": "https://nginx.org/download/patch.180065.txt", + "url": "https://nginx.org/download/patch.cve-2009-3555.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.180065.txt.asc", + "url": "https://nginx.org/download/patch.cve-2009-3555.txt.asc", "severities": [], "reference_id": "" } @@ -1609,11 +1608,12 @@ "date_published": null }, { - "unique_content_id": "b55c336a480792ece857368101645c0c", + "unique_content_id": "cef6afb87317112ea248571bd6991994", "aliases": [ - "CVE-2009-3896" + "VU#180065", + "CVE-2009-2629" ], - "summary": "Null pointer dereference vulnerability", + "summary": "Buffer underflow vulnerability", "affected_packages": [ { "package": { @@ -1624,8 +1624,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.8.14", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "fixed_version": "0.8.15", + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" }, { "package": { @@ -1637,7 +1637,7 @@ "qualifiers": null }, "fixed_version": "0.7.62", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" }, { "package": { @@ -1649,7 +1649,7 @@ "qualifiers": null }, "fixed_version": "0.6.39", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" }, { "package": { @@ -1661,22 +1661,22 @@ "qualifiers": null }, "fixed_version": "0.5.38", - "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.13" + "affected_version_range": "vers:nginx/>=0.1.0|<=0.8.14" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3896", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-2629", "severities": [], - "reference_id": "CVE-2009-3896" + "reference_id": "CVE-2009-2629" }, { - "url": "https://nginx.org/download/patch.null.pointer.txt", + "url": "https://nginx.org/download/patch.180065.txt", "severities": [], "reference_id": "" }, { - "url": "https://nginx.org/download/patch.null.pointer.txt.asc", + "url": "https://nginx.org/download/patch.180065.txt.asc", "severities": [], "reference_id": "" } 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 2f4341ee7..1fb45fb97 100644 --- a/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json +++ b/vulnerabilities/tests/test_data/openssl/security_advisories-importer-expected.json @@ -1,11 +1,10 @@ [ { - "unique_content_id": "b7cac498514c187f966805d58748e480", + "unique_content_id": "3b5d1987c5d35dd975de6517663fbf2f", "aliases": [ - "CVE-2022-0778", - "VC-OPENSSL-20220315-CVE-2022-0778" + "VC-OPENSSL-20141015" ], - "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.", + "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": { @@ -16,8 +15,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "3.0.2", - "affected_version_range": "vers:openssl/3.0.0|3.0.1" + "fixed_version": "0.9.8zc", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -28,8 +27,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1n", - "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|1.1.1k|1.1.1l|1.1.1m" + "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": { @@ -40,51 +39,20 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2zd", - "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y|1.0.2za|1.0.2zb|1.0.2zc" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", - "severities": [], - "reference_id": "CVE-2022-0778" - }, - { - "url": "https://github.com/openssl/openssl/commit/a466912611aa6cbdf550cd10601390e587451246", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/3118eb64934499d93db3230748a452351d1d9a65", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/380085481c64de749a6dd25cdf0bcf4360b30f83", - "severities": [], - "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20220315.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" + "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": "2022-03-15T00:00:00+00:00" + "references": [], + "date_published": "2014-10-15T00:00:00+00:00" }, { - "unique_content_id": "61d5d76af214adb2277201f87a39172c", + "unique_content_id": "2ec1914c66b9d7965fca6a0e0bf6c0ec", "aliases": [ - "CVE-2021-4160", - "VC-OPENSSL-20220128-CVE-2021-4160" + "CVE-2002-0655", + "VC-OPENSSL-20020730-CVE-2002-0655" ], - "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.", + "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": { @@ -95,9 +63,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "3.0.1", - "affected_version_range": "vers:openssl/3.0.0" + "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-0655", + "severities": [], + "reference_id": "CVE-2002-0655" }, + { + "url": "https://www.openssl.org/news/secadv/20020730.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2002-07-30T00:00:00+00:00" + }, + { + "unique_content_id": "25d5f2c0daeaee15470dfefa43708d73", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -107,9 +98,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1m", - "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|1.1.1k|1.1.1l" + "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-0656", + "severities": [], + "reference_id": "CVE-2002-0656" }, + { + "url": "https://www.openssl.org/news/secadv/20020730.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2002-07-30T00:00:00+00:00" + }, + { + "unique_content_id": "c98c11a31d0c05afb57039eac59ae4b1", + "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", + "affected_packages": [ { "package": { "name": "openssl", @@ -119,51 +133,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2zc-de", - "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y|1.0.2za|1.0.2zb" + "fixed_version": "0.9.7", + "affected_version_range": "vers:openssl/0.9.7-beta3" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", - "severities": [], - "reference_id": "CVE-2021-4160" - }, - { - "url": "https://github.com/openssl/openssl/commit/3bf7b73ea7123045b8f972badc67ed6878e6c37f", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0657", "severities": [], - "reference_id": "" + "reference_id": "CVE-2002-0657" }, { - "url": "https://github.com/openssl/openssl/commit/6fc1aaaf303185aa5e483e06bdfae16daa9193a7", + "url": "https://www.openssl.org/news/secadv/20020730.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20220128.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2022-01-28T00:00:00+00:00" + "date_published": "2002-07-30T00:00:00+00:00" }, { - "unique_content_id": "8a881398b91d7f4f36aaa2b43dc26eee", + "unique_content_id": "cb80d3d5cbb3cecb0f4a3288931c2ed3", "aliases": [ - "CVE-2021-4044", - "VC-OPENSSL-20211214-CVE-2021-4044" + "CVE-2002-0659", + "VC-OPENSSL-20020730-CVE-2002-0659" ], - "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.", + "summary": "A flaw in the ASN1 library allowed remote attackers to cause a denial of service by sending invalid encodings.", "affected_packages": [ { "package": { @@ -174,41 +168,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "3.0.1", - "affected_version_range": "vers:openssl/3.0.0" + "fixed_version": "0.9.6e", + "affected_version_range": "vers:openssl/0.9.6a|0.9.6b|0.9.6c|0.9.6d" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-4044", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0659", "severities": [], - "reference_id": "CVE-2021-4044" + "reference_id": "CVE-2002-0659" }, { - "url": "https://github.com/openssl/openssl/commit/758754966791c537ea95241438454aa86f91f256", + "url": "https://www.openssl.org/news/secadv/20020730.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20211214.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-12-14T00:00:00+00:00" + "date_published": "2002-07-30T00:00:00+00:00" }, { - "unique_content_id": "94ef1ad0f7c9d43e89a91d23c260991a", + "unique_content_id": "e030092a3a2d0cce363e5f70220b78dd", "aliases": [ - "CVE-2021-3711", - "VC-OPENSSL-20210824-CVE-2021-3711" + "CVE-2002-1568", + "VC-OPENSSL-20020808-CVE-2002-1568" ], - "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.", + "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": [ { "package": { @@ -219,41 +203,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1l", - "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|1.1.1k" + "fixed_version": "0.9.6f", + "affected_version_range": "vers:openssl/0.9.6e" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-1568", "severities": [], - "reference_id": "CVE-2021-3711" + "reference_id": "CVE-2002-1568" }, { - "url": "https://github.com/openssl/openssl/commit/59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "url": "https://github.com/openssl/openssl/commit/517a0e7fa0f5453c860a3aec17b678bd55d5aad7", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210824.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-08-24T00:00:00+00:00" + "date_published": "2002-08-08T00:00:00+00:00" }, { - "unique_content_id": "d983b35db2f988ada9600e40e90d1328", + "unique_content_id": "73a5c0c4082149dea0cc58110cce5240", "aliases": [ - "CVE-2021-3712", - "VC-OPENSSL-20210824-CVE-2021-3712" + "CVE-2003-0078", + "VC-OPENSSL-20030219-CVE-2003-0078" ], - "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).", + "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": [ { "package": { @@ -264,8 +238,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1l", - "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|1.1.1k" + "fixed_version": "0.9.7a", + "affected_version_range": "vers:openssl/0.9.7" }, { "package": { @@ -276,46 +250,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2za", - "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y" + "fixed_version": "0.9.6i", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", - "severities": [], - "reference_id": "CVE-2021-3712" - }, - { - "url": "https://github.com/openssl/openssl/commit/94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0078", "severities": [], - "reference_id": "" + "reference_id": "CVE-2003-0078" }, { - "url": "https://github.com/openssl/openssl/commit/ccb0a11145ee72b042d10593a64eaf9e8a55ec12", + "url": "https://www.openssl.org/news/secadv/20030219.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210824.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-08-24T00:00:00+00:00" + "date_published": "2003-02-19T00:00:00+00:00" }, { - "unique_content_id": "1f5b764f02186661daeddc59bf4da52e", + "unique_content_id": "55cc2fb9b51cb4777fe7ea4b98a45853", "aliases": [ - "CVE-2014-3513", - "VC-OPENSSL-20141015-CVE-2014-3513" + "CVE-2003-0131", + "VC-OPENSSL-20030319-CVE-2003-0131" ], - "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.", + "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": { @@ -326,36 +285,43 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.6j", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.9.7b", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3513", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0131", "severities": [], - "reference_id": "CVE-2014-3513" + "reference_id": "CVE-2003-0131" }, { - "url": "https://www.openssl.org/news/secadv/20141015.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20030319.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2014-10-15T00:00:00+00:00" + "date_published": "2003-03-19T00:00:00+00:00" }, { - "unique_content_id": "1c00a83795f7053ffbf8e1bd9a9625bf", + "unique_content_id": "63a8a6e8a2dbde22c68815ec8fa6e1b5", "aliases": [ - "CVE-2021-3450", - "VC-OPENSSL-20210325-CVE-2021-3450" + "CVE-2003-0147", + "VC-OPENSSL-20030314-CVE-2003-0147" ], - "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.", + "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": { @@ -366,41 +332,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1k", - "affected_version_range": "vers:openssl/1.1.1h|1.1.1i|1.1.1j" + "fixed_version": "0.9.6j", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.9.7b", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0147", "severities": [], - "reference_id": "CVE-2021-3450" + "reference_id": "CVE-2003-0147" }, { - "url": "https://github.com/openssl/openssl/commit/2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", + "url": "https://www.openssl.org/news/secadv/20030317.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210325.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-03-25T00:00:00+00:00" + "date_published": "2003-03-14T00:00:00+00:00" }, { - "unique_content_id": "cd515c6026ee6098fc7b277ffd0c823b", + "unique_content_id": "aebb33e7fbb490eac9a8a617fc0d7ca3", "aliases": [ - "CVE-2021-3449", - "VC-OPENSSL-20210325-CVE-2021-3449" + "CVE-2003-0543", + "VC-OPENSSL-20030930-CVE-2003-0543" ], - "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.", + "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": { @@ -411,41 +379,43 @@ "namespace": null, "qualifiers": null }, - "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" + "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", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2021-3449", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0543", "severities": [], - "reference_id": "CVE-2021-3449" + "reference_id": "CVE-2003-0543" }, { - "url": "https://github.com/openssl/openssl/commit/fb9fa6b51defd48157eeb207f52181f735d96148", + "url": "https://www.openssl.org/news/secadv/20030930.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210325.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-03-25T00:00:00+00:00" + "date_published": "2003-09-30T00:00:00+00:00" }, { - "unique_content_id": "c7c47549dfdab0afe770c9247331bc7d", + "unique_content_id": "b00ab5e0ca915c6c9b2663a0ee19e472", "aliases": [ - "CVE-2021-23841", - "VC-OPENSSL-20210216-CVE-2021-23841" + "CVE-2003-0544", + "VC-OPENSSL-20030930-CVE-2003-0544" ], - "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.", + "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": { @@ -456,8 +426,8 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "0.9.7c", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" }, { "package": { @@ -468,46 +438,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2y", - "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x" + "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-2021-23841", - "severities": [], - "reference_id": "CVE-2021-23841" - }, - { - "url": "https://github.com/openssl/openssl/commit/122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0544", "severities": [], - "reference_id": "" + "reference_id": "CVE-2003-0544" }, { - "url": "https://github.com/openssl/openssl/commit/8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", + "url": "https://www.openssl.org/news/secadv/20030930.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210216.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-02-16T00:00:00+00:00" + "date_published": "2003-09-30T00:00:00+00:00" }, { - "unique_content_id": "d73535dab9e59a40ce8493e4de3e4300", + "unique_content_id": "9ae2c602beabf73d535f1933f2bdee91", "aliases": [ - "CVE-2021-23839", - "VC-OPENSSL-20210216-CVE-2021-23839" + "CVE-2003-0545", + "VC-OPENSSL-20030930-CVE-2003-0545" ], - "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.", + "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": { @@ -518,41 +473,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2y", - "affected_version_range": "vers:openssl/1.0.2|1.0.2s|1.0.2t|1.0.2u|1.0.2w|1.0.2x" + "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-2021-23839", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0545", "severities": [], - "reference_id": "CVE-2021-23839" + "reference_id": "CVE-2003-0545" }, { - "url": "https://github.com/openssl/openssl/commit/30919ab80a478f2d81f2e9acdcca3fa4740cd547", + "url": "https://www.openssl.org/news/secadv/20030930.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210216.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-02-16T00:00:00+00:00" + "date_published": "2003-09-30T00:00:00+00:00" }, { - "unique_content_id": "258fbaa0014921327e197180e1a9c168", + "unique_content_id": "b9dbe99eb99cff6623b2f07bda3db3e1", "aliases": [ - "CVE-2018-0735", - "VC-OPENSSL-20181029-CVE-2018-0735" + "CVE-2003-0851", + "VC-OPENSSL-20031104-CVE-2003-0851" ], - "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.", + "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": [ { "package": { @@ -563,58 +508,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1a", - "affected_version_range": "vers:openssl/1.1.1" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.6l", + "affected_version_range": "vers:openssl/0.9.6k" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0735", - "severities": [], - "reference_id": "CVE-2018-0735" - }, - { - "url": "https://github.com/openssl/openssl/commit/56fb454d281a023b3f950d969693553d3f3ceea1", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2003-0851", "severities": [], - "reference_id": "" + "reference_id": "CVE-2003-0851" }, { - "url": "https://github.com/openssl/openssl/commit/b1d6d55ece1c26fa2829e2b819b038d7b6d692b4", + "url": "https://www.openssl.org/news/secadv/20031104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20181029.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-10-29T00:00:00+00:00" + "date_published": "2003-11-04T00:00:00+00:00" }, { - "unique_content_id": "a1eb94a9234b06a7bc37d714496233e2", + "unique_content_id": "0399fccd94425e8afdd33ffc49edcf87", "aliases": [ - "CVE-2021-23840", - "VC-OPENSSL-20210216-CVE-2021-23840" + "CVE-2004-0079", + "VC-OPENSSL-20040317-CVE-2004-0079" ], - "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.", + "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": [ { "package": { @@ -625,8 +543,8 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "0.9.6m", + "affected_version_range": "vers:openssl/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" }, { "package": { @@ -637,46 +555,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2y", - "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x" + "fixed_version": "0.9.7d", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2004-0079", "severities": [], - "reference_id": "CVE-2021-23840" + "reference_id": "CVE-2004-0079" }, { - "url": "https://github.com/openssl/openssl/commit/6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "url": "https://www.openssl.org/news/secadv/20040317.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", - "severities": [], - "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20210216.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2021-02-16T00:00:00+00:00" + "date_published": "2004-03-17T00:00:00+00:00" }, { - "unique_content_id": "879e976d13345716651026dcc09f6718", + "unique_content_id": "04baadb0909239aa63250f8148b840e4", "aliases": [ - "CVE-2020-1971", - "VC-OPENSSL-20201208-CVE-2020-1971" + "CVE-2004-0081", + "VC-OPENSSL-20040317-CVE-2004-0081" ], - "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.", + "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": [ { "package": { @@ -687,9 +590,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1i", - "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" + "fixed_version": "0.9.6d", + "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2004-0081", + "severities": [], + "reference_id": "CVE-2004-0081" }, + { + "url": "https://www.openssl.org/news/secadv/20030317.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2004-03-17T00:00:00+00:00" + }, + { + "unique_content_id": "e11001942f7918509fd2391a2595d3c8", + "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": [ { "package": { "name": "openssl", @@ -699,46 +625,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2x", - "affected_version_range": "vers:openssl/1.0.2|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.2w" + "fixed_version": "0.9.7d", + "affected_version_range": "vers:openssl/0.9.7a|0.9.7b|0.9.7c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", - "severities": [], - "reference_id": "CVE-2020-1971" - }, - { - "url": "https://github.com/openssl/openssl/commit/f960d81215ebf3f65e03d4d5d857fb9b666d6920", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2004-0112", "severities": [], - "reference_id": "" + "reference_id": "CVE-2004-0112" }, { - "url": "https://github.com/openssl/openssl/commit/2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", + "url": "https://www.openssl.org/news/secadv/20040317.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20201208.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2020-12-08T00:00:00+00:00" + "date_published": "2004-03-17T00:00:00+00:00" }, { - "unique_content_id": "7dcc6225be95f6df4ef356fd050def47", + "unique_content_id": "fa1f3146fe26d34512d73ade9810b151", "aliases": [ - "CVE-2020-1968", - "VC-OPENSSL-20200909-CVE-2020-1968" + "CVE-2004-0975", + "VC-OPENSSL-20040930-CVE-2004-0975" ], - "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.", + "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": [ { "package": { @@ -749,36 +660,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2w", - "affected_version_range": "vers:openssl/1.0.2|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" + "fixed_version": "0.9.7f", + "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.9.6-cvs", + "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-2020-1968", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2004-0975", "severities": [], - "reference_id": "CVE-2020-1968" + "reference_id": "CVE-2004-0975" }, { - "url": "https://www.openssl.org/news/secadv/20200909.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://github.com/openssl/openssl/commit/5fee606442a6738fd06a756d7076be53b7b7734c", + "severities": [], "reference_id": "" } ], - "date_published": "2020-09-09T00:00:00+00:00" + "date_published": "2004-09-30T00:00:00+00:00" }, { - "unique_content_id": "495664aed314f22468782ba341c0e4b7", + "unique_content_id": "6d92ea5ca68aae26e71ee69b0343b3a5", "aliases": [ - "CVE-2020-1967", - "VC-OPENSSL-20200421-CVE-2020-1967" + "CVE-2005-2969", + "VC-OPENSSL-20051011-CVE-2005-2969" ], - "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.", + "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": [ { "package": { @@ -789,41 +707,55 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1g", - "affected_version_range": "vers:openssl/1.1.1d|1.1.1e|1.1.1f" + "fixed_version": "0.9.7h", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "0.9.8a", + "affected_version_range": "vers:openssl/0.9.8" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2020-1967", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2005-2969", "severities": [], - "reference_id": "CVE-2020-1967" + "reference_id": "CVE-2005-2969" }, { - "url": "https://github.com/openssl/openssl/commit/eb563247aef3e83dda7679c43f9649270462e5b1", + "url": "https://www.openssl.org/news/secadv/20051011.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20200421.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2020-04-21T00:00:00+00:00" + "date_published": "2005-10-11T00:00:00+00:00" }, { - "unique_content_id": "86be7ce8b4721b777ef32dd64df3edf4", + "unique_content_id": "69a5e64b56819419f55c40d5db981710", "aliases": [ - "CVE-2019-1551", - "VC-OPENSSL-20191206-CVE-2019-1551" + "CVE-2006-2937", + "VC-OPENSSL-20060928-CVE-2006-2937" ], - "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.", + "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": { @@ -834,8 +766,8 @@ "namespace": null, "qualifiers": null }, - "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" + "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": { @@ -846,46 +778,31 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8d", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", - "severities": [], - "reference_id": "CVE-2019-1551" - }, - { - "url": "https://github.com/openssl/openssl/commit/419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-2937", "severities": [], - "reference_id": "" + "reference_id": "CVE-2006-2937" }, { - "url": "https://github.com/openssl/openssl/commit/f1c5eea8a817075d31e43f5876993c6710238c98", + "url": "https://www.openssl.org/news/secadv/20060928.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20191206.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-12-06T00:00:00+00:00" + "date_published": "2006-09-28T00:00:00+00:00" }, { - "unique_content_id": "1f0e667392222fc1f127592636e906fa", + "unique_content_id": "12536462776dc0fec2a706166cccb41f", "aliases": [ - "CVE-2019-1547", - "VC-OPENSSL-20190910-CVE-2019-1547" + "CVE-2006-2940", + "VC-OPENSSL-20060928-CVE-2006-2940" ], - "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.", + "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": [ { "package": { @@ -896,8 +813,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" + "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": { @@ -908,8 +825,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8d", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" }, { "package": { @@ -920,51 +837,31 @@ "namespace": null, "qualifiers": null }, - "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": 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-2019-1547", - "severities": [], - "reference_id": "CVE-2019-1547" - }, - { - "url": "https://github.com/openssl/openssl/commit/30c22fa8b1d840036b8e203585738df62a03cec8", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/7c1709c2da5414f5b6133d00a03fc8c5bf996c7a", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-2940", "severities": [], - "reference_id": "" + "reference_id": "CVE-2006-2940" }, { - "url": "https://github.com/openssl/openssl/commit/21c856b75d81eff61aa63b4f036bb64a85bf6d46", + "url": "https://www.openssl.org/news/secadv/20060928.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190910.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-09-10T00:00:00+00:00" + "date_published": "2006-09-28T00:00:00+00:00" }, { - "unique_content_id": "7fadac522d658facb12f299bb48ba2ec", + "unique_content_id": "5a1555075a1a07181596e9ee755176d2", "aliases": [ - "CVE-2019-1549", - "VC-OPENSSL-20190910-CVE-2019-1549" + "CVE-2006-3738", + "VC-OPENSSL-20060928-CVE-2006-3738" ], - "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.", + "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": [ { "package": { @@ -975,41 +872,55 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" + "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": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2019-1549", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-3738", "severities": [], - "reference_id": "CVE-2019-1549" + "reference_id": "CVE-2006-3738" }, { - "url": "https://github.com/openssl/openssl/commit/1b0fe00e2704b5e20334a16d3c9099d1ba2ef1be", + "url": "https://www.openssl.org/news/secadv/20060928.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190910.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-09-10T00:00:00+00:00" + "date_published": "2006-09-28T00:00:00+00:00" }, { - "unique_content_id": "5d70e446788723818dd00550d04e12ba", + "unique_content_id": "6213f8e51cb9850bd2d59065aecdf0cd", "aliases": [ - "CVE-2019-1563", - "VC-OPENSSL-20190910-CVE-2019-1563" + "CVE-2006-4339", + "VC-OPENSSL-20060905-CVE-2006-4339" ], - "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.", + "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": { @@ -1020,8 +931,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" + "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": { @@ -1032,8 +943,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8c", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b" }, { "package": { @@ -1044,51 +955,31 @@ "namespace": null, "qualifiers": null }, - "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": 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-2019-1563", - "severities": [], - "reference_id": "CVE-2019-1563" - }, - { - "url": "https://github.com/openssl/openssl/commit/08229ad838c50f644d7e928e2eef147b4308ad64", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/631f94db0065c78181ca9ba5546ebc8bb3884b97", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4339", "severities": [], - "reference_id": "" + "reference_id": "CVE-2006-4339" }, { - "url": "https://github.com/openssl/openssl/commit/e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f", + "url": "https://www.openssl.org/news/secadv/20060905.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190910.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-09-10T00:00:00+00:00" + "date_published": "2006-09-05T00:00:00+00:00" }, { - "unique_content_id": "99942df08565fdb3248518baae83dd13", + "unique_content_id": "b8fcc1e274575002715a347b125ae8e4", "aliases": [ - "CVE-2019-1552", - "VC-OPENSSL-20190730-CVE-2019-1552" + "CVE-2006-4343", + "VC-OPENSSL-20060928-CVE-2006-4343" ], - "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.", + "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": { @@ -1099,8 +990,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1d", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" + "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": { @@ -1111,8 +1002,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8d", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" }, { "package": { @@ -1123,56 +1014,31 @@ "namespace": null, "qualifiers": null }, - "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": 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-2019-1552", - "severities": [], - "reference_id": "CVE-2019-1552" - }, - { - "url": "https://github.com/openssl/openssl/commit/54aa9d51b09d67e90db443f682cface795f5af9e", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/e32bc855a81a2d48d215c506bdeb4f598045f7e9", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/b15a19c148384e73338aa7c5b12652138e35ed28", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4343", "severities": [], - "reference_id": "" + "reference_id": "CVE-2006-4343" }, { - "url": "https://github.com/openssl/openssl/commit/d333ebaf9c77332754a9d5e111e2f53e1de54fdd", + "url": "https://www.openssl.org/news/secadv/20060928.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190730.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-07-30T00:00:00+00:00" + "date_published": "2006-09-28T00:00:00+00:00" }, { - "unique_content_id": "3a7c4643755506fb7a1f5b64a111e894", + "unique_content_id": "ce7a360e61885d4a980deb76217c0d60", "aliases": [ - "CVE-2019-1543", - "VC-OPENSSL-20190306-CVE-2019-1543" + "CVE-2007-4995", + "VC-OPENSSL-20071012-CVE-2007-4995" ], - "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.", + "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": { @@ -1183,9 +1049,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1c", - "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b" + "fixed_version": "0.9.8f", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-4995", + "severities": [], + "reference_id": "CVE-2007-4995" }, + { + "url": "https://www.openssl.org/news/secadv/20071012.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2007-10-12T00:00:00+00:00" + }, + { + "unique_content_id": "70a70192d83214d772289d57dae1ee61", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -1195,46 +1084,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0k", - "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" + "fixed_version": "0.9.8f", + "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1543", - "severities": [], - "reference_id": "CVE-2019-1543" - }, - { - "url": "https://github.com/openssl/openssl/commit/f426625b6ae9a7831010750490a5f0ad689c5ba3", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-5135", "severities": [], - "reference_id": "" + "reference_id": "CVE-2007-5135" }, { - "url": "https://github.com/openssl/openssl/commit/ee22257b1418438ebaf54df98af4e24f494d1809", + "url": "https://www.openssl.org/news/secadv/20071012.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190306.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-03-06T00:00:00+00:00" + "date_published": "2007-10-12T00:00:00+00:00" }, { - "unique_content_id": "c51e38c375d1211f3e69abe7b2c62f37", + "unique_content_id": "1f2782accf0ef33eec7f7c21fe969938", "aliases": [ - "CVE-2019-1559", - "VC-OPENSSL-20190226-CVE-2019-1559" + "CVE-2008-0891", + "VC-OPENSSL-20080528-CVE-2008-0891" ], - "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.", + "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": [ { "package": { @@ -1245,41 +1119,31 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8h", + "affected_version_range": "vers:openssl/0.9.8f|0.9.8g" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1559", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2008-0891", "severities": [], - "reference_id": "CVE-2019-1559" + "reference_id": "CVE-2008-0891" }, { - "url": "https://github.com/openssl/openssl/commit/e9bbefbf0f24c57645e7ad6a5a71ae649d18ac8e", + "url": "https://www.openssl.org/news/secadv/20080528.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20190226.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2019-02-26T00:00:00+00:00" + "date_published": "2008-05-28T00:00:00+00:00" }, { - "unique_content_id": "97a3816c4c8f0bd0e607a4d8a79c5ae8", + "unique_content_id": "b1b17735ced56629f76d4ad4156b9bce", "aliases": [ - "CVE-2018-5407", - "VC-OPENSSL-20181102-CVE-2018-5407" + "CVE-2008-1672", + "VC-OPENSSL-20080528-CVE-2008-1672" ], - "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.", + "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": [ { "package": { @@ -1290,9 +1154,32 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8h", + "affected_version_range": "vers:openssl/0.9.8f|0.9.8g" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2008-1672", + "severities": [], + "reference_id": "CVE-2008-1672" }, + { + "url": "https://www.openssl.org/news/secadv/20080528.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2008-05-28T00:00:00+00:00" + }, + { + "unique_content_id": "0b092b26a3a1c75112d186f6cdd60ff7", + "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": [ { "package": { "name": "openssl", @@ -1302,46 +1189,31 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8j", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-5407", - "severities": [], - "reference_id": "CVE-2018-5407" - }, - { - "url": "https://github.com/openssl/openssl/commit/aab7c770353b1dc4ba045938c8fb446dd1c4531e", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2008-5077", "severities": [], - "reference_id": "" + "reference_id": "CVE-2008-5077" }, { - "url": "https://github.com/openssl/openssl/commit/b18162a7c9bbfb57112459a4d6631fa258fd8c0cq", + "url": "https://www.openssl.org/news/secadv/20090107.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20181112.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-11-02T00:00:00+00:00" + "date_published": "2009-01-07T00:00:00+00:00" }, { - "unique_content_id": "560c315c120edfe0bbd8c9146854a53f", + "unique_content_id": "e0b9e817cf72e4d773d890a61287bd88", "aliases": [ - "CVE-2018-0734", - "VC-OPENSSL-20181030-CVE-2018-0734" + "CVE-2009-0590", + "VC-OPENSSL-20090325-CVE-2009-0590" ], - "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.", + "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": { @@ -1352,21 +1224,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.1a", - "affected_version_range": "vers:openssl/1.1.1" - }, + "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": [ { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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" + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0590", + "severities": [], + "reference_id": "CVE-2009-0590" }, + { + "url": "https://www.openssl.org/news/secadv/20090325.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2009-03-25T00:00:00+00:00" + }, + { + "unique_content_id": "43dcbfcedcc32b87a723125d164291e1", + "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": [ { "package": { "name": "openssl", @@ -1376,51 +1259,31 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8k", + "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0734", - "severities": [], - "reference_id": "CVE-2018-0734" - }, - { - "url": "https://github.com/openssl/openssl/commit/8abfe72e8c1de1b95f50aa0d9134803b4d00070f", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/ef11e19d1365eea2b1851e6f540a0bf365d303e7", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0591", "severities": [], - "reference_id": "" + "reference_id": "CVE-2009-0591" }, { - "url": "https://github.com/openssl/openssl/commit/43e6a58d4991a451daf4891ff05a48735df871ac", + "url": "https://www.openssl.org/news/secadv/20090325.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20181030.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-10-30T00:00:00+00:00" + "date_published": "2009-03-25T00:00:00+00:00" }, { - "unique_content_id": "1c0b39742398a6ee6180477140815f3c", + "unique_content_id": "1e3c05fa25e14f424f2078739c0bdc60", "aliases": [ - "CVE-2018-0732", - "VC-OPENSSL-20180612-CVE-2018-0732" + "CVE-2009-0789", + "VC-OPENSSL-20090325-CVE-2009-0789" ], - "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.", + "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": [ { "package": { @@ -1431,9 +1294,32 @@ "namespace": null, "qualifiers": null }, - "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": "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-0789", + "severities": [], + "reference_id": "CVE-2009-0789" }, + { + "url": "https://www.openssl.org/news/secadv/20090325.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2009-03-25T00:00:00+00:00" + }, + { + "unique_content_id": "10ae2d0da4aa9205aaded1b081eb1b25", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -1443,46 +1329,36 @@ "namespace": null, "qualifiers": null }, - "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": "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-2018-0732", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1377", "severities": [], - "reference_id": "CVE-2018-0732" + "reference_id": "CVE-2009-1377" }, { - "url": "https://github.com/openssl/openssl/commit/ea7abeeabf92b7aca160bdd0208636d4da69f4f4", + "url": "https://github.com/openssl/openssl/commit/88b48dc68024dcc437da4296c9fb04419b0ccbe1", "severities": [], "reference_id": "" }, { - "url": "https://github.com/openssl/openssl/commit/3984ef0b72831da8b3ece4745cac4f8575b19098", + "url": "https://web.archive.org/web/20120306065500/http://rt.openssl.org/Ticket/Display.html?id=1930&user=guest&pass=guest", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20180612.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-06-12T00:00:00+00:00" + "date_published": "2009-05-12T00:00:00+00:00" }, { - "unique_content_id": "c3f15a1b2a0994c4d94cdd590448502e", + "unique_content_id": "2b4e1b73c41a5e2fd1e5ec5acd53085f", "aliases": [ - "CVE-2018-0737", - "VC-OPENSSL-20180416-CVE-2018-0737" + "CVE-2009-1378", + "VC-OPENSSL-20090512-CVE-2009-1378" ], - "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.", + "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": [ { "package": { @@ -1493,9 +1369,37 @@ "namespace": null, "qualifiers": null }, - "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": "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-1378", + "severities": [], + "reference_id": "CVE-2009-1378" + }, + { + "url": "https://github.com/openssl/openssl/commit/abda7c114791fa7fe95672ec7a66fc4733c40dbc", + "severities": [], + "reference_id": "" }, + { + "url": "https://web.archive.org/web/20101120211136/http://rt.openssl.org/Ticket/Display.html?id=1931&user=guest&pass=guest", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2009-05-12T00:00:00+00:00" + }, + { + "unique_content_id": "2479cc3b4b0c5a64f6af5fe00d4bb334", + "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": [ { "package": { "name": "openssl", @@ -1505,46 +1409,36 @@ "namespace": null, "qualifiers": null }, - "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": "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-2018-0737", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1379", "severities": [], - "reference_id": "CVE-2018-0737" + "reference_id": "CVE-2009-1379" }, { - "url": "https://github.com/openssl/openssl/commit/6939eab03a6e23d2bd2c3f5e34fe1d48e542e787", + "url": "https://github.com/openssl/openssl/commit/561cbe567846a376153bea7f1f2d061e78029c2d", "severities": [], "reference_id": "" }, { - "url": "https://github.com/openssl/openssl/commit/349a41da1ad88ad87825414752a8ff5fdd6a6c3f", + "url": "https://web.archive.org/web/20100824233642/http://rt.openssl.org/Ticket/Display.html?id=1923&user=guest&pass=guest", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20180416.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-04-16T00:00:00+00:00" + "date_published": "2009-05-12T00:00:00+00:00" }, { - "unique_content_id": "5d79faa4a5410c3b5668f2d394e84beb", + "unique_content_id": "dd6da6267d70026a558db1a116fbee2e", "aliases": [ - "CVE-2018-0739", - "VC-OPENSSL-20180327-CVE-2018-0739" + "CVE-2009-1386", + "VC-OPENSSL-20090602-CVE-2009-1386" ], - "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.", + "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": { @@ -1555,9 +1449,32 @@ "namespace": null, "qualifiers": null }, - "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": "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-1386", + "severities": [], + "reference_id": "CVE-2009-1386" }, + { + "url": "https://github.com/openssl/openssl/commit/1cbf663a6c89dcf8f7706d30a8bae675e2e0199a", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2009-06-02T00:00:00+00:00" + }, + { + "unique_content_id": "855075369cb16f6855f37e5f18dd94aa", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -1567,46 +1484,31 @@ "namespace": null, "qualifiers": null }, - "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": "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-2018-0739", - "severities": [], - "reference_id": "CVE-2018-0739" - }, - { - "url": "https://github.com/openssl/openssl/commit/2ac4c6f7b2b2af20c0e2b0ba05367e454cd11b33", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1387", "severities": [], - "reference_id": "" + "reference_id": "CVE-2009-1387" }, { - "url": "https://github.com/openssl/openssl/commit/9310d45087ae546e27e61ddf8f6367f29848220d", + "url": "https://web.archive.org/web/20100710092848/https://rt.openssl.org/Ticket/Display.html?id=1838", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20180327.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-03-27T00:00:00+00:00" + "date_published": "2009-02-05T00:00:00+00:00" }, { - "unique_content_id": "511c78e495eb70feae6bf315b747e4f3", + "unique_content_id": "cd5a928e754a81fe78d2ff793fd9fe5c", "aliases": [ - "CVE-2018-0733", - "VC-OPENSSL-20180327-CVE-2018-0733" + "CVE-2009-3245", + "VC-OPENSSL-20100223-CVE-2009-3245" ], - "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.", + "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": { @@ -1617,41 +1519,31 @@ "namespace": null, "qualifiers": null }, - "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": "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-2018-0733", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3245", "severities": [], - "reference_id": "CVE-2018-0733" + "reference_id": "CVE-2009-3245" }, { - "url": "https://github.com/openssl/openssl/commit/56d5a4bfcaf37fa420aef2bb881aa55e61cf5f2f", + "url": "https://github.com/openssl/openssl/commit/7e4cae1d2f555cbe9226b377aff4b56c9f7ddd4d", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20180327.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2018-03-27T00:00:00+00:00" + "date_published": "2010-02-23T00:00:00+00:00" }, { - "unique_content_id": "2a318491d9833a368fd374f0cd6f3d30", + "unique_content_id": "e13ddcabb53c6826afd71355212e490f", "aliases": [ - "CVE-2016-7053", - "VC-OPENSSL-20161110-CVE-2016-7053" + "CVE-2009-3555", + "VC-OPENSSL-20091105-CVE-2009-3555" ], - "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.", + "summary": "Implement RFC5746 to address vulnerabilities in SSL/TLS renegotiation.", "affected_packages": [ { "package": { @@ -1662,41 +1554,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0c", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" + "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-2016-7053", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", "severities": [], - "reference_id": "CVE-2016-7053" + "reference_id": "CVE-2009-3555" }, { - "url": "https://github.com/openssl/openssl/commit/610b66267e41a32805ab54cbc580c5a6d5826cb4", + "url": "https://www.openssl.org/news/secadv/20091111.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20161110.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-11-10T00:00:00+00:00" + "date_published": "2009-11-05T00:00:00+00:00" }, { - "unique_content_id": "c325238786ca680793125f8be9b90666", + "unique_content_id": "7623cc9fdf2c1a033ae13b9c4f85c216", "aliases": [ - "CVE-2017-3737", - "VC-OPENSSL-20171207-CVE-2017-3737" + "CVE-2009-4355", + "VC-OPENSSL-20100113-CVE-2009-4355" ], - "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.", + "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": { @@ -1707,41 +1589,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2n", - "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" + "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-2017-3737", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4355", "severities": [], - "reference_id": "CVE-2017-3737" + "reference_id": "CVE-2009-4355" }, { - "url": "https://github.com/openssl/openssl/commit/898fb884b706aaeb283de4812340bb0bde8476dc", + "url": "https://github.com/openssl/openssl/commit/1b31b5ad560b16e2fe1cad54a755e3e6b5e778a3", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20171207.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-12-07T00:00:00+00:00" + "date_published": "2010-01-13T00:00:00+00:00" }, { - "unique_content_id": "6b50c66357f3abbbe4ff41ad12791fd9", + "unique_content_id": "f93465ffe5c17257ebdf5801edd6c8e7", "aliases": [ - "CVE-2017-3738", - "VC-OPENSSL-20171207-CVE-2017-3738" + "CVE-2010-0433", + "VC-OPENSSL-20100119-CVE-2010-0433" ], - "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.", + "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": { @@ -1752,9 +1624,32 @@ "namespace": null, "qualifiers": null }, - "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": "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-2010-0433", + "severities": [], + "reference_id": "CVE-2010-0433" }, + { + "url": "https://github.com/openssl/openssl/commit/cca1cd9a3447dd067503e4a85ebd1679ee78a48e", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2010-01-19T00:00:00+00:00" + }, + { + "unique_content_id": "1c2ec8085e7e8589e189bc816ea6e4f8", + "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": [ { "package": { "name": "openssl", @@ -1764,46 +1659,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2n", - "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" + "fixed_version": "0.9.8n", + "affected_version_range": "vers:openssl/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-2017-3738", - "severities": [], - "reference_id": "CVE-2017-3738" - }, - { - "url": "https://github.com/openssl/openssl/commit/ca51bafc1a88d8b8348f5fd97adc5d6ca93f8e76", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0740", "severities": [], - "reference_id": "" + "reference_id": "CVE-2010-0740" }, { - "url": "https://github.com/openssl/openssl/commit/e502cc86df9dafded1694fceb3228ee34d11c11a", + "url": "https://www.openssl.org/news/secadv/20100324.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20171207.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-12-07T00:00:00+00:00" + "date_published": "2010-03-24T00:00:00+00:00" }, { - "unique_content_id": "3fd442d507f8355357aed257f3be199d", + "unique_content_id": "10a8d75d89e03a7e1b68c7de54099ca7", "aliases": [ - "CVE-2017-3736", - "VC-OPENSSL-20171102-CVE-2017-3736" + "CVE-2010-0742", + "VC-OPENSSL-20100601-CVE-2010-0742" ], - "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.", + "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": { @@ -1814,8 +1694,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0g", - "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" + "fixed_version": "1.0.0a", + "affected_version_range": "vers:openssl/1.0.0" }, { "package": { @@ -1826,46 +1706,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2m", - "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" + "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-2017-3736", - "severities": [], - "reference_id": "CVE-2017-3736" - }, - { - "url": "https://github.com/openssl/openssl/commit/38d600147331d36e74174ebbd4008b63188b321b", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0742", "severities": [], - "reference_id": "" + "reference_id": "CVE-2010-0742" }, { - "url": "https://github.com/openssl/openssl/commit/4443cf7aa0099e5ce615c18cee249fff77fb0871", + "url": "https://www.openssl.org/news/secadv/20100601.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20171102.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-11-02T00:00:00+00:00" + "date_published": "2010-06-01T00:00:00+00:00" }, { - "unique_content_id": "88bc79e6adf5370cba696aa64de2abfb", + "unique_content_id": "a2f368d38ceb728d8725aff53b981893", "aliases": [ - "CVE-2017-3735", - "VC-OPENSSL-20170828-CVE-2017-3735" + "CVE-2010-1633", + "VC-OPENSSL-20100601-CVE-2010-1633" ], - "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.", + "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": { @@ -1876,58 +1741,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0g", - "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" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.0.2m", - "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" + "fixed_version": "1.0.0a", + "affected_version_range": "vers:openssl/1.0.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3735", - "severities": [], - "reference_id": "CVE-2017-3735" - }, - { - "url": "https://github.com/openssl/openssl/commit/31c8b265591a0aaa462a1f3eb5770661aaac67db", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-1633", "severities": [], - "reference_id": "" + "reference_id": "CVE-2010-1633" }, { - "url": "https://github.com/openssl/openssl/commit/068b963bb7afc57f5bdd723de0dd15e7795d5822", + "url": "https://www.openssl.org/news/secadv/20100601.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20170828.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-08-28T00:00:00+00:00" + "date_published": "2010-06-01T00:00:00+00:00" }, { - "unique_content_id": "526e150a2c030026d5cf82c511df7592", + "unique_content_id": "c59743251b77735f296be0f67fead428", "aliases": [ - "CVE-2017-3733", - "VC-OPENSSL-20170216-CVE-2017-3733" + "CVE-2010-3864", + "VC-OPENSSL-20101116-CVE-2010-3864" ], - "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.", + "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": [ { "package": { @@ -1938,41 +1776,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0e", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d" + "fixed_version": "0.9.8p", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.0b", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3733", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-3864", "severities": [], - "reference_id": "CVE-2017-3733" + "reference_id": "CVE-2010-3864" }, { - "url": "https://github.com/openssl/openssl/commit/4ad93618d26a3ea23d36ad5498ff4f59eff3a4d2", + "url": "https://www.openssl.org/news/secadv/20101116.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20170216.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-02-16T00:00:00+00:00" + "date_published": "2010-11-16T00:00:00+00:00" }, { - "unique_content_id": "ceedb280a4d99109a26884ac4ec190fd", + "unique_content_id": "e4b73e603cc3582c869a0225260b68f2", "aliases": [ - "CVE-2017-3731", - "VC-OPENSSL-20170126-CVE-2017-3731" + "CVE-2010-4180", + "VC-OPENSSL-20101202-CVE-2010-4180" ], - "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", + "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": [ { "package": { @@ -1983,8 +1823,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0d", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" + "fixed_version": "0.9.8q", + "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" }, { "package": { @@ -1995,46 +1835,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2k", - "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" + "fixed_version": "1.0.0c", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3731", - "severities": [], - "reference_id": "CVE-2017-3731" - }, - { - "url": "https://github.com/openssl/openssl/commit/00d965474b22b54e4275232bc71ee0c699c5cd21", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/51d009043670a627d6abe66894126851cf3690e9", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-4180", "severities": [], - "reference_id": "" + "reference_id": "CVE-2010-4180" }, - { - "url": "https://www.openssl.org/news/secadv/20170126.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], + { + "url": "https://www.openssl.org/news/secadv/20101202.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2017-01-26T00:00:00+00:00" + "date_published": "2010-12-02T00:00:00+00:00" }, { - "unique_content_id": "a0447ff218665545b036454e89ab3da8", + "unique_content_id": "c8d35a8e132ea021df593dbfa90519fe", "aliases": [ - "CVE-2017-3730", - "VC-OPENSSL-20170126-CVE-2017-3730" + "CVE-2010-4252", + "VC-OPENSSL-20101202-CVE-2010-4252" ], - "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.", + "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": [ { "package": { @@ -2045,41 +1870,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0d", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" + "fixed_version": "1.0.0c", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3730", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-4252", "severities": [], - "reference_id": "CVE-2017-3730" + "reference_id": "CVE-2010-4252" }, { - "url": "https://github.com/openssl/openssl/commit/efbe126e3ebb9123ac9d058aa2bb044261342aaa", + "url": "https://www.openssl.org/news/secadv/20101202.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20170126.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-01-26T00:00:00+00:00" + "date_published": "2010-12-02T00:00:00+00:00" }, { - "unique_content_id": "706dd13f07097397f57b882c363f9119", + "unique_content_id": "89b3f67beba5915422b336140683b8a9", "aliases": [ - "CVE-2017-3732", - "VC-OPENSSL-20170126-CVE-2017-3732" + "CVE-2010-5298", + "VC-OPENSSL-20140408-CVE-2010-5298" ], - "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.", + "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": { @@ -2090,8 +1905,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0d", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" + "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": { @@ -2102,46 +1917,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2k", - "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" + "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-2017-3732", - "severities": [], - "reference_id": "CVE-2017-3732" - }, - { - "url": "https://github.com/openssl/openssl/commit/a59b90bf491410f1f2bc4540cc21f1980fd14c5b", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-5298", "severities": [], - "reference_id": "" + "reference_id": "CVE-2010-5298" }, { - "url": "https://github.com/openssl/openssl/commit/760d04342a495ee86bf5adc71a91d126af64397f", + "url": "https://www.openssl.org/news/secadv/20140605.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20170126.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2017-01-26T00:00:00+00:00" + "date_published": "2014-04-08T00:00:00+00:00" }, { - "unique_content_id": "fe925b287358f673a6f05a7b1f1022ab", + "unique_content_id": "c321f88c434d878975bb4654c9dd11fb", "aliases": [ - "CVE-2016-2183", - "VC-OPENSSL-20160824-CVE-2016-2183" + "CVE-2011-0014", + "VC-OPENSSL-20110208-CVE-2011-0014" ], - "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.", + "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": { @@ -2152,36 +1952,43 @@ "namespace": null, "qualifiers": null }, - "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": "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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-2183", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-0014", "severities": [], - "reference_id": "CVE-2016-2183" + "reference_id": "CVE-2011-0014" }, { - "url": "https://www.openssl.org/blog/blog/2016/08/24/sweet32/", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20110208.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-08-24T00:00:00+00:00" + "date_published": "2011-02-08T00:00:00+00:00" }, { - "unique_content_id": "030f10739bdaba22d1d6645e64f07517", + "unique_content_id": "54c01172e2e79e9e75d62960fb3f3ca3", "aliases": [ - "CVE-2016-7054", - "VC-OPENSSL-20161110-CVE-2016-7054" + "CVE-2011-3207", + "VC-OPENSSL-20110906-CVE-2011-3207" ], - "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.", + "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": { @@ -2192,41 +1999,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0c", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" + "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-2016-7054", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-3207", "severities": [], - "reference_id": "CVE-2016-7054" + "reference_id": "CVE-2011-3207" }, { - "url": "https://github.com/openssl/openssl/commit/99d97842ddb5fbbbfb5e9820a64ebd19afe569f6", + "url": "https://www.openssl.org/news/secadv/20110906.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20161110.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-11-10T00:00:00+00:00" + "date_published": "2011-09-06T00:00:00+00:00" }, { - "unique_content_id": "3608a808a8a6b24e46ee057009635f06", + "unique_content_id": "0b591f3a423642028bd7610a4c0c4c8b", "aliases": [ - "CVE-2016-7055", - "VC-OPENSSL-20161110-CVE-2016-7055" + "CVE-2011-3210", + "VC-OPENSSL-20110906-CVE-2011-3210" ], - "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.", + "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": [ { "package": { @@ -2237,8 +2034,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0c", - "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" + "fixed_version": null, + "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": { @@ -2249,46 +2046,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2k", - "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" + "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-2016-7055", - "severities": [], - "reference_id": "CVE-2016-7055" - }, - { - "url": "https://github.com/openssl/openssl/commit/2a7dd548a6f5d6f7f84a89c98323b70a2822406e", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-3210", "severities": [], - "reference_id": "" + "reference_id": "CVE-2011-3210" }, { - "url": "https://github.com/openssl/openssl/commit/57c4b9f6a2f800b41ce2836986fe33640f6c3f8a", + "url": "https://www.openssl.org/news/secadv/20110906.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20161110.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-11-10T00:00:00+00:00" + "date_published": "2011-09-06T00:00:00+00:00" }, { - "unique_content_id": "7260960e07c3ddfdd75af49a326447b5", + "unique_content_id": "600af49289d67cfbc3327ab07d7ad2e4", "aliases": [ - "CVE-2016-6309", - "VC-OPENSSL-20160926-CVE-2016-6309" + "CVE-2011-4108", + "VC-OPENSSL-20120104-CVE-2011-4108" ], - "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.", + "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": { @@ -2299,42 +2081,9 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0b", - "affected_version_range": "vers:openssl/1.1.0a" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6309", - "severities": [], - "reference_id": "CVE-2016-6309" - }, - { - "url": "https://github.com/openssl/openssl/commit/acacbfa7565c78d2273c0b2a2e5e803f44afefeb", - "severities": [], - "reference_id": "" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20160926.txt", - "severities": [ - { - "value": "Critical", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2016-09-26T00:00:00+00:00" - }, - { - "unique_content_id": "c0e7321626534a262329d3c9d2ce395b", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -2344,41 +2093,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2j", - "affected_version_range": "vers:openssl/1.0.2i" + "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-2016-7052", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4108", "severities": [], - "reference_id": "CVE-2016-7052" + "reference_id": "CVE-2011-4108" }, { - "url": "https://github.com/openssl/openssl/commit/6e629b5be45face20b4ca71c4fcbfed78b864a2e", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160926.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-26T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "2aec13966ccec41c3e9b7654a382cdf5", + "unique_content_id": "7807545a105e79cf1c8b50521641e613", "aliases": [ - "CVE-2016-6304", - "VC-OPENSSL-20160922-CVE-2016-6304" + "CVE-2011-4109", + "VC-OPENSSL-20120104-CVE-2011-4109" ], - "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.", + "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": [ { "package": { @@ -2389,9 +2128,32 @@ "namespace": null, "qualifiers": null }, - "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": "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" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4109", + "severities": [], + "reference_id": "CVE-2011-4109" }, + { + "url": "https://www.openssl.org/news/secadv/20120104.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2012-01-04T00:00:00+00:00" + }, + { + "unique_content_id": "ad9473b31be72e89afbe9ad718a72e00", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -2401,8 +2163,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -2413,51 +2175,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "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-2016-6304", - "severities": [], - "reference_id": "CVE-2016-6304" - }, - { - "url": "https://github.com/openssl/openssl/commit/2c0d295e26306e15a92eb23a84a1802005c1c137", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/ea39b16b71e4e72a228a4535bd6d6a02c5edbc1f", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4576", "severities": [], - "reference_id": "" + "reference_id": "CVE-2011-4576" }, { - "url": "https://github.com/openssl/openssl/commit/a59ab1c4dd27a4c7c6e88f3c33747532fd144412", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-22T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "9f60c84f86e5950759cfb1e4239dc8da", + "unique_content_id": "3e660791fead8dd25efecc0f283c208c", "aliases": [ - "CVE-2016-6305", - "VC-OPENSSL-20160922-CVE-2016-6305" + "CVE-2011-4577", + "VC-OPENSSL-20120104-CVE-2011-4577" ], - "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.", + "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": { @@ -2468,41 +2210,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "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", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-6305", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4577", "severities": [], - "reference_id": "CVE-2016-6305" + "reference_id": "CVE-2011-4577" }, { - "url": "https://github.com/openssl/openssl/commit/63658103d4441924f8dbfc517b99bb54758a98b9", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-22T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "06439c697462c5961b77d77aa81ae32e", + "unique_content_id": "f86d2211da5a61d8e581d7b11f1908d1", "aliases": [ - "CVE-2016-6303", - "VC-OPENSSL-20160824-CVE-2016-6303" + "CVE-2011-4619", + "VC-OPENSSL-20120104-CVE-2011-4619" ], - "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.", + "summary": "Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack.", "affected_packages": [ { "package": { @@ -2513,8 +2257,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -2525,46 +2269,31 @@ "namespace": null, "qualifiers": null }, - "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.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-2016-6303", - "severities": [], - "reference_id": "CVE-2016-6303" - }, - { - "url": "https://github.com/openssl/openssl/commit/2b4029e68fd7002d2307e6c3cde0f3784eef9c83", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2011-4619", "severities": [], - "reference_id": "" + "reference_id": "CVE-2011-4619" }, { - "url": "https://github.com/openssl/openssl/commit/1027ad4f34c30b8585592764b9a670ba36888269", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-08-24T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "d4f9fae37ae59e002b9b8645640f2c92", + "unique_content_id": "92951f2a40936d95d72816f0d2998000", "aliases": [ - "CVE-2016-6302", - "VC-OPENSSL-20160823-CVE-2016-6302" + "CVE-2012-0027", + "VC-OPENSSL-20120104-CVE-2012-0027" ], - "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.", + "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": { @@ -2575,58 +2304,31 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.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-2016-6302", - "severities": [], - "reference_id": "CVE-2016-6302" - }, - { - "url": "https://github.com/openssl/openssl/commit/1bbe48ab149893a78bf99c8eb8895c928900a16f", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0027", "severities": [], - "reference_id": "" + "reference_id": "CVE-2012-0027" }, { - "url": "https://github.com/openssl/openssl/commit/baaabfd8fdcec04a691695fad9a664bea43202b6", + "url": "https://www.openssl.org/news/secadv/20120104.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-08-23T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "9a6095f3c1e00841abe8214157684780", + "unique_content_id": "f50e568118ff3cbe3e7d9218d8fe8490", "aliases": [ - "CVE-2016-2182", - "VC-OPENSSL-20160816-CVE-2016-2182" + "CVE-2012-0050", + "VC-OPENSSL-20120104-CVE-2012-0050" ], - "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.", + "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": { @@ -2637,8 +2339,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8t", + "affected_version_range": "vers:openssl/0.9.8s" }, { "package": { @@ -2649,36 +2351,31 @@ "namespace": null, "qualifiers": null }, - "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.0g", + "affected_version_range": "vers:openssl/1.0.0f" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2182", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0050", "severities": [], - "reference_id": "CVE-2016-2182" + "reference_id": "CVE-2012-0050" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20120118.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-08-16T00:00:00+00:00" + "date_published": "2012-01-04T00:00:00+00:00" }, { - "unique_content_id": "5986971c9c473f1d3566a00414e0b9ca", + "unique_content_id": "f06c70d55861fcad43368de536b9fa2b", "aliases": [ - "CVE-2016-2180", - "VC-OPENSSL-20160722-CVE-2016-2180" + "CVE-2012-0884", + "VC-OPENSSL-20120312-CVE-2012-0884" ], - "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.", + "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": [ { "package": { @@ -2689,8 +2386,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8u", + "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" }, { "package": { @@ -2701,36 +2398,31 @@ "namespace": null, "qualifiers": null }, - "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.0h", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2180", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0884", "severities": [], - "reference_id": "CVE-2016-2180" + "reference_id": "CVE-2012-0884" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20120312.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-07-22T00:00:00+00:00" + "date_published": "2012-03-12T00:00:00+00:00" }, { - "unique_content_id": "9ebc8678fd2c195b8484447652f18ad9", + "unique_content_id": "e5eb2917af2b324b45323e80a932eaac", "aliases": [ - "CVE-2016-0705", - "VC-OPENSSL-20160301-CVE-2016-0705" + "CVE-2012-2110", + "VC-OPENSSL-20120419-CVE-2012-2110" ], - "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.", + "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": [ { "package": { @@ -2741,8 +2433,8 @@ "namespace": null, "qualifiers": null }, - "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.8", + "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" }, { "package": { @@ -2753,36 +2445,43 @@ "namespace": null, "qualifiers": null }, - "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.0i", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.1a", + "affected_version_range": "vers:openssl/1.0.1" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0705", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2110", "severities": [], - "reference_id": "CVE-2016-0705" + "reference_id": "CVE-2012-2110" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20120419.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2012-04-19T00:00:00+00:00" }, { - "unique_content_id": "500a5ad0983e23c65276ed2c79752320", + "unique_content_id": "4ec9eb4c6e5c622e43a6ea6ef15d52b4", "aliases": [ - "CVE-2016-2177", - "VC-OPENSSL-20160601-CVE-2016-2177" + "CVE-2012-2131", + "VC-OPENSSL-20120424-CVE-2012-2131" ], - "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.", + "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": [ { "package": { @@ -2793,48 +2492,31 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8w", + "affected_version_range": "vers:openssl/0.9.8" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2177", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2131", "severities": [], - "reference_id": "CVE-2016-2177" + "reference_id": "CVE-2012-2131" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20120424.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-06-01T00:00:00+00:00" + "date_published": "2012-04-24T00:00:00+00:00" }, { - "unique_content_id": "8c53a0b019fbf0bcb4bcafc9dfab395b", + "unique_content_id": "6a0035c2e08c94d1f96c341c1c65308e", "aliases": [ - "CVE-2016-2178", - "VC-OPENSSL-20160607-CVE-2016-2178" + "CVE-2012-2333", + "VC-OPENSSL-20120510-CVE-2012-2333" ], - "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.", + "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": [ { "package": { @@ -2845,8 +2527,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8x", + "affected_version_range": "vers:openssl/0.9.8|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.8w" }, { "package": { @@ -2857,36 +2539,43 @@ "namespace": null, "qualifiers": null }, - "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.0j", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.1c", + "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2178", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2333", "severities": [], - "reference_id": "CVE-2016-2178" + "reference_id": "CVE-2012-2333" }, { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20120510.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-06-07T00:00:00+00:00" + "date_published": "2012-05-10T00:00:00+00:00" }, { - "unique_content_id": "24b08c44925cb56c17de3217453060b4", + "unique_content_id": "71f19fecae0d29e9647041dd489f8b9d", "aliases": [ - "CVE-2016-2179", - "VC-OPENSSL-20160822-CVE-2016-2179" + "CVE-2012-2686", + "VC-OPENSSL-20130205-CVE-2012-2686" ], - "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.", + "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": { @@ -2897,58 +2586,31 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.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-2016-2179", - "severities": [], - "reference_id": "CVE-2016-2179" - }, - { - "url": "https://github.com/openssl/openssl/commit/00a4c1421407b6ac796688871b0a49a179c694d9", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-2686", "severities": [], - "reference_id": "" + "reference_id": "CVE-2012-2686" }, { - "url": "https://github.com/openssl/openssl/commit/26f2c5774f117aea588e8f31fad38bcf14e83bec", + "url": "https://www.openssl.org/news/secadv/20130205.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-08-22T00:00:00+00:00" + "date_published": "2013-02-05T00:00:00+00:00" }, { - "unique_content_id": "13ac05f02e4c5a6ca138752d07b786ba", + "unique_content_id": "9ead169dc70d8bbcfceb668bf99916b5", "aliases": [ - "CVE-2016-2181", - "VC-OPENSSL-20160819-CVE-2016-2181" + "CVE-2013-0166", + "VC-OPENSSL-20130205-CVE-2013-0166" ], - "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.", + "summary": "A flaw in the OpenSSL handling of OCSP response verification can be exploited in a denial of service attack.", "affected_packages": [ { "package": { @@ -2959,8 +2621,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8y", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x" }, { "package": { @@ -2971,47 +2633,9 @@ "namespace": null, "qualifiers": null }, - "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-2181", - "severities": [], - "reference_id": "CVE-2016-2181" - }, - { - "url": "https://github.com/openssl/openssl/commit/b77ab018b79a00f789b0fb85596b446b08be4c9d", - "severities": [], - "reference_id": "" - }, - { - "url": "https://github.com/openssl/openssl/commit/3884b47b7c255c2e94d9b387ee83c7e8bb981258", - "severities": [], - "reference_id": "" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2016-08-19T00:00:00+00:00" - }, - { - "unique_content_id": "eca7be74f0e34397e9947ccb3c908c84", - "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": [ { "package": { "name": "openssl", @@ -3021,36 +2645,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "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-2015-0291", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-0166", "severities": [], - "reference_id": "CVE-2015-0291" + "reference_id": "CVE-2013-0166" }, { - "url": "https://www.openssl.org/news/secadv/20150319.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20130205.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2015-03-19T00:00:00+00:00" + "date_published": "2013-02-05T00:00:00+00:00" }, { - "unique_content_id": "c9c1774d70e4979b79499ec6ff533f9a", + "unique_content_id": "5150b7bcb2a91bca5bbec4be5fd9707e", "aliases": [ - "CVE-2016-6306", - "VC-OPENSSL-20160921-CVE-2016-6306" + "CVE-2013-0169", + "VC-OPENSSL-20130204-CVE-2013-0169" ], - "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.", + "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": { @@ -3061,8 +2680,20 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8y", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": { @@ -3073,46 +2704,31 @@ "namespace": null, "qualifiers": null }, - "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.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-2016-6306", - "severities": [], - "reference_id": "CVE-2016-6306" - }, - { - "url": "https://github.com/openssl/openssl/commit/bb1a4866034255749ac578adb06a76335fc117b1", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-0169", "severities": [], - "reference_id": "" + "reference_id": "CVE-2013-0169" }, { - "url": "https://github.com/openssl/openssl/commit/006a788c84e541c8920dd2ad85fb62b52185c519", + "url": "https://www.openssl.org/news/secadv/20130205.txt", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-21T00:00:00+00:00" + "date_published": "2013-02-04T00:00:00+00:00" }, { - "unique_content_id": "2f3fe699489fab49fe5a6a4760205bf3", + "unique_content_id": "8f379a5bad1322f3555d207330a7e79b", "aliases": [ - "CVE-2016-6307", - "VC-OPENSSL-20160921-CVE-2016-6307" + "CVE-2013-4353", + "VC-OPENSSL-20140106-CVE-2013-4353" ], - "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.", + "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": { @@ -3123,41 +2739,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "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-2016-6307", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4353", "severities": [], - "reference_id": "CVE-2016-6307" + "reference_id": "CVE-2013-4353" }, { - "url": "https://github.com/openssl/openssl/commit/4b390b6c3f8df925dc92a3dd6b022baa9a2f4650", + "url": "https://github.com/openssl/openssl/commit/197e0ea817ad64820789d86711d55ff50d71f631", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-21T00:00:00+00:00" + "date_published": "2014-01-06T00:00:00+00:00" }, { - "unique_content_id": "4873b487950a0bb12e16171ef49a4d3c", + "unique_content_id": "e044b060bb6a88182ef047435b17edc7", "aliases": [ - "CVE-2016-6308", - "VC-OPENSSL-20160921-CVE-2016-6308" + "CVE-2013-6449", + "VC-OPENSSL-20131214-CVE-2013-6449" ], - "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.", + "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": { @@ -3168,41 +2774,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.1.0a", - "affected_version_range": "vers:openssl/1.1.0" + "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-2016-6308", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6449", "severities": [], - "reference_id": "CVE-2016-6308" + "reference_id": "CVE-2013-6449" }, { - "url": "https://github.com/openssl/openssl/commit/df6b5e29ffea2d5a3e08de92fb765fdb21c7a21e", + "url": "https://github.com/openssl/openssl/commit/ca98926", "severities": [], "reference_id": "" - }, - { - "url": "https://www.openssl.org/news/secadv/20160922.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" } ], - "date_published": "2016-09-21T00:00:00+00:00" + "date_published": "2013-12-14T00:00:00+00:00" }, { - "unique_content_id": "bd5d8e4d20b7b4bee63e89fc6f72eed0", + "unique_content_id": "f629034826a9a0b0405e02e8fecc5471", "aliases": [ - "CVE-2016-2108", - "VC-OPENSSL-20160503-CVE-2016-2108" + "CVE-2013-6450", + "VC-OPENSSL-20131213-CVE-2013-6450" ], - "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.", + "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": { @@ -3213,8 +2809,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -3225,36 +2821,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2c", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b" + "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-2016-2108", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6450", "severities": [], - "reference_id": "CVE-2016-2108" + "reference_id": "CVE-2013-6450" }, { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://github.com/openssl/openssl/commit/3462896", + "severities": [], "reference_id": "" } ], - "date_published": "2016-05-03T00:00:00+00:00" + "date_published": "2013-12-13T00:00:00+00:00" }, { - "unique_content_id": "9ce420ee730c963d702844541a8114f7", + "unique_content_id": "f088991977978985d6c22eae42e9ae0d", "aliases": [ - "CVE-2016-2107", - "VC-OPENSSL-20160503-CVE-2016-2107" + "CVE-2014-0076", + "VC-OPENSSL-20140214-CVE-2014-0076" ], - "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.", + "summary": "Fix for the attack described in the paper \"Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack\"", "affected_packages": [ { "package": { @@ -3265,54 +2856,9 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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-2107", - "severities": [], - "reference_id": "CVE-2016-2107" - }, - { - "url": "https://github.com/openssl/openssl/commit/68595c0c2886e7942a14f98c17a55a88afb6c292", - "severities": [], - "reference_id": "" + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, - { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2016-05-03T00:00:00+00:00" - }, - { - "unique_content_id": "b6ddcacc7a2ddbd149943494239f9247", - "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).", - "affected_packages": [ { "package": { "name": "openssl", @@ -3322,8 +2868,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -3334,36 +2880,41 @@ "namespace": null, "qualifiers": null }, - "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.1g", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2105", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0076", "severities": [], - "reference_id": "CVE-2016-2105" + "reference_id": "CVE-2014-0076" }, { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://github.com/openssl/openssl/commit/4b7a4ba29cafa432fc4266fe6e59e60bc1c96332", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/2198be3483259de374f91e57d247d0fc667aef29", + "severities": [], + "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-05-03T00:00:00+00:00" + "date_published": "2014-02-14T00:00:00+00:00" }, { - "unique_content_id": "781c7572161ca98b06d842d4f7b7b225", + "unique_content_id": "45eb6dfd31b5fc4828ce7918a5e30fe1", "aliases": [ - "CVE-2016-2106", - "VC-OPENSSL-20160503-CVE-2016-2106" + "CVE-2014-0160", + "VC-OPENSSL-20140407-CVE-2014-0160" ], - "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.", + "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": [ { "package": { @@ -3374,48 +2925,31 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.1g", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2106", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0160", + "severities": [], + "reference_id": "CVE-2014-0160" + }, + { + "url": "https://www.openssl.org/news/secadv/20140407.txt", "severities": [], - "reference_id": "CVE-2016-2106" - }, - { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], "reference_id": "" } ], - "date_published": "2016-05-03T00:00:00+00:00" + "date_published": "2014-04-07T00:00:00+00:00" }, { - "unique_content_id": "1ced378b9cb095d0a76f3485e8316088", + "unique_content_id": "61d91c23f6b3cbb2cfe8c448285ced91", "aliases": [ - "CVE-2016-2109", - "VC-OPENSSL-20160503-CVE-2016-2109" + "CVE-2014-0195", + "VC-OPENSSL-20140605-CVE-2014-0195" ], - "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.", + "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": { @@ -3426,8 +2960,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3438,36 +2972,43 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-2109", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0195", "severities": [], - "reference_id": "CVE-2016-2109" + "reference_id": "CVE-2014-0195" }, { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-05-03T00:00:00+00:00" + "date_published": "2014-06-05T00:00:00+00:00" }, { - "unique_content_id": "9b9919e189c74dff3679b483dbff020c", + "unique_content_id": "b72606d65a6ae99abd593e03be951491", "aliases": [ - "CVE-2016-2176", - "VC-OPENSSL-20160503-CVE-2016-2176" + "CVE-2014-0198", + "VC-OPENSSL-20140421-CVE-2014-0198" ], - "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.", + "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": [ { "package": { @@ -3478,8 +3019,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -3490,36 +3031,31 @@ "namespace": null, "qualifiers": null }, - "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.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-2016-2176", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0198", "severities": [], - "reference_id": "CVE-2016-2176" + "reference_id": "CVE-2014-0198" }, { - "url": "https://www.openssl.org/news/secadv/20160503.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-05-03T00:00:00+00:00" + "date_published": "2014-04-21T00:00:00+00:00" }, { - "unique_content_id": "3506496e68899788f662b53b00128361", + "unique_content_id": "9d281843d5f176d057383fdad48bf8b9", "aliases": [ - "CVE-2016-0800", - "VC-OPENSSL-20160301-CVE-2016-0800" + "CVE-2014-0221", + "VC-OPENSSL-20140605-CVE-2014-0221" ], - "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.", + "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": { @@ -3530,8 +3066,8 @@ "namespace": null, "qualifiers": null }, - "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.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3542,36 +3078,43 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-0800", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0221", "severities": [], - "reference_id": "CVE-2016-0800" + "reference_id": "CVE-2014-0221" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-06-05T00:00:00+00:00" }, { - "unique_content_id": "64f9fb4fe274a7cc9baa68f4af887e48", + "unique_content_id": "acd1e3ac9746e2bf60f9e4356e42a244", "aliases": [ - "CVE-2016-0798", - "VC-OPENSSL-20160301-CVE-2016-0798" + "CVE-2014-0224", + "VC-OPENSSL-20140605-CVE-2014-0224" ], - "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.", + "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": [ { "package": { @@ -3582,8 +3125,8 @@ "namespace": null, "qualifiers": null }, - "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.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3594,36 +3137,43 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-0798", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0224", "severities": [], - "reference_id": "CVE-2016-0798" + "reference_id": "CVE-2014-0224" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-06-05T00:00:00+00:00" }, { - "unique_content_id": "4122befa930618fe84e02259b2e79562", + "unique_content_id": "928fd52bdf45973bd405785383f86ff9", "aliases": [ - "CVE-2016-0797", - "VC-OPENSSL-20160301-CVE-2016-0797" + "CVE-2014-3470", + "VC-OPENSSL-20140530-CVE-2014-3470" ], - "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.", + "summary": "OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack.", "affected_packages": [ { "package": { @@ -3634,8 +3184,8 @@ "namespace": null, "qualifiers": null }, - "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.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, { "package": { @@ -3646,36 +3196,43 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-0797", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3470", "severities": [], - "reference_id": "CVE-2016-0797" + "reference_id": "CVE-2014-3470" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140605.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-05-30T00:00:00+00:00" }, { - "unique_content_id": "023db760fe535a1ea9f85b3938912aee", + "unique_content_id": "ddb7ca3a4fe071c0b0e2bce9159e80a9", "aliases": [ - "CVE-2016-0799", - "VC-OPENSSL-20160301-CVE-2016-0799" + "CVE-2014-3505", + "VC-OPENSSL-20140806-CVE-2014-3505" ], - "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.", + "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": { @@ -3686,8 +3243,8 @@ "namespace": null, "qualifiers": null }, - "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.8zb", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3698,36 +3255,43 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-0799", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3505", "severities": [], - "reference_id": "CVE-2016-0799" + "reference_id": "CVE-2014-3505" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "2101ddd07ece5883480bde27f4e0cf01", + "unique_content_id": "9a0cc7af593e54b92b6972add5003c70", "aliases": [ - "CVE-2016-0702", - "VC-OPENSSL-20160301-CVE-2016-0702" + "CVE-2014-3506", + "VC-OPENSSL-20140806-CVE-2014-3506" ], - "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.", + "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": { @@ -3738,8 +3302,8 @@ "namespace": null, "qualifiers": null }, - "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.8zb", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3750,37 +3314,9 @@ "namespace": null, "qualifiers": null }, - "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-0702", - "severities": [], - "reference_id": "CVE-2016-0702" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2016-03-01T00:00:00+00:00" - }, - { - "unique_content_id": "1f2782accf0ef33eec7f7c21fe969938", - "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": [ { "package": { "name": "openssl", @@ -3790,31 +3326,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8h", - "affected_version_range": "vers:openssl/0.9.8f|0.9.8g" + "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-2008-0891", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3506", "severities": [], - "reference_id": "CVE-2008-0891" + "reference_id": "CVE-2014-3506" }, { - "url": "https://www.openssl.org/news/secadv/20080528.txt", + "url": "https://www.openssl.org/news/secadv/20140806.txt", "severities": [], "reference_id": "" } ], - "date_published": "2008-05-28T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "8267dd00782c5b19c9f234aa1e9a43f3", + "unique_content_id": "3f2bdad8de4efd2e68f4bf04d8cb7038", "aliases": [ - "CVE-2016-0703", - "VC-OPENSSL-20160301-CVE-2016-0703" + "CVE-2014-3507", + "VC-OPENSSL-20140806-CVE-2014-3507" ], - "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.", + "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": { @@ -3825,20 +3361,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|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.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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zb", + "affected_version_range": "vers:openssl/0.9.8|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3849,8 +3373,8 @@ "namespace": null, "qualifiers": null }, - "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.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" }, { "package": { @@ -3861,36 +3385,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "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-2016-0703", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3507", "severities": [], - "reference_id": "CVE-2016-0703" + "reference_id": "CVE-2014-3507" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "28f16df4f3daa41f80ca706bb1da6207", + "unique_content_id": "3c0bc908a2f8b2ec18eabf6b12757586", "aliases": [ - "CVE-2016-0704", - "VC-OPENSSL-20160301-CVE-2016-0704" + "CVE-2014-3508", + "VC-OPENSSL-20140806-CVE-2014-3508" ], - "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.", + "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": { @@ -3901,20 +3420,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|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.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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zb", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -3925,8 +3432,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -3937,36 +3444,31 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "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-2016-0704", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3508", "severities": [], - "reference_id": "CVE-2016-0704" + "reference_id": "CVE-2014-3508" }, { - "url": "https://www.openssl.org/news/secadv/20160301.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-03-01T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "0777f77812eeceec0365835b4263657d", + "unique_content_id": "cc4b40b103fcbee25daf28d68cfc0f96", "aliases": [ - "CVE-2016-0701", - "VC-OPENSSL-20160128-CVE-2016-0701" + "CVE-2014-3509", + "VC-OPENSSL-20140806-CVE-2014-3509" ], - "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.", + "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": { @@ -3977,36 +3479,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2f", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e" + "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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2016-0701", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3509", "severities": [], - "reference_id": "CVE-2016-0701" + "reference_id": "CVE-2014-3509" }, { - "url": "https://www.openssl.org/news/secadv/20160128.txt", - "severities": [ - { - "value": "High", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-01-28T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "fc2f742b725439e7be346bfe8d533551", + "unique_content_id": "f2c41d8c1f22980784c20b489c539cfb", "aliases": [ - "CVE-2015-3197", - "VC-OPENSSL-20160128-CVE-2015-3197" + "CVE-2014-3510", + "VC-OPENSSL-20140806-CVE-2014-3510" ], - "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.", + "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": { @@ -4017,8 +3526,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1r", - "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" + "fixed_version": "0.9.8zb", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" }, { "package": { @@ -4029,36 +3538,43 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2f", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e" + "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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2015-3197", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3510", "severities": [], - "reference_id": "CVE-2015-3197" + "reference_id": "CVE-2014-3510" }, { - "url": "https://www.openssl.org/news/secadv/20160128.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2016-01-28T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "23636fd7ee3e368036ebc3c5d9e72b1d", + "unique_content_id": "9538bc3461d96c2b21db3c1fac24baa1", "aliases": [ - "CVE-2015-1794", - "VC-OPENSSL-20150811-CVE-2015-1794" + "CVE-2014-3511", + "VC-OPENSSL-20140806-CVE-2014-3511" ], - "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.", + "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": [ { "package": { @@ -4069,36 +3585,31 @@ "namespace": null, "qualifiers": null }, - "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.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-2015-1794", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3511", "severities": [], - "reference_id": "CVE-2015-1794" + "reference_id": "CVE-2014-3511" }, { - "url": "https://www.openssl.org/news/secadv/20151203.txt", - "severities": [ - { - "value": "Low", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2015-08-11T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "75cfe7850195ebbca3bd42f987632dcd", + "unique_content_id": "69b45e7fa2c0b4fb073a8b82849decbd", "aliases": [ - "CVE-2015-3193", - "VC-OPENSSL-20151203-CVE-2015-3193" + "CVE-2014-3512", + "VC-OPENSSL-20140806-CVE-2014-3512" ], - "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.", + "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": { @@ -4109,36 +3620,31 @@ "namespace": null, "qualifiers": null }, - "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.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-2015-3193", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3512", "severities": [], - "reference_id": "CVE-2015-3193" + "reference_id": "CVE-2014-3512" }, { - "url": "https://www.openssl.org/news/secadv/20151203.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], "reference_id": "" } ], - "date_published": "2015-12-03T00:00:00+00:00" + "date_published": "2014-08-06T00:00:00+00:00" }, { - "unique_content_id": "cc51dac131bce0bd19788f2225869016", + "unique_content_id": "1f5b764f02186661daeddc59bf4da52e", "aliases": [ - "CVE-2015-3194", - "VC-OPENSSL-20151203-CVE-2015-3194" + "CVE-2014-3513", + "VC-OPENSSL-20141015-CVE-2014-3513" ], - "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.", + "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": { @@ -4149,48 +3655,36 @@ "namespace": null, "qualifiers": null }, - "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", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.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-2015-3194", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3513", "severities": [], - "reference_id": "CVE-2015-3194" + "reference_id": "CVE-2014-3513" }, { - "url": "https://www.openssl.org/news/secadv/20151203.txt", + "url": "https://www.openssl.org/news/secadv/20141015.txt", "severities": [ { - "value": "Moderate", + "value": "High", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-12-03T00:00:00+00:00" + "date_published": "2014-10-15T00:00:00+00:00" }, { - "unique_content_id": "692845da51eb8c47baa72c584f82d55d", + "unique_content_id": "0dbc354e8b6ffda1dc282284dc7ca66e", "aliases": [ - "CVE-2015-3195", - "VC-OPENSSL-20151203-CVE-2015-3195" + "CVE-2014-3567", + "VC-OPENSSL-20141015-CVE-2014-3567" ], - "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.", + "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": { @@ -4201,20 +3695,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zh", - "affected_version_range": "vers:openssl/0.9.8|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.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|0.9.8zg" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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" + "fixed_version": "0.9.8zc", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -4225,8 +3707,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -4237,18 +3719,18 @@ "namespace": null, "qualifiers": null }, - "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.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-2015-3195", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3567", "severities": [], - "reference_id": "CVE-2015-3195" + "reference_id": "CVE-2014-3567" }, { - "url": "https://www.openssl.org/news/secadv/20151203.txt", + "url": "https://www.openssl.org/news/secadv/20141015.txt", "severities": [ { "value": "Moderate", @@ -4258,15 +3740,15 @@ "reference_id": "" } ], - "date_published": "2015-12-03T00:00:00+00:00" + "date_published": "2014-10-15T00:00:00+00:00" }, { - "unique_content_id": "cb41dd338eae6ef24d74b9880a71ab3c", + "unique_content_id": "f361c3818d069effcb24f21fcd72db85", "aliases": [ - "CVE-2015-3196", - "VC-OPENSSL-20151203-CVE-2015-3196" + "CVE-2014-3568", + "VC-OPENSSL-20141015-CVE-2014-3568" ], - "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.", + "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": { @@ -4277,8 +3759,8 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "0.9.8zc", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" }, { "package": { @@ -4289,8 +3771,8 @@ "namespace": null, "qualifiers": null }, - "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" + "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": { @@ -4301,18 +3783,18 @@ "namespace": null, "qualifiers": null }, - "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.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-2015-3196", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3568", "severities": [], - "reference_id": "CVE-2015-3196" + "reference_id": "CVE-2014-3568" }, { - "url": "https://www.openssl.org/news/secadv/20151203.txt", + "url": "https://www.openssl.org/news/secadv/20141015.txt", "severities": [ { "value": "Low", @@ -4322,15 +3804,15 @@ "reference_id": "" } ], - "date_published": "2015-12-03T00:00:00+00:00" + "date_published": "2014-10-15T00:00:00+00:00" }, { - "unique_content_id": "626196998fcc82390de1c4f11bcb5c10", + "unique_content_id": "b1da1cde21ecd834f84496c1980c6c2a", "aliases": [ - "CVE-2015-1793", - "VC-OPENSSL-20150709-CVE-2015-1793" + "CVE-2014-3569", + "VC-OPENSSL-20141021-CVE-2014-3569" ], - "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.", + "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": { @@ -4341,8 +3823,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1p", - "affected_version_range": "vers:openssl/1.0.1n|1.0.1o" + "fixed_version": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8zc" }, { "package": { @@ -4353,36 +3835,48 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2d", - "affected_version_range": "vers:openssl/1.0.2b|1.0.2c" + "fixed_version": "1.0.0p", + "affected_version_range": "vers:openssl/1.0.0o" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.1k", + "affected_version_range": "vers:openssl/1.0.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1793", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3569", "severities": [], - "reference_id": "CVE-2015-1793" + "reference_id": "CVE-2014-3569" }, { - "url": "https://www.openssl.org/news/secadv/20150709.txt", + "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { - "value": "High", + "value": "Low", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-07-09T00:00:00+00:00" + "date_published": "2014-10-21T00:00:00+00:00" }, { - "unique_content_id": "d4948addae4359ea3024e099c5a44471", + "unique_content_id": "0a41661f218f8317d4028d11a2423cac", "aliases": [ - "CVE-2015-1788", - "VC-OPENSSL-20150611-CVE-2015-1788" + "CVE-2014-3570", + "VC-OPENSSL-20150108-CVE-2014-3570" ], - "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.", + "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": { @@ -4393,20 +3887,8 @@ "namespace": null, "qualifiers": null }, - "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", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4417,8 +3899,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1n", - "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" + "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": { @@ -4429,36 +3911,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2b", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a" + "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-1788", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3570", "severities": [], - "reference_id": "CVE-2015-1788" + "reference_id": "CVE-2014-3570" }, { - "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" } ], "reference_id": "" } ], - "date_published": "2015-06-11T00:00:00+00:00" + "date_published": "2015-01-08T00:00:00+00:00" }, { - "unique_content_id": "6f019495566babdc220787d764ecfcb3", + "unique_content_id": "0e127de6fafb7d7e261db49417760ba9", "aliases": [ - "CVE-2015-1789", - "VC-OPENSSL-20150611-CVE-2015-1789" + "CVE-2014-3571", + "VC-OPENSSL-20150105-CVE-2014-3571" ], - "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.", + "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": { @@ -4469,20 +3951,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zg", - "affected_version_range": "vers:openssl/0.9.8|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.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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4493,8 +3963,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1n", - "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" + "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": { @@ -4505,18 +3975,18 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2b", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a" + "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-1789", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3571", "severities": [], - "reference_id": "CVE-2015-1789" + "reference_id": "CVE-2014-3571" }, { - "url": "https://www.openssl.org/news/secadv/20150611.txt", + "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { "value": "Moderate", @@ -4526,15 +3996,15 @@ "reference_id": "" } ], - "date_published": "2015-06-11T00:00:00+00:00" + "date_published": "2015-01-05T00:00:00+00:00" }, { - "unique_content_id": "de0847d5d8534a67402a297b4482b1bf", + "unique_content_id": "fcaff5e260e813572bfc67ff2a304d25", "aliases": [ - "CVE-2015-1790", - "VC-OPENSSL-20150611-CVE-2015-1790" + "CVE-2014-3572", + "VC-OPENSSL-20150105-CVE-2014-3572" ], - "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.", + "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": [ { "package": { @@ -4545,20 +4015,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zg", - "affected_version_range": "vers:openssl/0.9.8|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.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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4569,8 +4027,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1n", - "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" + "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": { @@ -4581,36 +4039,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2b", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a" + "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-1790", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3572", "severities": [], - "reference_id": "CVE-2015-1790" + "reference_id": "CVE-2014-3572" }, { - "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" } ], "reference_id": "" } ], - "date_published": "2015-06-11T00:00:00+00:00" + "date_published": "2015-01-05T00:00:00+00:00" }, { - "unique_content_id": "3590b88a90950e42228acf56eb865571", + "unique_content_id": "556ac77a9be9aa218ddaa6bafb6c3ef1", "aliases": [ - "CVE-2015-1792", - "VC-OPENSSL-20150611-CVE-2015-1792" + "CVE-2014-5139", + "VC-OPENSSL-20140806-CVE-2014-5139" ], - "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.", + "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": { @@ -4621,9 +4079,32 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zg", - "affected_version_range": "vers:openssl/0.9.8|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.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": "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" }, + { + "url": "https://www.openssl.org/news/secadv/20140806.txt", + "severities": [], + "reference_id": "" + } + ], + "date_published": "2014-08-06T00:00:00+00:00" + }, + { + "unique_content_id": "c2558909bddeaa670f89ebf69b7f8518", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -4633,8 +4114,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, { "package": { @@ -4645,8 +4126,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1n", - "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" + "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": { @@ -4657,15 +4138,15 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2b", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a" + "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-1792", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8176", "severities": [], - "reference_id": "CVE-2015-1792" + "reference_id": "CVE-2014-8176" }, { "url": "https://www.openssl.org/news/secadv/20150611.txt", @@ -4681,12 +4162,12 @@ "date_published": "2015-06-11T00:00:00+00:00" }, { - "unique_content_id": "49a4738b52d1c4bd20756d8ada536528", + "unique_content_id": "065f44427e0d663d8234e64bf1843fdd", "aliases": [ - "CVE-2015-1791", - "VC-OPENSSL-20150602-CVE-2015-1791" + "CVE-2014-8275", + "VC-OPENSSL-20150105-CVE-2014-8275" ], - "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.", + "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": { @@ -4697,20 +4178,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zg", - "affected_version_range": "vers:openssl/0.9.8|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.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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4721,8 +4190,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1n", - "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" + "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": { @@ -4733,18 +4202,18 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2b", - "affected_version_range": "vers:openssl/1.0.2|1.0.2a" + "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-1791", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8275", "severities": [], - "reference_id": "CVE-2015-1791" + "reference_id": "CVE-2014-8275" }, { - "url": "https://www.openssl.org/news/secadv/20150611.txt", + "url": "https://www.openssl.org/news/secadv/20150108.txt", "severities": [ { "value": "Low", @@ -4754,15 +4223,15 @@ "reference_id": "" } ], - "date_published": "2015-06-02T00:00:00+00:00" + "date_published": "2015-01-05T00:00:00+00:00" }, { - "unique_content_id": "c2558909bddeaa670f89ebf69b7f8518", + "unique_content_id": "6a6be6bf98981fe79b516cab4ffdbbce", "aliases": [ - "CVE-2014-8176", - "VC-OPENSSL-20150611-CVE-2014-8176" + "CVE-2015-0204", + "VC-OPENSSL-20150106-CVE-2015-0204" ], - "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.", + "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": [ { "package": { @@ -4773,8 +4242,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" + "fixed_version": "0.9.8zd", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" }, { "package": { @@ -4785,8 +4254,8 @@ "namespace": null, "qualifiers": null }, - "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": { @@ -4797,36 +4266,36 @@ "namespace": null, "qualifiers": null }, - "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-2015-0204", "severities": [], - "reference_id": "CVE-2014-8176" + "reference_id": "CVE-2015-0204" }, { - "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" } ], "reference_id": "" } ], - "date_published": "2015-06-11T00:00:00+00:00" + "date_published": "2015-01-06T00:00:00+00:00" }, { - "unique_content_id": "fb42200139181c92c8131fad25bb89d9", + "unique_content_id": "b0ae7519b7208e9e1445a93f09837e72", "aliases": [ - "CVE-2015-0290", - "VC-OPENSSL-20150319-CVE-2015-0290" + "CVE-2015-0205", + "VC-OPENSSL-20150108-CVE-2015-0205" ], - "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.", + "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": [ { "package": { @@ -4837,37 +4306,9 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0290", - "severities": [], - "reference_id": "CVE-2015-0290" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20150319.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2015-03-19T00:00:00+00:00" - }, - { - "unique_content_id": "2da340f13e79053e9d7cbb28e21f8cdd", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -4877,36 +4318,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" + "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-2015-0205", "severities": [], - "reference_id": "CVE-2015-0207" + "reference_id": "CVE-2015-0205" }, { - "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" } ], "reference_id": "" } ], - "date_published": "2015-03-19T00:00:00+00:00" + "date_published": "2015-01-08T00:00:00+00:00" }, { - "unique_content_id": "e0f46c4ed3ca54619ea97de2337d0b06", + "unique_content_id": "1684c4ac6d329374b3be002ae1d092e2", "aliases": [ - "CVE-2015-0286", - "VC-OPENSSL-20150319-CVE-2015-0286" + "CVE-2015-0206", + "VC-OPENSSL-20150108-CVE-2015-0206" ], - "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.", + "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": [ { "package": { @@ -4917,8 +4358,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8zd|0.9.8ze" + "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": { @@ -4929,21 +4370,37 @@ "namespace": null, "qualifiers": null }, - "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.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": [ { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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" + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0206", + "severities": [], + "reference_id": "CVE-2015-0206" }, + { + "url": "https://www.openssl.org/news/secadv/20150108.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2015-01-08T00:00:00+00:00" + }, + { + "unique_content_id": "2da340f13e79053e9d7cbb28e21f8cdd", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -4959,9 +4416,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0286", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0207", "severities": [], - "reference_id": "CVE-2015-0286" + "reference_id": "CVE-2015-0207" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", @@ -5017,12 +4474,12 @@ "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "c1f153eae7cc1ab2e5d45ef9037c8483", + "unique_content_id": "9286c4accc636bb2d3be1b468b3cace4", "aliases": [ - "CVE-2015-0287", - "VC-OPENSSL-20150319-CVE-2015-0287" + "CVE-2015-0209", + "VC-OPENSSL-20150319-CVE-2015-0209" ], - "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.", + "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": { @@ -5075,15 +4532,15 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0287", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0209", "severities": [], - "reference_id": "CVE-2015-0287" + "reference_id": "CVE-2015-0209" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual" } ], @@ -5093,49 +4550,13 @@ "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "c787e9ff542dedc708146af7d513f4e5", + "unique_content_id": "ef26fee8241abc7d63cf6a6c31f37227", "aliases": [ - "CVE-2015-0289", - "VC-OPENSSL-20150319-CVE-2015-0289" + "CVE-2015-0285", + "VC-OPENSSL-20150310-CVE-2015-0285" ], - "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.", + "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": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|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.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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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", @@ -5151,30 +4572,30 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0289", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0285", "severities": [], - "reference_id": "CVE-2015-0289" + "reference_id": "CVE-2015-0285" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Moderate", + "value": "Low", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-03-19T00:00:00+00:00" + "date_published": "2015-03-10T00:00:00+00:00" }, { - "unique_content_id": "610d1a3f4fe1f3152f3367e7f7977f2d", + "unique_content_id": "e0f46c4ed3ca54619ea97de2337d0b06", "aliases": [ - "CVE-2015-0292", - "VC-OPENSSL-20150319-CVE-2015-0292" + "CVE-2015-0286", + "VC-OPENSSL-20150319-CVE-2015-0286" ], - "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.", + "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": { @@ -5185,8 +4606,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8zd|0.9.8ze" }, { "package": { @@ -5197,8 +4618,8 @@ "namespace": null, "qualifiers": null }, - "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": { @@ -5209,15 +4630,27 @@ "namespace": null, "qualifiers": null }, - "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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-0286", "severities": [], - "reference_id": "CVE-2015-0292" + "reference_id": "CVE-2015-0286" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", @@ -5233,12 +4666,12 @@ "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "53a9c388a3babc9137c9f8d5c16aa6b3", + "unique_content_id": "c1f153eae7cc1ab2e5d45ef9037c8483", "aliases": [ - "CVE-2015-0293", - "VC-OPENSSL-20150319-CVE-2015-0293" + "CVE-2015-0287", + "VC-OPENSSL-20150319-CVE-2015-0287" ], - "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.", + "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": { @@ -5291,9 +4724,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0293", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0287", "severities": [], - "reference_id": "CVE-2015-0293" + "reference_id": "CVE-2015-0287" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", @@ -5309,12 +4742,12 @@ "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "43d97ddde2a3d7d04680811dc912789b", + "unique_content_id": "47c67a4346cae9669fe347406c95c431", "aliases": [ - "CVE-2015-1787", - "VC-OPENSSL-20150319-CVE-2015-1787" + "CVE-2015-0288", + "VC-OPENSSL-20150302-CVE-2015-0288" ], - "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.", + "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": { @@ -5325,37 +4758,33 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.2a", - "affected_version_range": "vers:openssl/1.0.2" - } - ], - "references": [ + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" + }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1787", - "severities": [], - "reference_id": "CVE-2015-1787" + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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" }, { - "url": "https://www.openssl.org/news/secadv/20150319.txt", - "severities": [ - { - "value": "Moderate", - "system": "generic_textual" - } - ], - "reference_id": "" - } - ], - "date_published": "2015-03-19T00:00:00+00:00" - }, - { - "unique_content_id": "ef26fee8241abc7d63cf6a6c31f37227", - "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": [ + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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", @@ -5371,9 +4800,9 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0285", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0288", "severities": [], - "reference_id": "CVE-2015-0285" + "reference_id": "CVE-2015-0288" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", @@ -5386,15 +4815,15 @@ "reference_id": "" } ], - "date_published": "2015-03-10T00:00:00+00:00" + "date_published": "2015-03-02T00:00:00+00:00" }, { - "unique_content_id": "9286c4accc636bb2d3be1b468b3cace4", + "unique_content_id": "c787e9ff542dedc708146af7d513f4e5", "aliases": [ - "CVE-2015-0209", - "VC-OPENSSL-20150319-CVE-2015-0209" + "CVE-2015-0289", + "VC-OPENSSL-20150319-CVE-2015-0289" ], - "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.", + "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": { @@ -5447,15 +4876,15 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0209", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0289", "severities": [], - "reference_id": "CVE-2015-0209" + "reference_id": "CVE-2015-0289" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], @@ -5465,49 +4894,13 @@ "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "47c67a4346cae9669fe347406c95c431", + "unique_content_id": "fb42200139181c92c8131fad25bb89d9", "aliases": [ - "CVE-2015-0288", - "VC-OPENSSL-20150302-CVE-2015-0288" + "CVE-2015-0290", + "VC-OPENSSL-20150319-CVE-2015-0290" ], - "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.", + "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": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8zf", - "affected_version_range": "vers:openssl/0.9.8|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.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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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", @@ -5523,30 +4916,30 @@ ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0288", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0290", "severities": [], - "reference_id": "CVE-2015-0288" + "reference_id": "CVE-2015-0290" }, { "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-03-02T00:00:00+00:00" + "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "1684c4ac6d329374b3be002ae1d092e2", + "unique_content_id": "eca7be74f0e34397e9947ccb3c908c84", "aliases": [ - "CVE-2015-0206", - "VC-OPENSSL-20150108-CVE-2015-0206" + "CVE-2015-0291", + "VC-OPENSSL-20150319-CVE-2015-0291" ], - "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.", + "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": [ { "package": { @@ -5557,48 +4950,36 @@ "namespace": null, "qualifiers": null }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0206", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0291", "severities": [], - "reference_id": "CVE-2015-0206" + "reference_id": "CVE-2015-0291" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Moderate", + "value": "High", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-01-08T00:00:00+00:00" + "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "b1da1cde21ecd834f84496c1980c6c2a", + "unique_content_id": "610d1a3f4fe1f3152f3367e7f7977f2d", "aliases": [ - "CVE-2014-3569", - "VC-OPENSSL-20141021-CVE-2014-3569" + "CVE-2015-0292", + "VC-OPENSSL-20150319-CVE-2015-0292" ], - "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.", + "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": { @@ -5609,8 +4990,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8zc" + "fixed_version": "0.9.8za", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" }, { "package": { @@ -5621,8 +5002,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0p", - "affected_version_range": "vers:openssl/1.0.0o" + "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": { @@ -5633,36 +5014,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1k", - "affected_version_range": "vers:openssl/1.0.1j" + "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-3569", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0292", "severities": [], - "reference_id": "CVE-2014-3569" + "reference_id": "CVE-2015-0292" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2014-10-21T00:00:00+00:00" + "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "fcaff5e260e813572bfc67ff2a304d25", + "unique_content_id": "53a9c388a3babc9137c9f8d5c16aa6b3", "aliases": [ - "CVE-2014-3572", - "VC-OPENSSL-20150105-CVE-2014-3572" + "CVE-2015-0293", + "VC-OPENSSL-20150319-CVE-2015-0293" ], - "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.", + "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": { @@ -5673,8 +5054,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" }, { "package": { @@ -5685,8 +5066,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -5697,36 +5078,48 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3572", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0293", "severities": [], - "reference_id": "CVE-2014-3572" + "reference_id": "CVE-2015-0293" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-01-05T00:00:00+00:00" + "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "0e127de6fafb7d7e261db49417760ba9", + "unique_content_id": "43d97ddde2a3d7d04680811dc912789b", "aliases": [ - "CVE-2014-3571", - "VC-OPENSSL-20150105-CVE-2014-3571" + "CVE-2015-1787", + "VC-OPENSSL-20150319-CVE-2015-1787" ], - "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.", + "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": { @@ -5737,42 +5130,18 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3571", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1787", "severities": [], - "reference_id": "CVE-2014-3571" + "reference_id": "CVE-2015-1787" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150319.txt", "severities": [ { "value": "Moderate", @@ -5782,15 +5151,15 @@ "reference_id": "" } ], - "date_published": "2015-01-05T00:00:00+00:00" + "date_published": "2015-03-19T00:00:00+00:00" }, { - "unique_content_id": "6a6be6bf98981fe79b516cab4ffdbbce", + "unique_content_id": "d4948addae4359ea3024e099c5a44471", "aliases": [ - "CVE-2015-0204", - "VC-OPENSSL-20150106-CVE-2015-0204" + "CVE-2015-1788", + "VC-OPENSSL-20150611-CVE-2015-1788" ], - "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.", + "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": { @@ -5801,8 +5170,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "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": { @@ -5813,8 +5182,8 @@ "namespace": null, "qualifiers": null }, - "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.0e", + "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b|1.0.0c|1.0.0d" }, { "package": { @@ -5825,36 +5194,48 @@ "namespace": null, "qualifiers": null }, - "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.1n", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2b", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0204", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1788", "severities": [], - "reference_id": "CVE-2015-0204" + "reference_id": "CVE-2015-1788" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-01-06T00:00:00+00:00" + "date_published": "2015-06-11T00:00:00+00:00" }, { - "unique_content_id": "b0ae7519b7208e9e1445a93f09837e72", + "unique_content_id": "6f019495566babdc220787d764ecfcb3", "aliases": [ - "CVE-2015-0205", - "VC-OPENSSL-20150108-CVE-2015-0205" + "CVE-2015-1789", + "VC-OPENSSL-20150611-CVE-2015-1789" ], - "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.", + "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": [ { "package": { @@ -5865,8 +5246,8 @@ "namespace": null, "qualifiers": null }, - "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": "0.9.8zg", + "affected_version_range": "vers:openssl/0.9.8|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.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": { @@ -5877,36 +5258,60 @@ "namespace": null, "qualifiers": null }, - "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.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": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.1n", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2b", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-0205", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1789", "severities": [], - "reference_id": "CVE-2015-0205" + "reference_id": "CVE-2015-1789" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-01-08T00:00:00+00:00" + "date_published": "2015-06-11T00:00:00+00:00" }, { - "unique_content_id": "065f44427e0d663d8234e64bf1843fdd", + "unique_content_id": "de0847d5d8534a67402a297b4482b1bf", "aliases": [ - "CVE-2014-8275", - "VC-OPENSSL-20150105-CVE-2014-8275" + "CVE-2015-1790", + "VC-OPENSSL-20150611-CVE-2015-1790" ], - "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.", + "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": [ { "package": { @@ -5917,8 +5322,20 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "fixed_version": "0.9.8zg", + "affected_version_range": "vers:openssl/0.9.8|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.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": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": { @@ -5929,8 +5346,8 @@ "namespace": null, "qualifiers": null }, - "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.1n", + "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" }, { "package": { @@ -5941,36 +5358,36 @@ "namespace": null, "qualifiers": null }, - "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.2b", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-8275", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1790", "severities": [], - "reference_id": "CVE-2014-8275" + "reference_id": "CVE-2015-1790" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2015-01-05T00:00:00+00:00" + "date_published": "2015-06-11T00:00:00+00:00" }, { - "unique_content_id": "0a41661f218f8317d4028d11a2423cac", + "unique_content_id": "49a4738b52d1c4bd20756d8ada536528", "aliases": [ - "CVE-2014-3570", - "VC-OPENSSL-20150108-CVE-2014-3570" + "CVE-2015-1791", + "VC-OPENSSL-20150602-CVE-2015-1791" ], - "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.", + "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": { @@ -5981,8 +5398,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zd", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc" + "fixed_version": "0.9.8zg", + "affected_version_range": "vers:openssl/0.9.8|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.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": { @@ -5993,8 +5410,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6005,18 +5422,30 @@ "namespace": null, "qualifiers": null }, - "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.1n", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2b", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3570", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1791", "severities": [], - "reference_id": "CVE-2014-3570" + "reference_id": "CVE-2015-1791" }, { - "url": "https://www.openssl.org/news/secadv/20150108.txt", + "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { "value": "Low", @@ -6026,15 +5455,15 @@ "reference_id": "" } ], - "date_published": "2015-01-08T00:00:00+00:00" + "date_published": "2015-06-02T00:00:00+00:00" }, { - "unique_content_id": "0dbc354e8b6ffda1dc282284dc7ca66e", + "unique_content_id": "3590b88a90950e42228acf56eb865571", "aliases": [ - "CVE-2014-3567", - "VC-OPENSSL-20141015-CVE-2014-3567" + "CVE-2015-1792", + "VC-OPENSSL-20150611-CVE-2015-1792" ], - "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.", + "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": { @@ -6045,8 +5474,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" + "fixed_version": "0.9.8zg", + "affected_version_range": "vers:openssl/0.9.8|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.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": { @@ -6057,8 +5486,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6069,18 +5498,30 @@ "namespace": null, "qualifiers": null }, - "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.1n", + "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" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2b", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3567", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1792", "severities": [], - "reference_id": "CVE-2014-3567" + "reference_id": "CVE-2015-1792" }, { - "url": "https://www.openssl.org/news/secadv/20141015.txt", + "url": "https://www.openssl.org/news/secadv/20150611.txt", "severities": [ { "value": "Moderate", @@ -6090,14 +5531,15 @@ "reference_id": "" } ], - "date_published": "2014-10-15T00:00:00+00:00" + "date_published": "2015-06-11T00:00:00+00:00" }, { - "unique_content_id": "3b5d1987c5d35dd975de6517663fbf2f", + "unique_content_id": "626196998fcc82390de1c4f11bcb5c10", "aliases": [ - "VC-OPENSSL-20141015" + "CVE-2015-1793", + "VC-OPENSSL-20150709-CVE-2015-1793" ], - "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", + "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": [ { "package": { @@ -6108,8 +5550,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" + "fixed_version": "1.0.1p", + "affected_version_range": "vers:openssl/1.0.1n|1.0.1o" }, { "package": { @@ -6120,9 +5562,37 @@ "namespace": null, "qualifiers": null }, - "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.2d", + "affected_version_range": "vers:openssl/1.0.2b|1.0.2c" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1793", + "severities": [], + "reference_id": "CVE-2015-1793" }, + { + "url": "https://www.openssl.org/news/secadv/20150709.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2015-07-09T00:00:00+00:00" + }, + { + "unique_content_id": "23636fd7ee3e368036ebc3c5d9e72b1d", + "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": [ { "package": { "name": "openssl", @@ -6132,20 +5602,36 @@ "namespace": null, "qualifiers": null }, - "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.2e", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d" } ], - "references": [], - "date_published": "2014-10-15T00:00:00+00:00" + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-1794", + "severities": [], + "reference_id": "CVE-2015-1794" + }, + { + "url": "https://www.openssl.org/news/secadv/20151203.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2015-08-11T00:00:00+00:00" }, { - "unique_content_id": "f361c3818d069effcb24f21fcd72db85", + "unique_content_id": "75cfe7850195ebbca3bd42f987632dcd", "aliases": [ - "CVE-2014-3568", - "VC-OPENSSL-20141015-CVE-2014-3568" + "CVE-2015-3193", + "VC-OPENSSL-20151203-CVE-2015-3193" ], - "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.", + "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": { @@ -6156,9 +5642,37 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zc", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb" + "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-3193", + "severities": [], + "reference_id": "CVE-2015-3193" }, + { + "url": "https://www.openssl.org/news/secadv/20151203.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2015-12-03T00:00:00+00:00" + }, + { + "unique_content_id": "cc51dac131bce0bd19788f2225869016", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -6168,8 +5682,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6180,36 +5694,36 @@ "namespace": null, "qualifiers": null }, - "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.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-2014-3568", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3194", "severities": [], - "reference_id": "CVE-2014-3568" + "reference_id": "CVE-2015-3194" }, { - "url": "https://www.openssl.org/news/secadv/20141015.txt", + "url": "https://www.openssl.org/news/secadv/20151203.txt", "severities": [ { - "value": "Low", + "value": "Moderate", "system": "generic_textual" } ], "reference_id": "" } ], - "date_published": "2014-10-15T00:00:00+00:00" + "date_published": "2015-12-03T00:00:00+00:00" }, { - "unique_content_id": "3c0bc908a2f8b2ec18eabf6b12757586", + "unique_content_id": "692845da51eb8c47baa72c584f82d55d", "aliases": [ - "CVE-2014-3508", - "VC-OPENSSL-20140806-CVE-2014-3508" + "CVE-2015-3195", + "VC-OPENSSL-20151203-CVE-2015-3195" ], - "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.", + "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": [ { "package": { @@ -6220,8 +5734,20 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" + "fixed_version": "0.9.8zh", + "affected_version_range": "vers:openssl/0.9.8|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.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|0.9.8zg" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": { @@ -6232,8 +5758,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6244,31 +5770,36 @@ "namespace": null, "qualifiers": null }, - "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.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-2014-3508", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3195", "severities": [], - "reference_id": "CVE-2014-3508" + "reference_id": "CVE-2015-3195" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20151203.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2015-12-03T00:00:00+00:00" }, { - "unique_content_id": "556ac77a9be9aa218ddaa6bafb6c3ef1", + "unique_content_id": "cb41dd338eae6ef24d74b9880a71ab3c", "aliases": [ - "CVE-2014-5139", - "VC-OPENSSL-20140806-CVE-2014-5139" + "CVE-2015-3196", + "VC-OPENSSL-20151203-CVE-2015-3196" ], - "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.", + "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": { @@ -6279,32 +5810,9 @@ "namespace": null, "qualifiers": null }, - "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" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2014-08-06T00:00:00+00:00" - }, - { - "unique_content_id": "cc4b40b103fcbee25daf28d68cfc0f96", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -6314,8 +5822,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6326,31 +5834,36 @@ "namespace": null, "qualifiers": null }, - "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.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-2014-3509", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3196", "severities": [], - "reference_id": "CVE-2014-3509" + "reference_id": "CVE-2015-3196" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20151203.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2015-12-03T00:00:00+00:00" }, { - "unique_content_id": "ddb7ca3a4fe071c0b0e2bce9159e80a9", + "unique_content_id": "fc2f742b725439e7be346bfe8d533551", "aliases": [ - "CVE-2014-3505", - "VC-OPENSSL-20140806-CVE-2014-3505" + "CVE-2015-3197", + "VC-OPENSSL-20160128-CVE-2015-3197" ], - "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.", + "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": [ { "package": { @@ -6361,20 +5874,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.1r", + "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" }, { "package": { @@ -6385,31 +5886,36 @@ "namespace": null, "qualifiers": null }, - "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.2f", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3505", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2015-3197", "severities": [], - "reference_id": "CVE-2014-3505" + "reference_id": "CVE-2015-3197" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160128.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2016-01-28T00:00:00+00:00" }, { - "unique_content_id": "9a0cc7af593e54b92b6972add5003c70", + "unique_content_id": "0777f77812eeceec0365835b4263657d", "aliases": [ - "CVE-2014-3506", - "VC-OPENSSL-20140806-CVE-2014-3506" + "CVE-2016-0701", + "VC-OPENSSL-20160128-CVE-2016-0701" ], - "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.", + "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": [ { "package": { @@ -6420,9 +5926,37 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" + "fixed_version": "1.0.2f", + "affected_version_range": "vers:openssl/1.0.2|1.0.2a|1.0.2b|1.0.2c|1.0.2d|1.0.2e" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0701", + "severities": [], + "reference_id": "CVE-2016-0701" }, + { + "url": "https://www.openssl.org/news/secadv/20160128.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2016-01-28T00:00:00+00:00" + }, + { + "unique_content_id": "2101ddd07ece5883480bde27f4e0cf01", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -6432,8 +5966,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6444,31 +5978,36 @@ "namespace": null, "qualifiers": null }, - "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.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-2014-3506", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0702", "severities": [], - "reference_id": "CVE-2014-3506" + "reference_id": "CVE-2016-0702" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "3f2bdad8de4efd2e68f4bf04d8cb7038", + "unique_content_id": "8267dd00782c5b19c9f234aa1e9a43f3", "aliases": [ - "CVE-2014-3507", - "VC-OPENSSL-20140806-CVE-2014-3507" + "CVE-2016-0703", + "VC-OPENSSL-20160301-CVE-2016-0703" ], - "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.", + "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": [ { "package": { @@ -6479,8 +6018,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8w|0.9.8x|0.9.8y|0.9.8za" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za|0.9.8zb|0.9.8zc|0.9.8zd|0.9.8ze" }, { "package": { @@ -6491,8 +6030,8 @@ "namespace": null, "qualifiers": null }, - "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" + "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": { @@ -6503,31 +6042,48 @@ "namespace": null, "qualifiers": null }, - "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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3507", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0703", "severities": [], - "reference_id": "CVE-2014-3507" + "reference_id": "CVE-2016-0703" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "f2c41d8c1f22980784c20b489c539cfb", + "unique_content_id": "28f16df4f3daa41f80ca706bb1da6207", "aliases": [ - "CVE-2014-3510", - "VC-OPENSSL-20140806-CVE-2014-3510" + "CVE-2016-0704", + "VC-OPENSSL-20160301-CVE-2016-0704" ], - "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.", + "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": { @@ -6538,8 +6094,20 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8zb", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y|0.9.8za" + "fixed_version": "0.9.8zf", + "affected_version_range": "vers:openssl/0.9.8|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.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": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": { @@ -6550,8 +6118,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -6562,31 +6130,36 @@ "namespace": null, "qualifiers": null }, - "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.2a", + "affected_version_range": "vers:openssl/1.0.2" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3510", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0704", "severities": [], - "reference_id": "CVE-2014-3510" + "reference_id": "CVE-2016-0704" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "9538bc3461d96c2b21db3c1fac24baa1", + "unique_content_id": "9ebc8678fd2c195b8484447652f18ad9", "aliases": [ - "CVE-2014-3511", - "VC-OPENSSL-20140806-CVE-2014-3511" + "CVE-2016-0705", + "VC-OPENSSL-20160301-CVE-2016-0705" ], - "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.", + "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": { @@ -6597,32 +6170,9 @@ "namespace": null, "qualifiers": null }, - "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-3511", - "severities": [], - "reference_id": "CVE-2014-3511" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2014-08-06T00:00:00+00:00" - }, - { - "unique_content_id": "69b45e7fa2c0b4fb073a8b82849decbd", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -6632,31 +6182,36 @@ "namespace": null, "qualifiers": null }, - "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.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-2014-3512", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0705", "severities": [], - "reference_id": "CVE-2014-3512" + "reference_id": "CVE-2016-0705" }, { - "url": "https://www.openssl.org/news/secadv/20140806.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-08-06T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "2ec1914c66b9d7965fca6a0e0bf6c0ec", + "unique_content_id": "4122befa930618fe84e02259b2e79562", "aliases": [ - "CVE-2002-0655", - "VC-OPENSSL-20020730-CVE-2002-0655" + "CVE-2016-0797", + "VC-OPENSSL-20160301-CVE-2016-0797" ], - "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.", + "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": { @@ -6667,32 +6222,9 @@ "namespace": null, "qualifiers": null }, - "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-0655", - "severities": [], - "reference_id": "CVE-2002-0655" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20020730.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2002-07-30T00:00:00+00:00" - }, - { - "unique_content_id": "25d5f2c0daeaee15470dfefa43708d73", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -6702,31 +6234,36 @@ "namespace": null, "qualifiers": null }, - "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": "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-2002-0656", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0797", "severities": [], - "reference_id": "CVE-2002-0656" + "reference_id": "CVE-2016-0797" }, { - "url": "https://www.openssl.org/news/secadv/20020730.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2002-07-30T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "c98c11a31d0c05afb57039eac59ae4b1", + "unique_content_id": "64f9fb4fe274a7cc9baa68f4af887e48", "aliases": [ - "CVE-2002-0657", - "VC-OPENSSL-20020730-CVE-2002-0657" + "CVE-2016-0798", + "VC-OPENSSL-20160301-CVE-2016-0798" ], - "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", + "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": { @@ -6737,32 +6274,9 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7", - "affected_version_range": "vers:openssl/0.9.7-beta3" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2002-0657", - "severities": [], - "reference_id": "CVE-2002-0657" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20020730.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2002-07-30T00:00:00+00:00" - }, - { - "unique_content_id": "cb80d3d5cbb3cecb0f4a3288931c2ed3", - "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": [ { "package": { "name": "openssl", @@ -6772,31 +6286,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6e", - "affected_version_range": "vers:openssl/0.9.6a|0.9.6b|0.9.6c|0.9.6d" + "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-2002-0659", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0798", "severities": [], - "reference_id": "CVE-2002-0659" + "reference_id": "CVE-2016-0798" }, { - "url": "https://www.openssl.org/news/secadv/20020730.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2002-07-30T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "e030092a3a2d0cce363e5f70220b78dd", + "unique_content_id": "023db760fe535a1ea9f85b3938912aee", "aliases": [ - "CVE-2002-1568", - "VC-OPENSSL-20020808-CVE-2002-1568" + "CVE-2016-0799", + "VC-OPENSSL-20160301-CVE-2016-0799" ], - "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.", + "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": { @@ -6807,31 +6326,48 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6f", - "affected_version_range": "vers:openssl/0.9.6e" + "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": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2002-1568", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0799", "severities": [], - "reference_id": "CVE-2002-1568" + "reference_id": "CVE-2016-0799" }, { - "url": "https://github.com/openssl/openssl/commit/517a0e7fa0f5453c860a3aec17b678bd55d5aad7", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2002-08-08T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "73a5c0c4082149dea0cc58110cce5240", + "unique_content_id": "3506496e68899788f662b53b00128361", "aliases": [ - "CVE-2003-0078", - "VC-OPENSSL-20030219-CVE-2003-0078" + "CVE-2016-0800", + "VC-OPENSSL-20160301-CVE-2016-0800" ], - "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.\"", + "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": { @@ -6842,8 +6378,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7a", - "affected_version_range": "vers:openssl/0.9.7" + "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": { @@ -6854,31 +6390,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6i", - "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" + "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-2003-0078", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-0800", "severities": [], - "reference_id": "CVE-2003-0078" + "reference_id": "CVE-2016-0800" }, { - "url": "https://www.openssl.org/news/secadv/20030219.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160301.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2003-02-19T00:00:00+00:00" + "date_published": "2016-03-01T00:00:00+00:00" }, { - "unique_content_id": "55cc2fb9b51cb4777fe7ea4b98a45853", + "unique_content_id": "b6ddcacc7a2ddbd149943494239f9247", "aliases": [ - "CVE-2003-0131", - "VC-OPENSSL-20030319-CVE-2003-0131" + "CVE-2016-2105", + "VC-OPENSSL-20160503-CVE-2016-2105" ], - "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\"", + "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": { @@ -6889,8 +6430,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6j", - "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" + "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": { @@ -6901,31 +6442,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7b", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a" + "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-2003-0131", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2105", "severities": [], - "reference_id": "CVE-2003-0131" + "reference_id": "CVE-2016-2105" }, { - "url": "https://www.openssl.org/news/secadv/20030319.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2003-03-19T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "63a8a6e8a2dbde22c68815ec8fa6e1b5", + "unique_content_id": "781c7572161ca98b06d842d4f7b7b225", "aliases": [ - "CVE-2003-0147", - "VC-OPENSSL-20030314-CVE-2003-0147" + "CVE-2016-2106", + "VC-OPENSSL-20160503-CVE-2016-2106" ], - "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).", + "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": [ { "package": { @@ -6936,8 +6482,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6j", - "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" + "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": { @@ -6948,31 +6494,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7b", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a" + "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-2003-0147", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2106", "severities": [], - "reference_id": "CVE-2003-0147" + "reference_id": "CVE-2016-2106" }, { - "url": "https://www.openssl.org/news/secadv/20030317.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2003-03-14T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "aebb33e7fbb490eac9a8a617fc0d7ca3", + "unique_content_id": "9ce420ee730c963d702844541a8114f7", "aliases": [ - "CVE-2003-0543", - "VC-OPENSSL-20030930-CVE-2003-0543" + "CVE-2016-2107", + "VC-OPENSSL-20160503-CVE-2016-2107" ], - "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.", + "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": { @@ -6983,8 +6534,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -6995,31 +6546,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7c", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" + "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-2003-0543", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2107", "severities": [], - "reference_id": "CVE-2003-0543" + "reference_id": "CVE-2016-2107" }, { - "url": "https://www.openssl.org/news/secadv/20030930.txt", + "url": "https://github.com/openssl/openssl/commit/68595c0c2886e7942a14f98c17a55a88afb6c292", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2003-09-30T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "b00ab5e0ca915c6c9b2663a0ee19e472", + "unique_content_id": "bd5d8e4d20b7b4bee63e89fc6f72eed0", "aliases": [ - "CVE-2003-0544", - "VC-OPENSSL-20030930-CVE-2003-0544" + "CVE-2016-2108", + "VC-OPENSSL-20160503-CVE-2016-2108" ], - "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.", + "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": { @@ -7030,8 +6591,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7c", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b" + "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": { @@ -7042,31 +6603,36 @@ "namespace": null, "qualifiers": null }, - "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": "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-2003-0544", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2108", "severities": [], - "reference_id": "CVE-2003-0544" + "reference_id": "CVE-2016-2108" }, { - "url": "https://www.openssl.org/news/secadv/20030930.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2003-09-30T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "9ae2c602beabf73d535f1933f2bdee91", + "unique_content_id": "1ced378b9cb095d0a76f3485e8316088", "aliases": [ - "CVE-2003-0545", - "VC-OPENSSL-20030930-CVE-2003-0545" + "CVE-2016-2109", + "VC-OPENSSL-20160503-CVE-2016-2109" ], - "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.", + "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": { @@ -7077,32 +6643,9 @@ "namespace": null, "qualifiers": null }, - "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-0545", - "severities": [], - "reference_id": "CVE-2003-0545" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20030930.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2003-09-30T00:00:00+00:00" - }, - { - "unique_content_id": "b9dbe99eb99cff6623b2f07bda3db3e1", - "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": [ { "package": { "name": "openssl", @@ -7112,31 +6655,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6l", - "affected_version_range": "vers:openssl/0.9.6k" + "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-2003-0851", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2109", "severities": [], - "reference_id": "CVE-2003-0851" + "reference_id": "CVE-2016-2109" }, { - "url": "https://www.openssl.org/news/secadv/20031104.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2003-11-04T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "b1b17735ced56629f76d4ad4156b9bce", + "unique_content_id": "9b9919e189c74dff3679b483dbff020c", "aliases": [ - "CVE-2008-1672", - "VC-OPENSSL-20080528-CVE-2008-1672" + "CVE-2016-2176", + "VC-OPENSSL-20160503-CVE-2016-2176" ], - "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.", + "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": { @@ -7147,31 +6695,48 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8h", - "affected_version_range": "vers:openssl/0.9.8f|0.9.8g" + "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": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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-2008-1672", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2176", "severities": [], - "reference_id": "CVE-2008-1672" + "reference_id": "CVE-2016-2176" }, { - "url": "https://www.openssl.org/news/secadv/20080528.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160503.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2008-05-28T00:00:00+00:00" + "date_published": "2016-05-03T00:00:00+00:00" }, { - "unique_content_id": "0399fccd94425e8afdd33ffc49edcf87", + "unique_content_id": "500a5ad0983e23c65276ed2c79752320", "aliases": [ - "CVE-2004-0079", - "VC-OPENSSL-20040317-CVE-2004-0079" + "CVE-2016-2177", + "VC-OPENSSL-20160601-CVE-2016-2177" ], - "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.", + "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": [ { "package": { @@ -7182,8 +6747,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6m", - "affected_version_range": "vers:openssl/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" + "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": { @@ -7194,31 +6759,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7d", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c" + "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-2004-0079", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2177", "severities": [], - "reference_id": "CVE-2004-0079" + "reference_id": "CVE-2016-2177" }, { - "url": "https://www.openssl.org/news/secadv/20040317.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2004-03-17T00:00:00+00:00" + "date_published": "2016-06-01T00:00:00+00:00" }, { - "unique_content_id": "04baadb0909239aa63250f8148b840e4", + "unique_content_id": "8c53a0b019fbf0bcb4bcafc9dfab395b", "aliases": [ - "CVE-2004-0081", - "VC-OPENSSL-20040317-CVE-2004-0081" + "CVE-2016-2178", + "VC-OPENSSL-20160607-CVE-2016-2178" ], - "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).", + "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": [ { "package": { @@ -7229,32 +6799,9 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6d", - "affected_version_range": "vers:openssl/0.9.6|0.9.6a|0.9.6b|0.9.6c" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2004-0081", - "severities": [], - "reference_id": "CVE-2004-0081" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20030317.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2004-03-17T00:00:00+00:00" - }, - { - "unique_content_id": "e11001942f7918509fd2391a2595d3c8", - "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": [ { "package": { "name": "openssl", @@ -7264,31 +6811,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7d", - "affected_version_range": "vers:openssl/0.9.7a|0.9.7b|0.9.7c" + "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-2004-0112", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2178", "severities": [], - "reference_id": "CVE-2004-0112" + "reference_id": "CVE-2016-2178" }, { - "url": "https://www.openssl.org/news/secadv/20040317.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2004-03-17T00:00:00+00:00" + "date_published": "2016-06-07T00:00:00+00:00" }, { - "unique_content_id": "fa1f3146fe26d34512d73ade9810b151", + "unique_content_id": "24b08c44925cb56c17de3217453060b4", "aliases": [ - "CVE-2004-0975", - "VC-OPENSSL-20040930-CVE-2004-0975" + "CVE-2016-2179", + "VC-OPENSSL-20160822-CVE-2016-2179" ], - "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.", + "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": { @@ -7299,8 +6851,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7f", - "affected_version_range": "vers:openssl/0.9.7|0.9.7a|0.9.7b|0.9.7c|0.9.7d|0.9.7e" + "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": { @@ -7311,31 +6863,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.6-cvs", - "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" + "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-2004-0975", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2179", "severities": [], - "reference_id": "CVE-2004-0975" + "reference_id": "CVE-2016-2179" }, { - "url": "https://github.com/openssl/openssl/commit/5fee606442a6738fd06a756d7076be53b7b7734c", + "url": "https://github.com/openssl/openssl/commit/00a4c1421407b6ac796688871b0a49a179c694d9", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/26f2c5774f117aea588e8f31fad38bcf14e83bec", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2004-09-30T00:00:00+00:00" + "date_published": "2016-08-22T00:00:00+00:00" }, { - "unique_content_id": "6d92ea5ca68aae26e71ee69b0343b3a5", + "unique_content_id": "5986971c9c473f1d3566a00414e0b9ca", "aliases": [ - "CVE-2005-2969", - "VC-OPENSSL-20051011-CVE-2005-2969" + "CVE-2016-2180", + "VC-OPENSSL-20160722-CVE-2016-2180" ], - "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.", + "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": { @@ -7346,20 +6913,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.7h", - "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" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8a", - "affected_version_range": "vers:openssl/0.9.8" + "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": { @@ -7370,31 +6925,36 @@ "namespace": null, "qualifiers": null }, - "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" + "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-2005-2969", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2180", "severities": [], - "reference_id": "CVE-2005-2969" + "reference_id": "CVE-2016-2180" }, { - "url": "https://www.openssl.org/news/secadv/20051011.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2005-10-11T00:00:00+00:00" + "date_published": "2016-07-22T00:00:00+00:00" }, { - "unique_content_id": "6213f8e51cb9850bd2d59065aecdf0cd", + "unique_content_id": "13ac05f02e4c5a6ca138752d07b786ba", "aliases": [ - "CVE-2006-4339", - "VC-OPENSSL-20060905-CVE-2006-4339" + "CVE-2016-2181", + "VC-OPENSSL-20160819-CVE-2016-2181" ], - "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.", + "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": [ { "package": { @@ -7405,20 +6965,8 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8c", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b" + "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": { @@ -7429,31 +6977,46 @@ "namespace": null, "qualifiers": null }, - "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" + "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-2006-4339", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2181", "severities": [], - "reference_id": "CVE-2006-4339" + "reference_id": "CVE-2016-2181" }, { - "url": "https://www.openssl.org/news/secadv/20060905.txt", + "url": "https://github.com/openssl/openssl/commit/b77ab018b79a00f789b0fb85596b446b08be4c9d", "severities": [], "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/3884b47b7c255c2e94d9b387ee83c7e8bb981258", + "severities": [], + "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2006-09-05T00:00:00+00:00" + "date_published": "2016-08-19T00:00:00+00:00" }, { - "unique_content_id": "69a5e64b56819419f55c40d5db981710", + "unique_content_id": "9a6095f3c1e00841abe8214157684780", "aliases": [ - "CVE-2006-2937", - "VC-OPENSSL-20060928-CVE-2006-2937" + "CVE-2016-2182", + "VC-OPENSSL-20160816-CVE-2016-2182" ], - "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", + "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": { @@ -7464,8 +7027,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -7476,31 +7039,36 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8d", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" + "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-2006-2937", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-2182", "severities": [], - "reference_id": "CVE-2006-2937" + "reference_id": "CVE-2016-2182" }, { - "url": "https://www.openssl.org/news/secadv/20060928.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2006-09-28T00:00:00+00:00" + "date_published": "2016-08-16T00:00:00+00:00" }, { - "unique_content_id": "12536462776dc0fec2a706166cccb41f", + "unique_content_id": "fe925b287358f673a6f05a7b1f1022ab", "aliases": [ - "CVE-2006-2940", - "VC-OPENSSL-20060928-CVE-2006-2940" + "CVE-2016-2183", + "VC-OPENSSL-20160824-CVE-2016-2183" ], - "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.", + "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": { @@ -7511,9 +7079,37 @@ "namespace": null, "qualifiers": null }, - "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": "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" }, + { + "url": "https://www.openssl.org/blog/blog/2016/08/24/sweet32/", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2016-08-24T00:00:00+00:00" + }, + { + "unique_content_id": "d4f9fae37ae59e002b9b8645640f2c92", + "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": [ { "package": { "name": "openssl", @@ -7523,8 +7119,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8d", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" + "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": { @@ -7535,31 +7131,46 @@ "namespace": null, "qualifiers": null }, - "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" + "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-2006-2940", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6302", "severities": [], - "reference_id": "CVE-2006-2940" + "reference_id": "CVE-2016-6302" }, { - "url": "https://www.openssl.org/news/secadv/20060928.txt", + "url": "https://github.com/openssl/openssl/commit/1bbe48ab149893a78bf99c8eb8895c928900a16f", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/baaabfd8fdcec04a691695fad9a664bea43202b6", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2006-09-28T00:00:00+00:00" + "date_published": "2016-08-23T00:00:00+00:00" }, { - "unique_content_id": "5a1555075a1a07181596e9ee755176d2", + "unique_content_id": "06439c697462c5961b77d77aa81ae32e", "aliases": [ - "CVE-2006-3738", - "VC-OPENSSL-20060928-CVE-2006-3738" + "CVE-2016-6303", + "VC-OPENSSL-20160824-CVE-2016-6303" ], - "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.", + "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": [ { "package": { @@ -7570,20 +7181,8 @@ "namespace": null, "qualifiers": null }, - "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": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8d", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" + "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": { @@ -7594,31 +7193,46 @@ "namespace": null, "qualifiers": null }, - "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" + "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-2006-3738", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6303", "severities": [], - "reference_id": "CVE-2006-3738" + "reference_id": "CVE-2016-6303" }, { - "url": "https://www.openssl.org/news/secadv/20060928.txt", + "url": "https://github.com/openssl/openssl/commit/2b4029e68fd7002d2307e6c3cde0f3784eef9c83", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/1027ad4f34c30b8585592764b9a670ba36888269", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2006-09-28T00:00:00+00:00" + "date_published": "2016-08-24T00:00:00+00:00" }, { - "unique_content_id": "b8fcc1e274575002715a347b125ae8e4", + "unique_content_id": "2aec13966ccec41c3e9b7654a382cdf5", "aliases": [ - "CVE-2006-4343", - "VC-OPENSSL-20060928-CVE-2006-4343" + "CVE-2016-6304", + "VC-OPENSSL-20160922-CVE-2016-6304" ], - "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.", + "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": { @@ -7629,8 +7243,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -7641,8 +7255,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8d", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c" + "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": { @@ -7653,66 +7267,51 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2006-4343", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6304", "severities": [], - "reference_id": "CVE-2006-4343" + "reference_id": "CVE-2016-6304" }, { - "url": "https://www.openssl.org/news/secadv/20060928.txt", + "url": "https://github.com/openssl/openssl/commit/2c0d295e26306e15a92eb23a84a1802005c1c137", "severities": [], "reference_id": "" - } - ], - "date_published": "2006-09-28T00:00:00+00:00" - }, - { - "unique_content_id": "ce7a360e61885d4a980deb76217c0d60", - "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": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8f", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e" - } - ], - "references": [ + }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-4995", + "url": "https://github.com/openssl/openssl/commit/ea39b16b71e4e72a228a4535bd6d6a02c5edbc1f", "severities": [], - "reference_id": "CVE-2007-4995" + "reference_id": "" }, { - "url": "https://www.openssl.org/news/secadv/20071012.txt", + "url": "https://github.com/openssl/openssl/commit/a59ab1c4dd27a4c7c6e88f3c33747532fd144412", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2007-10-12T00:00:00+00:00" + "date_published": "2016-09-22T00:00:00+00:00" }, { - "unique_content_id": "70a70192d83214d772289d57dae1ee61", + "unique_content_id": "9f60c84f86e5950759cfb1e4239dc8da", "aliases": [ - "CVE-2007-5135", - "VC-OPENSSL-20071012-CVE-2007-5135" + "CVE-2016-6305", + "VC-OPENSSL-20160922-CVE-2016-6305" ], - "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.", + "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": { @@ -7723,31 +7322,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8f", - "affected_version_range": "vers:openssl/0.9.8|0.9.8a|0.9.8b|0.9.8c|0.9.8d|0.9.8e" + "fixed_version": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2007-5135", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6305", "severities": [], - "reference_id": "CVE-2007-5135" + "reference_id": "CVE-2016-6305" }, { - "url": "https://www.openssl.org/news/secadv/20071012.txt", + "url": "https://github.com/openssl/openssl/commit/63658103d4441924f8dbfc517b99bb54758a98b9", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2007-10-12T00:00:00+00:00" + "date_published": "2016-09-22T00:00:00+00:00" }, { - "unique_content_id": "0b092b26a3a1c75112d186f6cdd60ff7", + "unique_content_id": "c9c1774d70e4979b79499ec6ff533f9a", "aliases": [ - "CVE-2008-5077", - "VC-OPENSSL-20090107-CVE-2008-5077" + "CVE-2016-6306", + "VC-OPENSSL-20160921-CVE-2016-6306" ], - "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.", + "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": { @@ -7758,32 +7367,9 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8j", - "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" - } - ], - "references": [ - { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2008-5077", - "severities": [], - "reference_id": "CVE-2008-5077" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20090107.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2009-01-07T00:00:00+00:00" - }, - { - "unique_content_id": "e0b9e817cf72e4d773d890a61287bd88", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -7793,31 +7379,46 @@ "namespace": null, "qualifiers": null }, - "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": "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-2009-0590", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6306", "severities": [], - "reference_id": "CVE-2009-0590" + "reference_id": "CVE-2016-6306" }, { - "url": "https://www.openssl.org/news/secadv/20090325.txt", + "url": "https://github.com/openssl/openssl/commit/bb1a4866034255749ac578adb06a76335fc117b1", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/006a788c84e541c8920dd2ad85fb62b52185c519", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-03-25T00:00:00+00:00" + "date_published": "2016-09-21T00:00:00+00:00" }, { - "unique_content_id": "43dcbfcedcc32b87a723125d164291e1", + "unique_content_id": "2f3fe699489fab49fe5a6a4760205bf3", "aliases": [ - "CVE-2009-0591", - "VC-OPENSSL-20090325-CVE-2009-0591" + "CVE-2016-6307", + "VC-OPENSSL-20160921-CVE-2016-6307" ], - "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.", + "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": { @@ -7828,31 +7429,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8k", - "affected_version_range": "vers:openssl/0.9.8h|0.9.8i|0.9.8j" + "fixed_version": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0591", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6307", "severities": [], - "reference_id": "CVE-2009-0591" + "reference_id": "CVE-2016-6307" }, { - "url": "https://www.openssl.org/news/secadv/20090325.txt", + "url": "https://github.com/openssl/openssl/commit/4b390b6c3f8df925dc92a3dd6b022baa9a2f4650", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-03-25T00:00:00+00:00" + "date_published": "2016-09-21T00:00:00+00:00" }, { - "unique_content_id": "1e3c05fa25e14f424f2078739c0bdc60", + "unique_content_id": "4873b487950a0bb12e16171ef49a4d3c", "aliases": [ - "CVE-2009-0789", - "VC-OPENSSL-20090325-CVE-2009-0789" + "CVE-2016-6308", + "VC-OPENSSL-20160921-CVE-2016-6308" ], - "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.", + "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": { @@ -7863,31 +7474,41 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.0a", + "affected_version_range": "vers:openssl/1.1.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-0789", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6308", "severities": [], - "reference_id": "CVE-2009-0789" + "reference_id": "CVE-2016-6308" }, { - "url": "https://www.openssl.org/news/secadv/20090325.txt", + "url": "https://github.com/openssl/openssl/commit/df6b5e29ffea2d5a3e08de92fb765fdb21c7a21e", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160922.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-03-25T00:00:00+00:00" + "date_published": "2016-09-21T00:00:00+00:00" }, { - "unique_content_id": "dd6da6267d70026a558db1a116fbee2e", + "unique_content_id": "7260960e07c3ddfdd75af49a326447b5", "aliases": [ - "CVE-2009-1386", - "VC-OPENSSL-20090602-CVE-2009-1386" + "CVE-2016-6309", + "VC-OPENSSL-20160926-CVE-2016-6309" ], - "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", + "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": [ { "package": { @@ -7898,31 +7519,41 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.0b", + "affected_version_range": "vers:openssl/1.1.0a" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1386", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-6309", "severities": [], - "reference_id": "CVE-2009-1386" + "reference_id": "CVE-2016-6309" }, { - "url": "https://github.com/openssl/openssl/commit/1cbf663a6c89dcf8f7706d30a8bae675e2e0199a", + "url": "https://github.com/openssl/openssl/commit/acacbfa7565c78d2273c0b2a2e5e803f44afefeb", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160926.txt", + "severities": [ + { + "value": "Critical", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-06-02T00:00:00+00:00" + "date_published": "2016-09-26T00:00:00+00:00" }, { - "unique_content_id": "e13ddcabb53c6826afd71355212e490f", + "unique_content_id": "c0e7321626534a262329d3c9d2ce395b", "aliases": [ - "CVE-2009-3555", - "VC-OPENSSL-20091105-CVE-2009-3555" + "CVE-2016-7052", + "VC-OPENSSL-20160926-CVE-2016-7052" ], - "summary": "Implement RFC5746 to address vulnerabilities in SSL/TLS renegotiation.", + "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": { @@ -7933,31 +7564,41 @@ "namespace": null, "qualifiers": null }, - "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": "1.0.2j", + "affected_version_range": "vers:openssl/1.0.2i" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-3555", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7052", "severities": [], - "reference_id": "CVE-2009-3555" + "reference_id": "CVE-2016-7052" }, { - "url": "https://www.openssl.org/news/secadv/20091111.txt", + "url": "https://github.com/openssl/openssl/commit/6e629b5be45face20b4ca71c4fcbfed78b864a2e", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20160926.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-11-05T00:00:00+00:00" + "date_published": "2016-09-26T00:00:00+00:00" }, { - "unique_content_id": "855075369cb16f6855f37e5f18dd94aa", + "unique_content_id": "2a318491d9833a368fd374f0cd6f3d30", "aliases": [ - "CVE-2009-1387", - "VC-OPENSSL-20090205-CVE-2009-1387" + "CVE-2016-7053", + "VC-OPENSSL-20161110-CVE-2016-7053" ], - "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.", + "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": [ { "package": { @@ -7968,31 +7609,41 @@ "namespace": null, "qualifiers": null }, - "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": "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-2009-1387", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7053", "severities": [], - "reference_id": "CVE-2009-1387" + "reference_id": "CVE-2016-7053" }, { - "url": "https://web.archive.org/web/20100710092848/https://rt.openssl.org/Ticket/Display.html?id=1838", + "url": "https://github.com/openssl/openssl/commit/610b66267e41a32805ab54cbc580c5a6d5826cb4", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20161110.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-02-05T00:00:00+00:00" + "date_published": "2016-11-10T00:00:00+00:00" }, { - "unique_content_id": "10ae2d0da4aa9205aaded1b081eb1b25", + "unique_content_id": "030f10739bdaba22d1d6645e64f07517", "aliases": [ - "CVE-2009-1377", - "VC-OPENSSL-20090512-CVE-2009-1377" + "CVE-2016-7054", + "VC-OPENSSL-20161110-CVE-2016-7054" ], - "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.", + "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": { @@ -8003,36 +7654,41 @@ "namespace": null, "qualifiers": null }, - "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": "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-2009-1377", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7054", "severities": [], - "reference_id": "CVE-2009-1377" + "reference_id": "CVE-2016-7054" }, { - "url": "https://github.com/openssl/openssl/commit/88b48dc68024dcc437da4296c9fb04419b0ccbe1", + "url": "https://github.com/openssl/openssl/commit/99d97842ddb5fbbbfb5e9820a64ebd19afe569f6", "severities": [], "reference_id": "" }, { - "url": "https://web.archive.org/web/20120306065500/http://rt.openssl.org/Ticket/Display.html?id=1930&user=guest&pass=guest", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20161110.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2009-05-12T00:00:00+00:00" + "date_published": "2016-11-10T00:00:00+00:00" }, { - "unique_content_id": "2b4e1b73c41a5e2fd1e5ec5acd53085f", + "unique_content_id": "3608a808a8a6b24e46ee057009635f06", "aliases": [ - "CVE-2009-1378", - "VC-OPENSSL-20090512-CVE-2009-1378" + "CVE-2016-7055", + "VC-OPENSSL-20161110-CVE-2016-7055" ], - "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.", + "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": [ { "package": { @@ -8043,36 +7699,58 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.0c", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2k", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1378", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2016-7055", "severities": [], - "reference_id": "CVE-2009-1378" + "reference_id": "CVE-2016-7055" }, { - "url": "https://github.com/openssl/openssl/commit/abda7c114791fa7fe95672ec7a66fc4733c40dbc", + "url": "https://github.com/openssl/openssl/commit/2a7dd548a6f5d6f7f84a89c98323b70a2822406e", "severities": [], "reference_id": "" }, { - "url": "https://web.archive.org/web/20101120211136/http://rt.openssl.org/Ticket/Display.html?id=1931&user=guest&pass=guest", + "url": "https://github.com/openssl/openssl/commit/57c4b9f6a2f800b41ce2836986fe33640f6c3f8a", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20161110.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2009-05-12T00:00:00+00:00" + "date_published": "2016-11-10T00:00:00+00:00" }, { - "unique_content_id": "2479cc3b4b0c5a64f6af5fe00d4bb334", + "unique_content_id": "a0447ff218665545b036454e89ab3da8", "aliases": [ - "CVE-2009-1379", - "VC-OPENSSL-20090512-CVE-2009-1379" + "CVE-2017-3730", + "VC-OPENSSL-20170126-CVE-2017-3730" ], - "summary": "Use-after-free vulnerability in the dtls1_retrieve_buffered_fragment function could cause a client accessing a malicious DTLS server to crash.", + "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": [ { "package": { @@ -8083,36 +7761,41 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.0d", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-1379", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3730", "severities": [], - "reference_id": "CVE-2009-1379" + "reference_id": "CVE-2017-3730" }, { - "url": "https://github.com/openssl/openssl/commit/561cbe567846a376153bea7f1f2d061e78029c2d", + "url": "https://github.com/openssl/openssl/commit/efbe126e3ebb9123ac9d058aa2bb044261342aaa", "severities": [], "reference_id": "" }, { - "url": "https://web.archive.org/web/20100824233642/http://rt.openssl.org/Ticket/Display.html?id=1923&user=guest&pass=guest", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20170126.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2009-05-12T00:00:00+00:00" + "date_published": "2017-01-26T00:00:00+00:00" }, { - "unique_content_id": "7623cc9fdf2c1a033ae13b9c4f85c216", + "unique_content_id": "ceedb280a4d99109a26884ac4ec190fd", "aliases": [ - "CVE-2009-4355", - "VC-OPENSSL-20100113-CVE-2009-4355" + "CVE-2017-3731", + "VC-OPENSSL-20170126-CVE-2017-3731" ], - "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.", + "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": { @@ -8123,31 +7806,58 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.0d", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2k", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2009-4355", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3731", "severities": [], - "reference_id": "CVE-2009-4355" + "reference_id": "CVE-2017-3731" }, { - "url": "https://github.com/openssl/openssl/commit/1b31b5ad560b16e2fe1cad54a755e3e6b5e778a3", + "url": "https://github.com/openssl/openssl/commit/00d965474b22b54e4275232bc71ee0c699c5cd21", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/51d009043670a627d6abe66894126851cf3690e9", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20170126.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-01-13T00:00:00+00:00" + "date_published": "2017-01-26T00:00:00+00:00" }, { - "unique_content_id": "cd5a928e754a81fe78d2ff793fd9fe5c", + "unique_content_id": "706dd13f07097397f57b882c363f9119", "aliases": [ - "CVE-2009-3245", - "VC-OPENSSL-20100223-CVE-2009-3245" + "CVE-2017-3732", + "VC-OPENSSL-20170126-CVE-2017-3732" ], - "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", + "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": { @@ -8158,32 +7868,9 @@ "namespace": null, "qualifiers": null }, - "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-3245", - "severities": [], - "reference_id": "CVE-2009-3245" + "fixed_version": "1.1.0d", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c" }, - { - "url": "https://github.com/openssl/openssl/commit/7e4cae1d2f555cbe9226b377aff4b56c9f7ddd4d", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2010-02-23T00:00:00+00:00" - }, - { - "unique_content_id": "f93465ffe5c17257ebdf5801edd6c8e7", - "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", - "affected_packages": [ { "package": { "name": "openssl", @@ -8193,31 +7880,46 @@ "namespace": null, "qualifiers": null }, - "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": "1.0.2k", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0433", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3732", "severities": [], - "reference_id": "CVE-2010-0433" + "reference_id": "CVE-2017-3732" }, { - "url": "https://github.com/openssl/openssl/commit/cca1cd9a3447dd067503e4a85ebd1679ee78a48e", + "url": "https://github.com/openssl/openssl/commit/a59b90bf491410f1f2bc4540cc21f1980fd14c5b", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/760d04342a495ee86bf5adc71a91d126af64397f", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20170126.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-01-19T00:00:00+00:00" + "date_published": "2017-01-26T00:00:00+00:00" }, { - "unique_content_id": "1c2ec8085e7e8589e189bc816ea6e4f8", + "unique_content_id": "526e150a2c030026d5cf82c511df7592", "aliases": [ - "CVE-2010-0740", - "VC-OPENSSL-20100324-CVE-2010-0740" + "CVE-2017-3733", + "VC-OPENSSL-20170216-CVE-2017-3733" ], - "summary": "In TLS connections, certain incorrectly formatted records can cause an OpenSSL client or server to crash due to a read attempt at NULL.", + "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": [ { "package": { @@ -8228,31 +7930,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8n", - "affected_version_range": "vers:openssl/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": "1.1.0e", + "affected_version_range": "vers:openssl/1.1.0|1.1.0a|1.1.0b|1.1.0c|1.1.0d" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0740", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3733", "severities": [], - "reference_id": "CVE-2010-0740" + "reference_id": "CVE-2017-3733" }, { - "url": "https://www.openssl.org/news/secadv/20100324.txt", + "url": "https://github.com/openssl/openssl/commit/4ad93618d26a3ea23d36ad5498ff4f59eff3a4d2", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20170216.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-03-24T00:00:00+00:00" + "date_published": "2017-02-16T00:00:00+00:00" }, { - "unique_content_id": "10a8d75d89e03a7e1b68c7de54099ca7", + "unique_content_id": "88bc79e6adf5370cba696aa64de2abfb", "aliases": [ - "CVE-2010-0742", - "VC-OPENSSL-20100601-CVE-2010-0742" + "CVE-2017-3735", + "VC-OPENSSL-20170828-CVE-2017-3735" ], - "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.", + "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": [ { "package": { @@ -8263,8 +7975,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0a", - "affected_version_range": "vers:openssl/1.0.0" + "fixed_version": "1.1.0g", + "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" }, { "package": { @@ -8275,66 +7987,46 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "1.0.2m", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-0742", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3735", "severities": [], - "reference_id": "CVE-2010-0742" + "reference_id": "CVE-2017-3735" }, { - "url": "https://www.openssl.org/news/secadv/20100601.txt", + "url": "https://github.com/openssl/openssl/commit/31c8b265591a0aaa462a1f3eb5770661aaac67db", "severities": [], "reference_id": "" - } - ], - "date_published": "2010-06-01T00:00:00+00:00" - }, - { - "unique_content_id": "a2f368d38ceb728d8725aff53b981893", - "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.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.0.0a", - "affected_version_range": "vers:openssl/1.0.0" - } - ], - "references": [ + }, { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-1633", + "url": "https://github.com/openssl/openssl/commit/068b963bb7afc57f5bdd723de0dd15e7795d5822", "severities": [], - "reference_id": "CVE-2010-1633" + "reference_id": "" }, { - "url": "https://www.openssl.org/news/secadv/20100601.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20170828.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2010-06-01T00:00:00+00:00" + "date_published": "2017-08-28T00:00:00+00:00" }, { - "unique_content_id": "c59743251b77735f296be0f67fead428", + "unique_content_id": "3fd442d507f8355357aed257f3be199d", "aliases": [ - "CVE-2010-3864", - "VC-OPENSSL-20101116-CVE-2010-3864" + "CVE-2017-3736", + "VC-OPENSSL-20171102-CVE-2017-3736" ], - "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.", + "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": [ { "package": { @@ -8345,8 +8037,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8p", - "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" + "fixed_version": "1.1.0g", + "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" }, { "package": { @@ -8357,31 +8049,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0b", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a" + "fixed_version": "1.0.2m", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-3864", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3736", "severities": [], - "reference_id": "CVE-2010-3864" + "reference_id": "CVE-2017-3736" }, { - "url": "https://www.openssl.org/news/secadv/20101116.txt", + "url": "https://github.com/openssl/openssl/commit/38d600147331d36e74174ebbd4008b63188b321b", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/4443cf7aa0099e5ce615c18cee249fff77fb0871", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20171102.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-11-16T00:00:00+00:00" + "date_published": "2017-11-02T00:00:00+00:00" }, { - "unique_content_id": "c8d35a8e132ea021df593dbfa90519fe", + "unique_content_id": "c325238786ca680793125f8be9b90666", "aliases": [ - "CVE-2010-4252", - "VC-OPENSSL-20101202-CVE-2010-4252" + "CVE-2017-3737", + "VC-OPENSSL-20171207-CVE-2017-3737" ], - "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.", + "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": [ { "package": { @@ -8392,31 +8099,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0c", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b" + "fixed_version": "1.0.2n", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-4252", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3737", "severities": [], - "reference_id": "CVE-2010-4252" + "reference_id": "CVE-2017-3737" }, { - "url": "https://www.openssl.org/news/secadv/20101202.txt", + "url": "https://github.com/openssl/openssl/commit/898fb884b706aaeb283de4812340bb0bde8476dc", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20171207.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-12-02T00:00:00+00:00" + "date_published": "2017-12-07T00:00:00+00:00" }, { - "unique_content_id": "e4b73e603cc3582c869a0225260b68f2", + "unique_content_id": "6b50c66357f3abbbe4ff41ad12791fd9", "aliases": [ - "CVE-2010-4180", - "VC-OPENSSL-20101202-CVE-2010-4180" + "CVE-2017-3738", + "VC-OPENSSL-20171207-CVE-2017-3738" ], - "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).", + "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": [ { "package": { @@ -8427,8 +8144,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8q", - "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" + "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": { @@ -8439,31 +8156,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0c", - "affected_version_range": "vers:openssl/1.0.0|1.0.0a|1.0.0b" + "fixed_version": "1.0.2n", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-4180", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2017-3738", "severities": [], - "reference_id": "CVE-2010-4180" + "reference_id": "CVE-2017-3738" }, { - "url": "https://www.openssl.org/news/secadv/20101202.txt", + "url": "https://github.com/openssl/openssl/commit/ca51bafc1a88d8b8348f5fd97adc5d6ca93f8e76", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/e502cc86df9dafded1694fceb3228ee34d11c11a", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20171207.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2010-12-02T00:00:00+00:00" + "date_published": "2017-12-07T00:00:00+00:00" }, { - "unique_content_id": "54c01172e2e79e9e75d62960fb3f3ca3", + "unique_content_id": "1c0b39742398a6ee6180477140815f3c", "aliases": [ - "CVE-2011-3207", - "VC-OPENSSL-20110906-CVE-2011-3207" + "CVE-2018-0732", + "VC-OPENSSL-20180612-CVE-2018-0732" ], - "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.", + "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": { @@ -8474,32 +8206,9 @@ "namespace": null, "qualifiers": null }, - "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" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20110906.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2011-09-06T00:00:00+00:00" - }, - { - "unique_content_id": "92951f2a40936d95d72816f0d2998000", - "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.", - "affected_packages": [ { "package": { "name": "openssl", @@ -8509,31 +8218,46 @@ "namespace": null, "qualifiers": null }, - "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.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-2012-0027", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0732", "severities": [], - "reference_id": "CVE-2012-0027" + "reference_id": "CVE-2018-0732" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://github.com/openssl/openssl/commit/ea7abeeabf92b7aca160bdd0208636d4da69f4f4", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/3984ef0b72831da8b3ece4745cac4f8575b19098", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20180612.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-06-12T00:00:00+00:00" }, { - "unique_content_id": "0b591f3a423642028bd7610a4c0c4c8b", + "unique_content_id": "511c78e495eb70feae6bf315b747e4f3", "aliases": [ - "CVE-2011-3210", - "VC-OPENSSL-20110906-CVE-2011-3210" + "CVE-2018-0733", + "VC-OPENSSL-20180327-CVE-2018-0733" ], - "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.", + "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": { @@ -8544,43 +8268,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": null, - "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", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.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-2011-3210", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0733", "severities": [], - "reference_id": "CVE-2011-3210" + "reference_id": "CVE-2018-0733" }, { - "url": "https://www.openssl.org/news/secadv/20110906.txt", + "url": "https://github.com/openssl/openssl/commit/56d5a4bfcaf37fa420aef2bb881aa55e61cf5f2f", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20180327.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2011-09-06T00:00:00+00:00" + "date_published": "2018-03-27T00:00:00+00:00" }, { - "unique_content_id": "600af49289d67cfbc3327ab07d7ad2e4", + "unique_content_id": "560c315c120edfe0bbd8c9146854a53f", "aliases": [ - "CVE-2011-4108", - "VC-OPENSSL-20120104-CVE-2011-4108" + "CVE-2018-0734", + "VC-OPENSSL-20181030-CVE-2018-0734" ], - "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.", + "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": { @@ -8591,8 +8313,8 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.1a", + "affected_version_range": "vers:openssl/1.1.1" }, { "package": { @@ -8603,32 +8325,9 @@ "namespace": null, "qualifiers": null }, - "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-2011-4108", - "severities": [], - "reference_id": "CVE-2011-4108" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20120104.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2012-01-04T00:00:00+00:00" - }, - { - "unique_content_id": "7807545a105e79cf1c8b50521641e613", - "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": [ { "package": { "name": "openssl", @@ -8638,31 +8337,51 @@ "namespace": null, "qualifiers": null }, - "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": "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-2011-4109", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0734", "severities": [], - "reference_id": "CVE-2011-4109" + "reference_id": "CVE-2018-0734" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://github.com/openssl/openssl/commit/8abfe72e8c1de1b95f50aa0d9134803b4d00070f", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/ef11e19d1365eea2b1851e6f540a0bf365d303e7", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/43e6a58d4991a451daf4891ff05a48735df871ac", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20181030.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-10-30T00:00:00+00:00" }, { - "unique_content_id": "ad9473b31be72e89afbe9ad718a72e00", + "unique_content_id": "258fbaa0014921327e197180e1a9c168", "aliases": [ - "CVE-2011-4576", - "VC-OPENSSL-20120104-CVE-2011-4576" + "CVE-2018-0735", + "VC-OPENSSL-20181029-CVE-2018-0735" ], - "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.", + "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": { @@ -8673,8 +8392,8 @@ "namespace": null, "qualifiers": null }, - "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": "1.1.1a", + "affected_version_range": "vers:openssl/1.1.1" }, { "package": { @@ -8685,31 +8404,46 @@ "namespace": null, "qualifiers": null }, - "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.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-2011-4576", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0735", "severities": [], - "reference_id": "CVE-2011-4576" + "reference_id": "CVE-2018-0735" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://github.com/openssl/openssl/commit/56fb454d281a023b3f950d969693553d3f3ceea1", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/b1d6d55ece1c26fa2829e2b819b038d7b6d692b4", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20181029.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-10-29T00:00:00+00:00" }, { - "unique_content_id": "3e660791fead8dd25efecc0f283c208c", + "unique_content_id": "c3f15a1b2a0994c4d94cdd590448502e", "aliases": [ - "CVE-2011-4577", - "VC-OPENSSL-20120104-CVE-2011-4577" + "CVE-2018-0737", + "VC-OPENSSL-20180416-CVE-2018-0737" ], - "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.", + "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": { @@ -8720,8 +8454,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -8732,31 +8466,46 @@ "namespace": null, "qualifiers": null }, - "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.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-2011-4577", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0737", "severities": [], - "reference_id": "CVE-2011-4577" + "reference_id": "CVE-2018-0737" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://github.com/openssl/openssl/commit/6939eab03a6e23d2bd2c3f5e34fe1d48e542e787", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/349a41da1ad88ad87825414752a8ff5fdd6a6c3f", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20180416.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-04-16T00:00:00+00:00" }, { - "unique_content_id": "f86d2211da5a61d8e581d7b11f1908d1", + "unique_content_id": "5d79faa4a5410c3b5668f2d394e84beb", "aliases": [ - "CVE-2011-4619", - "VC-OPENSSL-20120104-CVE-2011-4619" + "CVE-2018-0739", + "VC-OPENSSL-20180327-CVE-2018-0739" ], - "summary": "Support for handshake restarts for server gated cryptograpy (SGC) can be used in a denial-of-service attack.", + "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": { @@ -8767,8 +8516,8 @@ "namespace": null, "qualifiers": null }, - "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": "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": { @@ -8779,31 +8528,46 @@ "namespace": null, "qualifiers": null }, - "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.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-2011-4619", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-0739", "severities": [], - "reference_id": "CVE-2011-4619" + "reference_id": "CVE-2018-0739" }, { - "url": "https://www.openssl.org/news/secadv/20120104.txt", + "url": "https://github.com/openssl/openssl/commit/2ac4c6f7b2b2af20c0e2b0ba05367e454cd11b33", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/9310d45087ae546e27e61ddf8f6367f29848220d", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20180327.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-03-27T00:00:00+00:00" }, { - "unique_content_id": "f50e568118ff3cbe3e7d9218d8fe8490", + "unique_content_id": "97a3816c4c8f0bd0e607a4d8a79c5ae8", "aliases": [ - "CVE-2012-0050", - "VC-OPENSSL-20120104-CVE-2012-0050" + "CVE-2018-5407", + "VC-OPENSSL-20181102-CVE-2018-5407" ], - "summary": "A flaw in the fix to CVE-2011-4108 can be exploited in a denial of service attack. Only DTLS applications are affected.", + "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": [ { "package": { @@ -8814,8 +8578,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8t", - "affected_version_range": "vers:openssl/0.9.8s" + "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": { @@ -8826,31 +8590,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0g", - "affected_version_range": "vers:openssl/1.0.0f" + "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-2012-0050", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2018-5407", "severities": [], - "reference_id": "CVE-2012-0050" + "reference_id": "CVE-2018-5407" }, { - "url": "https://www.openssl.org/news/secadv/20120118.txt", + "url": "https://github.com/openssl/openssl/commit/aab7c770353b1dc4ba045938c8fb446dd1c4531e", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/b18162a7c9bbfb57112459a4d6631fa258fd8c0cq", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20181112.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-01-04T00:00:00+00:00" + "date_published": "2018-11-02T00:00:00+00:00" }, { - "unique_content_id": "f06c70d55861fcad43368de536b9fa2b", + "unique_content_id": "3a7c4643755506fb7a1f5b64a111e894", "aliases": [ - "CVE-2012-0884", - "VC-OPENSSL-20120312-CVE-2012-0884" + "CVE-2019-1543", + "VC-OPENSSL-20190306-CVE-2019-1543" ], - "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.", + "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": [ { "package": { @@ -8861,8 +8640,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8u", - "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" + "fixed_version": "1.1.1c", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b" }, { "package": { @@ -8873,31 +8652,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.0h", - "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" + "fixed_version": "1.1.0k", + "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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2012-0884", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1543", "severities": [], - "reference_id": "CVE-2012-0884" + "reference_id": "CVE-2019-1543" }, { - "url": "https://www.openssl.org/news/secadv/20120312.txt", + "url": "https://github.com/openssl/openssl/commit/f426625b6ae9a7831010750490a5f0ad689c5ba3", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/ee22257b1418438ebaf54df98af4e24f494d1809", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190306.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-03-12T00:00:00+00:00" + "date_published": "2019-03-06T00:00:00+00:00" }, { - "unique_content_id": "c321f88c434d878975bb4654c9dd11fb", + "unique_content_id": "1f0e667392222fc1f127592636e906fa", "aliases": [ - "CVE-2011-0014", - "VC-OPENSSL-20110208-CVE-2011-0014" + "CVE-2019-1547", + "VC-OPENSSL-20190910-CVE-2019-1547" ], - "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.", + "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": { @@ -8908,8 +8702,8 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "1.1.1d", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" }, { "package": { @@ -8920,32 +8714,9 @@ "namespace": null, "qualifiers": null }, - "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-2011-0014", - "severities": [], - "reference_id": "CVE-2011-0014" + "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" }, - { - "url": "https://www.openssl.org/news/secadv/20110208.txt", - "severities": [], - "reference_id": "" - } - ], - "date_published": "2011-02-08T00:00:00+00:00" - }, - { - "unique_content_id": "4ec9eb4c6e5c622e43a6ea6ef15d52b4", - "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": [ { "package": { "name": "openssl", @@ -8955,56 +8726,52 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8w", - "affected_version_range": "vers:openssl/0.9.8" + "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-2012-2131", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1547", "severities": [], - "reference_id": "CVE-2012-2131" + "reference_id": "CVE-2019-1547" }, { - "url": "https://www.openssl.org/news/secadv/20120424.txt", + "url": "https://github.com/openssl/openssl/commit/30c22fa8b1d840036b8e203585738df62a03cec8", "severities": [], "reference_id": "" - } - ], - "date_published": "2012-04-24T00:00:00+00:00" - }, - { - "unique_content_id": "e5eb2917af2b324b45323e80a932eaac", - "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": [ + }, { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "0.9.8", - "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" + "url": "https://github.com/openssl/openssl/commit/7c1709c2da5414f5b6133d00a03fc8c5bf996c7a", + "severities": [], + "reference_id": "" }, { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.0.0i", - "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" + "url": "https://github.com/openssl/openssl/commit/21c856b75d81eff61aa63b4f036bb64a85bf6d46", + "severities": [], + "reference_id": "" }, + { + "url": "https://www.openssl.org/news/secadv/20190910.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2019-09-10T00:00:00+00:00" + }, + { + "unique_content_id": "7fadac522d658facb12f299bb48ba2ec", + "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", @@ -9014,31 +8781,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1a", - "affected_version_range": "vers:openssl/1.0.1" + "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-2012-2110", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1549", "severities": [], - "reference_id": "CVE-2012-2110" + "reference_id": "CVE-2019-1549" }, { - "url": "https://www.openssl.org/news/secadv/20120419.txt", + "url": "https://github.com/openssl/openssl/commit/1b0fe00e2704b5e20334a16d3c9099d1ba2ef1be", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190910.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-04-19T00:00:00+00:00" + "date_published": "2019-09-10T00:00:00+00:00" }, { - "unique_content_id": "6a0035c2e08c94d1f96c341c1c65308e", + "unique_content_id": "86be7ce8b4721b777ef32dd64df3edf4", "aliases": [ - "CVE-2012-2333", - "VC-OPENSSL-20120510-CVE-2012-2333" + "CVE-2019-1551", + "VC-OPENSSL-20191206-CVE-2019-1551" ], - "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.", + "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": { @@ -9049,20 +8826,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8x", - "affected_version_range": "vers:openssl/0.9.8|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.8w" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "fixed_version": "1.0.0j", - "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" + "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": { @@ -9073,31 +8838,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1c", - "affected_version_range": "vers:openssl/1.0.1|1.0.1a|1.0.1b" + "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-2012-2333", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1551", "severities": [], - "reference_id": "CVE-2012-2333" + "reference_id": "CVE-2019-1551" }, { - "url": "https://www.openssl.org/news/secadv/20120510.txt", + "url": "https://github.com/openssl/openssl/commit/419102400a2811582a7a3d4a4e317d72e5ce0a8f", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/f1c5eea8a817075d31e43f5876993c6710238c98", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20191206.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2012-05-10T00:00:00+00:00" + "date_published": "2019-12-06T00:00:00+00:00" }, { - "unique_content_id": "5150b7bcb2a91bca5bbec4be5fd9707e", + "unique_content_id": "99942df08565fdb3248518baae83dd13", "aliases": [ - "CVE-2013-0169", - "VC-OPENSSL-20130204-CVE-2013-0169" + "CVE-2019-1552", + "VC-OPENSSL-20190730-CVE-2019-1552" ], - "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.", + "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": { @@ -9108,8 +8888,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8y", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x" + "fixed_version": "1.1.1d", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" }, { "package": { @@ -9120,8 +8900,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -9132,31 +8912,56 @@ "namespace": null, "qualifiers": null }, - "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.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-2013-0169", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1552", "severities": [], - "reference_id": "CVE-2013-0169" + "reference_id": "CVE-2019-1552" }, { - "url": "https://www.openssl.org/news/secadv/20130205.txt", + "url": "https://github.com/openssl/openssl/commit/54aa9d51b09d67e90db443f682cface795f5af9e", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/e32bc855a81a2d48d215c506bdeb4f598045f7e9", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/b15a19c148384e73338aa7c5b12652138e35ed28", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/d333ebaf9c77332754a9d5e111e2f53e1de54fdd", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190730.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2013-02-04T00:00:00+00:00" + "date_published": "2019-07-30T00:00:00+00:00" }, { - "unique_content_id": "71f19fecae0d29e9647041dd489f8b9d", + "unique_content_id": "c51e38c375d1211f3e69abe7b2c62f37", "aliases": [ - "CVE-2012-2686", - "VC-OPENSSL-20130205-CVE-2012-2686" + "CVE-2019-1559", + "VC-OPENSSL-20190226-CVE-2019-1559" ], - "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.", + "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": { @@ -9167,31 +8972,41 @@ "namespace": null, "qualifiers": null }, - "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.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-2012-2686", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1559", "severities": [], - "reference_id": "CVE-2012-2686" + "reference_id": "CVE-2019-1559" }, { - "url": "https://www.openssl.org/news/secadv/20130205.txt", + "url": "https://github.com/openssl/openssl/commit/e9bbefbf0f24c57645e7ad6a5a71ae649d18ac8e", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190226.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2013-02-05T00:00:00+00:00" + "date_published": "2019-02-26T00:00:00+00:00" }, { - "unique_content_id": "9ead169dc70d8bbcfceb668bf99916b5", + "unique_content_id": "5d70e446788723818dd00550d04e12ba", "aliases": [ - "CVE-2013-0166", - "VC-OPENSSL-20130205-CVE-2013-0166" + "CVE-2019-1563", + "VC-OPENSSL-20190910-CVE-2019-1563" ], - "summary": "A flaw in the OpenSSL handling of OCSP response verification can be exploited in a denial of service attack.", + "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": { @@ -9202,8 +9017,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8y", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x" + "fixed_version": "1.1.1d", + "affected_version_range": "vers:openssl/1.1.1|1.1.1a|1.1.1b|1.1.1c" }, { "package": { @@ -9214,8 +9029,8 @@ "namespace": null, "qualifiers": null }, - "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.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": { @@ -9226,78 +9041,51 @@ "namespace": null, "qualifiers": null }, - "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.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-2013-0166", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2019-1563", "severities": [], - "reference_id": "CVE-2013-0166" + "reference_id": "CVE-2019-1563" }, { - "url": "https://www.openssl.org/news/secadv/20130205.txt", + "url": "https://github.com/openssl/openssl/commit/08229ad838c50f644d7e928e2eef147b4308ad64", "severities": [], "reference_id": "" - } - ], - "date_published": "2013-02-05T00:00:00+00:00" - }, - { - "unique_content_id": "f629034826a9a0b0405e02e8fecc5471", - "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.", - "affected_packages": [ - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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", + "url": "https://github.com/openssl/openssl/commit/631f94db0065c78181ca9ba5546ebc8bb3884b97", "severities": [], - "reference_id": "CVE-2013-6450" + "reference_id": "" }, { - "url": "https://github.com/openssl/openssl/commit/3462896", + "url": "https://github.com/openssl/openssl/commit/e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20190910.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2013-12-13T00:00:00+00:00" + "date_published": "2019-09-10T00:00:00+00:00" }, { - "unique_content_id": "e044b060bb6a88182ef047435b17edc7", + "unique_content_id": "495664aed314f22468782ba341c0e4b7", "aliases": [ - "CVE-2013-6449", - "VC-OPENSSL-20131214-CVE-2013-6449" + "CVE-2020-1967", + "VC-OPENSSL-20200421-CVE-2020-1967" ], - "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.", + "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": [ { "package": { @@ -9308,31 +9096,41 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "1.1.1g", + "affected_version_range": "vers:openssl/1.1.1d|1.1.1e|1.1.1f" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-6449", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-1967", "severities": [], - "reference_id": "CVE-2013-6449" + "reference_id": "CVE-2020-1967" }, { - "url": "https://github.com/openssl/openssl/commit/ca98926", + "url": "https://github.com/openssl/openssl/commit/eb563247aef3e83dda7679c43f9649270462e5b1", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20200421.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2013-12-14T00:00:00+00:00" + "date_published": "2020-04-21T00:00:00+00:00" }, { - "unique_content_id": "8f379a5bad1322f3555d207330a7e79b", + "unique_content_id": "7dcc6225be95f6df4ef356fd050def47", "aliases": [ - "CVE-2013-4353", - "VC-OPENSSL-20140106-CVE-2013-4353" + "CVE-2020-1968", + "VC-OPENSSL-20200909-CVE-2020-1968" ], - "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.", + "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": [ { "package": { @@ -9343,31 +9141,36 @@ "namespace": null, "qualifiers": null }, - "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" + "fixed_version": "1.0.2w", + "affected_version_range": "vers:openssl/1.0.2|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" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2013-4353", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-1968", "severities": [], - "reference_id": "CVE-2013-4353" + "reference_id": "CVE-2020-1968" }, { - "url": "https://github.com/openssl/openssl/commit/197e0ea817ad64820789d86711d55ff50d71f631", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20200909.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-01-06T00:00:00+00:00" + "date_published": "2020-09-09T00:00:00+00:00" }, { - "unique_content_id": "f088991977978985d6c22eae42e9ae0d", + "unique_content_id": "879e976d13345716651026dcc09f6718", "aliases": [ - "CVE-2014-0076", - "VC-OPENSSL-20140214-CVE-2014-0076" + "CVE-2020-1971", + "VC-OPENSSL-20201208-CVE-2020-1971" ], - "summary": "Fix for the attack described in the paper \"Recovering OpenSSL ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack\"", + "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": [ { "package": { @@ -9378,20 +9181,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" - }, - { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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.1.1i", + "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" }, { "package": { @@ -9402,41 +9193,46 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1g", - "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" + "fixed_version": "1.0.2x", + "affected_version_range": "vers:openssl/1.0.2|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.2w" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0076", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2020-1971", "severities": [], - "reference_id": "CVE-2014-0076" + "reference_id": "CVE-2020-1971" }, { - "url": "https://github.com/openssl/openssl/commit/4b7a4ba29cafa432fc4266fe6e59e60bc1c96332", + "url": "https://github.com/openssl/openssl/commit/f960d81215ebf3f65e03d4d5d857fb9b666d6920", "severities": [], "reference_id": "" }, { - "url": "https://github.com/openssl/openssl/commit/2198be3483259de374f91e57d247d0fc667aef29", + "url": "https://github.com/openssl/openssl/commit/2154ab83e14ede338d2ede9bbe5cdfce5d5a6c9e", "severities": [], "reference_id": "" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", - "severities": [], + "url": "https://www.openssl.org/news/secadv/20201208.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], "reference_id": "" } ], - "date_published": "2014-02-14T00:00:00+00:00" + "date_published": "2020-12-08T00:00:00+00:00" }, { - "unique_content_id": "45eb6dfd31b5fc4828ce7918a5e30fe1", + "unique_content_id": "d73535dab9e59a40ce8493e4de3e4300", "aliases": [ - "CVE-2014-0160", - "VC-OPENSSL-20140407-CVE-2014-0160" + "CVE-2021-23839", + "VC-OPENSSL-20210216-CVE-2021-23839" ], - "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.", + "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": { @@ -9447,31 +9243,41 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "1.0.1g", - "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" + "fixed_version": "1.0.2y", + "affected_version_range": "vers:openssl/1.0.2|1.0.2s|1.0.2t|1.0.2u|1.0.2w|1.0.2x" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0160", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23839", "severities": [], - "reference_id": "CVE-2014-0160" + "reference_id": "CVE-2021-23839" }, { - "url": "https://www.openssl.org/news/secadv/20140407.txt", + "url": "https://github.com/openssl/openssl/commit/30919ab80a478f2d81f2e9acdcca3fa4740cd547", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20210216.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-04-07T00:00:00+00:00" + "date_published": "2021-02-16T00:00:00+00:00" }, { - "unique_content_id": "acd1e3ac9746e2bf60f9e4356e42a244", + "unique_content_id": "a1eb94a9234b06a7bc37d714496233e2", "aliases": [ - "CVE-2014-0224", - "VC-OPENSSL-20140605-CVE-2014-0224" + "CVE-2021-23840", + "VC-OPENSSL-20210216-CVE-2021-23840" ], - "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.", + "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": [ { "package": { @@ -9482,8 +9288,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" + "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": { @@ -9494,8 +9300,58 @@ "namespace": null, "qualifiers": null }, - "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.2y", + "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23840", + "severities": [], + "reference_id": "CVE-2021-23840" + }, + { + "url": "https://github.com/openssl/openssl/commit/6a51b9e1d0cf0bf8515f7201b68fb0a3482b3dc1", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/9b1129239f3ebb1d1c98ce9ed41d5c9476c47cb2", + "severities": [], + "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20210216.txt", + "severities": [ + { + "value": "Low", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2021-02-16T00:00:00+00:00" + }, + { + "unique_content_id": "c7c47549dfdab0afe770c9247331bc7d", + "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.", + "affected_packages": [ + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "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": { @@ -9506,31 +9362,46 @@ "namespace": null, "qualifiers": null }, - "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.2y", + "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0224", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-23841", "severities": [], - "reference_id": "CVE-2014-0224" + "reference_id": "CVE-2021-23841" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/122a19ab48091c657f7cb1fb3af9fc07bd557bbf", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/8252ee4d90f3f2004d3d0aeeed003ad49c9a7807", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20210216.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-06-05T00:00:00+00:00" + "date_published": "2021-02-16T00:00:00+00:00" }, { - "unique_content_id": "9d281843d5f176d057383fdad48bf8b9", + "unique_content_id": "cd515c6026ee6098fc7b277ffd0c823b", "aliases": [ - "CVE-2014-0221", - "VC-OPENSSL-20140605-CVE-2014-0221" + "CVE-2021-3449", + "VC-OPENSSL-20210325-CVE-2021-3449" ], - "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.", + "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": { @@ -9541,21 +9412,42 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" + "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" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3449", + "severities": [], + "reference_id": "CVE-2021-3449" }, { - "package": { - "name": "openssl", - "type": "openssl", - "subpath": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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" + "url": "https://github.com/openssl/openssl/commit/fb9fa6b51defd48157eeb207f52181f735d96148", + "severities": [], + "reference_id": "" }, + { + "url": "https://www.openssl.org/news/secadv/20210325.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2021-03-25T00:00:00+00:00" + }, + { + "unique_content_id": "1c00a83795f7053ffbf8e1bd9a9625bf", + "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.", + "affected_packages": [ { "package": { "name": "openssl", @@ -9565,31 +9457,41 @@ "namespace": null, "qualifiers": null }, - "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.1.1k", + "affected_version_range": "vers:openssl/1.1.1h|1.1.1i|1.1.1j" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0221", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3450", "severities": [], - "reference_id": "CVE-2014-0221" + "reference_id": "CVE-2021-3450" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/2a40b7bc7b94dd7de897a74571e7024f0cf0d63b", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20210325.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-06-05T00:00:00+00:00" + "date_published": "2021-03-25T00:00:00+00:00" }, { - "unique_content_id": "61d91c23f6b3cbb2cfe8c448285ced91", + "unique_content_id": "94ef1ad0f7c9d43e89a91d23c260991a", "aliases": [ - "CVE-2014-0195", - "VC-OPENSSL-20140605-CVE-2014-0195" + "CVE-2021-3711", + "VC-OPENSSL-20210824-CVE-2021-3711" ], - "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.", + "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": [ { "package": { @@ -9600,9 +9502,42 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|0.9.8o|0.9.8p|0.9.8q|0.9.8r|0.9.8s|0.9.8t|0.9.8u|0.9.8w|0.9.8x|0.9.8y" + "fixed_version": "1.1.1l", + "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|1.1.1k" + } + ], + "references": [ + { + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3711", + "severities": [], + "reference_id": "CVE-2021-3711" + }, + { + "url": "https://github.com/openssl/openssl/commit/59f5e75f3bced8fc0e130d72a3f582cf7b480b46", + "severities": [], + "reference_id": "" }, + { + "url": "https://www.openssl.org/news/secadv/20210824.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" + } + ], + "date_published": "2021-08-24T00:00:00+00:00" + }, + { + "unique_content_id": "d983b35db2f988ada9600e40e90d1328", + "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": [ { "package": { "name": "openssl", @@ -9612,8 +9547,8 @@ "namespace": null, "qualifiers": null }, - "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.1.1l", + "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|1.1.1k" }, { "package": { @@ -9624,31 +9559,46 @@ "namespace": null, "qualifiers": null }, - "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.2za", + "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0195", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-3712", "severities": [], - "reference_id": "CVE-2014-0195" + "reference_id": "CVE-2021-3712" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/94d23fcff9b2a7a8368dfe52214d5c2569882c11", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/ccb0a11145ee72b042d10593a64eaf9e8a55ec12", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20210824.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-06-05T00:00:00+00:00" + "date_published": "2021-08-24T00:00:00+00:00" }, { - "unique_content_id": "b72606d65a6ae99abd593e03be951491", + "unique_content_id": "8a881398b91d7f4f36aaa2b43dc26eee", "aliases": [ - "CVE-2014-0198", - "VC-OPENSSL-20140421-CVE-2014-0198" + "CVE-2021-4044", + "VC-OPENSSL-20211214-CVE-2021-4044" ], - "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.", + "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": [ { "package": { @@ -9659,43 +9609,41 @@ "namespace": null, "qualifiers": null }, - "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": null, - "version": null, - "namespace": null, - "qualifiers": null - }, - "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": "3.0.1", + "affected_version_range": "vers:openssl/3.0.0" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-0198", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-4044", "severities": [], - "reference_id": "CVE-2014-0198" + "reference_id": "CVE-2021-4044" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/758754966791c537ea95241438454aa86f91f256", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20211214.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-04-21T00:00:00+00:00" + "date_published": "2021-12-14T00:00:00+00:00" }, { - "unique_content_id": "89b3f67beba5915422b336140683b8a9", + "unique_content_id": "61d5d76af214adb2277201f87a39172c", "aliases": [ - "CVE-2010-5298", - "VC-OPENSSL-20140408-CVE-2010-5298" + "CVE-2021-4160", + "VC-OPENSSL-20220128-CVE-2021-4160" ], - "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.", + "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": [ { "package": { @@ -9706,8 +9654,8 @@ "namespace": null, "qualifiers": null }, - "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": "3.0.1", + "affected_version_range": "vers:openssl/3.0.0" }, { "package": { @@ -9718,31 +9666,63 @@ "namespace": null, "qualifiers": null }, - "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.1.1m", + "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|1.1.1k|1.1.1l" + }, + { + "package": { + "name": "openssl", + "type": "openssl", + "subpath": null, + "version": null, + "namespace": null, + "qualifiers": null + }, + "fixed_version": "1.0.2zc-de", + "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y|1.0.2za|1.0.2zb" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2010-5298", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-4160", "severities": [], - "reference_id": "CVE-2010-5298" + "reference_id": "CVE-2021-4160" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/3bf7b73ea7123045b8f972badc67ed6878e6c37f", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/e9e726506cd2a3fd9c0f12daf8cc1fe934c7dddb", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/6fc1aaaf303185aa5e483e06bdfae16daa9193a7", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20220128.txt", + "severities": [ + { + "value": "Moderate", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-04-08T00:00:00+00:00" + "date_published": "2022-01-28T00:00:00+00:00" }, { - "unique_content_id": "928fd52bdf45973bd405785383f86ff9", + "unique_content_id": "b7cac498514c187f966805d58748e480", "aliases": [ - "CVE-2014-3470", - "VC-OPENSSL-20140530-CVE-2014-3470" + "CVE-2022-0778", + "VC-OPENSSL-20220315-CVE-2022-0778" ], - "summary": "OpenSSL TLS clients enabling anonymous ECDH ciphersuites are subject to a denial of service attack.", + "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": [ { "package": { @@ -9753,8 +9733,8 @@ "namespace": null, "qualifiers": null }, - "fixed_version": "0.9.8za", - "affected_version_range": "vers:openssl/0.9.8|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.8w|0.9.8x|0.9.8y" + "fixed_version": "3.0.2", + "affected_version_range": "vers:openssl/3.0.0|3.0.1" }, { "package": { @@ -9765,8 +9745,8 @@ "namespace": null, "qualifiers": null }, - "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.1.1n", + "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|1.1.1k|1.1.1l|1.1.1m" }, { "package": { @@ -9777,22 +9757,42 @@ "namespace": null, "qualifiers": null }, - "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.2zd", + "affected_version_range": "vers:openssl/1.0.2|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.2w|1.0.2x|1.0.2y|1.0.2za|1.0.2zb|1.0.2zc" } ], "references": [ { - "url": "https://nvd.nist.gov/vuln/detail/CVE-2014-3470", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-0778", "severities": [], - "reference_id": "CVE-2014-3470" + "reference_id": "CVE-2022-0778" }, { - "url": "https://www.openssl.org/news/secadv/20140605.txt", + "url": "https://github.com/openssl/openssl/commit/a466912611aa6cbdf550cd10601390e587451246", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/3118eb64934499d93db3230748a452351d1d9a65", + "severities": [], + "reference_id": "" + }, + { + "url": "https://github.com/openssl/openssl/commit/380085481c64de749a6dd25cdf0bcf4360b30f83", "severities": [], "reference_id": "" + }, + { + "url": "https://www.openssl.org/news/secadv/20220315.txt", + "severities": [ + { + "value": "High", + "system": "generic_textual" + } + ], + "reference_id": "" } ], - "date_published": "2014-05-30T00:00:00+00:00" + "date_published": "2022-03-15T00:00:00+00:00" } ] \ No newline at end of file diff --git a/vulnerabilities/tests/test_fix_api.py b/vulnerabilities/tests/test_fix_api.py index 16512e33f..c962ecfd0 100644 --- a/vulnerabilities/tests/test_fix_api.py +++ b/vulnerabilities/tests/test_fix_api.py @@ -64,13 +64,13 @@ def test_api_with_single_vulnerability(self): "aliases": [], "fixed_packages": [ { - "url": f"http://testserver/api/packages/{self.pkg1.id}", - "purl": "pkg:pypi/flask@0.1.2", + "url": f"http://testserver/api/packages/{self.pkg2.id}", + "purl": "pkg:debian/flask@0.1.2", "is_vulnerable": False, }, { - "url": f"http://testserver/api/packages/{self.pkg2.id}", - "purl": "pkg:debian/flask@0.1.2", + "url": f"http://testserver/api/packages/{self.pkg1.id}", + "purl": "pkg:pypi/flask@0.1.2", "is_vulnerable": False, }, ], @@ -269,6 +269,7 @@ def setUp(self): for i in range(0, 10): ref, _ = VulnerabilityReference.objects.get_or_create( reference_id=f"cpe:/a:nginx:{i}", + url=f"https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query=cpe:/a:nginx:{i}", ) VulnerabilityRelatedReference.objects.create( reference=ref, vulnerability=self.vulnerability @@ -356,7 +357,10 @@ def setUp(self): ] vuln = Vulnerability.objects.create(summary="test") for cpe in self.exclusive_cpes: - ref = VulnerabilityReference.objects.create(reference_id=cpe) + ref = VulnerabilityReference.objects.create( + reference_id=cpe, + url=f"https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query={cpe}", + ) VulnerabilityRelatedReference.objects.create(reference=ref, vulnerability=vuln) second_vuln = Vulnerability.objects.create(summary="test-A") self.non_exclusive_cpes = [ @@ -370,7 +374,10 @@ def setUp(self): ] third_vuln = Vulnerability.objects.create(summary="test-B") for cpe in self.non_exclusive_cpes: - ref = VulnerabilityReference.objects.create(reference_id=cpe) + ref = VulnerabilityReference.objects.create( + reference_id=cpe, + url=f"https://nvd.nist.gov/vuln/search/results?adv_search=true&isCpeNameSearch=true&query={cpe}", + ) VulnerabilityRelatedReference.objects.create(reference=ref, vulnerability=second_vuln) VulnerabilityRelatedReference.objects.create(reference=ref, vulnerability=third_vuln) diff --git a/vulnerabilities/tests/test_forms.py b/vulnerabilities/tests/test_forms.py index 64bc59487..8999970bc 100644 --- a/vulnerabilities/tests/test_forms.py +++ b/vulnerabilities/tests/test_forms.py @@ -9,19 +9,27 @@ from django.test import TestCase -from vulnerabilities.forms import VulnerabilityForm +from vulnerabilities.forms import VulnerabilitySearchForm from vulnerabilities.models import Vulnerability -class TestVulnerabilityForm(TestCase): +class TestVulnerabilitySearchForm(TestCase): def setUp(self) -> None: - vuln1 = Vulnerability.objects.create(summary="test-vuln1", vulnerability_id="VCID-1234") - self.id = vuln1.id + self.vulnerability = Vulnerability.objects.create( + vulnerability_id="VCID-1234", + summary="test-vuln1", + ) - def test_VulnerabilityForm__is_valid_with_simple_input(self): - form = VulnerabilityForm(data={"vulnerability_id": "vcid-1234"}) + def test_VulnerabilitySearchForm__is_valid_with_simple_input(self): + form = VulnerabilitySearchForm(data={"search": "vcid-1234"}) assert form.is_valid() - def test_vulnerabilities_client(self): - response = self.client.get(f"/vulnerabilities/{self.id}?vuln_id=vcid-1234") + def test_vulnerabilities_search_view_can_lookup_by_vcid(self): + vcid = self.vulnerability.vulnerability_id + response = self.client.get(f"/vulnerabilities/{vcid}?search=vcid-1234") self.assertContains(response, "test-vuln1", status_code=200) + + def test_vulnerabilities_search_view_does_not_work_by_pk(self): + pk = self.vulnerability.pk + response = self.client.get(f"/vulnerabilities/{pk}") + self.assertEqual(response.status_code, 404) diff --git a/vulnerabilities/tests/test_improve_runner.py b/vulnerabilities/tests/test_improve_runner.py new file mode 100644 index 000000000..1d425b211 --- /dev/null +++ b/vulnerabilities/tests/test_improve_runner.py @@ -0,0 +1,39 @@ +# +# 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/nexB/vulnerablecode for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# + +import pytest + +from vulnerabilities.improve_runner import create_valid_vulnerability_reference + + +@pytest.mark.django_db +def test_create_valid_vulnerability_reference_basic(): + result = create_valid_vulnerability_reference( + reference_id="cpe:2.3:a:microsoft:windows_10:10.0.17134:*:*:*:*:*:*:*", + url="https://foo.bar", + ) + assert result + + +@pytest.mark.django_db +def test_create_valid_vulnerability_reference_raise_exception_on_empty_url(): + result = create_valid_vulnerability_reference( + reference_id="cpe:2.3:a:microsoft:windows_10:10.0.17134:*:*:*:*:*:*:*", + url="", + ) + assert not result + + +@pytest.mark.django_db +def test_create_valid_vulnerability_reference_accepts_long_references(): + result = create_valid_vulnerability_reference( + reference_id="*" * 200, + url="https://foo.bar", + ) + assert result diff --git a/vulnerabilities/tests/test_models.py b/vulnerabilities/tests/test_models.py index 4251ca016..58b95af80 100644 --- a/vulnerabilities/tests/test_models.py +++ b/vulnerabilities/tests/test_models.py @@ -11,6 +11,7 @@ from unittest import TestCase import pytest +from django.db.utils import IntegrityError from freezegun import freeze_time from vulnerabilities import models diff --git a/vulnerabilities/tests/test_view.py b/vulnerabilities/tests/test_view.py index 60d931cab..7b96ecfd5 100644 --- a/vulnerabilities/tests/test_view.py +++ b/vulnerabilities/tests/test_view.py @@ -31,30 +31,22 @@ def test_packages_search_view_paginator(self): class VulnerabilitySearchTestCase(TestCase): def setUp(self): - vulnerability = Vulnerability(summary="test") + self.vulnerability = vulnerability = Vulnerability(summary="test") vulnerability.save() alias = Alias(alias="TEST-2022", vulnerability=vulnerability) alias.save() - self.id = vulnerability.id self.client = Client() - def test_vulnerabilties_search_view(self): - """ - Test Vulnerability View - """ - response = self.client.get(f"/vulnerabilities/{self.id}") + def test_vulnerabilties_search_view_with_vcid_works_and_pk_does_not(self): + response = self.client.get(f"/vulnerabilities/{self.vulnerability.pk}") + self.assertEqual(response.status_code, 404) + response = self.client.get(f"/vulnerabilities/{self.vulnerability.vulnerability_id}") self.assertEqual(response.status_code, 200) - def test_vulnerabilties_search(self): - """ - Test Vulnerability Search View - """ + def test_vulnerabilties_search_view_with_empty(self): response = self.client.get(f"/vulnerabilities/search") self.assertEqual(response.status_code, 200) - def test_vulnerabilities_alias(self): - """ - Test Vulnerability Search View - """ - response = self.client.get(f"/vulnerabilities/search?vulnerability_id=TEST-2022") + def test_vulnerabilties_search_view_can_find_alias(self): + response = self.client.get(f"/vulnerabilities/search?search=TEST-2022") self.assertEqual(response.status_code, 200) diff --git a/vulnerabilities/views.py b/vulnerabilities/views.py index 52b722fd4..6e85721d1 100644 --- a/vulnerabilities/views.py +++ b/vulnerabilities/views.py @@ -9,22 +9,22 @@ from django.db.models import Count from django.db.models import Q +from django.http.response import Http404 from django.http.response import HttpResponseNotAllowed from django.shortcuts import render -from django.urls import reverse from django.views import View from django.views.generic.detail import DetailView from django.views.generic.list import ListView from packageurl import PackageURL from vulnerabilities import models -from vulnerabilities.forms import PackageForm -from vulnerabilities.forms import VulnerabilityForm +from vulnerabilities.forms import PackageSearchForm +from vulnerabilities.forms import VulnerabilitySearchForm -PAGE_SIZE = 50 +PAGE_SIZE = 20 -class PackageSearchView(ListView): +class PackageSearch(ListView): model = models.Package template_name = "packages.html" ordering = ["type", "namespace", "name", "version"] @@ -33,8 +33,8 @@ class PackageSearchView(ListView): def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) request_query = self.request.GET - context["package_form"] = PackageForm(request_query) - context["package_name"] = request_query.get("package_name") + context["package_search_form"] = PackageSearchForm(request_query) + context["search"] = request_query.get("search") return context def get_queryset(self, query=None): @@ -45,7 +45,7 @@ def get_queryset(self, query=None): """ qs = self.model.objects - query = query or self.request.GET.get("package_name") or "" + query = query or self.request.GET.get("search") or "" query = query.strip() if not query: return qs.none() @@ -110,7 +110,7 @@ def get_queryset(self, query=None): ).prefetch_related() -class VulnerabilitySearchView(ListView): +class VulnerabilitySearch(ListView): model = models.Vulnerability template_name = "vulnerabilities.html" ordering = ["vulnerability_id"] @@ -119,12 +119,12 @@ class VulnerabilitySearchView(ListView): def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) request_query = self.request.GET - context["vulnerability_form"] = VulnerabilityForm(request_query) - context["vulnerability_id"] = request_query.get("vulnerability_id") + context["vulnerability_search_form"] = VulnerabilitySearchForm(request_query) + context["search"] = request_query.get("search") return context def get_queryset(self, query=None): - query = query or self.request.GET.get("vulnerability_id") or "" + query = query or self.request.GET.get("search") or "" qs = self.model.objects if not query: return qs.none() @@ -152,25 +152,48 @@ def get_queryset(self, query=None): class PackageDetails(DetailView): model = models.Package template_name = "package_details.html" + slug_url_kwarg = "purl" + slug_field = "purl" def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) package = self.object context["package"] = package - context["impacted_vuln"] = package.vulnerable_to.order_by("vulnerability_id") - context["resolved_vuln"] = package.resolved_to.order_by("vulnerability_id") - context["package_form"] = PackageForm(self.request.GET) + context["affected_by_vulnerabilities"] = package.vulnerable_to.order_by("vulnerability_id") + context["fixing_vulnerabilities"] = package.resolved_to.order_by("vulnerability_id") + context["package_search_form"] = PackageSearchForm(self.request.GET) return context + def get_object(self, queryset=None): + if queryset is None: + queryset = self.get_queryset() + + purl = self.kwargs.get(self.slug_url_kwarg) + if purl: + queryset = queryset.for_package_url(purl_str=purl) + else: + cls = self.__class__.__name__ + raise AttributeError( + f"Package details view {cls} must be called with a purl, " f"but got: {purl!r}" + ) + + try: + package = queryset.get() + except queryset.model.DoesNotExist: + raise Http404(f"No Package found for purl: {purl}") + return package + class VulnerabilityDetails(DetailView): model = models.Vulnerability template_name = "vulnerability_details.html" + slug_url_kwarg = "vulnerability_id" + slug_field = "vulnerability_id" def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context["vulnerability"] = self.object - context["vulnerability_form"] = VulnerabilityForm(self.request.GET) + context["vulnerability_search_form"] = VulnerabilitySearchForm(self.request.GET) context["severities"] = list(self.object.severities) return context @@ -181,8 +204,8 @@ class HomePage(View): def get(self, request): request_query = request.GET context = { - "vulnerability_form": VulnerabilityForm(request_query), - "package_form": PackageForm(request_query), + "vulnerability_search_form": VulnerabilitySearchForm(request_query), + "package_search_form": PackageSearchForm(request_query), } return render(request=request, template_name=self.template_name, context=context) diff --git a/vulnerablecode/__init__.py b/vulnerablecode/__init__.py index cb0fd7ff7..fa8a8c98e 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -12,7 +12,7 @@ import warnings from pathlib import Path -__version__ = "30.0.0rc3" +__version__ = "30.0.0rc5" def command_line(): diff --git a/vulnerablecode/urls.py b/vulnerablecode/urls.py index 3e5b73935..a2c8288f7 100644 --- a/vulnerablecode/urls.py +++ b/vulnerablecode/urls.py @@ -10,6 +10,7 @@ from django.contrib import admin from django.urls import include from django.urls import path +from django.urls import re_path from rest_framework.routers import DefaultRouter from vulnerabilities.api import AliasViewSet @@ -18,9 +19,9 @@ from vulnerabilities.api import VulnerabilityViewSet from vulnerabilities.views import HomePage from vulnerabilities.views import PackageDetails -from vulnerabilities.views import PackageSearchView +from vulnerabilities.views import PackageSearch from vulnerabilities.views import VulnerabilityDetails -from vulnerabilities.views import VulnerabilitySearchView +from vulnerabilities.views import VulnerabilitySearch from vulnerabilities.views import schema_view @@ -40,10 +41,14 @@ def __init__(self, *args, **kwargs): urlpatterns = [ path("", HomePage.as_view(), name="home"), - path("packages/search", PackageSearchView.as_view(), name="package_search"), - path("packages/", PackageDetails.as_view(), name="package_view"), - path("vulnerabilities/search", VulnerabilitySearchView.as_view(), name="vulnerability_search"), - path("vulnerabilities/", VulnerabilityDetails.as_view(), name="vulnerability_view"), + path("packages/search", PackageSearch.as_view(), name="package_search"), + re_path("^packages/(?Ppkg:.+)$", PackageDetails.as_view(), name="package_details"), + path("vulnerabilities/search", VulnerabilitySearch.as_view(), name="vulnerability_search"), + path( + "vulnerabilities/", + VulnerabilityDetails.as_view(), + name="vulnerability_details", + ), path("api/docs", schema_view, name="redoc"), path(r"api/", include(api_router.urls)), # disabled for now