Android killer

0 26
Preface:In my recent work, I have been involved in APP testing and would like to...

Preface:

In my recent work, I have been involved in APP testing and would like to share some personal experiences with everyone. My level is limited, please don't scold the big guys.
Firstly, learning to decompile is essential for APP defense and attack. There are roughly the following methods.

dex2jar

dex2jar is an Android decompilation tool that can convert .dex files to .jar files, which can help us analyze specific code.
Project address:
https://github.com/pxb1988/dex2jar/releases
Use:
Change the suffix of the tested apk to zip and extract it to get the .dex file.
image.png
Extract the .dex file separately.
Use the command:
d2j-dex2jar <.dex path> -o <output path+name.jar>
image.png
The .jar file will be in the output path
image.png

jd-gui

Android killer

How to open the .jar file obtained, it is the jd-gui tool.
Project address:
https://github.com/java-decompiler/jd-gui/releases
jd-gui can provide a graphical interface for developers to test .jar file code.
image.png
At this time, you can test whether the code has been obfuscated. The class files and methods that have been obfuscated are named with a, b, c, and so on.

Android killer

The first generation wonder Android killer, no more words, just see the picture
image.png
Android killer is a graphical tool that integrates various Android testing tools such as adb and dex2jar, which is very friendly to beginners.
Project address:
https://github.com/liaojack8/AndroidKiller

Apktool

apktool can also be used for decompilation and even recompilation.
Project address:
https://ibotpeaches.github.io/Apktool/
Use the command:
java -jar apktool.jar d xxx.apk
image.png
The decompiled content will be generated in the current directory.
image.png
Of course, there are other ways, such as ApkBurster, etc., but I still use these tools in my daily life. I wish everyone can become APP defense and attack experts as soon as possible.

你可能想看:
最后修改时间:
admin
上一篇 2025年03月27日 03:23
下一篇 2025年03月27日 03:45

评论已关闭