Yuuki

Results 5 issues of Yuuki

必须向下滚动一段距离按钮才能正常点击,设置rss属性为空后,亮暗切换的按钮会有同样的问题,请问这个要如何解决呢

内核日志: [26821.176645] [+] KP D load_module_path: /data/local/tmp/mod_main.kpm [26821.176674] [+] KP D load_module_path: module size: 8668 [26821.176714] [+] KP D loading module: [26821.176714] [+] KP D name: IO Redirect [26821.176715] [+]...

**Currently, there is no immediate solution. You need to troubleshoot it yourself or provide the device to me for further investigation.** 代码时kpms里的demo #include #include #include #include #include #include #include KPM_NAME("kpm-hello-demo");...

我把hook的代码单独编译了一个so,代码如下 `#include #include static size_t (*original_strlen)(const char *s) = nullptr; size_t my_strlen(const char *s) { printf("Hooked strlen called with string: %s\n", s); return original_strlen(s); // 调用原始 strlen 函数 } __attribute__((constructor))...