File tree Expand file tree Collapse file tree
src/the/bytecode/club/bytecodeviewer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -274,4 +274,6 @@ Changelog:
27427401/15/2015 - Slightly updated the change log display, it'll now show all the changes since your version.
27527501/16/2015 - Made EZ-Injection UI look a bit nicer.
27627601/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager.
277- 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
277+ 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
278+ --- 2.7.1 ---:
279+ 01/27/2015 - Fixed hide file.
Original file line number Diff line number Diff line change 1- 2.7.0
1+ 2.7.1
Original file line number Diff line number Diff line change 301301 * 01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager.
302302 * 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
303303 * 01/27/2015 - Added java.awt.Robot to the malicious code scanner.
304+ * -----2.7.1-----:
305+ * 01/27/2015 - Fixed hide file.
304306 *
305307 * @author Konloch
306308 *
@@ -321,7 +323,7 @@ public class BytecodeViewer {
321323 private static ArrayList <String > recentFiles = DiskReader .loadArrayList (filesName , false );
322324 private static ArrayList <String > recentPlugins = DiskReader .loadArrayList (pluginsName , false );
323325 public static boolean runningObfuscation = false ;
324- public static String version = "2.7.0 " ;
326+ public static String version = "2.7.1 " ;
325327 private static long start = System .currentTimeMillis ();
326328 public static String lastDirectory = "" ;
327329 private static Thread versionChecker = new Thread () {
@@ -500,6 +502,7 @@ public static byte[] getClassFile(Class<?> clazz) throws IOException {
500502 }
501503
502504 public static void main (String [] args ) {
505+ getBCVDirectory ();
503506 SecurityManager sm = new SecurityManager () {
504507 @ Override
505508 public void checkExec (String cmd ) {
You can’t perform that action at this time.
0 commit comments