Scottyab Root bypass
4 views
e4709a99...
Description
Latest Scottyab Root bypass
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l scottyab-root-bypass.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function () {
setTimeout(function () {
// List all loaded modules
var modules = Process.enumerateModules();
modules.forEach(function(module) {
console.log("Loaded module:", module.name);
});
// Find the base address of the target module
var targetModule = Process.getModuleByName("libtoolChecker.so");
if (targetModule) {
console.log("Found libtoolChecker.so at:", targetModule.base);
} else {
console.log("Failed to find libtoolChecker.so.");
}
}, 2000); // Wait for 2 seconds before trying to access the modules
});
Comments