forked from androguard/androguard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sebastian Bachmann
committed
Jun 14, 2017
1 parent
3ff9f3a
commit 1937120
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Getting Started | ||
=============== | ||
|
||
The easiest way to analyze APK files, is by using `androlyze.py`. | ||
It will start a iPython shell and has all modules loaded to get into action. | ||
|
||
Open a terminal and type `androlyze.py -s`. | ||
|
||
For analyzing and loading APK or DEX files, some wrapper functions exists. | ||
Use `AnalyzeAPK(filename)` or `AnalyzeDEX(filename)` to load a file and start analyzing: | ||
|
||
|
||
a, d, dx = AnalyzeAPK("/home/user/some-app.apk") | ||
|
||
The three objects you get are `a` an `APK` object, `d` a `DalvikVMFormat` object and `dx` an `Analysis` object. | ||
|
||
Inside the `APK` object, you can find all information about the APK, like package name, permissions, the AndroidManifest.xml | ||
or its resources. | ||
|
||
The `DalvikVMFormat` corresponds to the DEX file found inside the APK file. You can get classes, methods or strings from | ||
the DEX file. | ||
|
||
The `Analysis` object contains special classes, which link information about the classes.dex. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Introduction | ||
============ | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
gettingstarted.rst |