-
日志全部打印了,但是hook不成功。
只hook了Log.e,同样的代码6.0 OK。
我把plugin和mainapp放一块了,没有用classloader,直接使用的findAndBackupAndHook。
ghost updated
7 years ago
-
比如下面Hook方法里面参数类型都是SDK已有的。
public static String hook(Object thiz, String a, String b, String c, String d) {
Log.w("YAHFA", "in ClassWithVirtualMethod.tac(): "+a+", "+b+", "+c+", "+d);
…
c1024 updated
7 years ago
-
legend yahfa 在miui8 上都失效,应该是系统的问题
-
我就把https://github.com/rk700/ChangePhoneInfo。这个demo生成的apk,push到/sdcard/
就出现了如下问题
W/System.err( 7310): java.lang.ClassNotFoundException: lab.galaxy.yahfa.HookInfo
W/System.err( 7310): at java.lang…
-
virtualapp支持4.0之后,现在问题在于YAHFA,已经解决。
Rprop updated
7 years ago
-
测试环境:
android7.0 armeabi模拟器/android7.1 x86模拟器。
多次执行Toast.show方法后出现如下java.lang.IncompatibleClassChangeError异常,然后程序退出
05-24 04:13:43.362: W/YAHFA(1439): hook end
05-24 04:13:43.366: W/YAHFA(1439)…
-
I faced a problem when I attempted to build this awesome project.
My command: ./gradlew build --stacktrace.
The output is the following:
FAILURE: Build failed with an exception.
* What went …
-
public static String className = "android.view.View";
public static String methodName = "setOnClickListener";
public static String methodSig = "(Landroid/view/View$OnClickListener;)V";
…
-
用xposed hook住一个方法,即使用反射调用这个方法也可以照样修改,
但是用yahfa的话,反射调用就绕过了hook,对于反射调用yahfa有做处理吗?
-
public static boolean hook(String thiz, String prefix) {
Log.w("YAHFA", "in String.startsWith(): "+thiz+", "+prefix);
return origin(thiz, prefix);
}
public static boo…