We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d9f167 commit 159e079Copy full SHA for 159e079
wip-attackercode/insecurebankRootBypass.js
@@ -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
17
+};
18
19
+});
20
+console.log("Done!");
0 commit comments