Metadata-Version: 2.1
Name: frida
Version: 12.0.1
Summary: Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers
Home-page: https://www.frida.re
Author: Frida Developers
Author-email: oleavr@frida.re
License: wxWindows Library Licence, Version 3.1
Description: # Frida
        
        Dynamic instrumentation toolkit for developers, reverse-engineers, and security
        researchers.
        
        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 --user frida    # CLI tools and Python bindings
            npm install frida           # Node.js bindings
        
        You may also download pre-built binaries for various operating systems from
        [https://build.frida.re/frida/](https://build.frida.re/frida/).
        
        ## 2. Build your own binaries
        
        ### Dependencies
        
        For running the Frida CLI tools, i.e. `frida`, `frida-ls-devices`, `frida-ps`,
        `frida-kill`, `frida-trace`, and `frida-discover`, you need Python plus a
        few packages:
        
            pip3 install colorama prompt-toolkit pygments
        
        ### Linux
        
            make
        
        ### macOS and iOS
        
        First make a trusted code-signing certificate. You can use the guide at
        https://sourceware.org/gdb/wiki/BuildingOnDarwin in the section
        “Creating a certificate”. You can use the name `frida-cert` instead of
        `gdb-cert` if you'd like.
        
        Next export the name of the created certificate to the environment
        variables `MAC_CERTID` and `IOS_CERTID` and run `make`:
        
            export MAC_CERTID=frida-cert
            export IOS_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 2017.)
        
        See [https://www.frida.re/docs/building/](https://www.frida.re/docs/building/)
        for details.
        
        ## Learn more
        
        Have a look at our [documentation](https://www.frida.re/docs/home/).
        
Keywords: frida debugger dynamic instrumentation inject javascript windows macos linux ios iphone ipad android qnx
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: JavaScript
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
