Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dweinstein/dockerfile-androguard
docker file for use with androguard python android app analysis tool
https://github.com/dweinstein/dockerfile-androguard
Last synced: 7 days ago
JSON representation
docker file for use with androguard python android app analysis tool
- Host: GitHub
- URL: https://github.com/dweinstein/dockerfile-androguard
- Owner: dweinstein
- Created: 2014-04-23T14:49:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-10-29T02:02:31.000Z (about 5 years ago)
- Last Synced: 2024-08-01T03:26:07.339Z (3 months ago)
- Homepage:
- Size: 131 KB
- Stars: 40
- Watchers: 5
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-tools - dockerfile/androguard - Docker file for building androguard dependencies w/ an optional interactive shell environment. (Android Security / Misc Tools)
README
[![Docker Hub](http://img.shields.io/badge/docker-hub-brightgreen.svg?style=flat)](https://hub.docker.com/r/dweinstein/androguard/)
[![Docker Pulls](https://img.shields.io/docker/pulls/dweinstein/androguard.svg)](https://hub.docker.com/r/dweinstein/androguard/)
[![ImageLayers Size](https://img.shields.io/imagelayers/image-size/dweinstein/androguard/latest.svg)](https://hub.docker.com/r/dweinstein/androguard/)# SYNOPSIS
Docker file for building androguard dependencies w/ an **optional** interactive shell environment.
# USAGE
This will use the pre-built image on the public registry (see [this](https://registry.hub.docker.com/u/dweinstein/androguard/))
```shell
$ docker pull dweinstein/androguard
$ docker run -t -i dweinstein/androguard /bin/bash
root@1fe111e78fc6:/# /opt/androlyze.sh -s
```Similarly this will start the `androlyze` shell by default (the `-v` option is
to mount a folder from the host to the guest):```shell
$ docker run -t -i -v /path/to/apks:/data dweinstein/androguard
Androlyze version 2.0
In [1]: apk = APK('/data/test.apk')In [2]: apk.get_activities()
Out[2]: ['com.example.gangrene.GangreneActivity']
```## BUILD
```shell
$ docker build -t androguard .
```