CVE-2026-26311 PUBLISHED

Envoy HTTP: filter chain execution on reset streams causing UAF crash

Assigner: GitHub_M
Reserved: 13.02.2026 Published: 10.03.2026 Updated: 10.03.2026

Envoy is a high-performance edge/middle/service proxy. Prior to 1.37.1, 1.36.5, 1.35.8, and 1.34.13, a logic vulnerability in Envoy's HTTP connection manager (FilterManager) that allows for Zombie Stream Filter Execution. This issue creates a "Use-After-Free" (UAF) or state-corruption window where filter callbacks are invoked on an HTTP stream that has already been logically reset and cleaned up. The vulnerability resides in source/common/http/filter_manager.cc within the FilterManager::decodeData method. The ActiveStream object remains valid in memory during the deferred deletion window. If a DATA frame arrives on this stream immediately after the reset (e.g., in the same packet processing cycle), the HTTP/2 codec invokes ActiveStream::decodeData, which cascades to FilterManager::decodeData. FilterManager::decodeData fails to check the saw_downstream_reset_ flag. It iterates over the decoder_filters_ list and invokes decodeData() on filters that have already received onDestroy(). This vulnerability is fixed in 1.37.1, 1.36.5, 1.35.8, and 1.34.13.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
CVSS Score: 5.9

Product Status

Vendor envoyproxy
Product envoy
Versions
  • Version >= 1.37.0, < 1.37.1 is affected
  • Version >= 1.36.0, < 1.36.5 is affected
  • Version >= 1.35.0, < 1.35.9 is affected
  • Version < 1.34.13 is affected

References

Problem Types

  • CWE-416: Use After Free CWE