Skip to content

Commit 58020b0

Browse files
committed
2.7.1
01/27/2015 - Fixed hide file.
1 parent fef79db commit 58020b0

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed
42.1 MB
Binary file not shown.

README.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,4 +274,6 @@ Changelog:
274274
01/15/2015 - Slightly updated the change log display, it'll now show all the changes since your version.
275275
01/16/2015 - Made EZ-Injection UI look a bit nicer.
276276
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.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.7.1

src/the/bytecode/club/bytecodeviewer/BytecodeViewer.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,8 @@
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) {

0 commit comments

Comments
 (0)