forked from Graph3x/tcproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
40 lines (39 loc) · 1010 Bytes
/
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
{
"remote_host": "127.0.0.1",
"remote_port": "9000",
"proxy_host": "127.0.0.1",
"proxy_port": "9001",
"rules":
{
"client":
[
{
"name": "Adore is better than like",
"type": "regex2string",
"case_sensitive": "false",
"from": "like",
"to": "adore",
"alert": ""
}
],
"server":
[
{
"name": "Adore is better than like",
"type": "regex2string",
"case_sensitive": "false",
"from": "like",
"to": "adore",
"alert": ""
},
{
"name": "I dont like flags",
"type": "regex2string",
"case_sensitive": "true",
"from": "FLAG{[^}]+}",
"to": "not_today_crocodile",
"alert": "FLAG OUT+"
}
]
}
}