-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample.config.json
75 lines (75 loc) · 1.89 KB
/
example.config.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"timeoutMilli" : 900000,
"verbose" : false,
"appium" : "appium",
"appiumURLExtension" : "",
"tmpFolder" : "/tmp/folder/",
"mitm" : {
"path" : "mitmdump",
"addonScript" : "./resources/trafficCollection/mitm-addon.py",
"port" : "8080"
},
"plugin" : {
"folder" : "./plugins/",
"available" : {
"TrafficCollection": {
"owner": "simkoc",
"repo": "appanalyzer-plugin-trafficcollection"
}
}
},
"email": {
"host": "smtp.gmail.com",
"port": 587,
"user": "ad\\exchange",
"email": "[email protected]",
"password": "",
"recipients": ["email1", "email2"]
},
"emulator" : {
"emulator" : "/path/to/emulator",
"avd" : "name-of-avd",
"snapshot" : "thesnapshottouseifset",
"proxyIP" : "theipoftheproxyifset",
"proxyPort" : "theportoftheproxyifset"
},
"db" : {
"host" : "localhost",
"port" : 5432,
"name" : "hytrack",
"user" : "hytracker",
"pwd" : "1234567890"
},
"devicePrep" : {
"clipboard" : "sd325fEr23q2",
"latitude" : 0.0000,
"longitude" : 0.000,
"altitude" : 0.000
},
"android" : {
"dexdump" : "dexdump",
"adb" : "adb",
"appium" : true,
"objection" : "objection",
"osVersion" : "14",
"apkanalyzer" : "apkanalyzer"
},
"ios" : {
"appium" : false,
"rootpwd" : "alpine",
"ip" : "iPhone IP",
"ideviceinstaller" : "ideviceinstaller",
"ideviceinfo" : "ideviceinfo",
"fridaps" : "frida-ps",
"deviceName" : "Device Name",
"xcodeOrgId" : "xoodeOrgId",
"xcodeSigningId" : "iPhone Developer",
"osv" : "14.5",
"permissionPopup" : {
"interaction" : "deny",
"text" : ["would like to", "wants to join", "turn on bluetooth to allow"],
"allowButton" : ["allow","ok","join","settings","allow access to all photos"],
"dontAllowButton" : ["don.t allow", "close", "cancel"]
}
}
}