summaryrefslogtreecommitdiff
path: root/README.md
blob: 49f78c0c62f1047cf5abcc7f94ee97ea543a7280 (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
40
41
42
43
44
# Android karton service

Extract various information from APK.

**Author**: Julien (jvoisin) Voisin


**Consumes:**
```
{
    "type":  "sample",
    "extension": "apk"
} 
```

**Produces:**
```
{
    "type": "sample",
    "kind": "analyzed",
    "sample": <Resource>,
    "payload": {
	"attributes": {
          "certificate": <string>,
          "main_activity": <string>,
          "package": <string>
          "activities": <list<string>>
          "permissions": <list<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
```