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

Frida Python bindings

Results 58 frida-python issues
Sort by recently updated
recently updated
newest added

to specify logfile to print the output of the tracing. Useful when spawning interactive applications

Long-term hooking in Ubuntu causes the Python script to be unable to print logs from Frida and receive remote calls from Frida. The scenario involves hooking into an IL2CPP Unity...

As of Python 3.10 a new way to annotate decorators was [added](https://peps.python.org/pep-0612/#motivation). Since `typing_extensions` now supports it, it can be a nice boost to local productivity with various IDEs. Before:...

``` ... [294/295] Compiling C object frida/_frida/_frida.abi3.so.p/extension.c.o FAILED: frida/_frida/_frida.abi3.so.p/extension.c.o /usr/bin/cc -Ifrida/_frida/_frida.abi3.so.p -Ifrida/_frida -I../frida/_frida -Isubprojects/frida-core/src/api -I../subprojects/frida-core/src/api -Isubprojects/frida-gum -I../subprojects/frida-gum -Isubprojects/frida-gum/gum -I../subprojects/frida-gum/gum -I../subprojects/frida-gum/gum/arch-x86 -I../subprojects/frida-gum/gum/arch-arm -I../subprojects/frida-gum/gum/arch-arm64 -I../subprojects/frida-gum/gum/arch-mips -Isubprojects/frida-gum/libs -I../subprojects/frida-gum/libs -Isubprojects/frida-gum/libs/gum/heap -I../subprojects/frida-gum/libs/gum/heap -Isubprojects/frida-gum/libs/gum/prof -I../subprojects/frida-gum/libs/gum/prof -I../subprojects/frida-gum/gum/backend-linux/include...

Hi, So with Frida 17, runtime bridges, such as the Java runtime bridge, must be added manually to a custom agent script. This works for me when concatenating the bridge...

``` import frida device = frida.get_usb_device(timeout=5) session = device.attach('...') session.create_script(""" function foo() { Java.perform(() => {}); } rpc.exports = { foo }; """) script.load() api = script.exports_sync api.foo() ``` Frida...

Hi, I'm trying to use Frida with Python on Windows and I'm running into issues with it being detected by anti-cheat / anti-debug systems. I've seen some undetection techniques like...