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

When using the following test program started in the background: ``` #include int main (void) { puts ("HELLO"); getchar(); } ``` Frida fails to attach with the following message: ```...

Hi,this problem occured on me.Please look at this picture ![QQ截图20200411162704](https://user-images.githubusercontent.com/30151531/79039075-4dd03380-7c11-11ea-8dee-f2d5a08b49e0.png) It looks like I did something wrong.I just insert smail code into the launchAppliction class.

As mentioned in "[recreating known universal windows password backdoors with Frida](https://sensepost.com/blog/2019/recreating-known-universal-windows-password-backdoors-with-frida/)" blog, attaching to certain system processes requires `SeDebugPrivilege` in the parent process. As that blog author, and I have...

https://github.com/frida/frida-core/blob/master/tests/labrats/Makefile.linux.mk Makefile hard-codes cross-compiler for non-x86 builds: e.g. $1-linux-arm: $2 arm-linux-gnueabi-gcc $$(CFLAGS) $$(LDFLAGS) $$< -o [email protected] $3 arm-linux-gnueabi-strip --strip-all [email protected] mv [email protected] $$@

How to inject so? Please reply me,it's very important to me Thank you!!!

Hi, I'm trying to hook a Swift function that looks like this: static TestLib.TestFacade.isReady(name: Swift.String, isTest: Swift.Bool) -> Swift.Bool I'm hooking its symbol name (mangled): $s12TestLib11TestFacadeC02isC5Ready9name10isTestSbSS_SbtFZ like so: Interceptor.attach(Module.findExportByName(null, '$s12TestLib11TestFacadeC02isC5Ready9name10isTestSbSS_SbtFZ'),...

every-time I try to start Frida server on android device I get a Segmentation fault. - OSX version is same as android on my S5 rooted phone. - I can...

Frida version is 12.7.26 on an iPhone 5s with iOS 12.2, jailbroken with unc0ver (Undecimus-v3.8.0.b1-2). If I manually remove the PIE flag from the MachO header, resign the app and...

Hi, I want to bypass the SSL pinning of an Android app using the Frida Server method. I have followed the whole process described in this tutorial. Below are the...