frida icon indicating copy to clipboard operation
frida copied to clipboard

Clone this repo to build Frida

Results 601 frida issues
Sort by recently updated
recently updated
newest added

when I run frida server on Android 11, which version name is RQ3A.210605.005 and model is Pixel 3a,it's result is. always show as follows,Frida server's version is 15.2.2. ``` "type":"error","description":"Error:...

First of all thanks for the awesome tool, amazing work done. So, we have been considering Frida Gadget for runtime interception of methods on our rooted and non-rooted android devices....

I am in the process of learning Go, and want to author frida-go if I can figure out how so I can learn all about CGo interop stuff. I'm assuming...

The following spawns the app, but it times out anyway. `frida -U -f com.google.android.googlequicksearchbox -l ./fridascript.js --no-paus` I tried `su -c setprop persist.device_config.runtime_native.usap_pool_enabled false` but it didn't help. This app...

I can stalk a process with the following: ``` Stalker.follow(threadId, { events: { call: false, ret: false, exec: false, block: false, compile: false }, transform: function (iterator) { var instruction...

Is it possible to send an HTTP Request from inside a Frida Agent? I want to change the return value of an iOS function based on a response from an...

When I try to load an app that I created, like this: ``` C:\mygame>frida -U --no-pause -f com.me.mygame -l scripts\activity-hook.js ``` Frida loads the app, and then I get `Process...

``` Phone: Google Pixel XL System: Android 7.1 NDE63H FridaVersion: 15.1.1 ``` ``` //Java Code public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); byte[]...

Frida Server: 15.1.14 I need to build a map, so I use Interceptor to hook getaddrinfo function in libc. The getaddrinfo function stores the DNS results in "struct addrinfo *",...

Device: iPhone 13 Pro Max iOS: iOS 15.6.1 Frida-Gadget: 15.2.2 ``` Memory.patchCode(address, size, code => { this.log('Writing byte array'); code.writeByteArray(bytes); }); ``` causes this error on iOS 15.6.1, frida-gadget 15.2.2,...