Find, fix and prevent vulnerabilities in your code.
high severity
- Vulnerable module: org.apache.kafka:kafka-clients
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0Remediation: Upgrade to org.apache.kafka:kafka-clients@3.7.2.
Overview
org.apache.kafka:kafka-clients is a streaming platform that can publish and subscribe to streams of records, store streams of records in a fault-tolerant durable way, and process streams of records as they occur.
Affected versions of this package are vulnerable to Incorrect Implementation of Authentication Algorithm in the form of nonce verification that fails to comply with RFC 5802 in the SCRAM implementation. If TLS is not in use for SCRAM exchanges - which is an insecure configuration in its own right - an attacker can intercept and replay the authentication messages.
Configurations with SASL_PLAINTEXT
set for listeners are vulnerable.
Remediation
Upgrade org.apache.kafka:kafka-clients
to version 3.7.2, 3.8.1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.fasterxml.jackson.core:jackson-databind@2.10.0 › com.fasterxml.jackson.core:jackson-core@2.10.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.0.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing input size validation when performing numeric type conversions. A remote attacker can exploit this vulnerability by causing the application to deserialize data containing certain numeric types with large values, causing the application to exhaust all available resources.
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 com.fasterxml.jackson.core:jackson-core
to version 2.15.0-rc1 or higher.
References
high severity
- Vulnerable module: com.google.protobuf:protobuf-java
- Introduced through: com.google.protobuf:protobuf-java@3.9.2
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.google.protobuf:protobuf-java@3.9.2Remediation: Upgrade to com.google.protobuf:protobuf-java@3.25.5.
Overview
com.google.protobuf:protobuf-java is a Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
Affected versions of this package are vulnerable to Stack-based Buffer Overflow via the parsing of nested groups or series of SGROUP
tags as unknown fields with DiscardUnknownFieldsParser
or Java Protobuf Lite parser, or against Protobuf map fields. An attacker can cause infinite recursion by sending malicious Protocol Buffer data.
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 com.google.protobuf:protobuf-java
to version 3.25.5, 4.27.5, 4.28.2 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.fasterxml.jackson.core:jackson-databind@2.10.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.10.5.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to XML External Entity (XXE) Injection. A flaw was found in FasterXML Jackson Databind, where it does not have entity expansion secured properly in the DOMDeserializer
class. The highest threat from this vulnerability is data integrity.
Details
XXE Injection is a type of attack against an application that parses XML input. XML is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. By default, many XML processors allow specification of an external entity, a URI that is dereferenced and evaluated during XML processing. When an XML document is being parsed, the parser can make a request and include the content at the specified URI inside of the XML document.
Attacks can include disclosing local files, which may contain sensitive data such as passwords or private user data, using file: schemes or relative paths in the system identifier.
For example, below is a sample XML document, containing an XML element- username.
<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
<username>John</username>
</xml>
An external XML entity - xxe
, is defined using a system identifier and present within a DOCTYPE header. These entities can access local or remote content. For example the below code contains an external XML entity that would fetch the content of /etc/passwd
and display it to the user rendered by username
.
<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE foo [
<!ENTITY xxe SYSTEM "file:///etc/passwd" >]>
<username>&xxe;</username>
</xml>
Other XXE Injection attacks can access local resources that may not stop returning data, possibly impacting application availability and leading to Denial of Service.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.6.7.4, 2.9.10.7, 2.10.5.1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.fasterxml.jackson.core:jackson-databind@2.10.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.6.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) via a large depth of nested objects.
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 com.fasterxml.jackson.core:jackson-databind
to version 2.12.6.1, 2.13.2.1 or higher.
References
high severity
- Vulnerable module: com.google.protobuf:protobuf-java
- Introduced through: com.google.protobuf:protobuf-java@3.9.2
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.google.protobuf:protobuf-java@3.9.2Remediation: Upgrade to com.google.protobuf:protobuf-java@3.16.1.
Overview
com.google.protobuf:protobuf-java is a Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
Affected versions of this package are vulnerable to Denial of Service (DoS). An issue in protobuf-java allowed the interleaving of com.google.protobuf.UnknownFieldSet
fields in such a way that would be processed out of order. A small malicious payload can occupy the parser for several minutes by creating large numbers of short-lived objects that cause frequent, repeated pauses.
Note: Protobuf javalite
users are not affected.
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 com.google.protobuf:protobuf-java
to version 3.16.1, 3.18.2, 3.19.2 or higher.
References
high severity
- Vulnerable module: com.google.protobuf:protobuf-java
- Introduced through: com.google.protobuf:protobuf-java@3.9.2
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.google.protobuf:protobuf-java@3.9.2Remediation: Upgrade to com.google.protobuf:protobuf-java@3.16.3.
Overview
com.google.protobuf:protobuf-java is a Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
Affected versions of this package are vulnerable to Denial of Service (DoS) in MessageReflection.java
due to a text format parsing issue. Inputs containing multiple instances of non-repeated embedded messages with repeated or unknown fields causes objects to be converted back and forth between mutable and immutable forms, resulting in potentially long garbage collection pauses.
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 com.google.protobuf:protobuf-java
to version 3.16.3, 3.19.6, 3.20.3, 3.21.7 or higher.
References
high severity
- Vulnerable module: org.xerial.snappy:snappy-java
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0 › org.xerial.snappy:snappy-java@1.1.7.3Remediation: Upgrade to org.apache.kafka:kafka-clients@3.5.2.
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to a missing upper bound check on chunk length in the SnappyInputStream
function. An attacker can decompress data with an excessively large chunk size.
Remediation
Upgrade org.xerial.snappy:snappy-java
to version 1.1.10.4 or higher.
References
high severity
- Vulnerable module: org.xerial.snappy:snappy-java
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0 › org.xerial.snappy:snappy-java@1.1.7.3Remediation: Upgrade to org.apache.kafka:kafka-clients@3.5.1.
Overview
Affected versions of this package are vulnerable to Denial of Service (DoS) via the hasNextChunk
function due to improper validation of the chunkSize
variable value.
Exploiting this vulnerability is possible by passing a negative number (such as 0xFFFFFFFF
, which is -1), which will cause the code to raise a java.lang.NegativeArraySizeException
exception.
A worse case would happen when passing a huge positive value (such as 0x7FFFFFFF
), raising the fatal java.lang.OutOfMemoryError
error.
PoC
package org.example;
import org.xerial.snappy.SnappyInputStream;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
byte[] data = {-126, 'S', 'N', 'A', 'P', 'P', 'Y', 0, 0, 0, 0, 0, 0, 0, 0, 0,(byte) 0x7f, (byte) 0xff, (byte) 0xff, (byte) 0xff};
SnappyInputStream in = new SnappyInputStream(new ByteArrayInputStream(data));
byte[] out = new byte[50];
try {
in.read(out);
}
catch (Exception ignored) {
}
}
}
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 org.xerial.snappy:snappy-java
to version 1.1.10.1 or higher.
References
medium severity
- Vulnerable module: org.apache.kafka:kafka-clients
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0Remediation: Upgrade to org.apache.kafka:kafka-clients@2.7.2.
Overview
org.apache.kafka:kafka-clients is a streaming platform that can publish and subscribe to streams of records, store streams of records in a fault-tolerant durable way, and process streams of records as they occur.
Affected versions of this package are vulnerable to Timing Attack. Some components in Apache Kafka use Arrays.equals
to validate a password or key, which is vulnerable to brute force attacks by malicious users.
Remediation
Upgrade org.apache.kafka:kafka-clients
to version 2.8.1, 2.7.2 or higher.
References
medium severity
- Vulnerable module: org.apache.kafka:kafka-clients
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0Remediation: Upgrade to org.apache.kafka:kafka-clients@3.8.0.
Overview
org.apache.kafka:kafka-clients is a streaming platform that can publish and subscribe to streams of records, store streams of records in a fault-tolerant durable way, and process streams of records as they occur.
Affected versions of this package are vulnerable to Files or Directories Accessible to External Parties through ConfigProviders
interface, including the FileConfigProvider
, DirectoryConfigProvider
, and EnvVarConfigProvider
class objects, which allows attackers to read arbitrary contents of the disk and environment variables.
Note:
Users should upgrade to the fixed version, and it is recommended that the JVM system property be set to
org.apache.kafka.automatic.config.providers=none
.Users of Kafka Connect with one of the above ConfigProvider implementations specified in their worker config are also recommended to add appropriate
allowlist.pattern
andallowed.paths
to restrict their operation to appropriate bounds.
Remediation
Upgrade org.apache.kafka:kafka-clients
to version 3.8.0 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.fasterxml.jackson.core:jackson-databind@2.10.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeFromArray()
function in BeanDeserializer
, due to resource exhaustion when processing a deeply nested array.
NOTE:
For this vulnerability to be exploitable the non-default DeserializationFeature
must be enabled.
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 com.fasterxml.jackson.core:jackson-databind
to version 2.12.7.1, 2.13.4 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: com.fasterxml.jackson.core:jackson-databind@2.10.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.fasterxml.jackson.core:jackson-databind@2.10.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.12.7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeWrappedValue()
function in StdDeserializer.java
, due to resource exhaustion when processing deeply nested arrays.
NOTE: This vulnerability is only exploitable when the non-default UNWRAP_SINGLE_VALUE_ARRAYS
feature is enabled.
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 com.fasterxml.jackson.core:jackson-databind
to version 2.12.7.1, 2.13.4.1 or higher.
References
medium severity
- Vulnerable module: org.xerial.snappy:snappy-java
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0 › org.xerial.snappy:snappy-java@1.1.7.3Remediation: Upgrade to org.apache.kafka:kafka-clients@3.5.1.
Overview
Affected versions of this package are vulnerable to Integer Overflow or Wraparound via the shuffle(int[] input)
function due to improper validation of the multiplications done on the input length.
Exploiting this vulnerability is possible by passing negative, zero, float, very small, or very long values to the shuffle
functions, which later on are multiplicated by four.
A successful exploration results in “java.lang.ArrayIndexOutOfBoundsException" or “java.lang.NegativeArraySizeException” exceptions which can crash the program.
PoC
package org.example;
import org.xerial.snappy.BitShuffle;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
int[] original = new int[0x40000000];
byte[] shuffled = BitShuffle.shuffle(original);
System.out.println(shuffled[0]);
}
}
The program will crash, showing the following error (or similar):
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
at org.example.Main.main(Main.java:12)
Process finished with exit code 1
Remediation
Upgrade org.xerial.snappy:snappy-java
to version 1.1.10.1 or higher.
References
medium severity
- Vulnerable module: org.xerial.snappy:snappy-java
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0 › org.xerial.snappy:snappy-java@1.1.7.3Remediation: Upgrade to org.apache.kafka:kafka-clients@3.5.1.
Overview
Affected versions of this package are vulnerable to Integer Overflow or Wraparound via the function compress(char[] input)
in Snappy.java
due to improper validation of the array length.
Exploiting this vulnerability is possible when the “buf” array compiled by the maxCompressedLength
function is successfully allocated but its size might be too small to use for the compression, causing a fatal Access Violation error.
Note: The issue most likely won’t occur when using a byte array since creating a byte array of size 0x80000000 (or any other negative value) is impossible in the first place.
PoC
package org.example;
import org.xerial.snappy.Snappy;
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
char[] uncompressed = new char[0x40000000];
byte[] compressed = Snappy.compress(uncompressed);
}
}
Remediation
Upgrade org.xerial.snappy:snappy-java
to version 1.1.10.1 or higher.
References
medium severity
- Vulnerable module: com.google.protobuf:protobuf-java
- Introduced through: com.google.protobuf:protobuf-java@3.9.2
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › com.google.protobuf:protobuf-java@3.9.2Remediation: Upgrade to com.google.protobuf:protobuf-java@3.16.3.
Overview
com.google.protobuf:protobuf-java is a Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
Affected versions of this package are vulnerable to Denial of Service (DoS) via the parsing procedure for binary and text format data. Input streams containing multiple instances of non-repeated embedded messages with repeated or unknown fields cause objects to be converted back and forth between mutable and immutable forms, resulting in potentially long garbage collection pauses.
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 com.google.protobuf:protobuf-java
to version 3.16.3, 3.19.6, 3.20.3, 3.21.7 or higher.
References
medium severity
- Vulnerable module: org.apache.kafka:kafka-clients
- Introduced through: org.apache.kafka:kafka-clients@2.3.0
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › org.apache.kafka:kafka-clients@2.3.0Remediation: Upgrade to org.apache.kafka:kafka-clients@3.4.0.
Overview
org.apache.kafka:kafka-clients is a streaming platform that can publish and subscribe to streams of records, store streams of records in a fault-tolerant durable way, and process streams of records as they occur.
Affected versions of this package are vulnerable to Deserialization of Untrusted Data when there are gadgets in the classpath
. The server will connect to the attacker's LDAP server and deserialize the LDAP response, which the attacker can use to execute java deserialization gadget chains on the Kafka connect server.
Note: Exploitation requires access to a Kafka Connect worker, and the ability to create/modify connectors on it with an arbitrary Kafka client SASL JAAS config and a SASL-based security protocol.
Mitigation
Kafka Connect users are advised to validate connector configurations and only allow trusted JNDI configurations.
Users should examine connector dependencies for vulnerable versions and either upgrade their connectors, upgrading that specific dependency, or removing the connectors as options for remediation.
Kafka Connect users can also implement their own connector client config override policy, which can be used to control which Kafka client properties can be overridden directly in a connector config and which cannot.
Details
Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.
Deserialization of untrusted data (CWE-502) is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, thus allowing the attacker to control the state or the flow of the execution.
Remediation
Upgrade org.apache.kafka:kafka-clients
to version 3.4.0 or higher.
References
low severity
- Vulnerable module: com.google.guava:guava
- Introduced through: io.alkal:kalium@0.0.3
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › io.alkal:kalium@0.0.3 › com.google.guava:guava@28.1-jre
Overview
com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.
Affected versions of this package are vulnerable to Creation of Temporary File in Directory with Insecure Permissions due to the use of Java's default temporary directory for file creation in FileBackedOutputStream
. Other users and apps on the machine with access to the default Java temporary directory can access the files created by this class. This more fully addresses the underlying issue described in CVE-2020-8908, by deprecating the permissive temp file creation behavior.
NOTE: Even though the security vulnerability is fixed in version 32.0.0, the maintainers recommend using version 32.0.1, as version 32.0.0 breaks some functionality under Windows.
Remediation
Upgrade com.google.guava:guava
to version 32.0.0-android, 32.0.0-jre or higher.
References
low severity
- Vulnerable module: com.google.guava:guava
- Introduced through: io.alkal:kalium@0.0.3
Detailed paths
-
Introduced through: alkal-io/kalium-kafka@alkal-io/kalium-kafka#729f6979e643b7b2429cff881972d84c1882189c › io.alkal:kalium@0.0.3 › com.google.guava:guava@28.1-jre
Overview
com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.
Affected versions of this package are vulnerable to Information Disclosure.
The file permissions on the file created by com.google.common.io.Files.createTempDir
allow an attacker running a malicious program co-resident on the same machine to steal secrets stored in this directory. This is because, by default, on unix-like operating systems the /tmp directory is shared between all users, so if the correct file permissions aren't set by the directory/file creator, the file becomes readable by all other users on that system.
PoC
File guavaTempDir = com.google.common.io.Files.createTempDir();
System.out.println("Guava Temp Dir: " + guavaTempDir.getName());
runLS(guavaTempDir.getParentFile(), guavaTempDir); // Prints the file permissions -> drwxr-xr-x
File child = new File(guavaTempDir, "guava-child.txt");
child.createNewFile();
runLS(guavaTempDir, child); // Prints the file permissions -> -rw-r--r--
For Android developers, choosing a temporary directory API provided by Android is recommended, such as context.getCacheDir()
. For other Java developers, we recommend migrating to the Java 7 API java.nio.file.Files.createTempDirectory()
which explicitly configures permissions of 700, or configuring the Java runtime's java.io.tmpdir system property to point to a location whose permissions are appropriately configured.
Remediation
There is no fix for com.google.guava:guava
. However, in version 30.0 and above, the vulnerable functionality has been deprecated. In oder to mitigate this vulnerability, upgrade to version 30.0 or higher and ensure your dependencies don't use the createTempDir or createTempFile methods.