darklinux Posted July 28, 2022 Posted July 28, 2022 View File 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! Submitter darklinux Submitted 07/26/2022 Category Tools 3
shuishan Posted September 26, 2022 Posted September 26, 2022 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) } }); }; 1
Ferib Posted October 1, 2022 Posted October 1, 2022 @shuishanJust inject frida gadget .so and then use your .JS script? xDD
shuishan Posted November 11, 2022 Posted November 11, 2022 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]
299864_1434558303 Posted January 11, 2023 Posted January 11, 2023 (edited) Can you sen video how to use this injector? Edited January 11, 2023 by 299864_1434558303
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now