-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
config.json
101 lines (101 loc) · 2.37 KB
/
config.json
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
{
"logs": "db",
"logs_location": "",
"syslog_address":"udp://syslog:514",
"syslog_facility":3,
"postgres":"//changeme027a088931d22:changeme0f40773877963@chameleon_postgres:9999/chameleon",
"db_options":["drop"],
"filter": "not port 9999 and not port 514",
"interface": "eth0",
"honeypots": {
"ftp": {
"port": 21,
"username": "test",
"password": "test"
},
"ssh": {
"port": 22,
"username": "test",
"password": "test"
},
"telnet": {
"port": 23,
"username": "test",
"password": "test"
},
"smtp": {
"port": 25,
"username": "test",
"password": "test"
},
"http": {
"port": 80,
"username": "test",
"password": "test"
},
"pop3": {
"port": 110,
"username": "test",
"password": "test"
},
"imap": {
"port": 143,
"username": "test",
"password": "test"
},
"https": {
"port": 443,
"username": "test",
"password": "test"
},
"postgres": {
"port": 5432,
"username": "test",
"password": "test"
},
"smb": {
"port": 445,
"username": "test",
"password": "test"
},
"socks5": {
"port": 1080,
"username": "test",
"password": "test"
},
"mysql": {
"port": 3306,
"username": "test",
"password": "test"
},
"vnc": {
"port": 5900,
"username": "test",
"password": "test"
},
"redis": {
"port": 6379,
"username": "test",
"password": "test"
},
"httpproxy": {
"port": 8080,
"ip": "0.0.0.0"
},
"elastic": {
"port": 9200,
"username": "elastic",
"password": "test"
},
"mssql": {
"port": 1433,
"username": "test",
"password": "test"
},
"ldap": {
"port": 389,
"username": "test",
"password": "test"
}
}
}