Android:Java:Proguard:如何:验证我的 jar(不同的 jar 项目)/apk 是否已成功处理?(我正在考虑对其进行逆向工程)
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/7478809/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Android: Java: Proguard: How to: verify if my jar (different jar project)/apk are successfully processed? (I am thinking to reverse engineer it)
提问by eros
I successfully processed my jar and apk. Then, want to verify if is it truly hard to reverse engineer or truly did the obfuscation.
我成功处理了我的 jar 和 apk。然后,想验证逆向工程是否真的很难,或者是否真的进行了混淆。
I am thinking to try to reverse engineer it by myself to see what I did. But don't know how to do it.
我正在考虑尝试自己对它进行逆向工程,看看我做了什么。但是不知道怎么做。
回答by user802421
For manual reverse engineering, you can try dex2jarand then Java Decompiler.
对于手动逆向工程,您可以尝试dex2jar,然后是Java Decompiler。
回答by Ira Baxter
I assume you have a set of tests (unit/functionality). Run them against the obfuscated jar file. They should pass as if you had the original program.
我假设您有一组测试(单元/功能)。针对混淆的 jar 文件运行它们。它们应该像您拥有原始程序一样通过。