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
| git checkout --orphan latest_branch && \ | |
| git add -A && \ | |
| git commit -am "initial commit" && \ | |
| git branch -D master && \ | |
| git branch -m master && \ | |
| git push -f origin master |
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
| Process.enumerateModules({ | |
| onMatch: function(module){ | |
| console.log('Module name: ' + module.name + " - " + "Base Address: " + module.base.toString()); | |
| if (module.name=="libnative-lib.so"){ | |
| var secret="" | |
| Interceptor.attach(module.base.add(0x06cf), function() { | |
| var x = this.context.eax; | |
| var y = this.context.ecx; | |
| var z = x ^ y; | |
| secret+=String.fromCharCode(z) |
NewerOlder