Jump to content

darklinux
 Share

Recommended Posts

Jad3d arm64 .so injector


Info:

  • This project is in a "work in progress" state.
  • Please report any bugs or suggestions.
  • Many features are missing, like "create thread", "save settings", ...
  • Testing was limited, not all .so will work

 

How to use:

  • Attach GG to target process
  • Run script, click "Inject"
  • Locate file via file prompt
  • Select function by name that you would like to run
  • Toggle target app to background and then to foreground
  • Done!

 


 

Link to comment
Share on other sites

  • 1 month later...

Is it possible for the project to evolve as easily as Frida's JS script.

like  this   js  script:

function intercept() {
    // var inter = il2cpp.add("0x661F24");
    var inter = il2cpp.add("0x2535C50");

    Interceptor.attach(inter, {
        onEnter: function(args) {
            console.log('onEnter');
            // console.log("args 1 ", args[0])
            // console.log("args 2 ", args[1])
            // console.log("args 3 ", args[2].readCString())
            // console.log("args 4 ", args[3].readCString())
        },
        onLeave: function(retval) {
            //
            console.log('onLeave');
            console.log("retval 1 is ", retval)
            // return 0x1
            retval.replace(0x1);
            console.log("retval 2 is ", retval)
        }
    });
};

Link to comment
Share on other sites

  • 1 month later...

When I inject a so, I encounter an error.

 

 

file_get_functions ()

if e_type ~= ET.DYN then

        logError(string.format(getText("invalid type %d"), e_type))

        return nil

end

 

When the argument to the function is  "libc.so",

 

the   e_type is 4652

the    ET.DYN is 3

so   return nil   

 

i  dont  know  how  to  fix  it.

 

please   help  me    i   can   pay  for  it    

 

mail:

[email protected]

 

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.