Bypass Root Plugins cyberkatze iRoot
4 views
827730ed...
Description
Bypass root detection android for plugins cyberkatze iroot
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l bypass-root-plugins-cyberkatze-iroot.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
// Author: 0xshdax
Java.perform(function() {
let IRoot = Java.use("de.cyberkatze.iroot.IRoot");
IRoot["execute"].implementation = function(str, jSONArray, callbackContext) {
this["execute"](str, jSONArray, callbackContext);
console.log(`Bypass Root [!]`);
return false;
};
});
Comments