Skip to main content

Expose frida RPC as a service you can access over the web or network

Project description

What is this ?

This is a simple library to make frida rpc call over the internet. You can setup your reverse engineering environment on another computer and perform a rpc call from your mobile phone or elsewhere over the internet.

Installation

pip install frida_rpc

Running

  • export FLASK_APP=frida_rpc.app FLASK_DEBUG=1 FRIDA_RPC_CONFIG=/path/to/your/config.cfg
  • For windows change export above to set
  • flask run

Send request to http://your_ip:port/rpc with request below

{'method_name': 'add', 'process': program,
                     'script': """{
                            add: function (a, b) {
                                        return a + b;
                                    }
};""", 'args': '[2,4]'}

Result

{'success': true, 'result': 6}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

frida_rpc-0.1.2.tar.gz (5.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page