Skip to content

Commit

Permalink
Fix a logic issue in Wildfly that caused penetration of the Wildfly m…
Browse files Browse the repository at this point in the history
…odule class loader to fail
  • Loading branch information
cnguoyj-leminis committed May 21, 2024
1 parent 666cc49 commit 8129c65
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,7 @@ public Object processWildflyClassLoaderException(int classID, int methodID, Obj
if(exceptionObject instanceof ClassNotFoundException) {
String classname = (String) args[1];

if (SmithProbeProxy.class.getClassLoader() == null &&
((classname.startsWith("com.security.smith.") ||
if (((classname.startsWith("com.security.smith.") ||
classname.startsWith("com.security.smithloader.") ||
classname.startsWith("rasp.io")) ||
classname.startsWith("rasp.org") ||
Expand Down

0 comments on commit 8129c65

Please sign in to comment.