What is a good android disassember that can produce infomative results [closed]

六眼飞鱼酱① 提交于 2019-12-03 21:30:56

You have a few options.

"dexdump" is included with the SDK and is present on the device. With the "-d" option it produces a no-frills disassembly of the methods. The output format is intended to mimic the "--dump-to" output format of dx.

"smali/baksmali" is an assembler/disassembler for Dalvik bytecode. It's open source, and is probably the most complete solution.

"dedexer" is a disassembler that produces Jasmin-like output. It's also open source.

As far as I know, nobody has written a program that attempts to convert Dalvik bytecode to Java bytecode or source code.

I have tried dex2jar with 2 android market apps' APK and it works very well. If you combine it with jad, you can get the java source code.

See the dex2jar's user guide for more details.

The android development kit includes a disassembler. AFAIK, there are no to .class or to .java decompilers available at the moment.

Actually there is a tool to convert dalvik bytecode to java one: dex2jar . For now it crashes on most real applications, but could convert simple apps properly, so after using dex2jar & jd combo we get really good Java code. Also dex2jar is rapidly developing, it supports more and more cases.

just as Frederic mentioned dex2jar is so great, you can use dex2jar and jad to get readable Java source code instead of assembly-language-like ".ddx" or ".smail" file!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!