Skip to content

Commit

Permalink
2.9.3
Browse files Browse the repository at this point in the history
02/28/2015 - Added drag and drop for any file.
02/28/2015 - Added ctrl + w to close the current opened tab.
02/28/2015 - Updated to CFR 0_97.jar
02/28/2015 - Fixed a concurrency issue with the decompilers.
02/28/2015 - Added image resize via scroll on mouse.
02/28/2015 - Added resource refreshing.
02/28/2015 - Im Frizzy started working on Obfuscation.
03/20/2015 - Updated Dex2Jar to 2.0.
03/20/2015 - Updated CFR to 0_98.jar
  • Loading branch information
Konloch committed Mar 20, 2015
1 parent a1dc3ae commit 2addfb9
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 7 deletions.
Binary file not shown.
Binary file modified BytecodeViewer.exe
Binary file not shown.
12 changes: 11 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,14 @@ Changelog:
02/24/2015 - Fixed the third pane window not showing the search buttons.
02/24/2015 - Fixed some issues with the compiler functionality.
--- 2.9.2 ---:
02/24/2015 - Actually fixed the compiler, LOL.
02/24/2015 - Actually fixed the compiler, LOL.
--- 2.9.3 ---:
02/28/2015 - Added drag and drop for any file.
02/28/2015 - Added ctrl + w to close the current opened tab.
02/28/2015 - Updated to CFR 0_97.jar
02/28/2015 - Fixed a concurrency issue with the decompilers.
02/28/2015 - Added image resize via scroll on mouse.
02/28/2015 - Added resource refreshing.
02/28/2015 - Im Frizzy started working on Obfuscation.
03/20/2015 - Updated Dex2Jar to 2.0.
03/20/2015 - Updated CFR to 0_98.jar
Binary file renamed libs/cfr_0_97.jar → libs/cfr_0_98.jar
Binary file not shown.
Binary file added libs/dex2jar_2.0_obf.jar
Binary file not shown.
Binary file removed libs/dex_obf.jar
Binary file not shown.
10 changes: 8 additions & 2 deletions src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
* fix the randomly sometimes fucked up names on file navigation bug
* make zipfile not include the decode shit
* When you drag a folder, it must add the folder name not just the child into the root jtree path
* add ctrl + r for run
* add ctrl + t for compile
* add stackmapframes to bytecode decompiler
* add stackmapframes remover?
*
* -----2.9.3-----:
* 02/28/2015 - Added drag and drop for any file.
Expand All @@ -92,6 +96,8 @@
* 02/28/2015 - Added image resize via scroll on mouse.
* 02/28/2015 - Added resource refreshing.
* 02/28/2015 - Im Frizzy started working on Obfuscation.
* 03/20/2015 - Updated Dex2Jar to 2.0.
* 03/20/2015 - Updated CFR to 0_98.jar
*
* @author Konloch
*
Expand Down Expand Up @@ -422,7 +428,7 @@ public static boolean compile(boolean message) {
if( cv.smali1 != null && cv.smali1.isEditable() ||
cv.smali2 != null && cv.smali2.isEditable() ||
cv.smali3 != null && cv.smali3.isEditable())
{
{
actuallyTried = true;
Object smali[] = cv.getSmali();
if(smali != null) {
Expand Down Expand Up @@ -463,7 +469,7 @@ public static boolean compile(boolean message) {
if( cv.java1 != null && cv.java1.isEditable() ||
cv.java2 != null && cv.java2.isEditable() ||
cv.java3 != null && cv.java3.isEditable())
{
{
actuallyTried = true;
Object java[] = cv.getJava();
if(java != null) {
Expand Down
6 changes: 4 additions & 2 deletions src/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ public void run() {
}

public MainViewerGUI() {
mnNewMenu_5.setVisible(false);
KeyboardFocusManager.getCurrentKeyboardFocusManager().addKeyEventDispatcher(new Test());
this.addWindowStateListener(new WindowAdapter() {
public void windowStateChanged(WindowEvent evt) {
Expand Down Expand Up @@ -1681,9 +1682,10 @@ public boolean accept(File f) {

String extension = getExtension(f);
if (extension != null)
return (extension.equals("jar") || extension.equals("zip")
if (extension.equals("jar") || extension.equals("zip")
|| extension.equals("class") || extension.equals("apk")
|| extension.equals("dex"));
|| extension.equals("dex"))
return true;

return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ public class EZInjection extends Plugin {

public static ArrayList<BytecodeHook> hookArray = new ArrayList<BytecodeHook>();
private static String version = "1.0";
private static PluginConsole gui = new PluginConsole("EZ Injection v"
+ version);
private static PluginConsole gui = new PluginConsole("EZ Injection v" + version);
private boolean accessModifiers, injectHooks, invokeMethod, useProxy,
launchKit, console;
public static boolean sandboxSystem, sandboxRuntime, printCmdL;
Expand Down

0 comments on commit 2addfb9

Please sign in to comment.