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
16 lines (15 loc) • 593 B
JavaScript
/************************************************************************
* Name: Debugger Connected Bypass
* OS: Android
* Author: @mobilesecurity_
* Source: https://github.com/m0bilesecurity
* Info: isDebuggerConnected() always return false
*************************************************************************/
Java.perform(function () {
send("--> isDebuggerConnected - Bypass Loaded")
var Debug = Java.use("android.os.Debug");
Debug.isDebuggerConnected.implementation = function () {
send("isDebuggerConnected - bypass done!");
return false;
}
});