he

by
4 views 7ac972f8...

Description

he

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

Replace YOUR_PACKAGE_NAME with the target app's package name.

Source Code

JavaScript
 Java.perform(function() {
   const StringBuilder = Java.use('java.lang.StringBuilder');
   StringBuilder.toString.implementation = function() {

     var res = this.toString();
       //console.log(res);
    //   var tmp = "";
    //   if (res !== null) {
    //      tmp = res.toString().replace("/n", "");
    //      console.log(tmp);
    //   }
     return res;
   };

 });
Share this script:
Twitter LinkedIn

Comments

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