vmate

by
6 views ded294e0...

Description

vmate

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 vmate.js

Replace YOUR_PACKAGE_NAME with the target app's package name.

Source Code

JavaScript
Java.perform(function() {
let DecorativePacket = Java.use("com.ushareit.core.algo.DecorativePacket");
DecorativePacket.b.overload('java.lang.String').implementation = function(ok){
    let ret = this.b(ok);
    console.log(ok);
    return ret;
};
});
Share this script:
Twitter LinkedIn

Comments

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