01/27/2015 - Fixed hide file.
This commit is contained in:
Kalen Kinloch 2015-01-27 13:29:59 -08:00
parent fef79dbddf
commit 58020b0891
4 changed files with 8 additions and 3 deletions

View File

@ -274,4 +274,6 @@ Changelog:
01/15/2015 - Slightly updated the change log display, it'll now show all the changes since your version.
01/16/2015 - Made EZ-Injection UI look a bit nicer.
01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager.
01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
--- 2.7.1 ---:
01/27/2015 - Fixed hide file.

View File

@ -1 +1 @@
2.7.0
2.7.1

View File

@ -301,6 +301,8 @@ import the.bytecode.club.bytecodeviewer.plugins.PluginManager;
* 01/27/2015 - Decided to scrap the JVM Sandbox POC and use the Security Manager.
* 01/27/2015 - BCV now blocks exec and won't allow any ports to be bound.
* 01/27/2015 - Added java.awt.Robot to the malicious code scanner.
* -----2.7.1-----:
* 01/27/2015 - Fixed hide file.
*
* @author Konloch
*
@ -321,7 +323,7 @@ public class BytecodeViewer {
private static ArrayList<String> recentFiles = DiskReader.loadArrayList(filesName, false);
private static ArrayList<String> recentPlugins = DiskReader.loadArrayList(pluginsName, false);
public static boolean runningObfuscation = false;
public static String version = "2.7.0";
public static String version = "2.7.1";
private static long start = System.currentTimeMillis();
public static String lastDirectory = "";
private static Thread versionChecker = new Thread() {
@ -500,6 +502,7 @@ public class BytecodeViewer {
}
public static void main(String[] args) {
getBCVDirectory();
SecurityManager sm = new SecurityManager() {
@Override
public void checkExec(String cmd) {