afjoseph / fridafier

Automatically inject Frida gadget in an APK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fridafier

Automatically insert Frida gadget

This tool was developed mainly to automatically insert Frida Gadget inside APKs.

Usage

$ poetry install
$ poetry run python 3 fridafier --init
$ poetry run python 3 fridafier --apk my.apk --script log.js
# Where log.js can be any Frida agent, like this one

    Java.perform(function(){
        var Log = Java.use('android.util.Log');
        Log.w("FRIDAGADGET", "Hello World");
    });

About

Automatically inject Frida gadget in an APK

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%