├── .gitignore ├── LICENSE ├── NativeIORedirect ├── java │ └── com │ │ └── lody │ │ └── loadx │ │ └── client │ │ └── hook │ │ └── io │ │ └── NativeIO.java ├── jni │ ├── Android.mk │ ├── Application.mk │ ├── Logger.h │ ├── XJniHook.cpp │ ├── XJniHook.h │ ├── core │ │ ├── Hook.h │ │ ├── IOHook.cpp │ │ ├── IOHook.h │ │ ├── Prehook.dec.h │ │ ├── Prehook.h │ │ ├── RedirectManager.cpp │ │ ├── RedirectManager.h │ │ └── Utils.h │ └── hooklib │ │ ├── elf_common.cpp │ │ ├── elf_common.h │ │ ├── elf_hooker.cpp │ │ ├── elf_hooker.h │ │ ├── elf_module.cpp │ │ ├── elf_module.h │ │ └── main.cpp └── libs │ ├── armeabi │ └── libxhook.so │ └── x86 │ └── libxhook.so └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/LICENSE -------------------------------------------------------------------------------- /NativeIORedirect/java/com/lody/loadx/client/hook/io/NativeIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/java/com/lody/loadx/client/hook/io/NativeIO.java -------------------------------------------------------------------------------- /NativeIORedirect/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/Android.mk -------------------------------------------------------------------------------- /NativeIORedirect/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/Application.mk -------------------------------------------------------------------------------- /NativeIORedirect/jni/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/Logger.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/XJniHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/XJniHook.cpp -------------------------------------------------------------------------------- /NativeIORedirect/jni/XJniHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/XJniHook.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/Hook.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/IOHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/IOHook.cpp -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/IOHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/IOHook.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/Prehook.dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/Prehook.dec.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/Prehook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/Prehook.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/RedirectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/RedirectManager.cpp -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/RedirectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/RedirectManager.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/core/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/core/Utils.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_common.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/elf_common.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_hooker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/elf_hooker.cpp -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_hooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/elf_hooker.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/elf_module.cpp -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/elf_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/elf_module.h -------------------------------------------------------------------------------- /NativeIORedirect/jni/hooklib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/jni/hooklib/main.cpp -------------------------------------------------------------------------------- /NativeIORedirect/libs/armeabi/libxhook.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/libs/armeabi/libxhook.so -------------------------------------------------------------------------------- /NativeIORedirect/libs/x86/libxhook.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/NativeIORedirect/libs/x86/libxhook.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DroidPluginTeam/NativeIORedirect/HEAD/README.md --------------------------------------------------------------------------------