Created
December 24, 2019 12:36
-
-
Save eybisi/9d8048eec1df924b562269441f806428 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//frida -U -f appinventor.ai_turkprogrammerman.rubiko -l ninja.js --no-pause | |
Java.perform(function() { | |
var f = Java.use("appinventor.ai_turkprogrammerman.rubiko.Screen1$frame") | |
f.apply0.implementation = function(a){ | |
//send(a.selector) | |
return this.apply0(a) | |
} | |
var f2 = Java.use("com.tiziano1960.cryptoextension.cryptoextension") | |
f2.Encrypt.implementation = function(a,b,c){ | |
console.log(a,b,c) | |
var sexy = this.Encrypt(a,b,c) | |
console.log(sexy) | |
return sexy | |
} | |
f2.Decrypt.implementation = function(a,b,c){ | |
var lol = this.Decrypt("halatim27bogum","0Z6jzL9N9c8zkM5xft1nW94vZPE3XbGZwZvhwNIy5pfvBkIGs+fEiQDrj8vQ6B211kdkJpdstzCwtEZEMzGUduR06MUOIelWWfHhFHKi/QBV94ZYUDijtbkIRxLfG74GxN8D6mfxb9xRUwPb/PLVd7MoTHJfrQQnOmH3biIDR2U=","7NKoJAiEDbl0vU6/+KPOIg==:8lfAK82twDfNABYHc6gqOFLGUiHHzG0+Wo7O5gjHlh0=:TRr9tyq9SSNbVr1ojeDioFiaEfZs1NfWRMbHy6L1+xlOhQyVAzjIbyf8s76GX4tj") | |
return lol | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment