forked from windschord/WOWHoneypot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
63 lines (45 loc) · 1.45 KB
/
config.py
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
# -*- coding: utf-8 -*-
# --------------- WOWHONEYPOT settings ---------------
# default host: 0.0.0.0
WOWHONEYPOT_HOST = '0.0.0.0'
# default port: 8080
WOWHONEYPOT_PORT = 8080
# default server header: Apache
WOWHONEYPOT_SERVER_HEADER = 'Apache'
WOWHONEYPOT_POT_IP = ''
# art directory path
# default path: ./art/
WOWHONEYPOT_ART_PATH = './art/'
# Access log separator
# default separator: " "
WOWHONEYPOT_LOG_SEPARATOR = " "
# for GDPR(True: replace source ip address with 0.0.0.0)
WOWHONEYPOT_IPMASKING = False
# Hunting
# default: False
WOWHONEYPOT_HUNT_ENABLE = False
# Hunting target queue
# default: hunting_queue.db
WOWHONEYPOT_HUNT_QUEUE_DB = 'hunting_queue.db'
# default VirusTotal polling sec: 60 (1min)
VIRUSTOTAL_POLLING_SEC = 60
# default VirusTotal api key: None
VIRUSTOTAL_API_KEY = None
# default elastic search scheme: http
ES_SERVER_SCHEME = 'http'
# default elastic search hosts: http
ES_SERVER_HOSTS = ['localhost']
# default elastic search port: 9200
ES_SERVER_PORT = 9200
# default elastic search auth: None
# if you use auth, replace None to ('user', 'password')
ES_SERVER_AUTH = None
# default elastic search access log index: wowhoneypot
ES_SERVER_ACCESS_LOG_INDEX = 'wowhoneypot'
# default elastic search hunting log index: wowhoneypot_hunt
ES_SERVER_HUNT_LOG_INDEX = 'wowhoneypot_hunt'
# if enable GeoIP, set path to GeoLite2-City.mmdb
# default GeoIP path: None
GEOIP_PATH = None
# default slack webhook url: None
SLACK_WEBHOOK_URL = None