ele7enxxh / Android-Inline-Hook

thumb16 thumb32 arm32 inlineHook in Android

Home Page:http://ele7enxxh.com/Android-Arm-Inline-Hook.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android-Inline-Hook

thumb16 thumb32 arm32 inlineHook

Build

ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk NDK_APPLICATION_MK=./Application.mk

Example

#include <stdio.h>

#include "inlineHook.h"

int (*old_puts)(const char *) = NULL;

int new_puts(const char *string)
{
    old_puts("inlineHook success");
}

int hook()
{
    if (registerInlineHook((uint32_t) puts, (uint32_t) new_puts, (uint32_t **) &old_puts) != ELE7EN_OK) {
        return -1;
    }
    if (inlineHook((uint32_t) puts) != ELE7EN_OK) {
        return -1;
    }

    return 0;
}

int unHook()
{
    if (inlineUnHook((uint32_t) puts) != ELE7EN_OK) {
        return -1;
    }

    return 0;
}

int main()
{
    puts("test");
    hook();
    puts("test");
    unHook();
    puts("test");
}

Contact

If you find any bugs, please contact me(ele7enxxh@gmail.com)

About

thumb16 thumb32 arm32 inlineHook in Android

http://ele7enxxh.com/Android-Arm-Inline-Hook.html

License:Apache License 2.0


Languages

Language:C 93.8%Language:Makefile 6.2%