File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
src/the/bytecode/club/bytecodeviewer Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -274,4 +274,6 @@ Changelog:
274
274
01/15/2015 - Slightly updated the change log display, it'll now show all the changes since your version.
275
275
01/16/2015 - Made EZ-Injection UI look a bit nicer.
276
276
01/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 301
301
* 01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager.
302
302
* 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
303
303
* 01/27/2015 - Added java.awt.Robot to the malicious code scanner.
304
+ * -----2.7.1-----:
305
+ * 01/27/2015 - Fixed hide file.
304
306
*
305
307
* @author Konloch
306
308
*
@@ -321,7 +323,7 @@ public class BytecodeViewer {
321
323
private static ArrayList <String > recentFiles = DiskReader .loadArrayList (filesName , false );
322
324
private static ArrayList <String > recentPlugins = DiskReader .loadArrayList (pluginsName , false );
323
325
public static boolean runningObfuscation = false ;
324
- public static String version = "2.7.0 " ;
326
+ public static String version = "2.7.1 " ;
325
327
private static long start = System .currentTimeMillis ();
326
328
public static String lastDirectory = "" ;
327
329
private static Thread versionChecker = new Thread () {
@@ -500,6 +502,7 @@ public static byte[] getClassFile(Class<?> clazz) throws IOException {
500
502
}
501
503
502
504
public static void main (String [] args ) {
505
+ getBCVDirectory ();
503
506
SecurityManager sm = new SecurityManager () {
504
507
@ Override
505
508
public void checkExec (String cmd ) {
You can’t perform that action at this time.
0 commit comments