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