Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
1–10 of 209 posts
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#2Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#3Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#4Clone Git Repo... CTRL+F "log4j"... 0 results... (sigh of relief)... :|
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#5Clone Git Repo... CTRL+F "log4j"... 0 results... (sigh of relief)... :|
"A project with a footprint like Log4j is not possible to avoid as a transient dependency even if you don’t directly import it. Log4j is a canonical logging utility for a huge ecosystem. Its current radius is beyond doing due diligence." - @rakyll (AWS)
Which I did today for our 60 microservices.
And also for projects deployed as war files - container server libraries also have to be checked.
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#6Clone Git Repo... CTRL+F "log4j"... 0 results... (sigh of relief)... :|
Lots of developer tools happen to use Java - one immediate example we are investigating is Jenkins.
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#7Earlier quoted context omitted.
"A project with a footprint like Log4j is not possible to avoid as a transient dependency even if you don’t directly import it. Log4j is a canonical logging utility for a huge ecosystem. Its current radius is beyond doing due diligence." - @rakyll (AWS)
Yeah - for example to determine if log4j is used in a maven project one would have to run "mvn dependency:tree | grep log4j". Which I did today for our 60 microservices. And also for projects deployed as war files - container server libraries also have to be checked.
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#8Generally, when the boss asks you which logging library your Javaland project uses, the answer is "all of them."
For what the project used it for, jboss logging could have been replaced with direct slf4j usage, and even if it hadn't, supports slf4j directly so that was a headscratcher
Re: Log4Shell Log4j vulnerability (CVE-2021-44228) – cheat-sheet reference guide
#9Clone Git Repo... CTRL+F "log4j"... 0 results... (sigh of relief)... :|
"A project with a footprint like Log4j is not possible to avoid as a transient dependency even if you don’t directly import it. Log4j is a canonical logging utility for a huge ecosystem. Its current radius is beyond doing due diligence." - @rakyll (AWS)
It's fun to stay at the C.Y.A. :P