Make Krakatau and Enjarify work offline lol

This commit is contained in:
ItzSomebody 2018-01-30 09:39:32 -08:00
parent b1dd56b217
commit 6491d63eee
4 changed files with 20 additions and 2 deletions

BIN
bytecode-viewer.jar Normal file

Binary file not shown.

View file

@ -1,3 +1,19 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Class-Path: . BytecodeViewer 2.9.9-preview2_lib/byteanalysis-1.0.jar B
ytecodeViewer 2.9.9-preview2_lib/commons-codec-1.9.jar BytecodeViewer
2.9.9-preview2_lib/commons-io-2.4.jar BytecodeViewer 2.9.9-preview2_
lib/commons-lang3-3.3.2.jar BytecodeViewer 2.9.9-preview2_lib/imgscal
r-lib-4.2.jar BytecodeViewer 2.9.9-preview2_lib/jar-rename-1.6.jar By
tecodeViewer 2.9.9-preview2_lib/jasmin-p2.5.jar BytecodeViewer 2.9.9-
preview2_lib/jgraphx.jar BytecodeViewer 2.9.9-preview2_lib/rsyntaxtex
tarea.jar BytecodeViewer 2.9.9-preview2_lib/smali-2.0.3-obf-patched.j
ar BytecodeViewer 2.9.9-preview2_lib/baksmali-2.0.3.jar BytecodeViewe
r 2.9.9-preview2_lib/fernflower2015.jar BytecodeViewer 2.9.9-preview2
_lib/commons-compiler.jar BytecodeViewer 2.9.9-preview2_lib/apktool_2
.0.0rc4_obf.jar BytecodeViewer 2.9.9-preview2_lib/dex2jar_2.0_obf.jar
BytecodeViewer 2.9.9-preview2_lib/jd-gui-1.0.0-RC4.jar BytecodeViewe
r 2.9.9-preview2_lib/procyon-decompiler-0.5.29.jar BytecodeViewer 2.9
.9-preview2_lib/cfr_0_101.jar BytecodeViewer 2.9.9-preview2_lib/commo
ns-net-3.1.jar BytecodeViewer 2.9.9-preview2_lib/janino.jar
Main-Class: the.bytecode.club.bytecodeviewer.BytecodeViewer Main-Class: the.bytecode.club.bytecodeviewer.BytecodeViewer

View file

@ -432,6 +432,9 @@ public class BytecodeViewer {
} }
} }
Boot.checkKrakatau();
Boot.checkEnjarify();
Boot.globalstop = false; Boot.globalstop = false;
Boot.hide(); Boot.hide();

View file

@ -72,8 +72,7 @@ public class LDCSearch implements SearchTypeDetails {
.iterator(); .iterator();
while (instructions.hasNext()) { while (instructions.hasNext()) {
final AbstractInsnNode insnNode = instructions.next(); final AbstractInsnNode insnNode = instructions.next();
if (insnNode instanceof LdcInsnNode if (insnNode instanceof LdcInsnNode) {
&& ((LdcInsnNode) insnNode).cst instanceof String) {
final LdcInsnNode ldcObject = ((LdcInsnNode) insnNode); final LdcInsnNode ldcObject = ((LdcInsnNode) insnNode);
final String ldcString = ldcObject.cst.toString(); final String ldcString = ldcObject.cst.toString();
String desc2 = method.desc; String desc2 = method.desc;