No description
Find a file
Ole André Vadla Ravnås 9b68d34e03 build: Add Meson build system
Co-authored-by: Håvard Sørbø <havard@hsorbo.no>
2024-04-19 12:15:50 +02:00
.github ci: Update the Windows SDK matrix 2024-04-19 12:15:50 +02:00
releng@c1aa36a286 submodules: Bump outdated 2024-04-19 12:15:48 +02:00
subprojects submodules: Restructure to use as Meson subprojects 2024-04-19 12:15:50 +02:00
.cirrus.yml ci: Fix the Cirrus CI clone logic 2024-04-19 12:15:50 +02:00
.gitignore Add gum-linux-x86_64-gir target for GIR generation (#1542) 2021-01-07 01:08:50 +01:00
.gitmodules submodules: Restructure to use as Meson subprojects 2024-04-19 12:15:50 +02:00
CONTRIBUTING.md Fix two spelling errors in the contribution guide (#1108) 2019-12-04 03:36:10 +01:00
COPYING Change license to wxWindows Library Licence 2014-07-10 22:56:17 +02:00
meson.build build: Add Meson build system 2024-04-19 12:15:50 +02:00
meson.options build: Add Meson build system 2024-04-19 12:15:50 +02:00
README.md build: Add support for watchOS 2022-11-14 11:38:37 +01:00

Frida

Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. Learn more at frida.re.

Two ways to install

1. Install from prebuilt binaries

This is the recommended way to get started. All you need to do is:

pip install frida-tools # CLI tools
pip install frida       # Python bindings
npm install frida       # Node.js bindings

You may also download pre-built binaries for various operating systems from Frida's releases page on GitHub.

2. Build your own binaries

Dependencies

For running the Frida CLI tools, e.g. frida, frida-ls-devices, frida-ps, frida-kill, frida-trace, frida-discover, etc., you need Python plus a few packages:

pip install colorama prompt-toolkit pygments

Linux

make

Apple OSes

First make a trusted code-signing certificate. You can use the guide at https://sourceware.org/gdb/wiki/PermissionsDarwin in the sections “Create a certificate in the System Keychain” and “Trust the certificate for code signing”. You can use the name frida-cert instead of gdb-cert if you'd like.

Next export the name of the created certificate to relevant environment variables, and run make:

export MACOS_CERTID=frida-cert
export IOS_CERTID=frida-cert
export WATCHOS_CERTID=frida-cert
export TVOS_CERTID=frida-cert
make

To ensure that macOS accepts the newly created certificate, restart the taskgated daemon:

sudo killall taskgated

Windows

frida.sln

(Requires Visual Studio 2022.)

See https://frida.re/docs/building/ for details.

Learn more

Have a look at our documentation.