summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjvoisin2022-09-03 15:27:53 +0200
committerjvoisin2022-09-03 15:27:53 +0200
commit2d6d30a2d11704df48c4bb46b75243d582bcc4c8 (patch)
tree8af5040ea0ff443157b1856c6b29f9d86ffc22e8 /README.md
First commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..4616caa
--- /dev/null
+++ b/README.md
@@ -0,0 +1,39 @@
1# Android karton service
2
3Extract various information from APK.
4
5**Author**: Julien (jvoisin) Voisin
6
7
8**Consumes:**
9```
10{
11 "type": "sample",
12 "extension": "apk"
13}
14```
15
16**Produces:**
17```
18{
19 "type": "sample",
20 "kind": "analyzed",
21 "payload": {
22 "sample": <Resource>,
23 "certificate": <string>,
24 "package": <string>
25 }
26}
27```
28
29## Usage
30
31First of all, make sure you have setup the core system: https://github.com/CERT-Polska/karton
32
33Then install karton-android from PyPi, as well as androguard
34
35```shell
36$ pip install karton-android androguard
37
38$ karton-android
39```