forked from Iankulani/warbunny
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathk8s-configmap.yaml
More file actions
57 lines (56 loc) · 1.38 KB
/
Copy pathk8s-configmap.yaml
File metadata and controls
57 lines (56 loc) · 1.38 KB
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
# WARBUNNY Kubernetes ConfigMap
apiVersion: v1
kind: ConfigMap
metadata:
name: warbunny-config
namespace: security
labels:
app: warbunny
data:
environment: "production"
log_level: "INFO"
db_host: "postgres.warbunny-db.svc.cluster.local"
db_port: "5432"
db_name: "warbunny"
redis_host: "redis.warbunny-redis.svc.cluster.local"
redis_port: "6379"
# WARBUNNY Configuration
config.json: |
{
"version": "2.0.0",
"auto_start": false,
"auto_block_enabled": true,
"auto_block_threshold": 5,
"scan_timeout": 30,
"report_format": "html",
"generate_graphics": true,
"web": {
"enabled": true,
"port": 5000,
"host": "0.0.0.0",
"require_auth": true
},
"monitoring": {
"enabled": true,
"port_scan_threshold": 10,
"syn_flood_threshold": 100,
"http_flood_threshold": 200
},
"traffic_generation": {
"enabled": true,
"max_duration": 300,
"max_packet_rate": 1000,
"allow_floods": false
},
"social_engineering": {
"enabled": true,
"default_port": 8080,
"capture_credentials": true,
"auto_shorten_urls": true
},
"ssh": {
"enabled": true,
"default_timeout": 30,
"max_connections": 5
}
}