
Curated resource hub for Log4j CVE-2021-44228, covering detection, mitigation, exploitation, and dependency management strategies for the critical remote code execution vulnerability.
Think about if you actually really require Log4j2 Core. Most likely, your own code (or some 3rd-party library you depend on) only need Log4j's Logging API façade - but can log to another back-end. You could therefore simply completely exclude the org.apache.logging.log4j:log4j-core dependency.
Use one of several available "Logging API Bridges" to connect (only) log4j-api with another Logging Implementation back-end:
Log4j2-SLF4j-Logback using log4j-to-slf4j
Log4j2-to-JUL from LOG4J2-3282 by me, as https://github.com/vorburger/Learning-Log4j2 illustrates.
This makes particular sense if you, or your Cloud Provider, has existing infrastructure for the respective back-end: