SsageParuders
SsageParuders
@bluesadi --- 更新一下最近的测试情况~ 目前尝试移植到NDK并且实测的PASS有三款,分别是: - heroims前辈维护的[obfuscator](https://github.com/heroims/obfuscator) - amimo大佬维护的[goron](https://github.com/amimo/goron) - 本项目维护的[Pluto-Obfuscator](https://github.com/bluesadi/Pluto-Obfuscator) > [Pluto-Obfuscator](https://github.com/bluesadi/Pluto-Obfuscator)的测试版本:[c0bc3ec](https://github.com/bluesadi/Pluto-Obfuscator/commit/c0bc3ec65416aae6562b6be6f6a4b495665a2c44) 三款Pass都是按照bluesadi大佬在看雪论坛上的文章介绍进行移植 已经多次检查需要patch的地方(按照commit逐步检查来的) 应该是没有什么地方遗落疏忽 --- 三款Pass在NDK中的表现,求实来说`goron`最为优秀: 混淆速度快,加密效果好,编译过程中无报错现象 > goron好像很多地方都参考ollvm进行了相当程度的修改,算是另成体系 可惜的是,goron的作者只维护到了llvm-10,并且貌似并没有继续维护下去的意愿 本人受限于水平,也无法参考开源内容移植到llvm更高版本 因此,goron这款Pass,移植到NDK中的话,最高也就是21.4.7075529版本(llvm-9) --- heroims前辈持续维护的[obfuscator](https://github.com/heroims/obfuscator)和bluesadi大佬维护的Pluto-Obfuscator,普遍存在如下问题: > 这些问题至少在我移植的NDK中存在 > 并且,普遍是: -->...
> I'm getting the same problem that compiler takes very long time > > [OLLVM-9.0.1](https://github.com/o2e/OLLVM-9.0.1) is the best version so far for me, does not have issues like you explained...
In my last tested for LDPlayer and Nox on Windows. --- My Injecter had supprot for LDPlayer x86. But it failed for LDPlayer x86_64.(Haven't be supproted,will do it in future)...
> Hi! Hope you are doing well. Can you help me with hooking java api call in Android, from an injected Shared Library? It's easy for us to hook a...
看起来 ptrace写入内存的时候出错了 有可能是应用对ptrace写入内存有保护行为 如果只是想要简单注入的话 也许可以考虑 LD Preload注入 ``` chmod a+x /data/local/tmp/libhook.so setenforce 0 setprop wrap.bin.mt.plus LD_PRELOAD=/data/local/tmp/libhook.so setprop bin.mt.plus LD_PRELOAD=/data/local/tmp/libhook.so # 恢复 resetprop --delete wrap.bin.mt.plus ```
能麻烦告诉我以下几个信息么 - 测试的系统版本是Android多少 - 目标App是哪一个 - 架构是什么
> > 能麻烦告诉我以下几个信息么 > > ``` > > * 测试的系统版本是Android多少 > > > > * 目标App是哪一个 > > > > * 架构是什么 > > ``` > > Android 11, ARM64/32...