https://github.com/frida/frida
Clone this repo to build Frida
https://github.com/frida/frida
frida instrumentation vala
Last synced: 24 days ago
JSON representation
Clone this repo to build Frida
- Host: GitHub
- URL: https://github.com/frida/frida
- Owner: frida
- License: other
- Created: 2013-04-12T22:35:05.000Z (about 12 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T22:32:36.000Z (26 days ago)
- Last Synced: 2025-03-17T23:33:06.364Z (26 days ago)
- Topics: frida, instrumentation, vala
- Language: Meson
- Homepage: https://frida.re
- Size: 19.9 MB
- Stars: 17,147
- Watchers: 322
- Forks: 1,751
- Open Issues: 1,727
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: COPYING
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- stars - frida/frida
- awesome-rainmana - frida/frida - Clone this repo to build Frida (Meson)
- awesome-starts - frida/frida - Clone this repo to build Frida (Python)
- awesome-ios-security - Frida - Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. (Tools / Dynamic Analysis Tools)
- awesome-apple-security - Frida - Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers. (Tools / Dynamic Analysis Tools)
- awesome-anti-forensic - Frida - engineers, and security researchers. (Tools / System/Digital Image)
- MobileHackersWeapons - frida
- StarryDivineSky - frida/frida - > [rida.re](https://frida.re/) (其他_安全与渗透 / 网络服务_其他)
README
# Frida
Dynamic instrumentation toolkit for developers, reverse-engineers, and security
researchers. Learn more at [frida.re](https://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 bindingsYou may also download pre-built binaries for various operating systems from
Frida's [releases](https://github.com/frida/frida/releases) page on GitHub.## 2. Build your own binaries
Run:
make
You may also invoke `./configure` first if you want to specify a `--prefix`, or
any other options.### CLI tools
For running the Frida CLI tools, e.g. `frida`, `frida-ls-devices`, `frida-ps`,
`frida-kill`, `frida-trace`, `frida-discover`, etc., you need a few packages:pip install colorama prompt-toolkit pygments
### 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
makeTo ensure that macOS accepts the newly created certificate, restart the
`taskgated` daemon:sudo killall taskgated
## Learn more
Have a look at our [documentation](https://frida.re/docs/home/).