Blaze not vulnerable to CVE-2021-44228 (log4j) #564
alexanderkiel
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Blaze isn't vulnerable to CVE-2021-44228 because it doesn't use or depend on log4j.
Although Blaze is written in Clojure, it still runs on the JVM and uses many libraries from the Java ecosystem. The primary logging library Blaze uses is timbre, a pure Clojure logging library. The Java libraries, Blaze uses, all use the slf4j logging api. That libraries are
org.apache.kafka/kafka-clients:3.0.0
andcom.datastax.oss/java-driver-core:4.13.0
. However the logging of that libraries is disabled by depending onorg.slf4j/slf4j-nop
at top-level.Beta Was this translation helpful? Give feedback.
All reactions