rms-runtime-mobile-security
Version:
Runtime Mobile Security (RMS), powered by FRIDA, is a powerful web interface that helps you to manipulate Android and iOS Apps at Runtime
15 lines (13 loc) • 492 B
JavaScript
/************************************************************************
* Name: System.exit() Bypass
* OS: Android
* Author: @mobilesecurity_
* Source: https://github.com/m0bilesecurity
*************************************************************************/
Java.perform(function () {
const System = Java.use('java.lang.System')
send("--> System.exit() Bypass - Script Loaded")
System.exit.implementation = function(){
send("System.exit() Bypassed!");
}
});