Frida Root Detection Bypass
Frida script (root_bypass.js)
Java.perform(function(){
var RootCls = Java.use("com.scottyab.rootbeer.RootBeer");
RootCls.isRooted.implementation = function(){
console.log("[*] Root detection bypassed!");
return false;
}
});
Usage
adb shell ps | grep allsafe
frida -U 4463 -l root_bypass.js