frida-core icon indicating copy to clipboard operation
frida-core copied to clipboard

Frida core library intended for static linking into bindings

Results 130 frida-core issues
Sort by recently updated
recently updated
newest added

hi, Use the frida-gadget.dylib hook macos program to execute the javascript script. After running for a long time, the memory keeps growing. It seems that the written script has a...

Check out the code example below ``` #include #include #include #include #include int main(){ pid_t pid = getpid(); printf("entry %d\n", pid); kill(pid, SIGSTOP); printf("leave\n"); } ``` When a process receives...

At the following place: https://github.com/frida/frida-core/blob/535bb66d6355c5bba5dfdc412af2130c4863bba2/src/linux/frida-helper-backend.vala#L1938C36-L1938C36 `uint32 breakpoint_val = 0xd4200000U;` needs byte order reversed for aarch64_be as instructions are always little endian. Any idea how to do this elegantly from frida-helper-backend.vala?...

Hi there, I just installed frida and objection to try some iOS debugging. Unfortunately I only receive errors about closed connection and missing gadget. I tried to google it and...

Environment: macOS 14.0 CPU: Apple M2 Model: MacBook Air I downloaded the frida-core-devkit from [frida-core-devkit-16.1.4-freebsd-arm64.tar.xz](https://github.com/frida/frida/releases/download/16.1.4/frida-core-devkit-16.1.4-freebsd-arm64.tar.xz). Within the frida-core-example.c file, I found the gcc command as follows: ```c /* * Compile...

Android: Issue with Frida's device.attach() and device.spawn() Methods Description: I have encountered a bug in Frida's device.attach() and device.spawn() methods while attempting to achieve the following goal: being able to...

im using this code to inject a dylib into a given pid. It works on a test cpp program, but when I run a java program, it crashes, saying `frida_device_attach_sync...

Starting from Frida 16.0.12, `device.inject_library_blob` seems no longer working. With Frida 16.0.11, [examples/inject_library/inject_blob.py](https://github.com/frida/frida-python/blob/main/examples/inject_library/inject_blob.py) is working while with Frida 16.0.12, we get the following error: ``` Console: frida.TransportError: agent connection closed...

When I connect my app with frida this comes Failed to spawn: process not found

I try to build frida-core on window. I got this error ``` E0020 identifier "frida_on_pending_garbage" is undefined. ``` I can't find declaration of "frida_on_pending_garbage" in any file. How can I...