frida-python
frida-python copied to clipboard
Frida Python bindings
I'm trying to connect to ipv6 frida server `frida-server-16.1.8-windows-x86_64.exe -l fdb1:5644:912e:5307:fa99:93bc:d92f:83e3` and in my python code ``` manager = frida.get_device_manager() device = manager.add_remote_device("fdb1:5644:912e:5307:fa99:93bc:d92f:83e3") process = device.get_process("Something.exe") pid = process.pid print(id)...
Attempting to build the python library on ubuntu 22.04, i get this error: ``` The Meson build system Version: 1.4.99 Source dir: /home/user/frida/frida-python Build dir: /home/user/frida/build/tmp-linux-x86_64/frida-python3.12 Build type: native build...
def get_process(self, process_name: str, #scope) -> _frida.Process: """ Get the process with the given name :raises ProcessNotFoundError: if the process was not found or there were more than one process...
In `frida-trace` there is a -W option that can be used to await spawn, i.e. one can specify API filter with -j flag for a Android APK and use -W...
I used the following js code to create a new instance of MainActivity `setTimeout(function () { Java.perform(function () { var myClass = Java.use("com.example.app.MainActivity"); var myInstance = myClass.$new(); send("here"); var res...
Please check the error logs as follow: (frida --version 14.0.0) ``` Python 3.9.0 (tags/v3.9.0:9cf6752, Oct 5 2020, 15:34:40) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or...
how to config token
Hi, what is the intended way to change a value provided through Python to the JavaScript part? Currently when I'm replacing a boolean value (provided through the terminal interface) I...
Are there recommended sizes for callbacks in frida-python from a time perspective? Could there be issues when there is a long callback, that even creates a subprocess? (Speaking of the...