Tbdoool
7 views
175d3bf0...
Description
Tabdool
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l tbdoool.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
Java.perform(function () {
var ProtectedApp = Java.use("mobi.foo.sama.ProtectedApp");
// Hook the onCreate method to bypass the protection
ProtectedApp.onCreate.implementation = function () {
console.log("Bypassing ProtectedApp.onCreate");
// Do not call the original method to prevent the exception
};
// Hook the AsfG method (if it's part of the protection mechanism)
ProtectedApp.AsfG.implementation = function () {
console.log("Bypassing ProtectedApp.AsfG");
return 0; // Return a safe value to prevent the exception
};
});
Comments