-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
60 lines (60 loc) · 1.47 KB
/
config.json.example
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
{
"databases":{
"driver": "mongodb",
"mongodb":{
"user":"root",
"password":"example",
"mechanism":"SCRAM-SHA-1",
"host":"mongo",
"port":27017,
"db":"kintun",
"collection_scans":"scans"
}
},
"endpoints":{
"NGEN": "https://<NGEN URL>/api/v1/incidents.json?apikey=<INSERT API KEY HERE>",
"Another API": "https://<API URL>/incidents.json?apikey=<API KEY>",
"localhost": "https://localhost:5000/api/print",
"": ""
},
"info":{
"version":0.1,
"name":"Kintun",
"license":"GPLv3"
},
"scan":{
"folder_output": "outputs",
"folder_nse": "scannerapp/model/vuln/nse/",
"folder_custom": "scannerapp/model/vuln/custom/",
"folder_lib": "scannerapp/model/vuln/custom/lib/",
"file_prefix": "",
"max_running": 15
},
"ssl":{
"crt": "key.crt",
"key": "key.key",
"folder": "ssl"
},
"log":{
"name": "app_log",
"stdout":{
"name":"stdout.log"
},
"error":{
"name":"error.log"
},
"folder":"logs"
},
"maillog":{
"name": "Kintun",
"me": "[email protected]",
"recipients_error": ["[email protected]"],
"recipients_log": ["[email protected]"],
"recipients": ["[email protected]"],
"subject": "[{0}]{1} Reporte {0}",
"body": "Le enviamos un reporte automático. {0}\n\nKINTUN",
"mail_server": "your_mail_server",
"file_name": "{0}.txt",
"detail": ""
}
}