Bypass Root Plugins cyberkatze iRoot

by
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 Script

Then 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;
    };
});
Share this script:
Twitter LinkedIn

Comments

Login or Sign up to leave a comment.
Loading comments...