Android Debug mode bypass
4 views
6bf9c1fd...
Description
Bypasses debugging mode checks when USB Debugging mode is activated
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l android-debug-mode-bypass.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
setTimeout(function() {
Java.perform(function() {
console.log("");
console.log("[.] Debug check bypass");
var Debug = Java.use('android.os.Debug');
Debug.isDebuggerConnected.implementation = function() {
//console.log('isDebuggerConnected Bypassed !');
return false;
}
});
}, 0);
Comments