Metadata-Version: 2.1
Name: sdanalyzer
Version: 0.1.3
Summary: Tool to analyze snoopdroid dump
Home-page: https://github.com/Te-k/sdanalyzer
Author: Tek
Author-email: tek@randhome.io
License: GPLv3
Keywords: osint
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: Flask (==1.1.1)
Requires-Dist: Flask-WTF (==0.14.3)
Requires-Dist: peewee (==3.13.2)
Requires-Dist: androguard (==3.3.5)
Requires-Dist: requests

# sdanalyzer

Tool to analyze a large number of Android applications easily. It consist of a command line tool extracting data from all applications, storing it in a local database, and then opening a web interface to manually analyze the results in a user-friendly way.

![screenshot](screenshot.png)

## Installation

You can install sdanalyzer directly from [pypi](https://pypi.org/project/sdanalyzer/) : `pip install sdanalyze`.

You can also download the code from the git repository, and install it from the source code :

```
pip install .
```

## How to use it

**Create a new phone** :

```
sdanalyzer phones --create "Roberto's Phone"
1	Roberto's Phone	None
```

**Import APKs:**
```
sdanalyzer import --phone 1 .
```

**Run the web server to check the APKs:**
```
sdanalyzer serve
```

You can check all the options of the sdanalyzer command :

```
$ sdanalyzer -h
usage: sdanalyzer [-h] {serve,flush,phones,import,delete} ...

Launches sdanalyzer

positional arguments:
  {serve,flush,phones,import,delete}
                        Subcommand
    serve               Launch the web app
    flush               Flush the database
    phones              List phones
    import              Import apks
    delete              Delete a phone and related data
    export              Export information on all apks of a phone

optional arguments:
  -h, --help            show this help message and exit
```

Feel free to open issues for new feature ideas or bugs.

## License

This code is released under GPLv3 license.


