2

by
4 views e647b272...

Description

2

How to Use

Download the script and run it with Frida CLI:

Download Script

Then run with Frida:

frida -U -f YOUR_PACKAGE_NAME -l 2.js

Replace YOUR_PACKAGE_NAME with the target app's package name.

Source Code

JavaScript
Java.perform(function() {
var res2 = Java.use('com.android.okhttp.Response$Builder');
    res2.build.implementation = function() {

        var response = this.build();
var base64 = Java.use('android.util.Base64');

        console.log(response.headers())
        console.log(response.message())
        console.log("## REQ ### ");
        console.log(response.request());
        console.log(response.request().headers());



        console.log("## -REQ- ### ");
        return response;
    };
    

});
Share this script:
Twitter LinkedIn

Comments

Login or Sign up to leave a comment.
Loading comments...