Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CVE-2023-3635 - Denial of Service (DoS) in com.squareup.okio:okio #29657

Closed
github-actions bot opened this issue May 18, 2024 · 2 comments
Closed

CVE-2023-3635 - Denial of Service (DoS) in com.squareup.okio:okio #29657

github-actions bot opened this issue May 18, 2024 · 2 comments
Assignees
Labels
backport/main backport/24.0 kind/bug Categorizes a PR related to a bug kind/cve Issues identified as CVEs on third-party dependencies, or issues which Keycloak is not affected team/cloud-native

Comments

@github-actions
Copy link

CVE-2023-3635 - Denial of Service (DoS) in com.squareup.okio:okio
com.squareup.okio:okio
Introduced through: org.keycloak:keycloak-operator@999.0.0-SNAPSHOT › io.fabric8:kubernetes-junit-jupiter@6.10.0 › io.fabric8:kubernetes-client@6.10.0 › io.fabric8:kubernetes-httpclient-okhttp@6.10.0 › com.squareup.okhttp3:okhttp@3.12.12 › com.squareup.okio:okio@1.15.0

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) due to improper exception handling by the GzipSource class when parsing a malformed gzip buffer.

This vulnerability can be exploited on the Okio client when handling a crafted GZIP archive.

PoC

val gzBuf: Buffer = Buffer()
    try {
        val gzByteString: ByteString = ("1f8b41ff424242424343ffff").decodeHex()
        gzBuf.write(gzByteString)
        val gz: GzipSource = GzipSource(gzBuf)
        val sinkBuf: Buffer = Buffer()
        gz.read(sinkBuf, 5)
    }
    catch(e: IOException) {
        println("got error: " + e.toString())
    }

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.squareup.okio:okio to version 1.17.6, 3.4.0 or higher.

References

@github-actions github-actions bot added kind/bug Categorizes a PR related to a bug kind/cve Issues identified as CVEs on third-party dependencies, or issues which Keycloak is not affected status/triage labels May 18, 2024
@abstractj
Copy link
Contributor

@vmuzikar I believe this issue has the similar reasons to close as #29604.

@vmuzikar
Copy link
Contributor

@abstractj Yes, this is also coming from kubernetes-junit-jupiter so it doesn't affect the main distribution.

@vmuzikar vmuzikar closed this as not planned Won't fix, can't repro, duplicate, stale May 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/main backport/24.0 kind/bug Categorizes a PR related to a bug kind/cve Issues identified as CVEs on third-party dependencies, or issues which Keycloak is not affected team/cloud-native
Projects
None yet
Development

No branches or pull requests

2 participants