CVE-2026-16028
Received Received - Intake

Memory Exhaustion in Protocol::HTTP2 Perl Module

Vulnerability report for CVE-2026-16028, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-07

Last updated on: 2026-09-07

Assigner: CPANSec

Description

Protocol::HTTP2 versions before 1.14 for Perl allow memory exhaustion via closed streams that stream_state never removes from the connection stream table. When a stream reaches the CLOSED state, stream_state returns the concurrency slot and clears most of the stream's keys, but the entry itself stays in the connection stream table and nothing in the distribution removes it. Stream identifiers increase monotonically, so a peer can open and close streams on one connection indefinitely, each close leaving a residual entry that is retained for the life of the connection. SETTINGS_MAX_CONCURRENT_STREAMS does not bound this. That setting caps how many streams are live at once and is enforced, while the growth is made of streams the cap has already released, so it accumulates with concurrency never exceeding one. The client keeps the same table and grows the same way against a hostile server. Measured against a server built on this module, roughly 920 bytes are retained per closed stream for about 19 bytes on the wire, so 100,000 sequential streams on one connection grow server resident memory by about 88 MiB. The streams are ordinary requests that the application accepts and completes.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-07
Last Modified
2026-09-07
Generated
2026-09-07
AI Q&A
2026-09-07
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
vlet p5_protocol_http2 to 1.14 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-401 The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability is a memory exhaustion issue in Protocol::HTTP2 versions before 1.14 for Perl. When a stream closes, its entry remains in the connection stream table indefinitely, causing memory to accumulate with each new stream. This happens because the stream identifier increases monotonically and no cleanup mechanism removes closed streams.

Impact Analysis

An attacker could exploit this by repeatedly opening and closing streams on a single connection, causing the server's memory to grow without bound. This leads to increased memory usage, potential crashes, or degraded performance due to resource exhaustion.

Mitigation Strategies

Update Protocol::HTTP2 to version 1.14 or later which includes a default limit of 65,535 closed streams and the ability to override this limit using the max_closed_streams option.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-16028. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart