forked from tomchop/malcom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmalcom.conf.example
77 lines (61 loc) · 1.75 KB
/
malcom.conf.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# malcom.conf
# The default malcom configuration
[web]
activated = true
listen_interface = 0.0.0.0
listen_port = 8080
auth = false
[feeds]
activated = true
feeds_dir = feeds
scheduler = false
exports_dir = exports
[analytics]
activated = true
max_workers = 12
skip_tags = whitelisted
[sniffer]
stealth = true
activated = true
network = true
sniffer_dir = sniffer/captures
modules_dir = sniffer/modules
tls_proxy_port = 9000
yara_path = yara
hide_tags = whitelisted
[modules]
# You can comment / uncomment modules
# according to if you want to use
# them or not
passive_dns
#yarascan
#suricata
# databases can be configured here
[database]
# The name of the Malcom database
# default: malcom
name = malcom
# Comma-separated list of server names or addresses hosting the database. Ports may be defined by host
# example: my_server1,my_server2:27018,182.168.0.10[,...]
# If you have any IPv6 addresses, they have to enclosed in '[' and ']' characters (ex: [::1])
# default: localhost
hosts = localhost
# ReplicaSet name (optionnal)
# If set, the pymongo driver will check if the hosts above are really part of the named replicaSet when connecting to them
# default: None
#replset = my_replicaset
# Read preference when connected to a replicaset
# Read http://docs.mongodb.org/manual/core/read-preference/ for more information
# Values are PRIMARY, PRIMARY_PREFERRED, SECONDARY, SECONDARY_PREFERRED, NEAREST
# default: PRIMARY
# read_preference = PRIMARY
# Username to log in the database, if authentication is needed by the database
# default: None
#username = some_user
# Password for the above user
# default: None
#password = change_me
# Database used to authenticate the above user
# If not set, it will use the current database
# default: None
#authentication_database = malcom