keycloak / keycloak

Open Source Identity and Access Management For Modern Applications and Services
https://www.keycloak.org
Apache License 2.0
23.38k stars 6.76k forks source link

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

Closed github-actions[bot] closed 4 weeks ago

github-actions[bot] commented 1 month ago

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.13.3 › io.fabric8:kubernetes-client@6.13.3 › io.fabric8:kubernetes-httpclient-okhttp@6.13.3 › 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:

Remediation

Upgrade com.squareup.okio:okio to version 1.17.6, 3.4.0 or higher.

References

abstractj commented 4 weeks ago

Duplicate of https://github.com/keycloak/keycloak/issues/33839. See: https://github.com/keycloak/keycloak/issues/33925.