https://github.com/dweinstein/dockerfile-androguard-manifest
dump the manifest with androguard
https://github.com/dweinstein/dockerfile-androguard-manifest
Last synced: 12 months ago
JSON representation
dump the manifest with androguard
- Host: GitHub
- URL: https://github.com/dweinstein/dockerfile-androguard-manifest
- Owner: dweinstein
- Created: 2015-04-17T19:32:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-20T22:40:43.000Z (over 10 years ago)
- Last Synced: 2025-04-07T16:41:04.252Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SYNOPSIS
dump the manifest with androguard
# USAGE
```shell
# XML output to stdout
docker run dweinstein/androguard-manifest -i http://host:port/app.apk
# OR input file inside container already: just supply path (using volume container)
docker run -v /path/to/apps/:/path/in/container dweinstein/androguard-manifest -i /path/in/container/to/apk
# OR POST XML result
docker run dweinstein/androguard-manifest -i http://host:port/path/to/file.apk -o http://host:port/save/report
# OR from stdin and output to stdout
docker run -i dweinstein/androguard-manifest -i - < ~/android/apks/foo.apk
```
# DEVELOPMENT
```shell
$ docker build -t androguard-manifest .
```