Androguard- Reverse Engineering And Malware Analysis for Android Applications
Androguard is available for Linux/OSX/Windows written in Python.Features:
Androguard is a full python tool to play with Android files.- DEX, ODEX
- APK
- Android's binary xml
- Android resources
- Disassemble DEX/ODEX bytecodes
- Decompiler for DEX/ODEX files
Here extension define as follows
- * Dex/Odex (Dalvik virtual machine)
- (.dex) (disassemble, decompilation),
- * APK (Android application) (.apk),
- * Android’s binary xml (.xml)
- * Android Resources (.arsc).
Usage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Usage: androlyze.py [options]
Options:
-h, --help show this help message and exit
-i INPUT, --input=INPUT
file : use this filename
-d, --display display the file in human readable format
-m METHOD, --method=METHOD
display method(s) respect with a regexp
-f FIELD, --field=FIELD
display field(s) respect with a regexp
-s, --shell open a shell to interact more easily with objects
-v, --version version of the API
-p, --pretty pretty print !
-t TYPE_PRETTY, --type_pretty=TYPE_PRETTY
set the type of pretty print (0, 1) !
-x, --xpermissions show paths of permissions
|
Comments
Post a Comment