SkillAgentSearch skills...

Androhook

A frida based hooking framework for android devices used mainly for app research

Install / Use

/learn @gregthedoe/Androhook
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

AndroHook

A frida based hooking framework for android devices used mainly for app research.

It includes its own javascript wrapper for java objects called $J, which allows better handling for JAVA objects via reflection.

For example:

Java.perform(function () {
    var $class1 = $J(Java.use('com.example.class1'));
    console.log($class1.getFieldValue('field1').getFieldValue('field2'));
});

Install

Install dependencies

Installation requires nodejs to be in user's path.

For linux:

sudo apt install nodejs

For windows: https://nodejs.org/en/download/current/

Installing AndroHook

git clone https://github.com/gregthedoe/androhook.git
cd androhook
pip install -e . 

# For SSL interception support, use:
pip install -e .[ssl]

Usage

adb shell /data/local/tmp/frida-server &

# For simple injection
injector.py -p com.example.package -s sample_script.js

# For SLL interception (if installed)
intercept_ssl.py --flow vending.flow com.android.vending 

Related Skills

View on GitHub
GitHub Stars14
CategoryEducation
Updated2y ago
Forks6

Languages

Python

Security Score

75/100

Audited on Feb 25, 2024

No findings