---
id: CVE-2026-49457
title: erlang_quic is a pure Erlang QUIC implementation
summary: >-
  erlang_quic is a pure Erlang QUIC implementation. Prior to version 1.4.4, the
  QUIC client did not authenticate the server during the TLS 1.3 handshake. The
  CertificateVerify signature was not checked, the certificate chain was not
  valida…
severity: critical
cvss: 9.1
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N'
cwe:
  - CWE-295
  - CWE-297
vendor: quic
product: quic
affected:
  - quic <= 1.4.3
patched:
  - quic 1.4.4
published: '2026-08-14'
updated: '2026-09-18'
sourceUpdated: '2026-09-18T20:09:01.757'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-49457'
references:
  - url: >-
      https://github.com/benoitc/erlang_quic/security/advisories/GHSA-2r8v-p65x-3663
    label: security-advisories@github.com
  - url: 'https://github.com/advisories/GHSA-2r8v-p65x-3663'
tags:
  - nvd
  - ghsa
  - erlang
epss: 0.00249
epssPercentile: 0.14501
ecosystem: erlang
ingestedAt: '2026-07-01T21:17:11.612Z'
---

## Overview

erlang_quic is a pure Erlang QUIC implementation. Prior to version 1.4.4, the QUIC client did not authenticate the server during the TLS 1.3 handshake. The CertificateVerify signature was not checked, the certificate chain was not validated, and the hostname was not compared against the certificate, so `verify` was effectively a no-op on the client. A man-in-the-middle on the network path could present any certificate and impersonate any server, defeating the confidentiality and integrity of the connection. HTTP/3 uses the same client and was equally affected. Handshakes authenticated by a PSK (session resumption) are not affected, because the peer is authenticated by the PSK binder and no certificate is sent. This is fixed in 1.4.4. The client now verifies the CertificateVerify signature, validates the certificate chain against the trust store (`cacerts` option, the operating system store by default), and checks the hostname. Client `verify` now defaults to on; set `verify => false` to accept any certificate (for example a self-signed test server). No known workarounds are available before 1.4.4. `verify => true` had no effect, and inspecting the certificate after connecting does not help because without the signature check the peer is never proven to own the certificate it presents.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.

## Package advisory (CVE-2026-49457)

Affected packages:

- `quic <= 1.4.3`

Patched in:

- `quic 1.4.4`

Source: https://github.com/advisories/GHSA-2r8v-p65x-3663
