Skip to content

Commit c7cbd60

Browse files
committed
Temporarily Nerf Security Manager
Fixes #339 but introduces remote execution through plugins/EZ-Inject again A proper solution is to fix the smali disassembler to dump the class into the temp directory
1 parent 4229e71 commit c7cbd60

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/the/bytecode/club/bytecodeviewer/util/SecurityMan.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,8 @@ public void checkWrite(String file) {
336336
throw new SecurityException(e);
337337
}
338338

339-
throw new SecurityException("BCV is awesome, blocking write(" + file + ");");
339+
//TODO temporarily removed to fix #339
340+
// a proper fix is to edit the smali disassembler
341+
//throw new SecurityException("BCV is awesome, blocking write(" + file + ");");
340342
}
341343
}

0 commit comments

Comments
 (0)