-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.conf
executable file
·44 lines (37 loc) · 1.75 KB
/
settings.conf
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
# mongodb-related settings for local info storage
# that is, the selected bundle data under consideration
mongodb.name = "/cyberstix"
mongodb.uri = "mongodb://localhost:27017"${?mongodb.name}
mongodb.uri = ${?MONGOHQ_URL}${?mongodb.name}
mongodb.timeout = 20
# the collections names for local storage
mongo.collection.userLog = "userLog"
mongo.collection.bundles = "bundles"
mongo.collection.bundlesInfo = "bundlesInfo"
mongo-async-driver {
akka {
loglevel = OFF
}
}
# max number of taxii objects to fetch for display in the objects tab
# note: currently displaying large number of objects slows the app to unresponsive
taxii.objects = 60
# neo4jdb-related settings for saving files to neo4j STIX-2 storage
# the directory where the neo4j data reside, it will be created if absent.
neo4jdb.directory = ""
# the full path to a local neo4j databse to store the current set of stixs
neo4jdb.local.directory = "/Users/...../tempNeo"
# mongodb-related settings for saving files to mongo STIX-2 storage from the tool menu
mongodbStix.name = "/stix"
mongodbStix.uri = "mongodb://localhost:27017"${?mongodbStix.name}
mongodbStix.uri = ${?MONGOHQ_URL}${?mongodbStix.name}
mongodbStix.timeout = 20
mongodbStix.readTimeout = 60
# pre-defined list of TAXII2 servers, you should not put the real passwords here
taxii.servers = [
{name: "limo taxii", url: "https://limo.anomali.com/api/v1/taxii2", user: "guest", psw: "guest"},
{name: "ÜberTAXII", url: "https://ubertaxii.com/taxii/", user: "ubertaxii", psw: "certain_players_want_a_pony"}
]
# {name: "mitre taxii", url: "https://cti-taxii.mitre.org/taxii", user: "", psw: ""},
# however "mitre taxii" has errors in their json, specifically; their use "can_read" and "can_write" as
# String such as "true", not as Boolean as required.