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
|
{
"profile": {
"privacy_filter_rules": {
"provider1": {
"name": "Sample",
"url": "http://www.example.com",
"entries": [
{
"pattern": "@poor-security-site.com",
"attributes": 16,
"exception": false
}, {
"pattern": "@.ad-serving-place.com",
"attributes": 2,
"exception": false
}, {
"pattern": "www.site.com/anonymous/folder/@",
"attributes": 12,
"exception": false
}, {
"pattern": "www.site.com/bad/url",
"attributes": 1,
"exception": false
}, {
"pattern": "@/script?@",
"attributes": 1,
"exception": false
}, {
"pattern": "@?badparam@",
"attributes": 1,
"exception": false
}, {
"pattern": "www.site.com/bad/url/good",
"attributes": 1,
"exception": true
}
]
}
}
}
}
|