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

I used `pip` to install `frida` with Python on Windows 10 64 bit. But if I try to do `python example.py` as mentioned in the docs, I get ``` ***...

I tried to hook a java method witch take a "org.json.JSONObject" argument. Usually it works well, console.log() can properly print out the "org.json.JSONObject" argument data. But when then JSON data...

def start_frida_spawn(process): pid = frida.spawn([process]) session = frida.attach(pid) frida.resume(pid) scriptFile = open("scr.js", 'r') scr = scriptFile.read() script = session.create_script(scr) script.on("message", on_message) script.load() how to make it spawn a GUI for...

Hi everyone, I have a problem when I run frida: ``` *** Failed to load the Frida native extension: /usr/local/lib/python3.6/dist-packages/_frida.cpython-36m-arm-linux-gnueabihf.so: cannot open shared object file: No such file or directory...

We have discovered that the tool downloads its dependencies during installation. This is a typical behavior of malicious software and is getting blocked in a sandbox environment such as Gentoo...

``` [01:03] dpnishant: I've been wanting to add a `repl()` function that you can call from those scripts to drop in a REPL that's blocking in the current location [01:03]...

C:\python32\python-2.7.10\python.exe D:/source/python/tracking_tools/Tracking.py Traceback (most recent call last): File "D:/source/python/tracking_tools/Tracking.py", line 33, in process = frida.get_usb_device().attach('com.app.test') File "C:\Users\Gigabyte\AppData\Roaming\Python\Python27\site-packages\frida\core.py", line 97, in attach return Session(self._impl.attach(self._pid_of(target))) File "C:\Users\Gigabyte\AppData\Roaming\Python\Python27\site-packages\frida\core.py", line 115, in _pid_of return...

Hello, I'm trying to make an app debuggable by hooking [`android.os.Process.start()`](http://androidxref.com/5.0.0_r2/xref/frameworks/base/core/java/android/os/Process.java) and modifying the debug flag value. Also mentioned in [this issue](https://github.com/frida/frida/issues/13). However, after being able to successfully hook the...

Hi, I’m trying to spawn a mobile application using the following python code taken from (https://www.frida.re/news/ ) : ``` import frida app = "com.atebits.Tweetie2" print ("[*] Spawning " + str(app))...

It would be awesome if we could trace arbitrary functions by looking them up in debug symbols, in addition to standard symbols.