-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
83 lines (82 loc) · 2.41 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
{
"Raidware_Configuration" :
{
"LOG_FILE" : "logs/raidware.log",
"DEBUG_LOG_FILE" : "logs/debug.log",
"ERROR_LOG_FILE" : "logs/error.log",
"AUTH_LOG_FILE" : "logs/auth.log",
"CONNECTIONS_LOG_FILE" : "logs/connections.log",
"DEBUG" : true,
"SECRET_KEY" : "r@1dw@r3_k3y"
},
"Listeners" : [
{
"protocol" : "tcp",
"description" : "TCP Listener",
"config" : {
"host" : "0.0.0.0",
"port" : 9001,
"begin_delimiter" : "|RAIDWARE-SoM|",
"end_delimiter" : "|RAIDWARE-EoM|",
"encryption-key" : "%sa2(soao@s"
},
"types" : ["Non-Staged"],
"details" : {
"Non-Staged" : {
"path" : "Teamserver/listeners/staged/tcp.py",
"arch" : ["x86", "x64"]
}
}
},
{
"protocol" : "http",
"description" : "HTTP Listener",
"config" : {
"host" : "0.0.0.0",
"port" : 9002,
"begin_delimiter" : "|RAIDWARE-SoM|",
"end_delimiter" : "|RAIDWARE-EoM|",
"encryption-key" : "%sa2(soao@s"
},
"types" : ["Non-Staged"],
"details" : {
"Non-Staged" : {
"path" : "Teamserver/listeners/non_staged/http-rw.py",
"arch" : ["x86", "x64"]
}
},
"encryption" : "RC4",
"key" : "r@1dw@r3_k3y"
}
],
"Agents" : {
"Common" : {
"PAYLOAD_ENCRYPTION" : "AES",
"PAYLOAD_KEY" : "r@1dw@r3_k3y",
"begin_delimiter" : "|RAIDWARE-SoM|",
"end_delimiter" : "|RAIDWARE-EoM|",
"tcp" : {
"LHOST" : "127.0.0.1",
"LPORT" : 9001
}
},
"Linux" : [
"tcp",
"udp",
"http"
],
"Windows" : {
"tcp" : {
"SSL" : false
},
"tls" : {
"CERT_ENCODING" : "HEX",
"CERT_FILE" : "Teamserver/certs/cert.pem"
}
},
"MacOS" : [
"tcp",
"http"
]
}
}