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.I am doing a CrackMe. When I use frida to try it one letter by one letter, it crashed. > 0x00007FF8D381F515 (_frida.cp36-win_amd64.pyd) (python.exe 中)处有未经处理的异常: 0xC0000005: 读取位置 0x0000000000000002 时发生访问冲突。 Try it...

**1. Description :** Using **Process.enumerateModulesSync**() when one of the module (eg. binary instrumented path) path contains a space does not work properly. **2. Steps to reproduce :** `mkdir "/tmp/Frida Test"...

### 前言 今天准备接触下frida, 使用下 [AloneMonkey/frida-ios-dump](https://github.com/AloneMonkey/frida-ios-dump)的py, 但是发现了一个问题 ``` Failed to spawn: unable to launch iOS app: timeout ``` I've tried multiple apps but they all have the same problem ### 问题具体分析...

Frida gadget script loaded asynchronously on Windows so we miss some of the early api calls. I have found the following commit: 81044a378501dfc144931784f66e836245fbbba6 Looks like it fixes windows gadget loading...

loader.py ``` import time import frida def my_message_handler(message, payload): print message print payload device = frida.get_usb_device() pid = device.spawn(["com.example.a11x256.frida_test"]) device.resume(pid) time.sleep(1) # Without it Java.perform silently fails session = device.attach(pid)...

I'm running this "test.js": ``` Java.perform(function () { var Activity = Java.use("com.example.MainActivity"); Activity.onResume.implementation = function () { console.log("[*] onResume() got called!"); this.onResume(); }; }); ``` `$ frida -U -l test.js...

``` $ frida-kill 1479 (process:2574): Frida-CRITICAL **: frida_temporary_file_destroy: assertion 'self != NULL' failed ** Frida:ERROR:src/frida-core@sta/frida-helper-process.c:3396:frida_darwin_helper_process_get_resource_store: code should not be reached Abort trap: 6 ``` Easy steps to repro: 1. Launch...

Currently when running `frida` (the REPL) on a console application on Windows, there is no way to interact with the process because primary interaction is with the REPL console, and...

If i inject a script in a process, after the injection happened successfully and the agent is running, the processes dont get cleaned. And on every injection, there will be...

Hi there I got a apk file from [here](https://github.com/ctfs/write-ups-2015/blob/master/seccon-quals-ctf-2015/binary/reverse-engineering-android-apk-1/rps.apk) and installed it into my Android emulator(5.1 x86) which is downloaded from Google via Android Virtual Device Manager. When I ran...