From c51c4f0b81637ac8ec103b4302abc2c866a4649a Mon Sep 17 00:00:00 2001 From: Konloch Date: Sat, 22 Jan 2022 12:59:22 -0600 Subject: [PATCH] Code Cleanup --- plugins/javascript/ExampleStringDecrypter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/javascript/ExampleStringDecrypter.js b/plugins/javascript/ExampleStringDecrypter.js index 0098c7f3..9df57f0e 100644 --- a/plugins/javascript/ExampleStringDecrypter.js +++ b/plugins/javascript/ExampleStringDecrypter.js @@ -33,7 +33,7 @@ function execute(classNodeList) { //then print out the value of the fields inside the class //if the strings get decrypted on init, this allows you to dump the current values - if (field.name.equals("z")) {// && f.desc.equals("([Ljava/lang/String;)V")) { + if (field.name.equals("z")) { try { var loadedClass = BytecodeViewer.getClassNodeLoader().nodeToClass(cn); var reflectedFields = loadedClass.getFields();