Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // HackTheBox challenge mobile => Waiting
- // Telegram : @HTB0X
- Java.perform(function () {
- var System = Java.use('java.lang.System');
- System.loadLibrary.overload('java.lang.String').implementation = function (library) {
- console.log('[*] LoadLibrary call: ' + library);
- if (library === 'native-lib') {
- console.log('[+] bypass loading of '+ library);
- } else {
- this.loadLibrary(library);
- }
- };
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement