Last active
December 11, 2021 05:58
-
-
Save imweijh/3ec6430153e783818880fbab5e4ef5c7 to your computer and use it in GitHub Desktop.
log4j clean jndi class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find / -iname 'log4j-core*.jar' -exec jar tf {} \; | grep org/apache/logging/log4j/core/lookup/JndiLookup.class | |
find / -iname 'log4j-core*.jar' -print0 | xargs -0 -I{} zip -d {} org/apache/logging/log4j/core/lookup/JndiLookup.class | |
find / -iname 'log4j-core*.jar' -exec jar tf {} \; | grep org/apache/logging/log4j/core/lookup/JndiLookup.class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment