智慧屏 安装 app如何提升家庭娱乐与教育体验的关键工具
1161
2022-10-25
YAHFA是一个针对Android ART的钩子框架
YAHFA
Introduction
YAHFA is a hook framework for Android ART. It provides an efficient way for Java method hooking or replacement. Currently it supports:
Android 5.0(API 21)Android 5.1(API 22)Android 6.0(API 23)Android 7.0(API 24)Android 7.1(API 25)Android 8.0(API 26)Android 8.1(API 27)Android 9.0(API 28)Android 10.0(API 29)
with ABI:
x86x86_64armeabi-v7aarm64-v8a
YAHFA is utilized by VirtualHook so that APPlications can be hooked without root permission.
Please take a look at this article and this one for a detailed introduction.
更新说明
Setup
Add Maven central repo in build.gradle:
buildscript { repositories { mavenCentral() }}allprojects { repositories { mavenCentral() }}
Then add YAHFA as a dependency:
dependencies { implementation 'io.github.pagalaxylab:yahfa:0.10.0'}
Usage
To hook a method:
HookMain.backupAndHook(Method target, Method hook, Method backup);
where backup would be a placeholder for invoking the target method. Set backup to null or just use HookMain.hook(Method target, Method hook) if the original code is not needed.
Both hook and backup are static methods, and their parameters should match the ones of target. Please take a look at demoPlugin on how these methods are defined.
Workaround for Method Inlining
Hooking would fail for methods that are compiled to be inlined. For example:
0x00004d5a: f24a7e81 movw lr, #428810x00004d5e: f2c73e11 movt lr, #294570x00004d62: f6495040 movw r0, #402560x00004d66: f2c70033 movt r0, #287230x00004d6a: 4641 mov r1, r80x00004d6c: 1c32 mov r2, r60x00004d6e: 47f0 blx lr
Here the value of register lr is hardcoded instead of reading from entry point field of ArtMethod.
A simple workaround is to build the APP with debuggable option on, in which case the inlining optimization will not apply. However the option --debuggable of dex2oat is not available until API 23. So please take a look at machine instructions of the target when the hook doesn't work.
License
YAHFA is distributed under GNU GPL V3.
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~