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
This commit is contained in:
Konloch 2021-07-30 14:05:45 -07:00
parent 4229e71352
commit c7cbd60e3d
1 changed files with 3 additions and 1 deletions

View File

@ -336,6 +336,8 @@ public class SecurityMan extends SecurityManager
throw new SecurityException(e);
}
throw new SecurityException("BCV is awesome, blocking write(" + file + ");");
//TODO temporarily removed to fix #339
// a proper fix is to edit the smali disassembler
//throw new SecurityException("BCV is awesome, blocking write(" + file + ");");
}
}