frida-python
frida-python copied to clipboard
Frida Python bindings
Trying to injection below script in a binary named yolo.exe to get the address of the function lol but unable to get any output. js = """ // Maximum payload...
this is my environment: genymotion: 3.2.1 + Samsung Galaxy S7 6.0-API 23,also test on Google Nexus 5X 8.0-API 26 frida-server: frida-server-15.1.17-android-x86,also tested frida-server-15.1.14-android-x86 and frida-server-15.0.0-android-x86 script: https://github.com/frida/frida-python/blob/master/examples/child_gating.py I only changed...
We need to add support for tracing high-level methods of Java Classes via patterns i.e. the Android/Java equivalent of the existing switch, below: `frida-trace -U someApp -m "*[NSFile* write*:*]"`
If a usb device is plugged in after `import frida`, the device won't show up in frida.enumerate_devices(). It's reproducible with the interactive shell. A workaround is to reload frida every...
Hi i'm getting "frida.ProcessNotRespondingError: unexpectedly timed out while waiting for FIFO to establish" when i'm trying to attach specific app. example: process = frida.get_usb_device().attach('AppName') script = process.create_script(jscode) i am using...
I want to call a rpc function in frida js code,below is my rpc: ``` rpc.exports = { signrequesturlwithparameters: function (param_dict,secret,signMethod) { var result=ObjC.classes.GSNetworkUtils.signRequestUrlWithParameters_secret_signMethod_(param_dict,secret,signMethod); return String(ObjC.classes.NSString.stringWithString_(result)); } }; ``` and...
Is there a way to obtain the session object for an application that has Frida embedded? It tried to `attach()` to the process of the app, but this only results...
`enumerate_processes()` / `attach` / processed that end up calling `get_process()` fail to get all processes when using python3.6 / 3.7 ```python File "/usr/local/lib/python3.6/dist-packages/frida-15.0.12-py3.6-linux-x86_64.egg/frida/core.py", line 26, in wrapper return f(*args, **kwargs)...
error receiving data from code【self._impl.enumerate_processes】, Any suggestions for this problem?? File "d:\miniconda3\lib\site-packages\frida\core.py", line 26, in wrapper return f(*args, **kwargs) File "d:\miniconda3\lib\site-packages\frida\core.py", line 106, in get_process matching = [process for process...
I want to hook Android process in subprocess, but when I use frida python API to do so , code below will stop on ' pid = device.spawn([package_name])' ``` import...