CVE-2026-44890
Modified Modified - Updated After Analysis

Denial of Service in Netty Redis Codec

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

Publication date: 2026-06-11

Last updated on: 2026-06-30

Assigner: GitHub, Inc.

Description

Netty is a network application framework for development of protocol servers and clients. In netty-codec-redis prior to versions 4.1.135.Final and 4.2.15.Final, an attacker can cause DoS by sending crafted Redis payloads across multiple connections without `\r\n`. This exhausts the server's direct memory pool (OutOfDirectMemoryError), preventing legitimate connections from being processed. Versions 4.1.135.Final and 4.2.15.Final patch the issue.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-11
Last Modified
2026-06-30
Generated
2026-07-02
AI Q&A
2026-06-12
EPSS Evaluated
2026-07-01
NVD

Affected Vendors & Products

Showing 2 associated CPEs
Vendor Product Version / Range
netty netty to 4.1.135 (exc)
netty netty From 4.2.0 (inc) to 4.2.15 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-400 The product does not properly control the allocation and maintenance of a limited resource.
CWE-770 The product allocates a reusable resource or group of resources on behalf of an actor without imposing any intended restrictions on the size or number of resources that can be allocated.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the netty-codec-redis component of the Netty framework prior to versions 4.1.135.Final and 4.2.15.Final. An attacker can exploit it by sending specially crafted Redis payloads across multiple connections that lack the required '\r\n' sequence. This causes the server's direct memory pool to be exhausted, resulting in an OutOfDirectMemoryError.

As a result, the server is unable to process legitimate connections, effectively causing a denial of service (DoS).

Impact Analysis

The primary impact of this vulnerability is a denial of service (DoS) condition. By exhausting the server's direct memory pool, legitimate users are prevented from establishing connections or using the service.

This can lead to service outages, degraded performance, and potential disruption of business operations that rely on the affected Netty-based Redis services.

Mitigation Strategies

To mitigate this vulnerability, upgrade netty-codec-redis to version 4.1.135.Final or 4.2.15.Final or later, as these versions contain the patch that prevents the denial of service caused by crafted Redis payloads.

Compliance Impact

This vulnerability causes a denial of service (DoS) by exhausting the server's direct memory pool, which prevents legitimate connections from being processed.

However, there is no information provided about any impact on data confidentiality, integrity, or privacy that would directly affect compliance with standards such as GDPR or HIPAA.

Therefore, based on the available information, this vulnerability primarily affects availability but does not explicitly indicate compliance issues with common regulations.

Detection Guidance

This vulnerability can be detected by monitoring for unusual or excessive direct memory usage in the Netty-based Redis server, especially looking for OutOfDirectMemoryError crashes.

Since the attack involves sending crafted Redis payloads without proper line terminators (\r\n) across multiple connections, network traffic analysis tools can be used to detect such malformed Redis commands.

Suggested commands to detect potential exploitation attempts include:

  • Using tcpdump or Wireshark to capture Redis traffic and filter for payloads missing the \r\n sequence.
  • Example tcpdump command: tcpdump -i <interface> -A port 6379 | grep -v '\r\n'
  • Monitoring application logs for OutOfDirectMemoryError exceptions indicating direct memory exhaustion.
  • Using JVM monitoring tools (like jstat or VisualVM) to observe direct memory usage spikes in the Netty process.

Chat Assistant

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

EPSS Chart