This repository has been archived by the owner on Oct 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-sample.yml
110 lines (102 loc) · 2.31 KB
/
config-sample.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
database:
url: &db "sqlite:///db.sqlite3"
# url: &db "mysql+pymysql://root:[email protected]:3306/scoreengine"
# url: &db "postgres://postgres:[email protected]:5432/scoreengine"
# pool_size: 40
# max_overflow: 60
bank:
enabled: no
url: https://bank.example.com/internalGiveMoney
username: username
password: password
celery:
backend: *db
# broker: redis://192.168.99.100/0
broker: amqp://guest:[email protected]:5672//
worker:
concurrency: 20
loglevel: INFO
traceback: yes
logging:
format: '%(asctime)s [%(levelname)s] %(name)s: %(message)s'
level: INFO
# Override default check configurations
checks: []
# time units are expressed in seconds
round:
duration: 15
jitter: 5
# traffic generator
trafficgen:
number: 10
sleep: 10
teams:
minimum: 1
maximum: 10
check_teams: [9, 10]
services:
- name: ICMP
check: icmp.check_icmp
data:
- key: HOST
value: localhost
editable: no
- name: Active Directory
check: ldap.check_ldap_lookup
data:
- key: HOST
value: 10.{team}.1.50
- key: DOMAIN
value: loribird{team}.win
edit: no
- key: USERPASS
value: jgeistBird||Changeme123!
- key: USERPASS
value: jdrosteBird||Changeme123!
- name: Google ICMP
check: icmp.check_icmp
data:
- key: HOST
value: 8.8.8.8
- key: HOST
value: 8.8.4.4
- name: Google DNS
check: dns.check_dns
data:
- key: HOST
value: 8.8.8.8
- key: LOOKUP
value: ubnetdef.org
- key: TYPE
value: A
- key: EXPECTED
value: 128.205.44.157
- name: Google HTTP
check: http.check_http
data:
- key: HOST
value: google.com
- key: PORT
value: 80
- name: MariaDB
check: mysql.check_query_server
data:
- key: HOST
value: 192.168.99.100
- key: PORT
value: 3306
- key: USER
value: root
- key: PASS
value: password
- key: DB_LOOKUP
value: information_schema
- name: FTP
check: ftp.check_upload_download
data:
- key: HOST
value: 192.168.99.100
- key: USERPASS
value: bob||password
...