GithubHelp home page GithubHelp logo

aihl's Introduction

AIHL - Android Import Hook Library

AIHL is a library for hooking into standard library function by modifying android linkers symbol tables. This library was created as a way to enable hooking of native library functions from within xposed modules.

AIHL allows the modification of the symbol pointers in the android linker so that any subsequently loaded libraries or dlsym calls will use the hooked functions instead of the real function. It is optionally possible to call through to the original function if needed.

One of the restriction of this method is that only subsequently loaded libraries are affected unlike other hooking libraries.

The library is provided as a static library, but the two code files aihl.c and aihl.h could easily be included directly in your make file if needed.

Example

#include <aihl.h>

int hooked_stat(const char *path, struct stat *st) {
    printf("Inside hooked stat\n");
    
    //call original stat function
    return stat(path, st);
}

void hook() {
	void *handle = aihl_load_library("libc.so");
    aihl_hook_symbol(handle, "stat", hooked_stat);
}

This library works under the assumption that the internal info structure used by the android linker does not change or is changed in a backward compatible format. This may not be a safe assumption. The code was successfully tested with cyanogenmod version 10.1 and 11.

License

Apache License

aihl's People

Contributors

hiddenrambler avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.