blob: 35057d813de7b9f3dbca8a3fbfe8e7d95f61ad8b (
plain)
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
|
#
# PRE: update if
#
update {
# Some encoders replace ~ with %7E RFC3986 Section 2.4 says this should not be done.
request:Tmp-String-0 := '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_.~'
request:Tmp-String-1 := '±§!@#$%^&*()+={[}]:;"\'|\<,>?/`'
request:Tmp-String-2 := '™œ¥¤'
request:Tmp-String-3 := '%C2%B1%C2%A7%21%40%23%24%25%5E%26%2A%28%29%2B%3D%7B%5B%7D%5D%3A%3B%22%27%7C%5C%3C%2C%3E%3F%2F%60'
request:Tmp-String-4 := '%E2%84%A2%C5%93%C2%A5%C2%A4'
reply:Filter-ID := 'filter'
}
if (<string>"%{urlquote:%{request:Tmp-String-0}}" != &Tmp-String-0) {
update reply {
Filter-Id += 'Fail 1'
}
}
if (<string>"%{urlquote:%{request:Tmp-String-1}}" != &Tmp-String-3) {
update reply {
Filter-Id += 'Fail 2'
}
}
if (<string>"%{urlquote:%{request:Tmp-String-2}}" != &Tmp-String-4) {
update reply {
Filter-Id += 'Fail 3'
}
}
if (<string>"%{urlunquote:%{request:Tmp-String-0}}" != &Tmp-String-0) {
update reply {
Filter-Id += 'Fail 4'
}
}
if (<string>"%{urlunquote:%{request:Tmp-String-3}}" != &Tmp-String-1) {
update reply {
Filter-Id += 'Fail 5'
}
}
if (<string>"%{urlunquote:%{request:Tmp-String-4}}" != &Tmp-String-2) {
update reply {
Filter-Id += 'Fail 6'
}
}
|