raptor-frida-android-enum

by
4 views 4d0fc84c...

Description

Collection of functions to enumerate Java classes and methods on Android.

How to Use

Download the script and run it with Frida CLI:

Download Script

Then run with Frida:

frida -U -f YOUR_PACKAGE_NAME -l raptor-frida-android-enum.js

Replace YOUR_PACKAGE_NAME with the target app's package name.

Source Code

JavaScript
/*
 * raptor_frida_android_enum.js - Java class/method enumerator
 * Copyright (c) 2017 Marco Ivaldi <raptor@0xdeadbeef.info>
 *
 * Frida.re JS functions to enumerate Java classes and methods 
 * declared in an iOS app. See https://www.frida.re/ and 
 * https://codeshare.frida.re/ for further information on this 
 * powerful tool.
 *
 * "We want to help others achieve interop through reverse
 * engineering" -- @oleavr
 *
 * Example usage:
 * # frida -U -f com.target.app -l raptor_frida_android_enum.js --no-pause
 *
 * Get the latest version at:
 * https://github.com/0xdea/frida-scripts/
 */

// enumerate all Java classes
function enumAllClasses() {
    var allClasses = [];
    var classes = Java.enumerateLoadedClassesSync();

    classes.forEach(function(aClass) {
        try {
            var className = aClass.match(/[L](.*);/)[1].replace(/\//g, ".");
        } catch (err) {
            return;
        } // avoid TypeError: cannot read property 1 of null
        allClasses.push(className);
    });

    return allClasses;
}

// find all Java classes that match a pattern
function findClasses(pattern) {
    var allClasses = enumAllClasses();
    var foundClasses = [];

    allClasses.forEach(function(aClass) {
        try {
            if (aClass.match(pattern)) {
                foundClasses.push(aClass);
            }
        } catch (err) {} // avoid TypeError: cannot read property 'match' of undefined
    });

    return foundClasses;
}

// enumerate all methods declared in a Java class
function enumMethods(targetClass) {
    var hook = Java.use(targetClass);
    var ownMethods = hook.class.getDeclaredMethods();
    hook.$dispose;

    return ownMethods;
}

/*
 * The following functions were not implemented because deemed impractical:
 *
 * enumAllMethods() - enumerate all methods declared in all Java classes
 * findMethods(pattern) - find all Java methods that match a pattern
 *
 * See raptor_frida_ios_enum.js for a couple of ObjC implementation examples.
 */

// usage examples
setTimeout(function() { // avoid java.lang.ClassNotFoundException

    Java.perform(function() {

        // enumerate all classes
        /*
        var a = enumAllClasses();
        a.forEach(function(s) { 
        	console.log(s); 
        });
        */

        // find classes that match a pattern
        /*
        var a = findClasses(/password/i);
        a.forEach(function(s) { 
        	console.log(s); 
        });
        */

        // enumerate all methods in a class
        /*
        var a = enumMethods("com.target.app.PasswordManager")
        a.forEach(function(s) { 
        	console.log(s); 
        });
        */

    });
}, 0);
Share this script:
Twitter LinkedIn

Comments

Login or Sign up to leave a comment.
Loading comments...