Skip to content

Commit 159e079

Browse files
author
dns
committed
added frida root bypass script
1 parent 8d9f167 commit 159e079

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
console.log("Bypassing Root Check on InsecureBankv2");
2+
3+
Java.perform(function () {
4+
5+
var MainActivity = Java.use("com.android.insecurebankv2.PostLogin");
6+
7+
8+
MainActivity.doesSuperuserApkExist.implementation = function(v) {
9+
console.log(v);
10+
console.log("MainActivity.doesSuperuserApkExist called");
11+
return false;
12+
}
13+
14+
MainActivity.doesSUexist.implementation = function() {
15+
console.log("MainActivity.doesSUexist called");
16+
return false;
17+
};
18+
19+
});
20+
console.log("Done!");

0 commit comments

Comments
 (0)