blob: 4616caa5f367b2a1bff7d1266070de07549377f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Android karton service
Extract various information from APK.
**Author**: Julien (jvoisin) Voisin
**Consumes:**
```
{
"type": "sample",
"extension": "apk"
}
```
**Produces:**
```
{
"type": "sample",
"kind": "analyzed",
"payload": {
"sample": <Resource>,
"certificate": <string>,
"package": <string>
}
}
```
## Usage
First of all, make sure you have setup the core system: https://github.com/CERT-Polska/karton
Then install karton-android from PyPi, as well as androguard
```shell
$ pip install karton-android androguard
$ karton-android
```
|