98d95508bbd1be81ecec4549a46d2baeb886bf49
[privoxy.git] / default.action.master
1 #MASTER# COMMENT:
2 #MASTER# COMMENT:  Anyone adding specific rules to this file,
3 #MASTER# COMMENT:  wherever possible please include a *full* URL
4 #MASTER# COMMENT:  which can be used to verify the problem, and if
5 #MASTER# COMMENT:  the problem may not always be fully obvious, a
6 #MASTER# COMMENT:  brief explanation. Please also add tests for
7 #MASTER# COMMENT:  Privoxy-Regression-Test so we can automatically
8 #MASTER# COMMENT:  verify that your rules are effective. Thanks.
9 #MASTER# COMMENT:
10 ######################################################################
11 #
12 #  File        :  default.action.master
13 #
14 #  Requires    :  This version requires Privoxy v3.0.11 or later due to
15 #                 syntax changes.
16 #
17 #  Purpose     :  Default actions file, see
18 #                 https://www.privoxy.org/user-manual/actions-file.html.
19 #                 This file is subject to periodic updating. It is
20 #                 not supposed to be edited by the user. Local exceptions
21 #                 and enhancements are better placed in user.action,
22 #                 the match-all section has been moved to match-all.action.
23 #
24 #  Copyright   :  Written by and Copyright (C) 2001-2023 the
25 #                 Privoxy team. https://www.privoxy.org/
26 #
27 # Feedback welcome, for details please have a look at:
28 # https://www.privoxy.org/user-manual/contact.html
29 #
30 # The current development version of this file is located at:
31 # https://www.privoxy.org/gitweb/?p=privoxy.git;a=blob_plain;f=default.action.master;hb=HEAD
32 #
33 #############################################################################
34 # Syntax
35 #############################################################################
36 #
37 # A much better explanation can be found in the user manual which is
38 # part of the distribution and can be found at https://www.privoxy.org/user-manual
39 #
40 # To determine which actions apply to a request, the URL of the request is
41 # compared to all patterns in this file. Every time it matches, the list of
42 # applicable actions for this URL is incrementally updated. You can trace
43 # this process by visiting http://config.privoxy.org/show-url-info
44 #
45 # There are 4 types of lines in this file: comments (like this line),
46 # actions, aliases and patterns, all of which are explained below.
47 #
48 #############################################################################
49 # Pattern Syntax
50 #############################################################################
51 #
52 # 1. On Domains and Paths
53 # -----------------------
54 #
55 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
56 # and <path> part are optional. The pattern matching syntax is different for
57 # each. If you only specify a domain part, the "/" can be left out, but it is
58 # required for the path part.
59 #
60 # www.example.com
61 #   is a domain-only pattern and will match any request to www.example.com
62 #
63 # www.example.com/
64 #   means exactly the same (but is slightly less efficient)
65 #
66 # www.example.com/index.html
67 #   matches only the document /index.html on www.example.com
68 #
69 # /index.html
70 #   matches the document /index.html, regardless of the domain
71 #
72 # index.html
73 #   matches nothing, since it would be interpreted as a domain name and
74 #   there is no top-level domain called ".html".
75 #
76 # 2. Domain Syntax
77 # ----------------
78 #
79 # The matching of the domain part offers some flexible options: If the
80 # domain starts or ends with a dot, it becomes unanchored at that end:
81 #
82 # www.example.com
83 #   matches only www.example.com
84 #
85 # .example.com
86 #   matches any domain that ENDS in .example.com
87 #
88 # www.
89 #   matches any domain that STARTS with www.
90 #
91 # .example.
92 #   matches any domain that CONTAINS example
93 #
94 #
95 # Additionally, there are wildcards that you can use in the domain names
96 # themselves. They work pretty similar to shell wildcards: "*" stands for
97 # zero or more arbitrary characters, "?" stands for one, and you can define
98 # character classes in square brackets and they can be freely mixed:
99 #
100 # ad*.example.com
101 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
102 #
103 # *ad*.example.com
104 #   matches all of the above
105 #
106 # .?pix.com
107 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
108 #
109 # www[1-9a-ez].example.com
110 #   matches www1.example.com, www4.example.com, wwwd.example.com,
111 #   wwwz.example.com etc, but not wwww.example.com
112 #
113 # You get the idea?
114 #
115 # 2. Path Syntax
116 # --------------
117 #
118 # Paths are specified as full regular expressions, and are more flexible than
119 # the domain syntax above. A comprehensive discussion of regular expressions
120 # wouldn't fit here.
121 #
122 # Perl compatible regular expressions are used. See the pcre/docs/ directory or
123 # man perlre (also available at http://perldoc.perl.org/perlre.html) for
124 # details. The appendix to our User Manual also has some detail.
125 #
126 # Please note that matching in the path is CASE INSENSITIVE by default, but
127 # you can switch to case sensitive by starting the pattern with the "(?-i)"
128 # switch:
129 #
130 # www.example.com/(?-i)PaTtErN.*
131 #   will match only documents whose path starts with PaTtErN in exactly this
132 #   capitalization.
133 #
134 # Partially case-sensitive and partially case-insensitive patterns are
135 # possible, but the rules about splitting them up are extremely complex
136 # - see the PCRE documentation for more information.
137 #
138 #############################################################################
139 # Action Syntax
140 #############################################################################
141 #
142 # There are 3 kinds of actions:
143 #
144 # Boolean (e.g. "handle-as-image"):
145 #   +name  # enable
146 #   -name  # disable
147 #
148 # Parameterized (e.g. "hide-user-agent"):
149 #   +name{param}  # enable and set parameter to "param"
150 #   -name         # disable
151 #
152 # Multi-value (e.g. "add-header", "filter"):
153 #   +name{param}  # enable and add parameter "param"
154 #   -name{param}  # remove the parameter "param"
155 #   -name         # disable totally
156 #
157 # The default (if you don't specify anything in this file) is not to take
158 # any actions - i.e completely disabled, so Privoxy will just be a
159 # normal, non-blocking, non-anonymizing proxy.  You must specifically
160 # enable the privacy and blocking features you need (although the
161 # provided default actions file will do that for you).
162 #
163 # Later actions always override earlier ones.  For multi-valued actions,
164 # the actions are applied in the order they are specified.
165 #
166 #############################################################################
167 # Valid actions are:
168 #############################################################################
169 #
170 # +add-header{Name: value}
171 #    Adds the specified HTTP header, which is not checked for validity.
172 #    You may specify this many times to specify many headers.
173 #
174 # +block{reason}
175 #    Block this URL. Instead of forwarding the request, Privoxy will
176 #    send a "block" page containing the specified reason.
177 #
178 # +change-x-forwarded-for{add}
179 # +change-x-forwarded-for{block}
180 #   Adds or blocks the "X-Forwarded-For:" HTTP header in client
181 #   requests.
182 #
183 # +client-header-filter{name}
184 #    All client headers to which this action applies are filtered on-the-fly
185 #    through the specified regular expression based substitutions.
186 #
187 #    Client-header filters predefined in the supplied default.filter include:
188 #
189 #     hide-tor-exit-notation: Removes the Tor exit node notation in Host and Referer headers.
190 #     no-brotli-accepted:     Strips "br" from the Accept-Encoding header
191 #     privoxy-control:        Removes X-Privoxy-Control headers.
192 #
193 # +client-header-tagger{string}
194 #    Tag requests based on their headers. Client headers to which this
195 #    action applies are filtered on-the-fly through the specified regular
196 #    expression based substitutions, the result is used as a tag.
197 #    Client-header taggers are the first actions that are executed and their
198 #    tags can be used to control every other action.
199 #
200 #    Client-header taggers predefined in the supplied default.filter include:
201 #
202 #     image-requests:    Tags detected image requests as "IMAGE-REQUEST".
203 #     css-requests:      Tags detected CSS requests as "CSS-REQUEST".
204 #     range-requests:    Tags range requests as "RANGE-REQUEST".
205 #     client-ip-address: Tags the request with the client's IP address.
206 #     http-method:       Tags the request with its HTTP method.
207 #     allow-post:        Tags POST requests as "ALLOWED-POST".
208 #     complete-url:      Tags the request with the whole request URL.
209 #     user-agent:        Tags the request with the complete User-Agent header.
210 #     referer:           Tags the request with the complete Referer header.
211 #     privoxy-control:   Creates tags with the content of X-Privoxy-Control headers.
212 #
213 # +content-type-overwrite
214 #    Replaces the "Content-Type:" HTTP server header, so that unwanted
215 #    download menus will not pop up, or changes the browser's rendering mode.
216 #
217 # +crunch-client-header{string}
218 #    Deletes every header sent by the client that contains the string the
219 #    user supplied as parameter.
220 #
221 # +crunch-if-none-match
222 #     Deletes the "If-None-Match:" HTTP client header.
223 #
224 # +crunch-server-header{string}
225 #    Deletes every header sent by the server that contains the string the
226 #    user supplied as a parameter.
227 #
228 # +deanimate-gifs{last}
229 # +deanimate-gifs{first}
230 #    Deanimate all animated GIF images, i.e. reduce them to their last
231 #    frame. This will also shrink the images considerably. (In bytes,
232 #    not pixels!)
233 #    If the option "first" is given, the first frame of the animation
234 #    is used as the replacement. If "last" is given, the last frame of
235 #    the animation is used instead, which probably makes more sense for
236 #    most banner animations, but also has the risk of not showing the
237 #    entire last frame (if it is only a delta to an earlier frame).
238 #
239 # +downgrade-http-version
240 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
241 #    responses as well. Use this action for servers that use HTTP/1.1
242 #    protocol features that Privoxy currently can't handle yet.
243 #
244 # +fast-redirects{check-decoded-url}
245 # +fast-redirects{simple-check}
246 #    Many sites, like yahoo.com, don't just link to other sites.
247 #    Instead, they will link to some script on their own server,
248 #    giving the destination as a parameter, which will then redirect
249 #    you to the final target.
250 #
251 #    URLs resulting from this scheme typically look like:
252 #    http://some.place/some_script?http://some.where-else
253 #
254 #    Sometimes, there are even multiple consecutive redirects encoded
255 #    in the URL. These redirections via scripts make your web browsing
256 #    more traceable, since the server from which you follow such a link
257 #    can see where you go to. Apart from that, valuable bandwidth and
258 #    time is wasted, while your browser asks the server for one redirect
259 #    after the other. Plus, it feeds the advertisers.
260 #
261 #    The +fast-redirects{check-decoded-url} option enables interception of
262 #    these requests by Privoxy, who will cut off all but the last valid URL
263 #    in the request and send a local redirect back to your browser without
264 #    contacting the intermediate sites. NOTE: Syntax change as of v.3.0.4.
265 #
266 # +filter{name}
267 #    All files of text-based type, most notably HTML and JavaScript, to which
268 #    this action applies, can be filtered on-the-fly through the specified
269 #    regular expression based substitutions. (Note: plain text documents are
270 #    exempted from filtering, because web servers often use the text/plain
271 #    MIME type for all files whose type they don't know.) By default,
272 #    filtering works only on the raw document content itself (that which can
273 #    be seen with View Source), not the headers. Repeat for multiple filters.
274 #    Use with caution: filters can be very intrusive.
275 #
276 #    Filters predefined in the supplied default.filter include:
277 #
278 #     js-annoyances:       Get rid of particularly annoying JavaScript abuse.
279 #     js-events:           Kill JavaScript event bindings and timers (Radically destructive! Only for extra nasty sites).
280 #     html-annoyances:     Get rid of particularly annoying HTML abuse.
281 #     content-cookies:     Kill cookies that come in the HTML or JS content.
282 #     refresh-tags:        Kill automatic refresh tags if refresh time is larger than 9 seconds.
283 #     unsolicited-popups:  Disable only unsolicited pop-up windows.
284 #     all-popups:          Kill all popups in JavaScript and HTML.
285 #     img-reorder:         Reorder attributes in <img> tags to make the banners-by-* filters more effective.
286 #     banners-by-size:     Kill banners by size.
287 #     banners-by-link:     Kill banners by their links to known clicktrackers.
288 #     webbugs:             Squish WebBugs (1x1 invisible GIFs used for user tracking).
289 #     tiny-textforms:      Extend those tiny textareas up to 40x80 and kill the hard wrap.
290 #     jumping-windows:     Prevent windows from resizing and moving themselves.
291 #     frameset-borders:    Give frames a border and make them resizable.
292 #     iframes:             Removes all detected iframes. Should only be enabled for individual sites.
293 #     demoronizer:         Fix MS's non-standard use of standard charsets.
294 #     shockwave-flash:     Kill embedded Shockwave Flash objects.
295 #     quicktime-kioskmode: Make Quicktime movies saveable.
296 #     fun:                 Text replacements for subversive browsing fun!
297 #     crude-parental:      Crude parental filtering. Note that this filter doesn't work reliably.
298 #     ie-exploits:         Disable some known Internet Explorer bug exploits.
299 #     site-specifics:      Cure for site-specific problems. Don't apply generally!
300 #     no-ping:             Removes non-standard ping attributes in <a> and <area> tags.
301 #     google:              CSS-based block for Google text ads. Also removes a width limitation and the toolbar advertisement.
302 #     yahoo:               CSS-based block for Yahoo text ads. Also removes a width limitation.
303 #     msn:                 CSS-based block for MSN text ads. Also removes tracking URLs and a width limitation.
304 #     blogspot:            Cleans up some Blogspot blogs. Read the fine print before using this.
305 #
306 # +force-text-mode
307 #    Declares a document as plain text, even if the "Content-Type:" isn't detected
308 #    as such.
309 #
310 # +forward-override{forward .}
311 # +forward-override{forward 127.0.0.1:8123}
312 # +forward-override{forward-socks4a 127.0.0.1:9050 .}
313 # +forward-override{forward-socks4a 127.0.0.1:9050 proxy.example.org:8000}
314 # +forward-override{forward-socks5 127.0.0.1:9050 .}
315 # +forward-override{forward-socks5 127.0.0.1:9050 proxy.example.org:8000}
316 #   This action overrules the forward directives in the configuration file.
317 #
318 # +handle-as-empty-document
319 #   This action alone doesn't do anything noticeable. It just marks URLs. If
320 #   the block action also applies, the presence or absence of this mark
321 #   decides whether an HTML "blocked"  page, or an empty document will be sent
322 #   to the client as a substitute for the blocked content.
323 #
324 # +handle-as-image
325 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
326 #    in which case a "blocked" image can be sent rather than a HTML page.
327 #    See +set-image-blocker{} for the control over what is actually sent.
328 #
329 # +hide-accept-language{lang}
330 # +hide-accept-language{block}
331 #   Deletes or replaces the "Accept-Language:" HTTP header in client
332 #   requests.
333 #
334 # +hide-content-disposition{block}
335 # +hide-content-disposition{string}
336 #   Deletes or replaces the "Content-Disposition:" HTTP header set by some
337 #   servers. This can be used to prevent download menus for content you
338 #   prefer to view inside the browser, for example.
339 #
340 # +hide-from-header{block}
341 # +hide-from-header{spam@sittingduck.xqq}
342 #   If the browser sends a "From:" header containing your e-mail address,
343 #   either completely removes the header ("block"), or change it to the
344 #   specified e-mail address.
345 #
346 # +hide-if-modified-since{block}
347 # +hide-if-modified-since{-60}
348 #   Deletes the "If-Modified-Since:" HTTP client header or modifies its
349 #   value, preventing another way to track users.
350 #
351 # +hide-referer{block}
352 # +hide-referer{forge}
353 # +hide-referer{http://nowhere.com}
354 #    Don't send the "Referer:" (sic) header to the web site.  You can
355 #    block it, forge a URL to the same server as the request (which is
356 #    preferred because some sites will not send images otherwise) or
357 #    set it to a constant string.
358 #
359 # +hide-referrer{...}
360 #    Alternative spelling of +hide-referer.  Has the same parameters,
361 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the
362 #    correct English spelling, however the HTTP specification has a
363 #    bug - it requires it to be spelt "referer").
364 #
365 # +hide-user-agent{browser-type}
366 #    Change the "User-Agent:" header so web servers can't tell your
367 #    browser type.  (Breaks many web sites).  Specify the user-agent
368 #    value you want - e.g., to pretend to be using Netscape on Linux:
369 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
370 #    Or to identify yourself explicitly as a Privoxy user:
371 #      +hide-user-agent{Privoxy/1.0}
372 #    (Don't change the version number from 1.0 - after all, why tell them?)
373 #
374 # +https-inspection
375 #    Filter encrypted requests and responses.
376 #    Requires FEATURE_HTTPS_INSPECTION.
377 #
378 # +ignore-certificate-errors
379 #    Ignore certificate errors when the +https-inspection action
380 #    is enabled. Requires FEATURE_HTTPS_INSPECTION.
381 #
382 # +limit-connect{portlist}
383 #
384 #    By default, i.e. if no limit-connect action applies, Privoxy
385 #    allows HTTP CONNECT requests to all ports. Use limit-connect
386 #    if fine-grained control is desired for some or all destinations.
387 #    The CONNECT methods exists in HTTP to allow access to secure websites
388 #    ("https://" URLs) through proxies. It works very simply: the proxy
389 #    connects to the server on the specified port, and then short-circuits
390 #    its connections to the client and to the remote server. This means
391 #    CONNECT-enabled proxies can be used as TCP relays very easily. Privoxy
392 #    relays HTTPS traffic without seeing the decoded content. Websites can
393 #    leverage this limitation to circumvent Privoxy's filters. By specifying
394 #    an invalid port range you can disable HTTPS entirely.
395 #
396 #    +limit-connect{443}                   # Only port 443 is OK.
397 #    +limit-connect{80,443}                # Ports 80 and 443 are OK.
398 #    +limit-connect{-3, 7, 20-100, 500-}   # Ports less than 3, 7, 20 to 100 and above 500 are OK.
399 #    +limit-connect{-}                     # All ports are OK
400 #    +limit-connect{,}                     # No HTTPS/SSL traffic is allowed
401 #
402 # +limit-cookie-lifetime{lifetime in minutes}
403 #
404 #    This action reduces the lifetime of HTTP cookies coming from the
405 #    server to the specified number of minutes, starting from the time
406 #    the cookie passes Privoxy.
407 #
408 #    Cookies with a lifetime below the limit are not modified.
409 #    The lifetime of session cookies is set to the specified limit.
410 #    The effect of this action depends on the server.
411 #     If the parameter is "0", this action behaves like session-cookies-only.
412 #
413 # +overwrite-last-modified{block}
414 # +overwrite-last-modified{reset-to-request-time}
415 # +overwrite-last-modified{randomize}
416 #    Removing the "Last-Modified:" header is useful for filter testing, where
417 #    you want to force a real reload instead of getting status code "304",
418 #    which would cause the browser to reuse the old version of the page.
419 #
420 #    The "randomize" option overwrites the value of the "Last-Modified:"
421 #    header with a randomly chosen time between the original value and the
422 #    current time. In theory the server could send each document with a
423 #    different "Last-Modified:" header to track visits without using cookies.
424 #    "Randomize" makes it impossible and the browser can still revalidate
425 #    cached documents.
426 #
427 #    "reset-to-request-time" overwrites the value of the "Last-Modified:"
428 #    header with the current time. You could use this option together with
429 #    hide-if-modified-since to further customize your random range.
430 #
431 # +prevent-compression
432 #    Prevent the website from compressing the data. Some websites do
433 #    that, which is a problem for Privoxy when built without zlib support,
434 #    since +filter and +gif-deanimate will not work on compressed data.
435 #    Will slow down connections to those websites, though.
436 #
437 # +server-header-filter{name}
438 #    All server headers to which this action applies are filtered on-the-fly
439 #    through the specified regular expression based substitutions.
440 #
441 #    Server-header filters predefined in the supplied default.filter include:
442 #
443 #     x-httpd-php-to-html:   Changes the Content-Type header from x-httpd-php to html.
444 #     html-to-xml:           Changes the Content-Type header from html to xml.
445 #     xml-to-html:           Changes the Content-Type header from xml to html.
446 #     less-download-windows: Prevent annoying download windows for content types the browser can handle itself.
447 #     privoxy-control:       Removes X-Privoxy-Control headers.
448 #
449 # +server-header-tagger{content-type}
450 #    Server headers to which this action applies are filtered on-the-fly
451 #    through the specified regular expression based substitutions, the result
452 #    is used as a tag. Server-header taggers are executed before all other
453 #    header actions that modify server headers. Their tags can be used to
454 #    control all of the other server-header actions, the content filters and
455 #    the crunch actions (redirect and block).
456 #
457 #    Server-header taggers predefined in the supplied default.filter include:
458 #
459 #     content-type:    Tags the request with the content type declared by the server.
460 #     privoxy-control: Creates tags with the content of X-Privoxy-Control headers.
461 #
462 # +session-cookies-only
463 #    If the website sets cookies, make sure they are erased when you exit
464 #    and restart your web browser.  This makes profiling cookies useless,
465 #    but won't break sites which require cookies so that you can log in
466 #    or for transactions.
467 #
468 # +set-image-blocker{blank}
469 # +set-image-blocker{pattern}
470 # +set-image-blocker{<URL>} with <url> being any valid image URL
471 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
472 #    There are 4 options:
473 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
474 #         resulting in a "broken image" icon.
475 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
476 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
477 #        which is less intrusive than the logo but easier to recognize
478 #        than the transparent one.
479 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
480 #        to the specified image URL.
481 #
482 #
483 # +crunch-outgoing-cookies
484 #    Prevent the website from reading cookies
485 #
486 # +crunch-incoming-cookies
487 #    Prevent the website from setting cookies
488 #
489 # +redirect{<URL>}
490 # +redirect{<pcrs command>}
491 #    Convinces the browser that the requested document has been moved to
492 #    another location and the browser should get it from the specified
493 #    URL.
494 #
495 #############################################################################
496
497 #############################################################################
498 # Settings -- Don't change.
499 #############################################################################
500 {{settings}}
501 #############################################################################
502 #MASTER# COMMENT: The minimum Privoxy version:
503 for-privoxy-version=3.0.11
504
505 #############################################################################
506 # Aliases
507 #############################################################################
508 {{alias}}
509 #############################################################################
510 #
511 # You can define a short form for a list of permissions - e.g., instead
512 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
513 # you can just write "shop". This is called an alias.
514 #
515 # Currently, an alias can contain any character except space, tab, '=', '{'
516 # or '}'.
517 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
518 #
519 # Alias names are not case sensitive.
520 #
521 # Aliases beginning with '+' or '-' may be used for system action names
522 # in future releases - so try to avoid alias names like this.  (e.g.
523 # "+crunch-all-cookies" below is not a good name)
524 #
525 # Aliases must be defined before they are used.
526 #
527
528 # These aliases just save typing later:
529 #
530 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
531 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
532  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
533  allow-popups       = -filter{all-popups} -filter{unsolicited-popups}
534 +block-as-image     = +block{Blocked image request.} +handle-as-image
535 -block-as-image     = -block
536
537 # These aliases define combinations of actions
538 # that are useful for certain types of sites:
539 #
540 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer
541 shop        = -crunch-all-cookies allow-popups
542
543 # Your favourite blend of filters:
544 #
545 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{all-popups}\
546               +filter{webbugs} +filter{banners-by-size}
547
548 # Allow ads for selected useful free sites:
549 #
550 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
551
552 ################
553 #
554 # Cautious settings -- safe for all sites, but offer little privacy protection
555 #
556 { \
557 +change-x-forwarded-for{block} \
558 +client-header-tagger{css-requests} \
559 +client-header-tagger{image-requests} \
560 +client-header-tagger{range-requests} \
561 +hide-from-header{block} \
562 +set-image-blocker{pattern} \
563 }
564 standard.Cautious
565
566 ################
567 #
568 # Medium settings -- safe for most sites, with reasonable protection/damage tradeoff
569 #
570 { \
571 +change-x-forwarded-for{block} \
572 +client-header-tagger{css-requests} \
573 +client-header-tagger{image-requests} \
574 +client-header-tagger{range-requests} \
575 +deanimate-gifs{last} \
576 +filter{refresh-tags} \
577 +filter{img-reorder} \
578 +filter{banners-by-size} \
579 +filter{webbugs} \
580 +filter{jumping-windows} \
581 +filter{ie-exploits} \
582 +hide-from-header{block} \
583 +hide-referrer{conditional-block} \
584 +session-cookies-only \
585 +set-image-blocker{pattern} \
586 }
587 standard.Medium
588
589 ################
590 #
591 # Advanced settings -- reasonable privacy protection but
592 # require some exceptions for trusted sites, most likely
593 # because of cookies or SSL. Also testing ground for
594 # new options.
595 #
596 # CAUTION: These settings can still be subverted by a
597 # misconfigured client that executes code from untrusted
598 # sources.
599 #
600 { \
601 +change-x-forwarded-for{block} \
602 +client-header-tagger{css-requests} \
603 +client-header-tagger{image-requests} \
604 +client-header-tagger{range-requests} \
605 +crunch-if-none-match \
606 +crunch-outgoing-cookies \
607 +crunch-incoming-cookies \
608 +deanimate-gifs{last} \
609 +fast-redirects{check-decoded-url} \
610 +filter{html-annoyances} \
611 +filter{content-cookies} \
612 +filter{refresh-tags} \
613 +filter{img-reorder} \
614 +filter{banners-by-size} \
615 +filter{banners-by-link} \
616 +filter{webbugs} \
617 +filter{jumping-windows} \
618 +filter{frameset-borders} \
619 +filter{quicktime-kioskmode} \
620 +hide-if-modified-since{-60} \
621 +hide-from-header{block} \
622 +hide-referrer{conditional-block} \
623 +limit-connect{,} \
624 +overwrite-last-modified{randomize} \
625 +set-image-blocker{pattern} \
626 }
627 standard.Advanced
628
629 #############################################################################
630 # These extensions belong to images:
631 #############################################################################
632 {+handle-as-image -filter}
633 #############################################################################
634 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
635
636 #############################################################################
637 # These don't:
638 #############################################################################
639 {-handle-as-image}
640 /.*\.(js|php|css|.?html?)
641
642 #############################################################################
643 # These belong to multimedia files of which Firefox occasionally only
644 # requests parts. #2816708
645 #############################################################################
646 {-filter -deanimate-gifs}
647 # Sticky Actions = -filter -deanimate-gifs
648 # URL = http://www.example.org/foo/bar.ogg
649 # URL = http://www.example.net/bar.ogv
650 /.*\.og[gv]$
651
652 #############################################################################
653 # Generic block patterns by host:
654 #############################################################################
655 {+block{Host matches generic block pattern.}}
656 ad*.
657 .*ads.
658 #MASTER# REMARKS: removed .ad. 2007-12-18 HB
659 #MASTER# REMARKS: Modifications per Actionsfile feedback item #1807613
660 .ad.?.
661 .ad.[a-ik-z][a-oq-z].
662 .ad.jp.*.
663 .ad.???*.
664 # Blocked URL = http://alternativos.iw-advertising.com/
665 .*advert*.
666 *banner*.
667 count*.
668 *counter.
669 #MASTER# BLOCK-REFERRER: http://tech.cybernetnews.com/
670 # Blocked URL = http://metrics.performancing.com/
671 metrics.
672
673 #############################################################################
674 # Generic unblockers by host:
675 #############################################################################
676 {-block}
677 # Sticky Actions = -block
678 adsl.
679 ad[udmw]*.
680 adbl*.
681 adam*.
682 adapt*.
683 adob*.
684 adrenaline.
685 adtp*.
686 adv[oia]*.
687 adventure*.
688 .*road*.
689 .olympiad*.
690 .*load*.
691 .*[epu]ad*.
692 county*.
693 countr*.
694 #MASTER# REMARKS: We still like tor
695 # URL = http://metrics.torproject.org/consensus-graphs.html
696 metrics.torproject.org/
697 # URL = http://linuxcounter.net/
698 linuxcounter.net/
699 # URL = http://adinablafasel.example.org/
700 adina*.
701 # URL = http://adelelimedesign.deviantart.com/
702 adele*.
703 # URL = http://adlibris.com/
704 adlibris.
705 # URL = http://www.adbshell.com/
706 .adbshell.com
707 # URL = http://adbinstaller.com/
708 .adbinstaller.com/
709 # URL = https://adainitiativedotorg.files.wordpress.com/2012/07/founders_laughing.png
710 ada*.
711 # URL = https://www.adrianschmutzler.net/
712 adri*.
713 # URL = https://adguard.com/
714 adguard.com/
715 # URL = https://adfd.org/austausch/
716 adfd.org/
717
718 #############################################################################
719 # Generic block patterns by path:
720 #############################################################################
721 {+block{Path matches generic block pattern.}}
722 # Blocked URL = http://www.example.org/adimage
723 # Blocked URL = http://www.example.org/adspace
724 /(.*/)?ad(\?|/|s|v|_?(image|se?rv|box)|cycle|rotate|mentor|click|f[ra]m|script|stream|fetch|log|space)
725 /phpads(new)?/
726 /(.*/)?(ad|all|nn|db|promo(tion)?)?[-_]?banner
727 /(.*/)?(publicite|werbung|rekla(me|am)|annonse|maino(kset|nta|s)?/)
728 /.*(count|track|compteur|(?<!relo)adframe|adse?rve?|banner)(er|run)?(\?|\.(pl|cgi|exe|dll|asp|php|cpt))
729 /(.*/)?clicktrack
730 /(.*/)?(full)?pop[-_]?(up|over|under|open(er)?)?s?(/|\.)
731 /(.*/)?((flash)?pop|live(cnt|count(er)?)).*\.(js|php|cgi)
732 #MASTER# BLOCK-REFERRER: http://thequietus.com/articles/10512-jo-dunne-fuzzbox-dies
733 # Blocked URL = http://thequietus.com/openx/www/delivery/ck.php?n=ae777ee2&cb=INSERT_RANDOM_NUMBER_HERE
734 /openx/www/delivery/
735 # Blocked URL = http://mem.brandreachsys.com/www/delivery/lg.php?bannerid=13783&campaignid=0&zoneid=550&cb=f22df9acaa
736 /.*bannerid=
737 # MASTER# BLOCK-REFERRER: http://www.augsburger-allgemeine.de/donauwoerth/Grosseinsatz-Polizist-schiesst-um-sich-Er-hat-mehrere-Waffen-id30561822.html
738 # Blocked URL = http://bilder.augsburger-allgemeine.de/img/incoming/orig30444932/2560007661/DigiAd-Zeopexx-03072014.gif
739 # Blocked URL = http://bilder.augsburger-allgemeine.de/img/incoming/orig30463337/9180008457/DigiAd-AugenblickOptik-04072014.gif
740 /.*DigiAd
741 # Blocked URL = http://web-t.9gag.com/piwik.php?e_c=PostImpression&e_a=ViewPostForOneSecond&e_n=Hot&e_v=1&idsite=7&rec=1&r=438977&h=14&m=13&s=9&url=https%3A%2F%2F9gag.com%2F&_id=780f7a6cf105beed&_idts=1600003135&_idvc=3&_idn=0&_refts=0&_viewts=1600255370&send_image=0&pdf=1&qt=0&realp=0&wma=0&dir=0&fla=0&java=0&gears=0&ag=0&cookie=1&res=1366x768&e_cvar=%7B%221%22%3A%5B%22PostKey%22%2C%22aR72ZBQ%22%5D%2C%222%22%3A%5B%22TriggeredPage%22%2C%22PostList%22%5D%2C%223%22%3A%5B%22TriggeredPageKey%22%2C%22Hot%22%5D%2C%224%22%3A%5B%22Position%22%2C%22343%22%5D%7D&_cvar=%7B%221%22%3A%5B%22AppVersion%22%2C%2200000%22%5D%7D&gt_ms=222
742 # Blocked URL = http://piwik.peta.de/piwik.php?idsite=2
743 # Blocked URL = http://www.attac.de/piwik/piwik.php?idsite=1
744 /(.*/)?piwik\.php
745
746 #############################################################################
747 # Generic unblockers by path:
748 #############################################################################
749 {-block}
750 # Sticky Actions = -block
751 /.*ad(sl|v(i[cs]|o|an|ertencia|ent|.*search|erse)) # advice/advisories/advan*/advertencia (spanish) adverse
752 /.*(lo|thre|he|d|gr|l|ro|re|squ|class(ified)?)ads
753 /.*account
754 support./(.*/)?track
755 # URL = http://repo.or.cz/r/vlc.git/objects/ad/1d316efd83157217fdf9b5d417dddca54bbf41
756 /.*\.git/objects/
757 # URL = http://code.google.com/p/sm-ssc/wiki/Bugtracker?tm=3
758 /.*Bugtracker
759 # URL = http://tiggit.net/forum/jscripts/popup_menu.js?ver=1600
760 # URL = http://www.av-comparatives.org/forum/wcf/js/PopupMenuList.class.js
761 # URL = http://oystatic.ignimgs.com/src/ve3d/sites/ve3d.ign.com/js/production/popupmenu.js
762 # URL = http://www.cutepdf.com/include/popmenu.js
763 # URL = http://www.cutepdf.com/include/popmenuv.js
764 /(.*/)?pop[a-z_-]*menu
765
766 #############################################################################
767 # Exceptions for academia and non-profits
768 #############################################################################
769 .edu
770 .ac.*/
771 .uni-*.de
772 .tu-*.de
773 .gov
774 .hs-*.de
775 .fh-*.de
776
777 #############################################################################
778 # Catch-all for false-positives that are just TOO obvious to let go
779 #############################################################################
780 {+block{Catch-all block for false-positives.}}
781 #MASTER# REMARKS: Going for adsrv, adserve, adserver*.
782 .ads[erv][rv]*.
783 # Blocked URL = http://ads.facebook.com/ads/spreadshirt/banner120x600.jpg
784 .ads.
785 /(.*/)?ad(se?rv|click|stream|image|log|farm|script)
786 # Blocked URL = http://www.torrentportal.com/topad.html
787 #MASTER# REMARKS: Action tracker 1637648 and a bit of imagination. Added 2007-01-20.
788 #MASTER# REMARKS: Added "text" 20070730 as per http://www.pcworld.com/textad?Keywords=System Resources Tune-Up.&type=pcworld_downloads_search&count=3&ord=906010128&serveUrl=http%3A%2F%2Fwww.pcworld.com%2Fdownloads%2Ffile%2Ffid%2C7661-order%2C1-page%2C1-c%2Csystemresourcestuneup%2Fdescription.html Adam Piggott
789 /.*(top|bottom|left|right|text)_?ad
790
791 #############################################################################
792 # Catch-all exceptions
793 #############################################################################
794 {-block}
795 # Sticky Actions = -block
796
797 #MASTER# REMARKS: Actionsfile feedback item #2933856  2010-01-17 16:59
798 #MASTER# REMARKS: Allow URLs containing DesktopAdmin (matches .*top_?ad)
799 # URL = http://support.apple.com/downloads/DL985/en_US/RemoteDesktopAdmin332.dmg
800 /.*desktopadmin
801 # URL = http://www.rai.it/dl/RaiTV/popup/player_radio.html?v=9
802 # URL = http://www.rai.tv/dl/RaiTV/popup/player_radio.html?v=9
803 #MASTER# UNBLOCK-REFERRER: http://www.bbc.co.uk/programmes/b01mnyzd
804 # URL = http://static.bbci.co.uk/radio/player/popup.js
805 /(.*/)?(player|radio|tv|television).?pop
806 /(.*/)?pop[-_]?(up|over|under|open(er)?)?s?(/|\.)(player|radio|tv|television)
807 #MASTER# REMARKS: Actionsfile feedback item #3498129  2012-03-06 17:14
808 #MASTER# REMARKS: Allows URLs containing the word 'download'
809 #MASTER# UNBLOCK-REFERRER: http://munirihsparrow.bandcamp.com/track/lamp-lighted
810 # URL = http://popplers5.bandcamp.com/download/track?enc=mp3-128&fsig=bad421a4c31dda49faceefb0f3923630&id=342903379&stream=1&ts=1355881937.0
811 /.*download
812
813 #----------------------------------------------------------------------------
814 # Misc Web-bugs, JS and just plain Junk. Images here aren't normal images.
815 #----------------------------------------------------------------------------
816 {+block{Might be a web-bug that isn't an image.} +handle-as-empty-document -handle-as-image}
817 #MASTER# REMARKS: signature for user tracking nytimes, cnn.com,latimes.com and many others. 10/06/06
818 /b/ss/.+
819 #MASTER# BLOCK-REFERRER: http://www.thesun.co.uk/article/0,,11071-10784,00.html
820 #MASTER# REMARKS: widespread hitbox signature 10/06/06
821 /HG\?hc=
822 #MASTER# BLOCK-REFERRER: http://macaddict.com 10/06/06
823 .visistat.com
824 #MASTER# REMARKS: See <http://www.google.com/analytics/> for user tracking.
825 #MASTER# REMARKS: There is a ssl.google-analytics as well.
826 .google-analytics./
827 #MASTER# REMARKS: Below Moved here from -handle-as-image 10/16/06 ##########
828 #MASTER# BLOCK-REFERRER: http://forums2.gardenweb.com/forums/orchids/ 09/25/06
829 #MASTER# REMARKS: Mostly JS and plain text stuff
830 .overture.
831 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
832 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs 10/15/06
833 .doubleclick.net/adi
834 .doubleclick.net/(.*/)?adj/
835 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
836 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs 10/15/06
837 view.atdmt.com/(.*/)?iview/
838 #MASTER# REMARKS: Above Moved here from -handle-as-image 10/16/06 ##########
839 #MASTER# REMARKS: Generic, re: tracking.foxnews.com/HG? 10/01/06
840 tracking.
841 #MASTER# BLOCK-REFERRER: http://netcraft.com and many others 10/22/06
842 /(.*/)?adjs\.php\?
843 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/epdf/ 10/08/06
844 .bc.yahoo.com/b\?P=
845 #MASTER# BLOCK-REFERRER: http://www.motherboard.cz 10/30/06
846 x*.alexa.com
847 #MASTER# BLOCK-REFERRER: http://mplayernetwork.com 11/07/06
848 #MASTER# BLOCK-REFERRER: http://eetimes.com 09/26/06
849 /event.ng/
850 # MASTER# BLOCK-REFERRER: http://www.play.com/PC/PCs/-/653/860/-/12068815/Asus-VK192S-19-Widescreen-LCD-Monitor-With-Webcam-White/Product.html
851 # Blocked URL = http://sd.play.com/eluminate?ci=90121638&st=1296424516858&vn1=4.3.1&ec=UTF-8&vn...
852 # Blocked URL = http://data.coremetrics.com/cm?ci=90121638&st=1296435164623&vn1=4.3.1&ec=UTF-8&vn...
853 /(eluminate|cm)\?[tc]i=\d+&st=\d+&
854 #MASTER# BLOCK-REFERRER: http://www.snapfiles.com/feedback/ 12/13/06 SF tracker
855 .snapfiles.net/rotation/.*\.asp
856 #MASTER# BLOCK-REFERRER: not provided. SF tracker #1616034 12/16/06
857 #MASTER# COMMENT: JS pop-ups
858 spa.snap.com/
859 #MASTER# BLOCK-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html 12/18/06
860 #MASTER# COMMENT: user tracking, and run-away assorted 'junk'
861 #MASTER# BLOCK-REFERRER: http://formwood.com 2007-11-12
862 .insitemetrics.com/
863 #MASTER# COMMENT: user tracking, and assorted 'junk'
864 #MASTER# BLOCK-REFERRER: http://blogblog.com 2007-11-12
865 .extreme-dm.com/
866 #MASTER# COMMENT: user tracking, and assorted 'junk'
867 #MASTER# BLOCK-REFERRER: http://www.schillmania.com 2007-11-12
868 stats.reinvigorate.net/
869 #MASTER# COMMENT: user tracking, and assorted 'junk'
870 #MASTER# BLOCK-REFERRER: http://wordpress.com 2007-11-12
871 .getclicky.com/
872 #MASTER# COMMENT: user tracking, and assorted 'junk'
873 #MASTER# BLOCK-REFERRER: http://infoworld.com 2007-11-12
874 .quantserve.com
875 # Blocked URL = http://media.adrevolver.com/adrevolver/trace?sip=123&cpy=123
876 media.adrevolver.com/
877 #MASTER# REMARKS: Actionsfile feedback item #2975895 2010-03-24
878 # Blocked URL = http://static.chartbeat.com/js/chartbeat.js
879 .chartbeat.com/(.*/)?chartbeat\.js$
880 # Blocked URL = http://js.adlink.net/js?lang=de&s=duesseldorf-international.de&z=home&d=1274103403564
881 #MASTER# BLOCK-REFERRER: http://www.duesseldorf-international.de/
882 js.adlink.net/
883 # Blocked URL = nl.sitestat.com/rdw/rdw/s?www.nl.voertuigeigenaar.voertuigeigenaar&ns__t=1274099350343
884 #MASTER# BLOCK-REFERRER: http://www.rdw.nl/nl/voertuigeigenaar/
885 .sitestat.com/
886 #MASTER# BLOCK-REFERRER: http://www.chip.de/artikel/c_artikelunterseite_10423683.html
887 # Blocked URL = http://pagead.googlesyndication.example.com/foo/bar/baz.js
888 pagead*.googlesyndication./.*\.js
889 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 SF tracker
890 scripts.chitika.net/.*\.js
891 #MASTER# BLOCK-REFERRER: via Yahoo groups
892 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
893 .adinterax.com/.*\.js
894 #MASTER# BLOCK-REFERRER: http://dictionary.reference.com/search?q=privacy&db=*
895 #MASTER# REMARKS: Actionsfile tracker 1650798 2007-02-02
896 # Blocked URL = http://partner.googleadservices.com/gampad/google_service.js
897 # Blocked URL = http://partner.googleadservices.com/gampad/google_ads.js
898 # Blocked URL = http://partner.googleadservices.com/gampad/slotdata.js?callback=_GA_googleAdData.setAdSlotAttributes&client=ca-gam-lexico
899 .googleadservices.com/gampad/.*\.js
900 # Blocked URL = http://richmedia.yimg.com/js/123/personnals_banners/PER_happy_sara1_4_425x600/ad.js?q=123
901 /.*/ad\.js\?
902 # Blocked URL = http://i.cmpnet.com/shared/omniture/s_code_remote.js
903 #MASTER# BLOCK-REFERRER: http://www.informationweek.de/
904 /.*omniture.*\.js
905 # Blocked URL = http://gadk.hit.gemius.pl/*/_1274097577014/rexdot.gif?l=30&id=..DlR.vCLZGB56RmfkYNSWZVLSqB3ueYOP.Oec5WWiv.h7&fr=1&fv=WIN%2010%2C0%2C45%2C2&tz=-120&href=http%3A//www.baadgalleri.dk/&ref=&screen=1440x900&col=32
906 #MASTER# BLOCK-REFERRER: http://www.baadgalleri.dk/
907 .gemius.pl/
908 # Blocked URL = http://farm.plista.com/widgetdata.php?clientrev=12&domainid=4211&publickey=fdc5a7f9d15be004aa03fc4d&cb=PLISTA5_7ed57c93e0d17&requestID=5&5=widgetintegration%3A%02pictureads%03&6=pictureads%3A%1Cpictureid%1F%026716%03%1Eimgdim%1F%1Cx%1F547%1Ey%1F410%1D%1Ewidgetname%1F%02pictureads%03%1D
909 farm.plista.com/widgetdata.php
910 #MASTER# BLOCK-REFERRER: http://www.notebooksbilliger.de/lenovo+thinkpad+l420+business+notebook
911 # Blocked URL = http://ib.adnxs.com/bounce?%2Fseg%3Fadd%3D279412
912 .adnxs.com/
913 #MASTER# BLOCK-REFERRER: http://www.zoover.nl/
914 # Blocked URL = http://service.maxymiser.net/cdn/zoover/js/mmcore.js
915 service.maxymiser.net/
916 #MASTER# BLOCK-REFERRER: http://www.newyorker.com/reporting/2010/05/31/100531fa_fact_groopman
917 # Blocked URL = http://tcr.tynt.com/javascripts/Tracer.js?user=cT9yCKGeer3PWlab7jrHtB&amp;s=62
918 .tynt.com/
919 # Blocked URL = http://pool.sanoma.adhese.com/tag/tag.js
920 pool.*.adhese.com/
921 #MASTER# BLOCK-REFERRER: http://www.canon.nl/Search/index.asp
922 # Blocked URL = http://www.canon.nl/scripts/webtrends.js
923 /scripts/webtrends\.js
924 #MASTER# BLOCK-REFERRER: http://www.tradera.com/
925 # Blocked URL = http://oskar.tradera.com/script.js
926 oskar.tradera.com/
927 #MASTER# BLOCK-REFERRER: http://www12.zippyshare.com/v/64444425/file.html
928 # Blocked URL = http://www.adcash.com/script/java.php?option=rotateur&rotateur=146355
929 .adcash.com/script/
930 #MASTER# BLOCK-REFERRER: https://www.tagesschau.de/inland/wolfgang-clement-103.html
931 # Blocked URL = http://de.ioam.de/tx.io?st=tagessch&cp=tagesschstat&pt=CP&ps=lin&er=N22&rf=&r2=&ur=www.tagesschau.de&xy=1366x768x24&lo=FR%2Fn.a.&cb=001e&i2=001e3e01eacf383955f7084ae&ep=1632541316&vr=416&id=7wvnfq&i3=nocookie&n1=27&dntt=0&lt=1601209524382&ev=&cs=oegxy9&mo=1&sr=71
932 # Blocked URL = http://script.ioam.de/iam.js
933 .ioam.de/
934 # Blocked URL = http://t.vi-serve.com/?event=ERROR&page_url=https%3A%2F%2F9gag.com%2F&pub_id=576566800037402&channel_id=5ea98ccc02abaa4068798df6&placement_id=pltlhqRgj1oCSlyn51S&ad_unit_type=2&session_id=e4xr60mlvsol&focus=false&player=playerVI&pageLanguage=en&placement_w=0&placement_h=0&time_delta=20700&error_msg=script%20tag%20placed%20in%20non-displayed%20Element&playlist_pos=1&mobile=false&floating=false&cb=f43f
935 t.vi-serve.com/
936 # Blocked URL = http://pixel.inforsea.com/server/log
937 pixel.inforsea.com/
938 #MASTER# BLOCK-REFERRER: https://sourceforge.net/projects/ijbswa/
939 # Blocked URL = https://fastlane.rubiconproject.com/a/api/fastlane.json?account_id=15680&site_id=103240&zone_id=610848%3B798260%3B798260&size_id=43&p_pos=atf%3B%3B&rf=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&tk_flint=pbjs_lite_v4.17.0&x_source.tid=40522aa9-945e-4ba8-afdb-eb311922e0c2%3B0ef5f4c2-e76b-485f-ae9a-63d0cbde6c70%3B597ee091-a937-48e9-9d4e-a7e352438484&p_screen_res=1366x768&rp_floor=0.01&rp_secure=1&slots=3&rand=0.25171689494748506
940 fastlane.rubiconproject.com/
941 #MASTER# BLOCK-REFERRER: https://sourceforge.net/projects/ijbswa/
942 # Blocked URL = https://d.adroll.com/pixel/3QEU55AVURGVNFYKGPRLHU/EPGGWMNOENDCJMRYE2IIFV?adroll_fpc=7716c28221770b6a1ca7a1edb9ea0d6e-1607178137583&arrfrr=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&xid_ch=f&pv=98946957920.17203&cookie=&adroll_s_ref=https%3A//sourceforge.net/projects/ijbswa/&keyw=
943 .adroll.com/
944 #MASTER# BLOCK-REFERRER: https://sourceforge.net/projects/ijbswa/
945 # Blocked URL = https://ml314.com/utsync.ashx?pub=&adv=&et=0&eid=771&ct=js&pi=&fp=&clid=&if=1&ps=&cl=&mlt=&data=&&cp=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&pv=1607178655249_inq1swkkq&bl=en-ca&cb=1438340&return=&ht=&d=&dc=&si=1607178395284_aog287pmk&cid=&s=1366x768&rp=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F
946 ml314.com/
947 #MASTER# BLOCK-REFERRER: https://www.ksta.de/ratgeber/digital/plattform-moodle-streikt-viele-schueler-koennen-nicht-arbeiten---gebauer-weiss-von-nichts-37913640
948 # Blocked URL = https://pp.lp4.io/pl?i=512735e9d9d93e5a24000000&ct=11.384&rt=1.012&pt=12.396&pvr=0&p=https%3A%2F%2Fwww.ksta.de%2Fratgeber%2Fdigital%2Fplattform-moodle-streikt-viele-schueler-koennen-nicht-arbeiten---gebauer-weiss-von-nichts-37913640&c=desktop&t=article&s=undefined&_r=1610366562920:4.7.6:20190614-142003
949 pp.lp4.io/
950 #MASTER# BLOCK-REFERRER: https://www.ksta.de/ratgeber/digital/plattform-moodle-streikt-viele-schueler-koennen-nicht-arbeiten---gebauer-weiss-von-nichts-37913640
951 # Blocked URL = https://ih.adscale.de/map?ssl=1&format=video&gdpr=0&nut&uu=ace89aa78df247b3bb362c35ecfd6024
952 ih.adscale.de/
953 #MASTER# BLOCK-REFERRER: https://www.ksta.de/ratgeber/digital/plattform-moodle-streikt-viele-schueler-koennen-nicht-arbeiten---gebauer-weiss-von-nichts-37913640
954 # Blocked URL = https://api.theadex.com/collector/v1/d/285/5184/cmframe/Lw0EHAiwAxA2GAIUhAK0AXaMBA?c=4248866896491805402
955 api.theadex.com/
956 # Blocked URL = https://odb.outbrain.com/utils/get?url=https%3A%2F%2Fwww.ksta.de%2Fratgeber%2Fgesundheit%2Fhausaerztin-erklaert-milder-verlauf-bei-einer-omikron-infektion---was-heisst-das--39393164&idx=0&rand=18368&key=NANOWDGT01&widgetJSId=AR_2&va=true&et=true&format=html&pdobuid=-1&adblck=false&abwl=false&px=205&py=1389&vpd=0&cw=940&activeTab=true&darkMode=false&settings=true&recs=true&version=2000570&sig=bvSz55IV&apv=false&osLang=en-CA&winW=1350&winH=621&scrW=1366&scrH=768&dpr=1&secured=true&cnsntv2=CPSvfxSPSvfxSAGABCENB9CgAP_AAEAAAAYgIXBVJD7dTWlAMHZ5GNpkCYAU1sAUIOQCCBCAAwAFAEGA8IAC0SACEEQABAACAQAAgRABAAAEEABUAECgQAAEAQEkAAQAhAAIAAJEAAEQAgAQAAoIAAAAAAAIAAABCgSAkBiQQ8LGRGAghIAwQgAQwAABgIACAAMASAAYABAAAAIAAABAAgIEEELoAIELgEQkC0ABAAFQAMgAcgA8AEAAMgAaQBEAEUAJgATwArABvADmAH4AQgAhoBEAESAJYAUoAtwBhwD7AP0AgYBFACNAEpALmAYoA2gBuADiAHoAPkAhsBIgCdgFDgLzAYMAyQBpwDWQHBAPHAhCEACAAkAXQAyECBgaAOAFYALgAhgB-AHyASIAnYMABAOoIgDABWAEMAPwA-QCRAE7CAAIAJBUAUAJgAXAB-AJBAXmMgBgBMgH2AfgC8xgAEAsQ6BsABUADIAHIAPgBAADIAGgAPoAiACKAEwAJ4AVgAuABfADeAHMAPwAhoBEAESAJYATAAowBSgCxAFuAMMAaMA-wD9AIGARQAiwBKQCxAFzAMUAbQA3ABxADqAHoAQ2Ai8BIICRAE7AKHAXmAwYBiQDJAGWANOAcWA8cB-I4AeAAgAC4AJAAyABoAIiAXoAwAB5AD5AIQAXQAyEBpoDbCEBQADIATAAuABfADeALGAfYB-AEUAJSAXMAxQBtADqAHoASCAkQBbQDEgHjgQoIABgAEABoALEAYABdADbCUBYABAAGQAOAAfACIAEwALgAXwBDQCIAIkAUYApQBbgD8AMUAbgA6gB8gEXgJEAXmAywkADAAuAGQBdBSBOABUADIAHIAPgBAADIAGkARABFACYAE8AKQAXwA5gB-AENAIgAiQBRgClAFiALcAaMA-wD9AIsASkAuYBigDaAG4APQAi8BIgCdgFDgLzAZIAywBrIDggHjgQhKACgALgAkACsAGQAsQBgADyALoAaaBAwAAA.YAAAAAAAAAAA&cmpStat=1&ccpaStat=0&ref=https%3A%2F%2Fwww.ksta.de%2Fhtml%2Fdumont-consent%2Findex.html%3Fparam%3DeyJyZWRpcmVjdFVybCI6Ii9yYXRnZWJlci9nZXN1bmRoZWl0L2hhdXNhZXJ6dGluLWVya2xhZXJ0LW1pbGRlci12ZXJsYXVmLWJlaS1laW5lci1vbWlrcm9uLWluZmVrdGlvbi0tLXdhcy1oZWlzc3QtZGFzLS0zOTM5MzE2ND9jYj0xNjQzMDgyNTMxNDU5JmRtY2lkPXNtX3R3X3B1IiwicmVmZXJyZXIiOiIiLCJzdWJkb21haW4iOiJ3d3cifQ%3D%3D
957 odb.outbrain.com/
958 # Blocked URL = https://elsa.memoinsights.com/t?pid=62012a7a19351c07620394e0&url=https%3A%2F%2Farstechnica.com%2Ftech-policy%2F2022%2F08%2Fthe-women-calling-out-apples-handling-of-misconduct-claims%2F&author%5B%5D=Financial%20Times&title=The%20women%20calling%20out%20Apple%E2%80%99s%20handling%20of%20misconduct%20claims&date=2022-08-04T13%3A39%3A42Z&referrer=&ref_url=&page_url=https%3A%2F%2Farstechnica.com%2Ftech-policy%2F2022%2F08%2Fthe-women-calling-out-apples-handling-of-misconduct-claims%2F%3Fcomments%3D1&cb=MEMO.API.callbacks.cbakynzcplf&v=v3.0.6&t=5000&e=5000&s=7362
959 elsa.memoinsights.com/t
960 # Blocked URL = https://ups.xplosion.de/ctx?event_id=ctx_json&_sid=24141&hostSiteUrl=https://www.presseportal.de/blaulicht/pm/12415/5302821&referrer=&userAgent=Mozilla/5.0%20(X11;%20FreeBSD%20amd64;%20rv:91.0)%20Gecko/20100101%20Firefox/91.0&userLang=en-CA&gdpr=1&gdpr_consent=[...]
961 ups.xplosion.de/
962 # Blocked URL = https://s.cpx.to/fire.js?pid=13058&ref=https%3A%2F%2Fexplosm.net%2Fcomics%2Fnewyears-2008&url=https%3A%2F%2Fexplosm.net%2Fcomics%2Fdave-shortnew-8%23comic&hn_ver=57&fid=715e92a0-477c-4ef4-b655-6ed9edc0e94b&gcv=CPuOj0APuOj0AAKAvAENDFCsAP_AAH_AAAwIJbtX_H__bW9r8f5_aft0eY1P9_j77uQzDhfNk-4F3L_W_JwX52E7NF36tq4KmR4Eu3LBIUNlHNHUTVmwaokVryHsak2cpTNKJ6BEkHMRO2dYGF5umxtjeQKY5_p_d3fx2D-t_dv-39z3z81Xn3dZf-_0-PCdU5_9Dfn9fRfb-9IL9_78v8v8_9_rk2_eX_3_79_7_H9-f_84JcAEmGrcQBdmUODNoGEUCIEYVhARQKACCgGFogIAHBwU7IwCfWESAFAKAIwIgQ4AoyIBAAAJAEhEAEgRYIAAABAIAAQAIBEIAGBgEFABYCAQAAgOgYohQACBIQJEREQpgQFQJBAS2VCCUF0hphAFWWAFAIjYKABEEgIrAAEBYOAYIkBKxYIEmINogAGAFAKJUK1FJ6aAhYzMAAAA.YAAAAAAAAAAA
963 s.cpx.to/
964 # Blocked URL = https://track.venatusmedia.com/dual/track_enc
965 track.venatusmedia.com/
966 # Blocked URL = https://o2.mouseflow.com/init?v=17.96&p=bd33e8bf-4f45-437f-9bda...&s=a6ac920f1ba63b3...&page=090...2f0d2&ret=0&u=62...fa1&href=https%3A%2F%2Fauth.leaseweb.com%2FloginCustomer&url=auth.leaseweb.com%2Flogincustomer&ref=https%3A%2F%2Fsecure.leaseweb.com%2F&title=Leaseweb%20Authorization%20Server&res=1366x768&tz=-60&to=0&dnt=1&ori=&dw=1362&dh=621&time=727&pxr=1&gdpr=1
967 o2.mouseflow.com/
968 # Blocked URL = https://secure-eu.nmrodam.com/cgi-bin/gn?prd=dcr&ci=de-910483&ch=de-910483_b01__vermischtes__P&asn=_vermischtes_&fp_id=&fp_cr_tm=&fp_acc_tm=&fp_emm_tm=&ve_id=&sessionId=vu0qoho115ipzkihhkxsztnvalijv1695918791&prv=1&c6=vc,b01&ca=NA&c13=asid,PE3FB63C1-D0BE-4D42-95B5-7B383C43C5F8&c32=segA,a_vermischtes_article&c33=segB,CPI&c34=segC,Firefox%20102&c15=apn,&sup=1&segment2=&segment1=&forward=0&plugv=&playerv=&ad=0&cr=D&c9=devid,&enc=true&c1=nuid,999&at=timer&rt=text&c16=sdkv,bj.6.0.0&c27=cln,30&crs=&lat=&lon=&c29=plid,16959187913574064&c30=bldv,6.0.0.673&st=dcragf&c7=osgrp,&c8=devgrp,&c10=plt,&c40=adbid,&c14=osver,NA&c26=dmap,1&dd=&hrd=&wkd=&c35=adrsid,&c36=cref1,&c37=cref2,&c11=agg,1&c12=apv,&c51=adl,0&c52=noad,0&pc=NA&c53=fef,n&c54=oad,&c55=cref3,&c57=adldf,2&ai=247660590&c3=st,c&c64=starttm,1695918795&adid=247660590&c58=isLive,false&c59=sesid,&c61=createtm,1695918850&c63=pipMode,&uoo=&c68=bndlid,&nodeTM=&logTM=&c73=phtype,&c74=dvcnm,&c76=adbsnid,&c44=progen,&davty=2&si=https%3A%2F%2Fwww.welt.de%2Fvermischtes%2Farticle247660590%2FBerlin-Mann-traegt-islamische-Muetze-als-Mode-Accessoire-und-wird-attackiert.html%3Fsource%3Dpuerto-reco-2_ABC-V32.7.C_already_read&c66=mediaurl,&sdd=&c62=sendTime,1695918850&rnd=889711
969 secure-eu.nmrodam.com/
970
971 {+block{Might be a web-bug that is an image.} -handle-as-empty-document +handle-as-image}
972 #MASTER# BLOCK-REFERRER: http://versiontracker.com and many others. 10/20/06
973 /(.*/)?__utm.gif\?
974 #MASTER# BLOCK-REFERRER: http://washingpost.com and others 10/25/06
975 /.*\.gif\?D=DM
976 #MASTER# BLOCK-REFERRER: http://www.washingtonpost.com/
977 #stats.surfaid.ihost.com/(crc/)?images/(bounce/)?uc.GIF
978 #MASTER# BLOCK-REFERRER: http://www.ibm.com 10/09/06
979 #MASTER# REMARKS: Similar hostname and paths appear in multiple locations.
980 # Blocked URL = http://stats.surfaid.ihost.com/crc/images/bounce/uc.GIF
981 # Blocked URL = http://stats.surfaid.ihost.com/rc/images/bounce/uc.GIF
982 stats./c?rc/.*/uc.gif
983 #MASTER# BLOCK-REFERRER: http://priceline.com 10/20/06
984 #MASTER# REMARKS: User tracking, webbug stuff
985 /(.*/)?dcs.gif\?&?dcs
986 #MASTER# BLOCK-REFERRER: http://www.msnbc.com 10/07/06
987 #MASTER# REMARKS: And MANY others. Webbug stuff.
988 /(.*/)?c(lear)?\.gif\?.
989 #MASTER# BLOCK-REFERRER: http://www.investorguide.com 10/08/06
990 #MASTER# BLOCK-REFERRER: http://foodnetwork.com, http://gardenweb.com 10/20/06
991 #MASTER# REMARK: webbug type gif used in MANY places.
992 #MASTER# REMARK: Too many false positives
993 #/(.*/)?(clear|(trans_?1x|blank)?1).gif
994 #MASTER# REMARK: Let's try this way.
995 /(.*/)?(clear|blank|(trans_?|1x)?1).gif\?.
996 #MASTER# BLOCK-REFERRER: http://actorstheatre.org 11/02/06
997 stats./.*\.gif\?
998 # Blocked URL = http://ad.yieldmanager.com/pixel?id=123456&t=2
999 .yieldmanager.com/pixel\?
1000 # Blocked URL = http://a.analytics.yahoo.com/p.pl?a=1000226660965&js=no
1001 # Blocked URL = http://s.analytics.yahoo.com/fpc.pl?a=1000461640983&v=4.43&enc=utf-8&f=http%3A//www.zoover.nl/nederland/limburg/maasbracht/weer%23tabs&b=Het%20Weer%20in%20Maasbracht.%20Bekijk%20Weersverwachting%20van%20Maasbracht%20%7C%20Zoover%23tabs&flv=WIN%2010%2C0%2C45%2C2&d=Mon%2C%2017%20May%202010%2014%3A09%3A26%20UTC&n=-2&g=nl&h=Y&j=1440x900&k=32&l=true&ittidx=0&fpc=uP04C7j4%7ClaDQjglKaa%7Cfses1000461640983%3D%7CkbSSgv6Jaa%7CuP04C7j4%7Cfvis1000461640983%3DZj1odHRwJTNBLy93d3cuem9vdmVyLm5sLyZiPVpvb3ZlciUyMCU3QyUyMFZha2FudGllYmVvb3JkZWxpbmdlbiUyMHZvb3IlMjBlbiUyMGRvb3IlMjByZWl6aWdlcnM%3D%7C8sHTYo10oM%7C8sHTYo10oM%7C8sHTYo10oM%7CT%7C8sHTYo10oM%7C8sHTYo10oM
1002 .analytics.yahoo.com
1003 #MASTER# BLOCK-REFERRER: http://www.aktivist.pl/
1004 # Blocked URL = http://go.idmnet.bbelements.com/please/showit/46/1/1/1/?typkodu=img&keywords=
1005 go.idmnet.bbelements.com/please/showit/
1006 # Blocked URL = http://gm-link.com/tm_image.asp?c=12345&x=0&u=email@address.tld&orc.gif
1007 gm-link.com/
1008 # Blocked URL = https://collector.githubapp.com/github/page_view?dimensions[page]=https%3A%2F%2Fgithub.com%2Fopenbsd%2Fsrc%2Fblob%2F5ecdd0566b441ae0b99e73f410875e05dc0fa5b7%2Flib%2Flibc%2Finclude%2Fthread_private.h&dimensions[title]=src%2Fthread_private.h%20at%205ecdd0566b441ae0b99e73f410875e05dc0fa5b7%20%C2%B7%20openbsd%2Fsrc%20%C2%B7%20GitHub&dimensions[referrer]=https%3A%2F%2Fgithub.com%2Fopenbsd%2Fsrc%2Fsearch%3Fq%3D_MUTEX_LOCK%26unscoped_q%3D_MUTEX_LOCK&dimensions[user_agent]=Mozilla%2F5.0%20(X11%3B%20ElectroBSD%20amd64%3B%20rv%3A68.0)%20Gecko%2F20100101%20Firefox%2F68.0&dimensions[screen_resolution]=1366x768&dimensions[pixel_ratio]=1&dimensions[browser_resolution]=1362x636&dimensions[tz_seconds]=7200&dimensions[timestamp]=1591515169218&dimensions[referrer]=&dimensions[request_id]=22CA%3AE6F6%3A271ED2A%3A3839C5D%3A5EDB8295&dimensions[visitor_id]=5184934927058829974&dimensions[region_edge]=ams&dimensions[region_render]=ams&dimensions[user_id]=929183&dimensions[user_login]=openbsd&dimensions[repository_id]=66966208&dimensions[repository_nwo]=openbsd%2Fsrc&dimensions[repository_public]=true&dimensions[repository_is_fork]=false&dimensions[repository_network_root_id]=66966208&dimensions[repository_network_root_nwo]=openbsd%2Fsrc&dimensions[repository_explore_github_marketplace_ci_cta_shown]=false&&measures[performance_timing]=1-172-172-13996-12735-12426-12394-3858-172-172-172--13996-0---172-3853-3412-0--&&&dimensions[cid]=268614077.1591515169
1009 collector.githubapp.com/
1010 # Blocked URL = http://consentmanager.mgr.consensu.org/delivery/pixel.php?id=11319&did=0&cfdid=0&t=pv&h=https%3A%2F%2Fsourceforge.net%2Fp%2Fijbswa%2Ffeature-requests%2F535%2F&o=1591880198219&l=EN&lv=0&d=0&ct=14&e=&e2=&e3=&i=&sv=0&dv=0
1011 .consensu.org/delivery/pixel\.php
1012 # Blocked URL = https://srv-2020-08-22-20.pixel.parsely.com/plogger/?rand=1598128327825&plid=94157330&idsite=theverge.com&url=https%3A%2F%2Fwww.theverge.com%2F2020%2F8%2F21%2F21396316%2Fapple-wordpress-in-app-purchase-tax-update-store&urlref=&screen=1366x768%7C1366x768%7C24&data=%7B%7D&sid=1&surl=https%3A%2F%2Fwww.theverge.com%2F2020%2F8%2F21%2F21396316%2Fapple-wordpress-in-app-purchase-tax-update-store&sref=&sts=1598128167510&slts=0&date=Sat+Aug+22+2020+22%3A32%3A07+GMT%2B0200+(CEST)&action=heartbeat&inc=6&tt=140923&pvid=91707838&u=pid%3D72b66a2ec3c73c8fbf8c925f679fcbd9
1013 .pixel.parsely.com/
1014 # Blocked URL = http://t.9gag.com/img.gif?a=unique-viewed&v=v&ref=&lbl=&lblv=&p=d&e=aD4X2GG&u=&w=l&url=https%3A%2F%2F9gag.com%2F&referrer=&t=1600253599&
1015 t.9gag.com/img\.gif
1016 # Blocked URL = http://t.lto.connectaserver.de/t.php?ht=e&in=Verweildauer%7C%7CTimeOnPage%7C%7C1m%2030s&pp=https%3A%2F%2Fwww.lto.de%2Frecht%2Fhintergruende%2Fh%2Feugh-c62317-vorratsdatenspeicherung-internet-telefon-eu-staaten-sicherheit-terrorismus-datenschutz-speichern-deutschland-kinderpornographie%2F&sr=1366x768&vp=1362x676&cid=602d486b-9a75-4ea2-99d3-ebfb063e1be8&dt=Vorratsdatenspeicherung:%20Was%20bedeutet%20das%20EuGH-Urteil?&rf=&z=1602062648454
1017 .connectaserver.de/
1018 #MASTER# BLOCK-REFERRER: https://sourceforge.net/projects/ijbswa/
1019 # Blocked URL = https://analytics.slashdotmedia.com/sf.php?action_name=Privoxy%20download%20%7C%20SourceForge.net&idsite=39&rec=1&r=151583&h=15&m=33&s=42&url=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&urlref=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&_id=a1e65404b0c0c572&_idts=1607178131&_idvc=1&_idn=0&_refts=0&_viewts=1607178131&send_image=1&cookie=1&res=1366x768&dimension1=ijbswa&dimension2=pg_project&dimension3=1&gt_ms=357&pv_id=PDkFUz
1020 analytics.slashdotmedia.com/
1021 #MASTER# BLOCK-REFERRER: https://sourceforge.net/projects/ijbswa/
1022 # Blocked URL = https://tag.crsspxl.com/s2.html?d=2396&t=Privoxy%20download%20%7C%20SourceForge.net&u=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fijbswa%2F&b2=%20CategoriesWWW%2FHTTP%2C%20Firewalls%20LicenseGNU%20General%20Public%20License%20version%202.0%20(GPLv2)%2C%20ISC%20License%20%20%20%20%20%20%20
1023 tag.crsspxl.com/
1024 #MASTER# BLOCK-REFERRER: https://www.heise.de/news/Komplettausfall-Youtube-Gmail-und-andere-Google-Dienste-nicht-erreichbar-4989007.html
1025 # Blocked URL = https://eu-tlp03.kameleoon.com/visit.gif?lp=1&spt=1607679917743&p=c2l0...kNvdW50PTA%3D
1026 eu-tlp03.kameleoon.com/
1027 #MASTER# BLOCK-REFERRER: https://www.heise.de/news/Ex-EuGH-Richterin-gegen-flaechendeckende-Scans-auf-Kinderpornografie-6000260.html
1028 # Blocked URL = https://eu-tlp01.kameleoon.eu/visit.gif?lp=3&spt=1616489479420&p=c2...udD0w
1029 eu-tlp01.kameleoon.eu/
1030 #MASTER# BLOCK-REFERRER: https://www.ksta.de/ratgeber/digital/plattform-moodle-streikt-viele-schueler-koennen-nicht-arbeiten---gebauer-weiss-von-nichts-37913640
1031 # Blocked = https://lb46.s400.meetrics.net/data?/3lBMFQ7WAUkzF3MGRuQAAASVAK56BBPbAAREA/BAGAAAACfVBMAACHBA6BACxBASCACjAArCACfAA3CACfAADDACxAAPDACQAAoDACiAAAEACiAAZEAChAAlEACyAA9EACRAAKFACgAAWFACiAAiFAC8DAKFACQAA9EACRAAxEACQAAlEACgAAZEACSAAoDACRAAPDACPAADDACRAAfCAChAASCACUBAGCACyEA6BACrEAGCAC/BASCACvRA3CACQAAoDACSAAAEACRAANEACQAAxEACSAAWFACRAA6FACPAAHGACSAAfGACOAAQHACRAAoHACSAANIACRAA+IACNAAiJACQAAfKACRAA4KACRAAcLACQAA1LACRAAZMACeAAlMAC1AAyMACDTABMACiAA1LACwAAoLACzAAcLACyAAQLACiAAELACgAA4KACSAArKACSAAfKACPAATKACSAAHKACPAAuJACQAAWJACSAAKJACRAABIACOAAoHACRAAQHACRAA3GACQAArGACiAAfGACJEArGACRAA3GACQAAEHACSAAQHACQAAcHACW/AoHACCBA0HACzAABIACRAANIACNAAxIACSAAKJACRAAiJACQAAuJACQAATKACRAAELACmAA1LACLAANMACSAAyMAChAAvNACQAAgOACRAA4OACPAAQPACTAABQACRAAmQACOAA+QACRAAKRACRAAjRACRAA7RACSAAHSACRAAgSACOAAsSACSAAETACQAARTAChAAdTACoCApTACeLA1TACRAABUACzBAOUAC4CAaUAPHYATVAhWAJAAAAPnAAPVAfWAGAAAARksFAQtjF/unwTA
1032 .s400.meetrics.net/
1033 #MASTER# BLOCK-REFERRER: https://arstechnica.com/gadgets/2021/04/xinuos-finishes-picking-up-scos-mantle-by-suing-red-hat-and-ibm/
1034 # Blocked URL = https://fpa-events.arstechnica.com/plogger/?rand=1617351238373&plid=36453403&idsite=arstechnica.com&url=https%3A%2F%2Farstechnica.com%2Fgadgets%2F2021%2F04%2Fxinuos-finishes-picking-up-scos-mantle-by-suing-red-hat-and-ibm%2F&urlref=&screen=1366x768%7C1366x768%7C24&data=%7B%7D&sid=1&surl=https%3A%2F%2Farstechnica.com%2Fgadgets%2F2021%2F04%2Fxinuos-finishes-picking-up-scos-mantle-by-suing-red-hat-and-ibm%2F&sref=&sts=1617351085989&slts=0&date=Fri+Apr+02+2021+10%3A13%3A58+GMT%2B0200+(CEST)&action=heartbeat&inc=4&tt=4371&pvid=50890683&u=pid%3Df5e180d3fca67aa29521f1510e59850b
1035 fpa-events.arstechnica.com/
1036 # Blocked URL = https://i.clean.gg/1a
1037 i.clean.gg/
1038
1039
1040 #############################################################################
1041 # Site-specific block patterns;
1042 #############################################################################
1043 {+block{Domain parking site}}
1044 #MASTER# BLOCK-REFERRER: http://www.inetcat.org
1045 # Blocked URL = http://www.sedoparking.com/www.inetcat.org
1046 .sedoparking.com/
1047 # Blocked URL = http://landing.trafficz.com/index.php?domain=www.inetcat.org
1048 landing.trafficz.com/
1049 # Blocked URL = http://www.searchnut.com/?domain=www.inetcat.org
1050 .searchnut.com/\?domain
1051 #MASTER# REMARKS: Verizon should know better
1052 #MASTER# BLOCK-REFERRER: http://www.qwetyhjkl.com
1053 # Blocked URL = http://wwwz.websearch.verizon.net/search?qo=www.qwetyhjkl.com
1054 wwwz.websearch.verizon.net/search\?qo=
1055
1056 {+block{Site-specific block pattern matches.}}
1057 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/ 10/18/06
1058 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
1059 # Blocked URL = http://www.hitbox.com/foobar
1060 .hitbox.com
1061 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html 10/18/06
1062 # Blocked URL = http://www..the-gadgeteer.com/cgi-bin/getimage.cgi/
1063 .the-gadgeteer.com/cgi-bin/getimage.cgi/
1064 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
1065 # Blocked URL = http://dest.travelocity.com/website/destinations/images/partner_frommers.gif
1066 # Blocked URL = http://dest.travelocity.com/website/destinations/images/travelex_logo.gif
1067 dest.travelocity.com/website/destinations/images/partner_frommers.gif
1068 dest.travelocity.com/website/destinations/images/travelex_logo.gif
1069 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912 10/18/06
1070 #MASTER# BLOCK-REFERRER: http://www.imdb.com/help/boards/markup
1071 #MASTER# REMARKS: 2nd is for emoticons exception
1072 i.imdb.com/Photos/CMSIcons/(?!buttons|emoticons)
1073 rcm.amazon.com
1074 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/ 10/18/06
1075 # Blocked URL = http://www.nytimes.com/adx/foo
1076 .nytimes.com/adx/
1077 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/ 10/19/06
1078 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
1079 #www.popupad.net/ats/
1080 .adtrak.net
1081 .elitemediagroup.net
1082 .popuptraffic.com
1083 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm 10/19/06
1084 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
1085 .hit-now.com
1086 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/ 10/18/06
1087 [a-v]*.valueclick.com
1088 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
1089 #MASTER# REMARKS: Yea, all these at one site! 10/19/06
1090 .cpays.com
1091 .oxado.com
1092 .adult*finder.com
1093 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
1094 /scripts/cms/xcms.asp
1095 #MASTER# REMARKS: Actionsfile tracker 1559740 09/16/06 See http://www.vibrantmedia.com/whatisIntelliTXT.asp
1096 #MASTER# BLOCK-REFERRER: http://www.hartware.de/news_40795.html
1097 /.*intellitxt/
1098 .intellitxt.com
1099 #MASTER# REMARKS: per Actions File tracker: #1597893 11/17/06, similar to intellitxt
1100 .kontera.com
1101 #MASTER# REMARKS: 2007-08-17 HB, similar to intellitxt
1102 #MASTER# BLOCK-REFERRER: http://www.webhostingtalk.com/archive/index.php/t-533369.html
1103 .tribalfusion.com/ctxt
1104 #MASTER# REMARKS: Video advertizer, owned by doubleclick.net.
1105 #MASTER# BLOCK-REFERRER: http://www.ign.com/ 09/17/06
1106 .klipmart.com
1107 #MASTER# BLOCK-REFERRER: http://gamespot.com 09/26/06
1108 #MASTER# REMARKS: adlog.com.com and ads.com.com
1109 ad*.com.com
1110 #MASTER# REMARKS: used in redirects: dw.com.com 12/18/06
1111 #MASTER# BLOCK-REFERRER: http://verizon.net 09/29/06
1112 sales.liveperson.net
1113 #MASTER# BLOCK-REFERRER: www.avclub.com/ 10/14/06
1114 .iad.liveperson.net
1115 #MASTER# BLOCK-REFERRER: http://homedepot.com 09/29/06
1116 #MASTER# BLOCK-REFERRER: http://weather.com 11/03/06
1117 .coremetrics.com/
1118 #MASTER# BLOCK-REFERRER: http://wired.com 09/29/06
1119 .realmedia.com/data/
1120 #MASTER# REMARKS: webbugs, ads and user tracking js in many places.
1121 #MASTER# BLOCK-REFERRER: http://washingtonpost.com & http://tomshardware.com 09/29/06
1122 .revsci.net
1123 #MASTER# BLOCK-REFERRER: http://www.time.com/time/business/article/0,8599,1073341,00.html 09/29/06
1124 .clickability.com
1125 /.*clickability(.com)?/
1126 #MASTER# BLOCK-REFERRER: http://washingtonpost.com 09/29/06
1127 stats.*.ihost.com
1128 #MASTER# BLOCK-REFERRER: http://msnbc.com and many others 09/29/06
1129 .2o7.net
1130 #MASTER# BLOCK-REFERRER: http://microsoft.com 09/29/06
1131 .webtrends.com
1132 #MASTER# BLOCK-REFERRER: http://tomshardware.com 09/29/06
1133 .tacoda.
1134 #MASTER# BLOCK-REFERRER: http://www.torrentazos.com 10/04/06
1135 ad.theadhost.com
1136 #MASTER# BLOCK-REFERRER: http://www.stuff.co.nz 10/06/06
1137 .adbureau.net
1138 #MASTER# BLOCK-REFERRER: http://drudgereport.com 10/06/06
1139 .adgardener.com
1140 #MASTER# BLOCK-REFERRER: http://www.connected-media.com/riven/hints.htm 10/14/06
1141 #MASTER# REMARKS: ads.kw.revenue.net/? etc
1142 .revenue.net
1143 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html 10/15/06
1144 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
1145 .geocities.com/js_source
1146 #MASTER# BLOCK-REFERRER: http://www.google.com 09/28/06
1147 .dartsearch.net
1148 #MASTER# BLOCK-REFERRER: http://wunderground.com 11/02/06
1149 .zedo.com
1150 #MASTER# BLOCK-REFERRER: http://realtor.org 11/03/06
1151 .trk.sodoit.com/
1152 #MASTER# BLOCK-REFERRER: http://www.freenews.fr 11/23/06 Actionsfile feedback item #1597034
1153 .espace.netavenir.com
1154 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com/ 12/28/06
1155 .hitfarm.com
1156 #MASTER# BLOCK-REFERRER: http://www.uk-businessdirectory.co.uk/
1157 #MASTER# REMARKS: Action tracker 1616457. Added 2007-01-20.
1158 .topnemo.com/engine
1159 .top100categories.com/engine
1160 #MASTER# REMARKS: Actionsfile feedback item #1647852 2007-01-30
1161 #MASTER# REMARKS: Domain squatting onload pop-ups
1162 #MASTER# BLOCK-REFERRER: http://www.memtest.com/
1163 /(t|search)\.php\?uid=ws[a-z0-9]+\.[a-z0-9]+
1164 #MASTER# BLOCK-REFERRER: via Yahoo groups
1165 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
1166 .adinterax.com/(?!(.*)\.(js|gif|jpg))
1167 #MASTER# BLOCK-REFERRER:  http://www.weilpod.com
1168 #MASTER# REMARKS: Actionsfile feedback item #1710951 2007-05-02
1169 img.bluehost.com
1170 #MASTER# BLOCK-REFERRER: http://www.linuxinsider.com/story/57759.html
1171 #MASTER# REMARKS: Actionsfile feedback item #1736213 at 2007-06-12
1172 linuxinsider.com/images/sda/
1173 #MASTER# REMARKS: 20070711 Adam Piggott Actionsfile feedback #1700692
1174 #MASTER# REMARKS: Tracking JavaScript
1175 #MASTER# BLOCK-REFERRER: http://www.hants.gov.uk/record-office/
1176 [a-z].clickdensity.com
1177 #MASTER# REMARKS: Obnoxious "widget" adverts
1178 #MASTER# BLOCK-REFERRER: http://www.quickonlinetips.com/archives/2007/08/nokia-offers-free-bl-5c-battery-replacement-for-overheating/
1179 .widgetbucks.com
1180 #MASTER# BLOCK-REFERRER: http://www.dailymail.co.uk/pages/live/articles/news/news.html?in_article_id=559547&in_page_id=1770
1181 # Blocked URL = http://img.dailymail.co.uk/i/promo_boxes/groTime_promo.jpg
1182 # Blocked URL = http://img.dailymail.co.uk/i/promo_boxes/idealhome_promo.gif
1183 img.dailymail.co.uk/i/promo_boxes/
1184 #MASTER# REMARKS: Flash ad, Actionsfile feedback item #2003465 2008-07-01
1185 # Blocked URL = http://cache.opt.fimserve.com/contents/325/84/84325/LIN728x90.swf?%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20clickTag=http%3A//delb.opt.fimserve.com/lnk/%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Fk%3DODk1ODc7Mzs0MDA7ODQzMjU7Zi44LjkuaHYuaGdseHBzbG9uaCBvem0uNzYuZkBAeHp5b3ZAQGxobmxAQCs4XzlAQHhsbnN2biBoZHZ3dm1AQGh2QEBmOzEyMTQ1MTE1MjgzMzA7Mjs7MTMxfDsxOzQ7NzIxODs4ODAyODc3NQ%3D%3Dhref%3Dhttp%3A//www.myspace.com/liveinnordics&clickTarget=_new
1186 .fimserve.com
1187 #MASTER# REMARKS: Actionsfile feedback item #2004311 2008-07-01, are they all images?
1188 # Blocked URL = http://static.lycos-europe.net/lea/se/pricerunner/040608_728x90_payback_digitalkamer.gif
1189 static.lycos-europe.net
1190 #MASTER# REMARKS: Actionsfile feedback item #2005285
1191 #MASTER# BLOCK-REFERRER: http://hitta.se
1192 # Blocked URL = http://82.99.18.195/media.1/112/9460/146016/150x175_Hitta_FV_Feb08.gif
1193 82.99.18.195
1194 #MASTER# REMARKS: Actionsfile feedback item #1888197 and #2975927.
1195 #MASTER# REMARKS: Have a "go there anyway" link for clk.atdmt.com and view.atdmt.com.
1196 #MASTER# BLOCK-REFERRER: http://www.networkworld.com/resourcelibrary/?tid=4&type=special%20report
1197 # Blocked URL = http://clk.atdmt.com/
1198 # Blocked URL = http://view.atdmt.com/action/mrtiwy_FY10Office2010BetaHomeandBiz1_1
1199 .atdmt.com/
1200 #MASTER# REMARKS: Actionsfile feedback item #2723873 2009-04-01
1201 #MASTER# BLOCK-REFERRER: http://www.news.software.coop/paralysed-perl-package-problem/602/
1202 # Blocked URL = http://www.awin1.com/cread.php?s=123049&v=1983&q=80970&r=79561
1203 .awin1.com
1204 #MASTER# BLOCK-REFERRER: http://crooksandliars.com/
1205 # Blocked URL = http://rotator.adjuggler.com/servlet/ajrotator/616245/0/vh?z=csm&dim=616028
1206 .adjuggler.com/servlet/ajrotator/
1207 #MASTER# Remark: nothing but "sponsored listings"
1208 # Blocked URL = http://bcc.co.uk/
1209 bcc.co.uk/
1210 # Blocked URL = http://fusion.adtoma.com:80/125AFFE801/1DC59C7801.swf
1211 # Blocked URL = http://fusion.adtoma.com/1254D5CC01/1E43C76801.jpg
1212 fusion.adtoma.com/
1213 #MASTER# Remark: Actionsfile feedback item #2975895 2010-03-24
1214 # Blocked URL = http://ping.chartbeat.net/ping?h=uservoice.com&p=%2Fsuggestions%2Fping-chartbeat-net-sucks&u=3
1215 .chartbeat.net/(.*/)?ping\?
1216 # Blocked URL = http://s.atemda.com/Admeta.js
1217 # Blocked URL = http://atemda.com/ClickThrough.ashx?pId=9616&mId=14484&tId=634102151426089505&opS=1&admetac=mR3sJ3%2b9yleq%2bHowITh0hw%3d%3d
1218 #MASTER# BLOCK-REFERRER: http://www.startpagina.nl
1219 .atemda.com/
1220 #MASTER# Remark: 2o7.net, omtrdc.net and www91.intel.com are domains used by Omniture
1221 # Blocked URL = http://ciscosystemsinc.tt.omtrdc.net/m2/ciscosystemsinc/mbox/standard?mboxHost=www.cisco.com&mboxSession=12
1222 .omtrdc.net/
1223 # Blocked URL = http://www91.intel.com/b/ss/intelcorp,intelcorpdc/...ONDataProvider.aspx%3FDownloadType%3DDrivers&ot=A&AQE=1
1224 www91.intel.com/
1225 #MASTER# BLOCK-REFERRER: http://www.sport.pl/pilka/1,65080,10189388,Premier_League__Angielskie_media__Szaleni_United_zniszczyli.html
1226 # Blocked URL = http://reklamy.sfd.pl/sportpl.ashx?clickTag=http://gazeta.hit.gemius.pl/hitredir/id=ApuVHydwkYW81VSL0PZYqnXoDosBucMur1zZqGEAJa7.X7/stparam=sifgmrnlfi/url=http://reklamy.sfd.pl/sportpl_redirect.ashx
1227 reklamy.sfd.pl/
1228 #MASTER# BLOCK-REFERRER: http://lwn.net/Articles/478657/
1229 # Blocked URL = http://rotation.linuxnewmedia.com/www/delivery/avw.php?zoneid=26&n=aa584766
1230 rotation.linuxnewmedia.com/
1231 # Blocked URL = http://de17a.com/a/33039/26891.swf
1232 de17a.com/
1233 #MASTER# BLOCK-REFERRER: http://thepiratebay.se/
1234 # Blocked URL = http://cltomedia.info/delivery/afr.php?zoneid=7&amp;cb=1279946132
1235 cltomedia.info/delivery/
1236 #MASTER# BLOCK-REFERRER: http://thepiratebay.se/
1237 # Blocked URL = http://cdn2.adexprt.com/clkads/sky2.html
1238 .adexprt.com/
1239 # Blocked URL = http://data.gosquared.com/pv?a=GSN-311503-M&cs=UTF-8&cd=24&fl=11.7%20r700&je=0&la=de-de&sw=1280&sh=1024&dm=adn.speedtest.net&pa=%2F&pt=Speedtest.net%20-%20Der%20Globale%20Breitband-Geschwindigkeitstest&pr=http%3A&po=-&pl=0&tl=82&ri=1&ru=http%3A%2F%2Fadn.speedtest.net%2F&ui=1876309225&re=1&vi=1&pv=5&lv=1369129426&vw=1280&vh=878&dw=1263&dh=1325&st=0&sl=0&tv=4.0
1240 data.gosquared.com/
1241 # Blocked URL = http://resources.infolinks.com/js/infolinks_main.js
1242 resources.infolinks.com/
1243 #MASTER# BLOCK-REFERRER: http://www.libertaddigital.com/
1244 # Blocked URL = http://abs.proxistore.com/abe/js/psuniversaltag.js?v=
1245 abs.proxistore.com/abe/
1246 #MASTER# BLOCK-REFERRER: http://www.libertaddigital.com/
1247 # Blocked URL = http://rtax.criteo.com/delivery/rta/rta.js?netId=
1248 rtax.criteo.com/
1249 static.criteo.net/
1250 static.criteo.com/
1251 static.*.criteo.net/
1252 cas.*.criteo.com/
1253 cas.criteo.com/
1254 # Blocked URL = https://trc-events.taboola.com/1301520/log/3/unip?en=pre_d_eng_tb&tos=382558&scd=49&ssd=1&est=1611317562537&ver=27&isls=true&src=i&invt=192000&tim=1611317945096&mrir=tto&vi=1611317562534&ref=https%3A%2F%2Fhtml.duckduckgo.com%2F&cv=20201217-8-RELEASE&item-url=https%3A%2F%2Fgenius.com%2FLords-of-acid-pussy-lyrics
1255 # Blocked URL = https://trc.taboola.com/slashdot/trc/3/json?tim=18%3A22%3A49.655&lti=deflated&data=%7B%22id%22%3A608%2C%22ii%22%3A%22_homepage_%22%2C%22it%22%3A%22home%22%2C%22sd%22%3Anull%2C%22ui%22%3Anull%2C%22uifp%22%3Anull%2C%22lbt%22%3A1612905877491%2C%22vi%22%3A1613064169633%2C%22cv%22%3A%2220210209-24-RELEASE%22%2C%22uiv%22%3A%22default%22%2C%22u%22%3A%22https%3A%2F%2Fmobile.slashdot.org%2Fstory%2F21%2F02%2F11%2F0036248%2Fapple-privacy-chief-north-dakota-bill-threatens-to-destroy-the-iphone-as-you-know-it%22%2C%22bv%22%3A%220%22%2C%22ul%22%3A%5B%22en-CA%22%5D%2C%22btv%22%3A%220%22%2C%22bad%22%3A-1%2C%22sw%22%3A1366%2C%22sh%22%3A768%2C%22bw%22%3A1362%2C%22sde%22%3A%221.000%22%2C%22bh%22%3A636%2C%22dw%22%3A1350%2C%22dh%22%3A10270%2C%22r%22%3A%5B%7B%22li%22%3A%22rbox-h2m%22%2C%22s%22%3A4%2C%22uim%22%3A%22thumbnails-rr2%3Aabp%3D0%22%2C%22uip%22%3A%22Below%20Article%20Thumbnails%22%2C%22orig_uip%22%3A%22Below%20Article%20Thumbnails%22%2C%22cd%22%3A255.5%2C%22mw%22%3A300%7D%2C%7B%22li%22%3A%22rbox-h2m%22%2C%22s%22%3A5%2C%22uim%22%3A%22text-links-a%3Aabp%3D0%22%2C%22uip%22%3A%22Below%20Article%20Text%20Links%22%2C%22orig_uip%22%3A%22Below%20Article%20Text%20Links%22%2C%22cd%22%3A9961.4501953125%2C%22mw%22%3A964.5%7D%5D%2C%22cacheKey%22%3A%22home%3D_homepage_%2CBelow%20Article%20Text%20Links%3Dtext-links-a%3Aabp%3D0%2C%2CBelow%20Article%20Thumbnails%3Dthumbnails-rr2%3Aabp%3D0%22%2C%22cb%22%3A%22TRC.callbacks.recommendations_1%22%2C%22lt%22%3A%22deflated%22%7D
1256 trc*.taboola.com/
1257
1258
1259 #----------------------------------------------------------------------------
1260 # JavaScripts and Texts for ad and popup generation
1261 #----------------------------------------------------------------------------
1262 #MASTER# REMARKS: broadening scope from a.tfag.de/js.ng/ 10/23/06
1263 # Blocked URL = http://a.tfag.de/js.ng/
1264 /js\.ng/
1265 #MASTER# BLOCK-REFERRER: http://www.britannica.com/ 10/23/06
1266 /popunder
1267 #MASTER# BLOCK-REFERRER: http://www.earthcore.com/ feedback item #1605385 12/14/06
1268 /t\.php\?cat=.*&kw=.*&sc=
1269 #MASTER# REMARKS: Actionsfile tracker #1674363 2007-03-05, text ads
1270 #MASTER# BLOCK-REFERRER: http://www.securityfocus.com/archive/1/461489/30/0/threaded
1271 jlinks.industrybrains.com/
1272 #MASTER# BLOCK-REFERRER: http://www.linuxworld.com/news/2007/061307-brian-aker-interview.html
1273 #MASTER# REMARKS: Actionsfile feedback item #1736794 2007-06-13
1274 js.adsonar.
1275 #MASTER# BLOCK-REFERRER: http://news.zdnet.co.uk/software/0,1000000121,39209666,00.htm
1276 # Blocked URL = http://bwp.zdnet.com/search?dw-siteid=2&dw-ptid=2100&dw-edid=2&dw-ontid=800004
1277 bwp.
1278 # Blocked URL = http://us.mc123.mail.yahoo.com/mc/stampNonJs
1279 .yahoo.com/mc/stampNonJs
1280
1281
1282 #############################################################################
1283 # Generic block-as-image patterns:
1284 #############################################################################
1285 {+block-as-image}
1286 # XXX: Should use "+block{Blocked image request.}", but Privoxy-Regression-Test
1287 # isn't smart enough to split that properly.
1288 # Sticky Actions = +block +handle-as-image
1289 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
1290 /.*ad_?image\.(php|cgi)
1291 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
1292 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
1293 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
1294 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
1295 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
1296 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
1297 /.*recips?/
1298 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
1299 /bandeaux/
1300 #MASTER# COMMENT: SF tracker 09/15/06
1301 /.*client_?ad\.(php|cgi)
1302 #MASTER# COMMENT: SF tracker 09/15/06
1303 /.*AIM_UAC.adp
1304 #MASTER# BLOCK-REFERRER: http://www.wunderground.com/ 2007-01-20
1305 #MASTER# COMMENT: banner at top of page http://server2.as5000.com/AS5000/adserver/click?ID=ADST-00015&C=0&T=1169332403
1306 /(.*/)?adserver/image
1307 #MASTER# COMMENT: Also from wunderground.com: http://icons-aa.wunderground.com/ads/images/TripAdvisor-Blinky.gif 2007-01-20
1308 # Blocked URL = http://icons-aa.wunderground.com/ads/images/TripAdvisor-Blinky.gif
1309 # URL = http://icons-aa.wunderground.com/ads/images/TripAdvisor-Blinky.gif
1310 /(.*/)?ads/images/
1311 # Blocked URL = http://ad.yieldmanager.com/st?ad_type=iframe&ad_size=728x90&site=123&section_code=123
1312 /.*\?ad_(type|size)=
1313
1314 #############################################################################
1315 # Site-specific block-as-image patterns:
1316 #############################################################################
1317 #----------------------------------------------------------------------------
1318 # Banner farms:
1319 #----------------------------------------------------------------------------
1320 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
1321 #MASTER# BLOCK-REFERRER: http://www.aol.com/
1322 #MASTER# COMMENT: There are at least ar.atwola and pr.atwola. 10/01/06
1323 # Blocked URL = http://ar.atwola.com/
1324 # Blocked URL = http://pr.atwola.com/
1325 ?r.atwola.com
1326 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
1327 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
1328 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
1329 #MASTER# REMARKS: Do NOT block /adj or /adi here since these are typically JS
1330 .[a-vx-z]*.doubleclick.net/(?!(.*/)?ad[ji])
1331 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/  10/17/06
1332 .*servedby.advertising.com
1333 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
1334 #.a.yimg.com/(?:(?!/i/).)*$
1335 #.a[0-9].yimg.com/(?:(?!/i/).)*$
1336 #.yimg.com/(.*/)?a/
1337 #.yimg.com/.*/(flash|java)/promotions
1338 #.yimg.com/a/.*/flash/
1339 #MASTER# REMARKS: The above replaced with below. Actions file tracker #1645616 2007-01-27
1340 .yimg.com/.*\.yimg\.com/a/
1341 #MASTER# REMARKS: Yahoo doesn't always have ".yimg.com/a/" in the URL for ads now 2010-02-28
1342 #MASTER# BLOCK-REFERRER: various yahoo pages
1343 # Blocked URL = http://l.yimg.com/a/a/1-/flash/promotions/l3/intl/100214/300x250mfeyap.jpg
1344 # Blocked URL = http://l.yimg.com/a/a/1-/flash/promotions/l3/intl/100219/300x250mfeya.gif
1345 .yimg.com/.*/flash/promotions/.*\.(gif|jpg)$
1346 bs*.gsanet.com
1347 bs*.einets.com
1348 .qkimg.net
1349 #MASTER# BLOCK-REFERRER: http://salon.com/ 10/19/06
1350 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
1351 #MASTER# REMARKS: Banner farms; just exclude their corp. info
1352 #MASTER# REMARKS: and have a "go there anyway" link for clk.atdmt.com and view.atdmt.com
1353 #MASTER# REMARKS:   (Actionsfile feedback item #1888197 and #2975927)
1354 [abd-ux-z]*.atdmt.com/
1355 #MASTER# BLOCK-REFERRER: http://www.exactaudiocopy.de/ 09/11/06
1356 #MASTER# BLOCK-REFERRER: http://stanford.facebook.com/home.php
1357 # URL = http://www.fastclick.net/
1358 .fastclick.net
1359 #MASTER# BLOCK-REFERRER: http://www.math.com/school/subject2/lessons/S2U3L6DP.html 09/11/06
1360 .casalemedia.com
1361 #MASTER# BLOCK-REFERRER: http://www.macnn.com/ 10/09/06
1362 kermit.macnn.com/
1363 #MASTER# BLOCK-REFERRER: http://www.globalseeker.com/freesamples/ 10/09/06
1364 quinst.com/images
1365 valuepage.com/images
1366 #MASTER# BLOCK-REFERRER: http://www.imdb.com/
1367 ia.imdb.com/.*\.swf
1368 #MASTER# BLOCK-REFERRER: http://www.dietngo.com/ 10/09/06
1369 .reactivpub.
1370 #MASTER# BLOCK-REFERRER: http://freemail.web.de/  10/17/06
1371 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/11/19/politics/19DEAN.html?ex=1069822800&en=dc82dfff0502faeb&ei=5062&partner=GOOGLE
1372 .as*.falkag.
1373 #MASTER# BLOCK-REFERRER: http://www.macnn.com/news/18944 10/17/06
1374 a.tribalfusion.com/
1375 #MASTER# BLOCK-REFERRER: http://reviews.infosyncworld.com/palmos/featured/index.html?start=1&offset=10 10/19/06
1376 .adserver.com/
1377 #MASTER# BLOCK-REFERRER: http://computers.cnet.com/hardware/0-1027-404-20857400.html?tag=rev
1378 #MASTER# REMARKS: Pointdexter
1379 .ru4.com/
1380 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/infos/actualites/detail_actu_marches.phtml?news=1510287
1381 .smartadserver.com/
1382 #MASTER# BLOCK-REFERRER: http://www.chez.tiscali.fr/ 10/07/06
1383 admedia.
1384 #MASTER# REMARKS: Bannerfarm used by Morpheus file sharing software
1385 jmcms.cydoor.com/
1386 #MASTER# BLOCK-REFERRER: http://www.tech-report.com/etc/2003q2/3dmurk03/index.x?pg=7
1387 #MASTER# REMARKS: Netshelter.com farm
1388 #MASTER# REMARKS: Not found but leaving 10/07/06
1389 .adtrix.com
1390 #MASTER# BLOCK-REFERRER: http://discussion.brighthand.com/forumdisplay.php?s=fee44a5b2a6fc2e9e79d6472bc8fbe94&forumid=197 10/19/06
1391 *[0-9].tribalfusion.com/
1392 #MASTER# REMARKS: Actions file tracker 1547656 09/02/06
1393 #MASTER# REMARKS: Update pattern: Actionsfile feedback item #1698822, was opened at 2007-04-11 to catch https://secure.img-cdn.mediaplex.com/0....
1394 # Blocked URL = https://secure.img-cdn.mediaplex.com/0/7454/43775/YA3149_17566_728x90_FCR_07.gif
1395 .img*.mediaplex.com
1396 #MASTER# BLOCK-REFERRER: http://www.tomshardware.com/ 09/28/06
1397 #MASTER# REMARKS: There is adfarm and altfarm.mediaplex
1398 #MASTER# REMARKS: 20070711 Actionsfile feedback #1749013 /ad/fm/ appended, as click-throughs were being blocked. Could only find adverts being served from /ad/fm/
1399 a*farm.mediaplex.com/ad/fm/
1400 #MASTER# REMARKS: Support request 1312362 09/08/06
1401 #MASTER# DUPLICATED: adserver.itsfogo.com
1402 #MASTER# REMARKS: Actionsfile feedback 09/11/06 http://matrix.mediavantage.de/mx.one?p=210&pa=1060&pb=1906&pd=10944&aid=399&x=120&y=240&ts=2005.06.27.21.38.08
1403 # URL = http://matrix.mediavantage.de/mx.one?p=210&pa=1060&pb=1906&pd=10944&aid=399&x=120&y=240&ts=2005.06.27.21.38.08
1404 #MASTER# BLOCK-REFERRER: http://www.heise.de/newsticker/meldung/61067
1405 matrix.mediavantage.
1406 #MASTER# REMARKS Ad generator, SF user tracker 09/11/06
1407 .cibleclick.com
1408 #MASTER# REMARKS: Ad generator 09/11/06  http://c1.netshelter.net/campaigns/ITTTech/itttech09_728x90.gif
1409 #MASTER# BLOCK-REFERRER: http://www.osnews.com/ 09/11/06
1410 .netracker.net
1411 #MASTER# REMARKS: ad generator domain per SF tracker 09/11/06
1412 .interclick.com
1413 #MASTER# REMARKS: Ad generator http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
1414 #MASTER# BLOCK-REFERRER: http://www.imdb.com/name/nm0000168/bio 09/12/06
1415 # URL = http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
1416 .maxserving.com
1417 #MASTER# REMARKS: Ad generator http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
1418 #MASTER# BLOCK-REFERRER:  http://torrent.to/torrent/ 09/12/06
1419 # URL = http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
1420 .gonamic.de
1421 # URL = http://img.webads.nl/
1422 .webads.
1423 #MASTER# REMARKS: Ad generator http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
1424 # URL = http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
1425 #MASTER# BLOCK-REFERRER:  http://news.yahoo.com/news?tmpl=story&cid=534&e=1&u=/ap/20050613/ap_on_he_me/cancer_research
1426 .adlegend.com
1427 #MASTER# REMARKS: Ad generator 09/12/06 http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
1428 # URL = http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
1429 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/louisianaandmardigra/messages/1?viscount=100
1430 .belnk.com
1431 .euros4click.
1432 #MASTER# BLOCK-REFERRER: http://www.planet3dnow.de/cgi-bin/newspub/viewnews.cgi?id=1129904195
1433 ads-*.quarterserver.
1434 #MASTER# BLOCK-REFERRER: http://adrian.adrian.org/ 10/07/06
1435 searchportal.information.com/
1436 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/17/06
1437 images.ibsys.com/
1438 #MASTER# BLOCK-REFERRER: http://www.rentalhouses.com/search_results.php?searchnew=1&citys_city=&citys_county=&citys_state=&ssubmit=Search&Szip=40205&keyword=&listingid=&strs_state=&strs_city=&strs_street= 11/05/06
1439 .lduhtrp.net/image
1440 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 SF tracker
1441 scripts.chitika.net/.*\.(gif|png|jpg)
1442 #MASTER# REMARKS: Actionsfile feedback item #1648478 2007-01-30
1443 .projectwonderful.com/gen.php
1444 #MASTER# BLOCK-REFERRER: http://www.multimap.com/ (sporadic)
1445 #MASTER# REMARKS: Actionsfile feedback item #1665682 2007-02-21
1446 .akamai.net/.*\.adtech\.de/.*\.(gif|png)
1447 #MASTER# BLOCK-REFERRER: via Yahoo groups
1448 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
1449 .adinterax.com/.*\.(gif|jpg)
1450 #MASTER# BLOCK-REFERRER: http://www.wotzon.com/profilepage.html?comp_id=1002310&CatID=2
1451 #MASTER# REMARKS: Ad generator per Actionsfile feedback item #1749870 2007-07-08
1452 # URL = http://img.directtrack.com
1453 img.directtrack.com
1454 #MASTER# BLOCK-REFERRER: http://www.thinkbroadband.com/news/3621-complaint-about-orange-broadband-advertising-upheld.html
1455 # URL = http://eas.apm.emediate.eu/media.5/1/1228/19193/ACT1215_120x600_v3.gif
1456 .emediate.eu/
1457 # URL = http://feedads.googleadservices.com/~a/dPlpGU767u4D4kVO8EGuUlnf1Q0/i
1458 # URL = http://feedads.googleadservices.com/~at/EpX-FnAXxwdaBSq-GRze37-rG0M/i
1459 .googleadservices.com/~
1460 #MASTER# REMARKS: Block yahoo email & ygroups banner ad
1461 # URL = http://ts.richmedia.yahoo.com/...hummingbird.jpg?adxq=NNN
1462 .richmedia.yahoo.com/.*\.(gif|jpe?g)\?ad
1463 # Blocked URL = http://this.content.served.by.adshuffle.com/p/a=/view.pxl
1464 .served.by.adshuffle.com/
1465 # Blocked URL = http://newsletter.adsonar.com/nwrss/imgs/nwr_123.PNG?placementId=123&plid=123&rotation=1&type=2&&url=NA
1466 .adsonar.com/.*/imgs/
1467 # Blocked URL = http://rtb.pclick.yahoo.com/images/nojs.gif?p=3
1468 .pclick.yahoo.com/images/
1469 # Blocked URL = http://rover.ebay.com/ar/1/2/3?mpt=123&adtype=1&size=728x90
1470 # Blocked URL = http://rover.ebay.com/ar/1/711-53200-19255-0/1?mpt=CacheBuster&adtype=1&size=1x1&type=3&campid=5336328269&toolid=10001
1471 rover.ebay./ar.*\&adtype=
1472 # Blocked URL = http://resources.parfym.se/tradedoubler/250x360.swf
1473 /tradedoubler/.*\.swf
1474 # Blocked URL = http://hstse.tradedoubler.com/file/142609/440x220.swf
1475 hstse.tradedoubler.com/.*\.swf
1476 # Blocked URL = http://www.zdnetasia.com/2007/techguide/network/sponsor/i/logmein_mpu_whitepaper.gif
1477 # Blocked URL = http://www.zdnetasia.com/2007/techguide/network/sponsor/sidebar.gif
1478 www.zdnetasia.com/.*/sponsor/.*\.gif$
1479 # Blocked URL = http://pagead2.googlesyndication.com/pagead/imgad?id=CPjtipDs9taquQEQoAEYwgQyCIvo2PNnQywb
1480 .googlesyndication.com/.*/imgad\?
1481 #MASTER# BLOCK-REFERRER: http://textsfromlastnight.com/texts/page:19
1482 # Blocked URL = http://optimize.indieclick.com/www/delivery/avw.php?zoneid=337501&cb=4147152&n=a530d6f1
1483 #MASTER# BLOCK-REFERRER: http://textsfromlastnight.com/texts/page:19
1484 optimize.indieclick.com/
1485 # Blocked URL = http://optimized-by.rubiconproject.com/a/8327/13451/26301-2.img
1486 optimized-by.rubiconproject.com/
1487 # Blocked URL = http://g.adspeed.net/ad.php?do=html&zid=14678&wd=728&ht=90&target=_top
1488 #MASTER# BLOCK-REFERRER: http://seclists.org/fulldisclosure/2012/Aug/4
1489 g.adspeed.net/
1490 # Blocked URL = http://imp.double.net/?5463;234;4505;0;39296
1491 imp.double.net/
1492
1493 #----------------------------------------------------------------------------
1494 # Cross-site user tracking
1495 #----------------------------------------------------------------------------
1496 #MASTER# REMARKS: +block-as-image here
1497 #MASTER# BLOCK-REFERRER: http://os2.ru/ 10/07/06
1498 .*.*.spylog.com/
1499 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/ 10/07/06
1500 statse.webtrendslive.com
1501 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
1502 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
1503 spinbox.versiontracker.com/.*\.(gif|jpg)
1504 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/ 10/07/06
1505 stat.onestat.com
1506 #MASTER# BLOCK-REFERRER: http://www.meparecebien.com/noticias/discograficas/sinnamon-records/sinnamon-records-libera-a-sus-artistas-nacionales-para-el-mercado-digital-401/
1507 #MASTER# REMARKS: Actionsfile feedback item #1644583 2007-03-05
1508 imp*.tradedoubler.com
1509 #MASTER# BLOCK-REFERRER: http://www.sharepoint.boo.pl/
1510 #MASTER# REMARKS: Not found, but left 10/07/06
1511 stat.webmedia.
1512 #MASTER# BLOCK-REFERRER: http://www.asp-php.net/index.php 10/07/06
1513 log*.xiti.com/
1514 log*.hit-parade.com/
1515 #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/884810.asp?0si=-&cp1=1
1516 # URL = http://www.xml.eshop.msn.com/tracksponsorimpression.asp
1517 www.xml.eshop.msn.com/tracksponsorimpression.asp
1518 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/ 10/07/06
1519 .imrworldwide.com
1520 #MASTER# REMARKS: Actionsfile feedback 1555719 09/10/06, and Debian Bug report
1521 #MASTER# BLOCK-REFERRER: http://www.nrc.nl/ 09/12/06
1522 .clicktracks.com
1523 #MASTER# REMARK: Actionsfile tracker 1159072 09/12/06
1524 .etracker.
1525 #MASTER# REMARK: Actionsfile tracker 1243494 09/12/06
1526 #MASTER# BLOCK-REFERRER: http://www.spanked-slaves.com/movies14/bdsm14c.html
1527 .x-traceur.com
1528 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/ 10/05/06
1529 content.ipro.com
1530 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/default.asp 10/05/06
1531 .247realmedia.com
1532 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/06/06
1533 .searchignite.com
1534 #MASTER# BLOCK-REFERRER: http://www.sdtimes.com/ 10/07/06
1535 .statcounter.com
1536 #MASTER# BLOCK-REFERRER: http://www.dn.se/ 10/07/06
1537 .research-int.se/data
1538 #MASTER# BLOCK-REFERRER: http://www.chez.aliceadsl.fr/ 10/07/06
1539 .cybermonitor.com
1540 #MASTER# BLOCK-REFERRER: http://disney.go.com
1541 #MASTER# BLOCK-REFERRER: http://abcnews.com  10/15/06
1542 log.go.com/log
1543 #MASTER# BLOCK-REFERRER: http://www.care2.com 10/18/06
1544 stats.indextools.com
1545 #MASTER# BLOCK-REFERRER: http://www.techcrunch.com/ 12/16/06 #1616497 3 urls.
1546 tra*.measuremap.com
1547 .eurekster.com/sidebar
1548 tra*.mybloglog.com
1549 #MASTER# BLOCK-REFERRER:  http://www.polymervision.com/
1550 #MASTER# REMARKS: Actionsfile feedback item #1629370 01/16/07
1551 .guesttrace.
1552 #MASTER# BLOCK-REFERRER: http://dictionary.com
1553 #MASTER# REMARKS: Actionsfile feedback item #165078 2007-02-05
1554 insightxe./data/
1555 #MASTER# BLOCK-REFERRER:  http://www.unitedairlines.com
1556 #MASTER# REMARKS: Actionsfile feedback item #1650797 2007-02-05
1557 .insightfirst.com
1558 #MASTER# BLOCK-REFERRER: http://rss.slashdot.org/Slashdot/slashdot
1559 # Blocked URL = http://rss.slashdot.org/~a/Slashdot/slashdot?i=ofbWqX
1560 # URL = http://rss.slashdot.org/~a/Slashdot/slashdot?i=ofbWqX
1561 rss.slashdot.org/~a/Slashdot/slashdot\?
1562 # Blocked URL = http://rss.slashdot.org/~r/Slashdot/slashdot/~4/102113044
1563 # URL = http://rss.slashdot.org/~r/Slashdot/slashdot/~4/102113044
1564 rss.slashdot.org/~r/Slashdot/slashdot/~4/
1565 #MASTER# BLOCK-REFERRER: http://www.isys.ucl.ac.be/bchi/research/Kwaresmi.htm
1566 #MASTER# REMAKRKS: Actionsfile feedback item #1849627 2007-12-12
1567 [a-z][0-9].nedstatbasic.net/
1568 #MASTER# BLOCK-REFERER: http://feeds.feedburner.com/dilbertdailystrip/
1569 # Blocked URL = http://feeds.feedburner.com/~r/DilbertDailyStrip/~4/274512747
1570 #MASTER# BLOCK-REFERER: http://feeds.feedburner.com/PCLoadLetter
1571 # Blocked URL = http://feeds.feedburner.com/~r/PCLoadLetter/~4/270448381
1572 #MASTER# REMAKRKS: This seem to be a common pattern for web bugs in feedburner feeds.
1573 feeds.feedburner.com/~r/.*/~4/
1574 # Blocked URL = http://feedproxy.google.com/~r/DilbertDailyStrip/~4/y_kXD1z1HO0
1575 feedproxy.google.com/~r/.*/~4/
1576 # Blocked URL = http://feeds.feedburner.com/~a/DilbertDailyStrip?a=Ebzxel
1577 #MASTER# REMAKRKS: This looks like a pattern as well, maybe we should block feeds.feedburner.com/~a/ here.
1578 feeds.feedburner.com/~a/DilbertDailyStrip\?
1579 #MASTER# BLOCK-REFERER: http://www.buch.de/
1580 # URL = http://track.webtrekk.de/471497967328727/wt.pl?p=177,de.buch.show.home,1,1024x768,24,1,1218816426275,0,884x653,0&enc1=%FC&enc2=iso-8859-1&st=view&la=en-US&np=Default%20Plugi
1581 track.webtrekk.de/
1582 #MASTER# BLOCK-REFERER: https://sourceforge.net/
1583 # URL = http://b.scorecardresearch.com/p2?c1=2&c2=6035546&c3=&c4=&c5=&c6=&c15=&cj=1
1584 b.scorecardresearch.com/
1585 # URL = https://sb.scorecardresearch.com/
1586 sb.scorecardresearch.com/
1587 #MASTER# BLOCK-REFERRER: http://sourceforge.net/projects/ijbswa/
1588 # Blocked URL = http://b.collective-media.net/seg/cm/cm_aa_gn1
1589 b.collective-media.net/
1590 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1591 # Blocked URL = http://spiegel.ivwbox.de/cgi-bin/ivw/CP/1001;/home/c-18/be-PB64-aG9tZXBhZ2UvY2VudGVy/szwprofil-1001
1592 #MASTER# BLOCK-REFERRER: http://www.heise.de/
1593 # Blocked URL = http://heise.ivwbox.de/2004/01/survey.js
1594 .ivwbox.de/
1595 # Blocked URL = https://pixel.wp.com/g.gif?v=ext&j=1%3A7.8&blog=44083982&post=2542&tz=1&srv=www.geeklan.co.uk&host=www.geeklan.co.uk&ref=&fcp=0&rand=0.34473017357614855
1596 pixel.wp.com/
1597
1598 #----------------------------------------------------------------------------
1599 # Specific counters (see above for generic patterns)
1600 #----------------------------------------------------------------------------
1601 #MASTER# BLOCK-REFERRER: http://www.distrowatch.com/table.php?distribution=linex 10/19/06
1602 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 tracker  #1641102
1603 s*.sitemeter.com/(meter|js/counter.js)
1604 #MASTER# BLOCK-REFERRER: http://personales.mundivia.es/lbouza/ 10/19/06
1605 # URL = http://fastcounter.bcentral.com/
1606 fastcounter.bcentral.com/
1607 #MASTER# BLOCK-REFERRER: http://osnews.com/ 10/19/06
1608 # URL = http://bilbo.counted.com/
1609 bilbo.counted.com/
1610
1611 #----------------------------------------------------------------------------
1612 # On-site ads and other single sources:
1613 #----------------------------------------------------------------------------
1614 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
1615 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest 10/07/06
1616 .travelocity./Sponsor_gifs/
1617 #MASTER# REMARKS: Referenced from HTML-Emails (not checked 10/08/06)
1618 # URL = http://foo.weather.com/creatives/
1619 # URL = http://bar.weather.com/web/services/email/
1620 .weather.com/creatives/
1621 .weather.com/web/services/email/
1622 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html 10/08/06
1623 /.*/topslots/topslot
1624 .contextweb.com/
1625 .offermatica.com/
1626 #MASTER# BLOCK-REFERRER: http://www.jpost.com/ 10/08/06
1627 .adbrite.com
1628 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
1629 .jpost.com/images/\d+/promos/
1630 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/ 10/08/06
1631 .infoempleo.com/(pop-up|images(/Nueva/|/motor))
1632 #MASTER# BLOCK-REFERRER: http://www.hardocp.com/ 10/08/06
1633 hera.hardocp.com/
1634 #MASTER# BLOCK-REFERRER: http://people.aol.com/ 10/08/06
1635 leadback.advertising.
1636 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/ 10/08/06
1637 .yieldmanager.com/
1638 .displayadsmedia.com
1639 # URL = http://astalavista.box.sk/adult.foo.jpg
1640 astalavista.box.sk/adult.*\.jpg
1641 #MASTER# BLOCK-REFERRER: http://www.bol.com.br/
1642 smartad.*.*.*
1643 #MASTER# BLOCK-REFERRER: http://www.dinside.no/ 10/08/06
1644 .dinside.no/annonsorer/
1645 #MASTER# BLOCK-REFERRER: http://www.heise.de/ 10/08/06
1646 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1647 /RealMedia/ads/
1648 #MASTER# REMARKS: Variation 2007-11-12
1649 /RealMediaAds/
1650 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com 12/28/06 per SF tracker
1651 /top\.php\?d=.*\.[a-z]{2,5}
1652 #MASTER# REMARKS: Actionsfile feedback item #1764161 2007-07-31
1653 #MASTER# BLOCK-REFERRER: http://www.webster.com/dictionary/revering
1654 .google.com/afsonline
1655
1656 #############################################################################
1657 # Site-specific unblockers:
1658 #############################################################################
1659 {-block}
1660 # Sticky Actions = -block
1661 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
1662 .faqs.org/banner\.html
1663 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
1664 bannerblind.mozdev.org
1665 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
1666 advogato.org
1667 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
1668 ad*.vhb.de
1669 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
1670 .globalintersec.com/adv
1671 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html 10/08/06
1672 banners.wunderground.com/
1673 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/ 10/09/06
1674 .openoffice.org/banners/
1675 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926 10/09/06
1676 #MASTER# REMARKS: Part of site decoration
1677 .amazon.com/.*/banners/
1678 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
1679 #MASTER# REMARKS: Javascripts whose absence messes the page
1680 .washingtonpost.com/wp-srv/
1681 # URL = http://www.gnome.org/images/banner-gnomeis
1682 .gnome.org
1683 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/ 10/09/06
1684 .nycsubway.org/img/banner
1685 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1686 # URL = http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1687 .forgotten-ny.com/ADS/
1688 # URL = http://counter.li.org
1689 counter.li.org
1690 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/ 10/09/06
1691 # URL = http://adrian.adrian.org
1692 adrian.adrian.org
1693 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/ 10/09/06
1694 # URL = http://adela.karlin.mff.cuni.cz
1695 adela.karlin.mff.cuni.cz
1696 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html 10/09/06
1697 .swcp.com/rtoads/
1698 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
1699 #MASTER# REMARKS: Don't block our own feedback process, even if the
1700 #MASTER# REMARKS: parameters contain block patterns
1701 # URL = http://www.privoxy.org/actions/index.php
1702 .privoxy.org
1703 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
1704 sourceforge.net/.*tracker
1705 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
1706 # URL = http://www.brawnylads.com/
1707 .brawnylads.com
1708 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
1709 # URL = http://adzapper.sourceforge.net/
1710 adzapper.
1711 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
1712 # URL = http://de.altavista.com/web/adv
1713 .altavista.com/web/adv
1714 # URL = http://rads.mcafee.com/rads/scripts/RADS.dll?QueryProduct2
1715 rads.mcafee.com/
1716 # URL = http://linuxfromscratch.org/cgi-bin/lfscounter.cgi
1717 linuxfromscratch.org/
1718 #MASTER# UNBLOCK-REFERRER: http://dv411.com/advc50.html
1719 # URL = http://dv411.com/advc50.html
1720 dv411.com/.*advc50
1721 # URL = http://www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1722 .freeswan.org/
1723 # URL = http://www.arm.com/support/ads_faq?OpenDocument&ExpandSection=11
1724 www.arm.com/.*ads
1725 # URL = http://www.anybrowser.org/campaign/
1726 www.anybrowser.org/
1727 # URL = http://www.tads.org/
1728 www.tads.org/
1729 # URL = http://www.mbe.com/redir/packtrack.asp
1730 .mbe.com/redir/packtrack.asp
1731 .iship.com/trackit/
1732 # URL = http://www.esis.com.au/AdvSerialCards/Firewire.htm
1733 .esis.com.au/AdvSerialCards
1734 #MASTER# UNBLOCK-REFERRER: http://www.familysearch.org/ 10/11/06
1735 .familysearch.org/.*banner
1736 #MASTER# UNBLOCK-REFERRER: http://coder.com/ 10/11/06
1737 coder.com/creations/banner/
1738 #MASTER# UNBLOCK-REFERRER: http://arnolds.dhs.org/static/adv_tools.html 10/11/06
1739 # URL = http://arnolds.dhs.org/static/adv_tools.html
1740 arnolds.dhs.org/static/adv_tools.html
1741 #MASTER# UNBLOCK-REFERRER: http://www.gpl.org/
1742 .gpl.org/
1743 #MASTER# UNBLOCK-REFERRER: http://europa.eu.int/yourvoice/ 10/11/06
1744 .europa.eu.
1745 #MASTER# UNBLOCK-REFERRER: http://www.schooner.com/~loverso/no-ads/ 10/11/06
1746 # URL = http://www.schooner.com/~loverso/no-ads/
1747 .schooner.com/~loverso/no-ads/
1748 #MASTER# UNBLOCK-REFERRER: http://source.bungie.org/ 10/11/06
1749 source.bungie.org/
1750 # URL = http://adonthell.linuxgames.com/
1751 adonthell.linuxgames.com/
1752 #MASTER# UNBLOCK-REFERRER: http://news.bbc.co.uk/furniture/chinese/banner/bbccantonese_600.gif
1753 #MASTER# REMARKS: Banner-free site(s).
1754 .bbc.co.uk/
1755 # URL = http://adc.netlabs.org/
1756 adc.netlabs.org/
1757 #MASTER# UNBLOCK-REFERRER: http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm 10/11/06
1758 # URL = http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm
1759 .tela.bc.ca/tads/
1760 # URL = http://adbusters.org/information/
1761 adbusters.org/
1762 # URL = http://www.eads.com/
1763 # URL = http://www.eads.net/
1764 # URL = http://www.eads.de/
1765 .eads.*/
1766 # URL = http://brew.qualcomm.com/brew/en/developer/resources/ad/documentation.html
1767 .qualcomm.com/brew/en/developer/resources/ad/
1768 # URL = http://upgrade.bitdefender.com/update71/avx/Plugins/adsntfs.xmd.gzip
1769 /update\d\d/.*adsnt.*
1770 #MASTER# UNBLOCK-REFERRER: http://msdn.microsoft.com/ 09/11/06
1771 .microsoft.com/.*masthead
1772 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1773 .indymedia.org
1774 # URL = http://www.seanbaby.com/stupid/comicads05.shtml
1775 .seanbaby.com
1776 # URL = http://www.cels.org/db/keep-track.pl?cat:1
1777 .cels.org/.*track
1778 #MASTER# UNBLOCK-REFERRER: http://www.nic.ad.jp/ See http://jprs.co.jp/en/jpdomain.html 09/11/06
1779 #MASTER# REMARKS: 2007-10-04, increase scope per Actionsfile feedback item #1807613
1780 #.nic.ad.jp
1781 #MASTER# REMARKS removed .ad.jp per Actionsfile feedback item #1807613
1782 #MASTER# UNBLOCK-REFERRER: http://www.flickr.com/photo_zoom.gne?id=32594118&size=l 09/11/06
1783 #MASTER# REMARKS: creativecommons.org worthwhile organization 09/11/06
1784 /(.*/)?somerights20.gif
1785 .creativecommons.org
1786 # URL = http://www.ups.com/WebTracking/track?loc=en_US
1787 .ups.com/.*/track
1788 #MASTER# UNBLOCK-REFERRER: http://adju.st 09/12/06
1789 .adju.
1790 #MASTER# REMARKS: Ad-free art site 09/12/06
1791 .rubberslug.com
1792 .freebsd.org
1793 .fsf.org
1794 .gnu.org
1795 #MASTER# REMARKS: SF tracker 09/15/06, and #1750779 2007-07-09
1796 #MASTER# REMARKS: New home? http://adiumx.cachefly.net/Adium_1.0.5.dmg
1797 adium*.*.
1798 #MASTER# UNBLOCK-REFERRER: http://google.com 10/01/06
1799 #MASTER# REMARKS: This allows many (but not all) Google "Sponsored Links" to function.
1800 #MASTER# REMARKS: Presumably if someone clicks these they want to go there.
1801 .googleadservices./pagead/adclick
1802 #MASTER# UNBLOCK-REFERRER: http://www.garaget.org
1803 #MASTER# REMARKS: These are "ads" from individuals selling cars per tracker. 10/06/06
1804 .garaget.org/annonser/
1805 #MASTER# UNBLOCK-REFERRER: http://www.macworld.com/ 10/07/06
1806 #MASTER# REMARKS: Without the unblock, the page layout is horribly broken 10/08/06
1807 edge.macworld.com
1808 #MASTER# UNBLOCK-REFERRER: http:// www.discovery.de  10/19/06
1809 #MASTER# REMARKS: These are promos relevant to the page content.
1810 .discovery./.*/topads/
1811 #MASTER# UNBLOCK-REFERRER: http://dawn.com
1812 #MASTER# REMARKS: SF Actionsfile tracker 10/19/06. These images are not ads.
1813 .dawn.com/.*/(9690dina|aurora_award)\.
1814 #MASTER# UNBLOCK-REFERRER: http://google.com/reader/
1815 #MASTER# REMARKS: Initial page does not load, per Support request 10/27/06
1816 .google.com/reader/
1817 #MASTER# REMARKS: Actionsfile Tracker 1587079 10/30/06
1818 .parcel2go.com/track
1819 #MASTER# REMARKS: Actionsfile Tracker #1612950 12/11/06
1820 .amazon.com/gp/gift-central/.*recip/
1821 #MASTER# UNBLOCK-REFERRER: http://yahoo.com 2007-01-27
1822 #MASTER# REMARKS: Actionsfile Tracker #1645501, this is a UI page element.
1823 .yimg.com/.*/themes/ad/
1824 #MASTER# UNBLOCK-REFERRER: http://mozilla.hongo.wide.ad.jp/pub/mozilla.org//thunderbird/releases/
1825 #MASTER# REMARKS: Actionsfile feedback item #1672918 2007-03-03
1826 # URL = http://mozilla.hongo.wide.ad.jp/pub/mozilla.org//thunderbird/releases/
1827 .ad.*/pub/mozilla.org/
1828 # URL = http://lads.myspace.com/mini/mini.swf?b=NDgwNzU1ODE=&o=NjQwNzIzMA==&d=MTE3NDI4ODcwNg==&i=MA==&a=VHJ1ZQ==
1829 #MASTER# UNBLOCK-REFERRER: http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=5282733
1830 #MASTER# UNBLOCK-REFERRER: http://lads.myspace.com/videos/vplayer.swf
1831 #MASTER# REMARKS: MySpace videos caught by .*ads. The above profile.myspace.com link grabs the vplayer.swf file (which does not work when directly fetched)
1832 # URL = http://lads.myspace.com/videos/vplayer.swf
1833 lads.myspace.com
1834 #MASTER# REMARKS: 20070402 Adam Piggott first-party tracking. 20070411 Moved from generic unblockers by path to site-specific unblockers.
1835 #MASTER# UNBLOCK-REFERRER: http://www.shockwave.com/servlet/DownloadEcommTracker?sku=fizzball-pc&promoCode=SiteShockwaveLandingPage
1836 # URL = http://www.shockwave.com/servlet/DownloadEcommTracker?sku=fizzball-pc&promoCode=SiteShockwaveLandingPage
1837 .shockwave.com/servlet/DownloadEcommTracker
1838 #MASTER# REMARKS: 20070411 Adam Piggott fish4.co.uk is a popular UK advertising site for cars, properties and jobs and uses ad/advert all over the place, understandably.
1839 # URL = http://www.fish4.co.uk/iad/lettings/advert?adId=12389712&src=nestoria
1840 .fish4.co.uk/.*ad
1841 #MASTER# REMARKS: Actionsfile feedback item #1700037 2007-04-13 HB
1842 # URL = http://www.mp3.com.au/popup/popup.asp?id=110433
1843 .mp3.com.au/.*popup
1844 #MASTER# REMARKS Actionsfile feedback #1700915 2007-04-15
1845 # URL = http://www.svd.se/ego/339/http://www.e24.se/dynamiskt/reklam_media/did_15092793.asp
1846 # URL = http://www.e24.se/dynamiskt/reklam_media/did_15092793.asp
1847 /(.*/)?dynamiskt/reklam_media/did_
1848 #MASTER# REMARKS 20070710 Actionsfile feedback #1751020
1849 switch.atdmt.com/action/
1850 # URL = http://www.parcelforce.com/portal/pw/track?catId=7500082
1851 .parcelforce.com/.*track
1852 #MASTER# UNBLOCK-REFERRER: redirect from http://go.microsoft.com/fwlink?linkid=51093
1853 #MASTER# REMARKS: Actionsfile feedback item #1757121 2007-07-19
1854 .microsoft.com/.*/adschema/
1855 # URL = http://upload.wikimedia.org/wikipedia/en/a/ad/Picturecarnegie.jpg
1856 .wikimedia.org/
1857 # URL = http://en.wikipedia.org/wiki/Advertisement
1858 .wikipedia.org/
1859 #MASTER# REMARKS Actionsfile feedback item #2299717 2008-11-16
1860 # URL = http://en.wiktionary.org/wiki/advertisement
1861 .wiktionary.org/
1862 # URL = http://curl.haxx.se/docs/adv_20070710.html
1863 .haxx.se/docs/adv_
1864 # URL = http://www.google.com/adsense/
1865 www.google.com/adsense/
1866 # URL = http://www.encyclopediadramatica.com/Advertisement
1867 # URL = http://images.encyclopediadramatica.com/images/b/b5/Advertising-Dierentuin.jpg
1868 .encyclopediadramatica.com/
1869 #MASTER# UNBLOCK-REFERRER: http://lifehacker.com 2008-04-18 HB
1870 # URL = http://tags.gawker.com/assets/minify.php?files=/assets/base.v6/.../comments.css,/assets/base.v6/css/messages.css,/assets/base.v6/css/ui.css
1871 tags.gawker.com/.*css$
1872 # URL = http://cgi.tnt.co.uk/TrackNTrace/quicktrack.asp
1873 .tnt.co.uk/TrackNTrace/
1874 #MASTER# UNBLOCK-REFERRER: http://www.supermediastore.com/trackorder.html
1875 # URL = http://secure.howtoburndvd.net/ups/track.php
1876 /ups/track\.php
1877 #MASTER# REMARKS: Actionsfile feedback item #1886140  2008-02-04
1878 #MASTER# UNBLOCK-REFERRER: http://idonthateyouall.imeem.com/video/8zH0_f9i/kiley_rilo_pull_me_in_tighter_art_video/
1879 # URL = http://ad.doubleclick.net/crossdomain.xml
1880 ad.doubleclick.net/crossdomain\.xml
1881 #MASTER# REMARKS: Support request 2838390: 2009-08-16: nfl.com videos not working
1882 #MASTER# REMARKS: bbc.co.uk videos references ad.uk.doubleclick.net
1883 # URL = http://ad.doubleclick.net/879366/DartShell9_8.swf?adServerHost=http://ad.doubleclick.net
1884 # URL = http://ad.doubleclick.net/pfadx/DARTSHELLCONFIGXML;dcmt=text/xml;
1885 # URL = http://ad.doubleclick.net/879366/DartShellPlayer9_8_01_00.swf
1886 # URL = http://ad.uk.doubleclick.net/879366/DartShell7_7.swf?adServerHost=http://ad.uk.doubleclick.net
1887 .doubleclick.net/.*/DartShell.*\.swf
1888 .doubleclick.net/.*/DARTSHELLCONFIGXML
1889 #MASTER# REMARKS: Actionsfile feedback item #2021509  2008-07-18
1890 #MASTER# REMARKS: Allow realplayer site help popup windows
1891 #MASTER# UNBLOCK-REFERRER: http://real.custhelp.com/cgi-bin/real.cfg/php/enduser/std_adp.php?p_faqid=4512
1892 # URL = http://real.custhelp.com/cgi-bin/real.cfg/php/enduser/popup_adp.php
1893 real.custhelp.com/cgi-bin/real\.cfg/php/enduser/popup_adp\.php
1894 # URL = http://fritz.fonwlan.box/cgi-bin/webcm?getpage=../html/de/help/popup.html&var:lang=de&var:pagename=hilfe_syslog&var:anker=24
1895 fritz.fonwlan.box/
1896 # URL = http://fritz.box/cgi-bin/webcm?getpage=../html/de/help/popup.html&var:lang=de&var:pagename=hilfe_syslog&var:anker=24
1897 fritz.box/
1898 #MASTER# REMARKS: Actionsfile feedback item #2043327 2008-08-08
1899 # URL = http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402747&sliceId=1
1900 .adobe.com
1901 # URL = http://qa.debian.org/popcon.php
1902 # URL = http://qa.debian.org/popcon-png.php?packages=privoxy&show_installed=on&want_legend=on&want_ticks=on&date_fmt=%25Y-%25m&beenhere=1
1903 qa.debian.org/popcon
1904 #MASTER# REMARKS: Support Requests item #2432535 2008-12-16
1905 # URL = http://www.mta.info/bandt/traffic/advmain.htm
1906 .mta.info/.*advmain.htm$
1907 #MASTER# REMARKS: We also use this as a light character class test, therefore the additional URL directives.
1908 # URL = http://www.proaurum.de/bannerA2/image/pro_master_r3_01_04.gif
1909 # URL = http://www.proaurum.de/bannerA1/image/limitorder2.gif
1910 # URL = http://www.proaurum.de/bannerA3/image/pro_master_r5_banken_01_01+.gif
1911 # URL = http://www.proaurum.de/bannerB2/image/pro_banner_mitte.gif
1912 # URL = http://www.proaurum.de/bannerB1_/image/pro_banner_links.gif
1913 # URL = http://www.proaurum.de/bannerC1/image/partner1.png
1914 .proaurum.de/banner[ABC]\d_?/
1915 # URL = http://www.goldmoney.com/en/images/home/banner_r4_c1.gif
1916 .goldmoney.com/
1917 #MASTER# REMARKS: Actionsfile feedback item #2017126  2008-07-13
1918 #MASTER# REMARKS: The dutch newspaper site of Algemeen Dagblad (http://www.ad.nl) is blocked
1919 # URL = http://www.ad.nl/
1920 .ad.nl/
1921 #MASTER# REMARKS: yahoo groups self-promotion - and the page is uglier without it
1922 # URL = http://us.i1.yimg.com/us.yimg.com/i/yg/img/ads/bestofygroups.jpg
1923 .yimg.com/.*/ads/bestofygroups.jpg$
1924 #MASTER# REMARKS: NYT home page is messed up because .css files are blocked
1925 #MASTER# UNBLOCK-REFERRER: http://www.nytimes.com/
1926 # URL = http://graphics8.nytimes.com/css/0.1/screen/common/ads.css
1927 # URL = http://graphics8.nytimes.com/css/0.1/screen/homepage/ads.css
1928 .nytimes.com/.*/ads\.css$
1929 #MASTER# REMARKS: All hosted videos seemingly require this file.
1930 #MASTER# UNBLOCK-REFERRER: http://www.cnn.com/video/#/video/showbiz/2009/04/14/dcl.boyle.british.talent.show.cnn
1931 # URL = http://i.cdn.turner.com/cnn/.element/js/2.0/video/xmp/AdServiceAdapter.swf
1932 .turner.com/cnn/.*/AdServiceAdapter.swf
1933 #MASTER# REMARKS: Tracker 2786745 : MySpace music player doesn't work
1934 #MASTER# UNBLOCK-REFERRER: www.myspace.com/bandofskulls
1935 # URL = http://lads.myspacecdn.com/videos/musicPlayerAssets.swf
1936 lads.myspacecdn.com/
1937 #MASTER# REMARKS: AF#2789653 iTunes download blocked
1938 # URL = http://a957.phobos.apple.com/us/r1000/000/Music/ad/47/56/mzi.gnjsyarh.aac.a.m4p
1939 .phobos.apple.com/
1940 # URL = http://eas8.emediate.eu/eas?camp=114;ty=ct;EASLink=http://www.jp.dk
1941 .emediate.eu/.*EASLink=
1942 #MASTER# REMARKS: Actionfile tracker ID: 2838501:  2009-08-16
1943 # URL = http://new.meteo.pl/advajax.js
1944 .meteo.pl/advajax\.js
1945 # URL = http://www.adressa.no/
1946 # URL = http://adressa.no/
1947 adressa.no/
1948 # URL = http://www.adresseavisen.no/
1949 # URL = http://adresseavisen.no/
1950 adresseavisen.no/
1951 # URL = http://apps.facebook.com/onthefarm/track.php?creative=&cat=friendvisit&subcat=weeds&key=a789a971dc687bee4c20c044834fabdd&next=index.php%3Fref%3Dnotif%26visitId%3D898835505
1952 .facebook.com/.*/track.php
1953 # URL = http://www.ifdb.tads.org/
1954 # URL = http://www.tads.org/
1955 .tads.org/
1956 # URL = http://adtoma.com/
1957 adtoma.com/
1958 #MASTER# REMARKS: Actionsfile feedback 2859872  2009-09-16 09:58
1959 # URL = http://adactio.com/
1960 adactio.com/
1961 # URL = http://www.peereboom.us/adsuck/
1962 www.peereboom.us/adsuck/
1963 # URL = http://www.svd.se/template/ver1-0/css/ads.css?v=194
1964 .svd.se/.*\.css($|\?)
1965 #MASTER# REMARKS: [privoxy-users] Privoxy blocking Ebay item pictures Jan 31, 2010
1966 #MASTER# REMARKS: Ebay enlarge picture function doesn't work.
1967 # URL = http://include.ebaystatic.com/v4js/en_GB/e637i/SYS-LIGER_Omniture_e637i10177164_5_en_GB.js
1968 include.ebaystatic.com/.*omniture.*\.js
1969 #MASTER# REMARKS: Allow Yahoo news and mail javascript pages
1970 # URL = http://l.yimg.com/d/combo?news/p/common/generic/news/p/common/generic/popular-searches-min-12622.js&news/p/common/generic/ads-min-11050.js&news/p/common/generic/foundation/popup-min-12622.js
1971 .yimg.com/d/combo\?
1972 #MASTER# REMARKS: Page formatting problems when .css files are blocked
1973 # URL = http://www.networkworld.com/includes/styles/adstyles.css
1974 # URL = http://www.sj.se/common/css/pop.css
1975 # URL = http://l.yimg.com/d/combo?news/p/common/generic/ads-min-24248.css&news/p/common/generic/widgets-min-10270.css
1976 # URL = http://news.zdnet.com/css/z/ads/hs.css
1977 /.*\.css$
1978 #MASTER# REMARKS:Actionsfile feedback item #2974204 2010-03-21
1979 # URL = http://adesklets.sourceforge.net/
1980 adesklets.sourceforge.net/
1981 #MASTER# REMARKS: Mostly-french political blog
1982 # URL = http://adassier.wordpress.com/
1983 adassier.wordpress.com/
1984 # URL = http://adassier.files.wordpress.com/2010/05/road-to-economic-recovery2.jpg?w=630&h=451
1985 adassier.files.wordpress.com
1986 # URL = http://adainitiative.org/about-us/
1987 adainitiative.org/
1988 # URL = http://adjamblog.wordpress.com/
1989 adjamblog.wordpress.com/
1990 # URL = http://adjamblog.files.wordpress.com/2011/12/cropped-terra.jpg
1991 adjamblog.files.wordpress.com/
1992 # URL = http://www.urbandictionary.com/popular.php?character=C
1993 .urbandictionary.com/popular
1994 # URL = http://websupport.wdc.com/sfclickcount.asp?s1=2&s2=1&s3=2&s4=6&lang=en&url=https%3A%2F%2Fwesterndigital.secure.force.com%2F%3Flang%3Den
1995 websupport.wdc.com/
1996 #MASTER# UNBLOCK-REFERRER: http://conradelektronik.m13.mailplus.nl/genericservice/code/servlet/React?encId=xSgAxBFNnFrne8j&actId=357685&command=openhtml
1997 # URL = http://content.conrad.se/newsletter/banners/OFFER_750987_exk.jpg
1998 #MASTER# UNBLOCK-REFERRER: http://nyhetsbrev.conrad.se/form.do?agnCI=25&agnFN=fullview&agnUID=A.C.E4N.Bv_m.EnED.EDtQoE_5_4bI7xQlTGfxSA
1999 # URL = http://media.conrad.se/newsletter/banner7/endoskop_123344.jpg
2000 .conrad.se/newsletter/
2001 #MASTER# REMARKS: Actionsfile feedback item #3413827  2011-09-25 12:11
2002 #MASTER# REMARKS: This domain hosts JS, images and CSS upon which hotmail.com depends
2003 .wlxrs.com/
2004 # URL = http://advrider.com/forums/
2005 # URL = http://www.advrider.com/forums/
2006 .advrider.com/
2007 # URL = http://www.smugmug.com/community/ADVrider
2008 # URL = http://www.siteinfotool.com/advrider.com
2009 /.*ADVrider
2010 #MASTER# UNBLOCK-REFERRER: http://www.speedtest.net/
2011 #MASTER# REMARKS: Support request #3612908  2013-05-08 07:31:46 PDT
2012 #MASTER# REMARKS: Appears to be a content delivery subdomain for the parent domain
2013 # URL = http://adn.speedtest.net
2014 adn.speedtest.net
2015 # URL = http://adressbuch.bundestag.de/adressbuch/
2016 .bundestag.de/
2017 # URL = http://www.rote-hilfe.de/images/banners/mitglied_werden_banner156.png
2018 .rote-hilfe.de/
2019 # URL = http://cs.stackexchange.com/posts/popup/close/suggest-originals/16678?_=1383517814677
2020 .stackexchange.com/(.*/)?popup
2021 # URL = http://cs.stackoverflow.com/posts/popup/close/suggest-originals/16678?_=1383517814677
2022 .stackoverflow.com/(.*/)?popup
2023 # URL = http://cs.serverfault.com/posts/popup/close/suggest-originals/16678?_=1383517814677
2024 .serverfault.com/(.*/)?popup
2025 # URL = http://cs.superuser.com/posts/popup/close/suggest-originals/16678?_=1383517814677
2026 .superuser.com/(.*/)?popup
2027 #MASTER# UNBLOCK-REFERRER: http://cologne.stopwatchingus.info/demo-12-april.html
2028 # URL = http://cologne.stopwatchingus.info/images/banner/Demo-Koeln-12-04-14-Banner.png
2029 # URL = http://cologne.stopwatchingus.info/images/banner/Demo-Koeln-12-04-14-Banner2.png
2030 # URL = http://cologne.stopwatchingus.info/images/banner/Demo-12-April.jpg
2031 .stopwatchingus.info/
2032 # URL = http://www.amnesty.de/files/Banner_gelb_Manning_300x250.gif
2033 .amnesty.de/
2034 #MASTER# UNBLOCK-REFERRER: http://www.deutschlandradiokultur.de/
2035 # URL = http://www.deutschlandradiokultur.de/themes/dradio/js.php?files=script/jquery-2.0.2.min.js,script/dkultur.script.js,script/jquery.bxslider.js,script/jquery.cookie.js,script/aod/jquery.mkdraod.interface.js,script/drk-audioplayer.js,script/mobileView.js,script/popup.js&16975
2036 .deutschlandradiokultur.de/
2037 # URL = http://klikki.fi/adv/wordpress2.html
2038 klikki.fi/adv/
2039 #MASTER# UNBLOCK-REFERRER: http://www.ardmediathek.de/tv
2040 # URL = http://www.ardmediathek.de/ard/static/img/ardmt/banner/ard-mediathek.svg
2041 .ardmediathek.de/
2042 # URL = http://adventofcode.com/
2043 adventofcode.com/
2044 # URL = http://msdn.microsoft.com/en-us/library/system.diagnostics.stacktrace.framecount.aspx
2045 msdn.microsoft.com/
2046 # URL = http://talks.golang.org/2013/advconc/gopherswrench.jpg
2047 .golang.org/
2048 # URL = http://adaway.org/
2049 adaway.org/
2050 # URL = https://belco24.de/bilder/banner/Bildschirmfoto%202018-08-21%20um%2015.20.01.png
2051 belco24.de/
2052 # URL = https://www.tagesschau.de/multimedia/bilder/banner-zak-kostopoulos-101~_v-mittel16x9.jpg
2053 .tagesschau.de/
2054 # URL = https://metrics.sr.ht/graph
2055 metrics.sr.ht/
2056 # URL = https://nlnet.nl/logo/banner.png
2057 nlnet.nl/
2058 # URL = https://adv-archiv.dfn-cert.de/adv/2021-2222/
2059 adv-archiv.dfn-cert.de/
2060 # URL = https://pinkstinks.de/werbung-ohne-diskriminierung/
2061 pinkstinks.de/
2062 # URL = https://www.eff.org/files/styles/teaser/public/banner_library/repro-rights-hd-3b.jpg?itok=uCnCHOj5
2063 .eff.org/
2064 # URL = https://www.datenschmutz.de/banner-square.png
2065 .datenschmutz.de/
2066
2067
2068 #############################################################################
2069 # Site-specific special rules:
2070 #############################################################################
2071
2072 #----------------------------------------------------------------------------
2073 # These sites are very complex (read: keen on your identity) and require
2074 # minimal interference.
2075 #----------------------------------------------------------------------------
2076 {fragile}
2077 .office.microsoft.com
2078 .windowsupdate.microsoft.com
2079 #MASTER# PROBLEM URL: http://metrics.apple.com 10/11/06
2080 # too broad: .apple.com
2081 www.apple.com
2082 store.apple.com
2083 images.apple.com
2084 #MASTER# REMARKS: Actions Tracker 1293057 09/02/06
2085 .update.microsoft.com
2086 #MASTER# REMARKS: Various reports 09/16/06. This site also requires pop-ups.
2087 mail.google.*
2088
2089 #----------------------------------------------------------------------------
2090 # Shopping and banking sites - allow cookies and pop-ups
2091 #----------------------------------------------------------------------------
2092 #MASTER# REMARKS: This section not checked 10/11/06 HB
2093 {shop}
2094 .quietpc.com
2095 .worldpay.com   # for quietpc.com
2096 .jungle.com
2097 .dabs.com
2098 .overclockers.co.uk
2099 .db24.de
2100 .ebay.*
2101 .mobile.de
2102 www.fondationlejeu.com
2103 www.techtv.com
2104 .mywebgrocer.com
2105
2106 #----------------------------------------------------------------------------
2107 # Subscription sites (with credible privacy policy) - allow permanent cookies
2108 #----------------------------------------------------------------------------
2109 {-session-cookies-only}
2110 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
2111 .nytimes.com/
2112 #MASTER# PROBLEM-URL: http://www.volkskrant.nl/
2113 .volkskrant.nl/
2114
2115 #----------------------------------------------------------------------------
2116 # These sites require pop-ups, so don't use the unconditional filters.
2117 #----------------------------------------------------------------------------
2118 {allow-popups}
2119 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
2120 www.aprilbarrows.com/discography\.html$
2121 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
2122 .nvidia.com
2123 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
2124 www*.chathouse.com/games/
2125 #MASTER# PROBLEM-URL: http://www.bild.de/
2126 .bild.t-online.de
2127 #MASTER# PROBLEM-URL: http://www.netflix.com/
2128 .netflix.com
2129 #MASTER# PROBLEM-URL: http://my.aol.com/
2130 my.aol.com
2131 #MASTER# PROBLEM-URL: http://www.cnn.com/
2132 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
2133 i.cnn.net/cnn/.*/clickability/button
2134 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
2135 .rosettaproject.org
2136 #MASTER# PROBLEM-URL: http://www.quantum.com requires popups for downloads, etc. 09/11/06
2137 .quantum.com
2138 #MASTER# PROBLEM-URL: http://www.liberation.fr 11/23/06 Actions tracker
2139 .liberation.fr
2140
2141 #----------------------------------------------------------------------------
2142 # Sometimes (i.e. often!) fast-redirects catches things by mistake
2143 #----------------------------------------------------------------------------
2144 {-fast-redirects}
2145 # Sticky Actions = -fast-redirects
2146 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
2147 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
2148 # URL = http://www.google.com/search?q=foo
2149 .google.*
2150 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
2151 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
2152 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
2153 .speedfind.de
2154 #MASTER# PROBLEM-URL: http://www.nytimes.com/
2155 .nytimes.com
2156 #MASTER# REMARKS: Disable fast-redirects for all of yahoo.com/.
2157 #MASTER# REMARKS: Apparently we can't keep up with maintaining more precise exceptions.
2158 # URL = http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
2159 #MASTER# REMARKS: Reported in support request #1635354.
2160 # URL = http://us.rd.yahoo.com/reg/login1/lisu/login/uk/ym/*http://edit.europe.yahoo.com/c onfig/login?.tries=1&.src=ym&.md5=&.hash=&.js=1&.last=&...kP=Y&.done=http://mail .yahoo.com&.pd=ym_ver=0&c=&login=XXX&passwd=XXX&.persistent =&.hash=1&.md5=1.yahoo.com/
2161 #MASTER# REMARKS: Reported in support request #1802365.
2162 .yahoo.com/
2163 # URL = http://validator.w3.org/check
2164 .w3.org
2165 #MASTER# PROBLEM-URL: http://www.ask.com/
2166 .directhit.com
2167 #MASTER# PROBLEM-URL: http://www.zagats.com/
2168 .zagats.com
2169 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
2170 #MASTER# PROBLEM-URL: http://www.msn.com/
2171 # URL = http://www.passport.com/Consumer/default.asp?lc=1033&msppchlg=1&mspplogin=
2172 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
2173 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
2174 login.passport.com/logout\.(asp|srf)\?
2175 #MASTER# PROBLEM-URL: http://www.fileplanet.com
2176 download.com.com/redir\?
2177 www.fileplanet.com/redir\.asp\?
2178 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
2179 .edu
2180 #MASTER# PROBLEM-URL: http://web.archive.org
2181 # URL = http://web.archive.org/web/19970715180251/http://www.gmd.de/
2182 .archive.org
2183 # URL = http://www.guenstiger.de/gt/link.asp?url=http://www.edv-supermarkt.de&source=produkt=238284&USID=00086443917155&hnr=2199&pnr=238284&ppr=158,00
2184 www.guenstiger.de
2185 # URL = http://anon.free.anonymizer.com/http://www.privoxy.org/
2186 .anonymizer.com
2187 # URL = http://www.mailtothefuture.com/public/logon?http://www.mailtothefuture.com/
2188 www.mailtothefuture.com
2189 #MASTER# PROBLEM-URL: http://support.microsoft.com/default.aspx?scid=KB;en-us;q219110
2190 support.microsoft.com/
2191 # URL = http://www.alexa.com/data/details/traffic_details?q=blogspot&url=http://www.blogalia.com
2192 .alexa.com
2193 # URL = http://www.translate.ru/url/tran_url.asp?lang=es&url=http%3A%2F%2Fos2progg.by.ru%2Findex.shtml&direction=rs&template=General&cp1=NO&cp2=NO&autotranslate=on&transliterate=on&psubmit2.x=68&psubmit2.y=12
2194 www.translate.ru/url/
2195 # URL = http://schneegans.de/sv/?url=http%3A%2F%2Fwww.freebsd.org%2F&schema=%28Detect+automatically%29&encoding=%28Detect+automatically%29&htmlcomp=%28Detect+automatically%29
2196 schneegans.de/
2197 # URL = http://config.privoxy.org/edit-actions-submit?f=user..&redirect_mode=http%3A%2F%2Fwww.privoxy.org%2F
2198 config.privoxy.org/
2199 # URL = http://users.wsj.com/lmda/do/checkLogin?mg=evo-wsj&url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB117313867582027623.html
2200 .wsj.com/lmda/do/checkLogin
2201 #MASTER# REMARKS: As we already have five other PROBLEM-URLs that contain '?url=',
2202 #MASTER# REMARKS: it might make sense to allow '/.*?url=' in general
2203 # URL = http://del.icio.us/url/check?url=http%3A%2F%2Fwww.privoxy.org
2204 del.icio.us/
2205 # URL = http://calgary.ctv.ca/servlet/RTGAMArticleHTMLTemplate/B/20070615/goexpo?brand=generic&hub=&tf=CFCNPlus/generic/hubs/frontpage.html&cf=CFCNPlus/generic/hubs/frontpage.cfg&slug=goexpo&date=20070615&archive=CFCNPlus&ad_page_name=&nav=home&subnav=fullstory&site_cfcn=http://calgary.ctv.ca
2206 .ctv.ca/.*&site_cfcn=http://
2207 # URL = http://memberservices.informit.com/checkLogin.ashx?partner=8&r=http%3a%2f%2fwww.informit.com%2farticles%2farticle.asp%3fp%3d766375%26seqNum%3d1
2208 .informit.com/.*&r=http%3a%2f%2f
2209 # URL = http://access.adobe.com/access/getStatus.do?jobid=&srcPdfUrl=http://cups.cs.cmu.edu/soups/2007/proceedings/p41_clark.pdf&convertTo=html&visuallyImpaired=preferhtml&preferHTMLReason=&platform=&comments=&starttime=1187362172109
2210 access.adobe.com/access/getStatus.do\?jobid=&srcPdfUrl=
2211 # URL = http://view.samurajdata.se/ps.php?url=http%3A%2F%2Fcups.cs.cmu.edu%2Fsoups%2F2007%2Fproceedings%2Fp41_clark.pdf&submit=View%21
2212 view.samurajdata.se/ps\.php\?url=
2213 # URL = http://www.blogger.com/navbar.g?targetBlogID=8919860543765866292&blogName=Kickin%27+the+Darkness&publishMode=PUBLISH_MODE_HOSTED&navbarType=BLUE&layoutType=LAYOUTS&homepageUrl=http%3A%2F%2Fblog.kickin-the-darkness.com%2F&searchRoot=http%3A%2F%2Fblog.kickin-the-darkness.com%2Fsearch
2214 .blogger.com/navbar\.g
2215 # URL = http://editors.dmoz.org/editors/editurl.cgi?url=http%3a//www.example.de/&cat=World/Deutsch/Computer/Hardware/Speichermedien
2216 .dmoz.org/editors/editurl\.cgi
2217 # URL = http://offer.ebay.de/ws/eBayISAPI.dll?stockphotourl=http%3A%2F%2Fi16.ebayimg.com%2F02%2Fc%2F02%2F88%2F21%2F5b_6.JPG&MfcISAPICommand=BinConfirm&fb=1&co_partnerid=&item=123456789112&quantity=1&input_bin=
2218 # URL = http://offer.ebay.de/ws/eBayISAPI.dll?maxbid=15%2C01&MfcISAPICommand=MakeBid&fromPage=284&stockphotourl=http%3A%2F%2Fi14.ebayimg.com%2F02%2Fc%2F00%2Fe9%2Fe1%2F2a_6.JPG&fb=2&co_partnerid=&item=123456789112&input_bid=
2219 .ebay.de/ws/eBayISAPI\.dll\?
2220 #MASTER# REMARKS: While this is a redirect, the token isn't part of the URL redirected to.
2221 # URL = http://www.amazon.com/gp/redirect.html/ref=cm_plog_item_link/105-3659773-0844420?ie=UTF8&location=http%3A%2F%2Fjoltawards.com%2F2007%2F&token=A07736D870C02EF10CB13BCC8A33C302F689BBBA
2222 .amazon.com/gp/redirect.html/.*location.*&token
2223 # URL = http://en.groundspring.org/EmailNow/pub.php?module=WebSignup&cmd=thankyou&gotoUrl=http%3A%2F%2Fwww.freebsdfoundation.org&gotoText=Return+to+Home+Page&listNames=The+FreeBSD+Foundation+Mailing+List
2224 .groundspring.org/
2225 # URL = http://www1.landsend.de/pp/undefined/images/error.gif?onerr=true&ts=1227969386837&file=http%3A//s7.landsend.com/is-viewers/dhtml/include/sj_textloader.js%3Fver%3Dle.1&line=0&msg=Script%20error.&sid=
2226 .landsend.de/
2227 # URL = http://www.youtube.com/swf/l.swf?swf=http%3A//s.ytimg.com/yt/swf/cps-vfl68942.swf&video_id=2cpd6rHIfyA&rel=1&showsearch=1&eurl=&iurl=http%3A//i3.ytimg.com/vi/2cpd6rHIfyA/hqdefault.jpg&sk=5E3I2RCcOLknk1qyI_JgVVnb8FKwgpHzC&use_get_video_info=1&load_modules=1&fs=1&hl=en
2228 .youtube.com/swf/.*swf=
2229 # URL = http://redbot.org/?uri=http%3A//apache.org/
2230 .redbot.org/
2231 # URL = http://webcache.googleusercontent.com/custom?hl=en&domains=library.gnome.org&sitesearch=library.gnome.org&q=cache:8yGDJ1YpefcJ:http://library.gnome.org/devel//gtk/2.20/GtkLabel.html+gtk_label_set_text+escape&ct=clnk
2232 webcache.googleusercontent.com/
2233 # URL = http://webcache.googleusercontent.com/search?q=cache:kZYcDFibjHcJ:https://grepular.com/Abusing_HTTP_Status_Codes_to_Expose_Private_Information+inurl:https://grepular.com/Abusing_HTTP_Status_Codes_to_Expose_Private_Information&hl=en&strip=1
2234 .googleusercontent.com/.*=cache:
2235 # URL = http://maps.googleapis.com/maps/api/js/AuthenticationService.Authenticate?1shttp%3A%2F%2Fwww.wunderground.com%2Fcgi-bin%2Ffindweather%2FgetForecast%3Fbrand%3Dwxmap%26query%3D42.649601%2C-88.298500%26zoom%3D8%26theprefset%3D531051599999WS%26theprefvalue%3DME0041&2sgme-weatherunderground&3swxmap&5e1&callback=_xdc_._9er073&token=129358
2236 .googleapis.com/
2237 # URL = http://www.google.com.au/sorry/?continue=http://www.google.com.au/search%3Fhl%3Den%26tbo%3Dd%26output%3Dsearch%26sclient%3Dpsy-ab%26q%3Dnew%2Bcars%26btnG%3D
2238 .google./sorry/\?continue?=
2239 # URL = http://www.microsofttranslator.com/bv.aspx?from=ru&to=en&a=http://ru.wikipedia.org/wiki/Privoxy
2240 .microsofttranslator.com/
2241 # URL = http://www.facebook.com/plugins/like.php?locale=de_DE&href=http%3A%2F%2Fwww.spiegel.de%2Fpolitik%2Fausland%2Fnsa-und-britischer-geheimdienst-knacken-systematisch-verschluesselung-a-920710.html&layout=standard&show_faces=false&width=480&action=recommend&font=verdana&colorscheme=light&height=22
2242 .facebook.com/plugins/like.php
2243 # URL = http://creativecommons.org/choose/zero/confirm?license-class=zero&name=...&actor_href=http%3A%2F%2Fexample.org%2F&work_title=...&work_jurisdiction=DE&confirm=confirm&understand=confirm&lang=de&field1=weiter
2244 creativecommons.org/
2245 # URL = http://ixquick-proxy.com/do/spg/proxy?ah=&c=hnf&rid=LHLOLMSTPRKK&proxiedformtype=&q=%22lord+lucan%22&sp=19f738b4691d795804a6bc60c5b2c766&ts=MTQxMjg5NTcxNw%3D%3D&u=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FJohn_Bingham%2C_7th_Earl_of_Lucan&rpos=1&l=english_uk&cat=web&zst=1412895717.21&znt=1412895717.2125&rl=NONE&hlq=https%3A%2F%2Fstartpage.com%2Fdo%2Fsearch&mtppabp=1&mtppcat=web&mtppcmd=process_search&mtppenginecount=1&mtppflag_ac=0&mtpplanguage=english_uk&udata=e9a958f0a1bae930ec8f60fdef42ceb3&/file.gz
2246 ixquick-proxy.com/
2247 # URL = http://yandex.ru/showcaptcha?cc=1&retpath=http%3A//yandex.ru/yandsearch%3Ftext%3Dgeli%2Bfreebsd%26lr%3D87%26p%3D3_...e690efd1ab5a14671c2362ea59
2248 yandex.ru/.*&retpath=http
2249 # URL = http://mc.yandex.ru/clmap/10630330?page-url=http%3A%2F%2Fyandex.ru%2Fshowcaptcha%3Fcc%3D1%26retpath%3Dhttp%253A%2F%2Fyandex.ru%2Fyandsearch%253Ftext%253Dgeli%252Bfreebsd%2526lr%25...faf28502&pointer-click=rn%3A121707220%3Ax%3A17873%3Ay%3A46420%3At%3A54%3Ap%3APA%5Db%5C%5BFA2A%5D2b%5C%5B1&browser-info=rqnl%3A2%3Ast%3A1423317904
2250 .yandex.ru/.*\?page-url=
2251 # URL = http://disqus.com/forums/daemonicdispatches/get_num_replies.js?url8=http%3A%2F%2Fwww.daemonology.net%2Fblog%2F2014-12-25-when-security-goes-right.html%23disqus_thread&
2252 disqus.com/
2253 # URL = http://www.youtube.com/embed/blafasel?feature=oembed&enablejsapi=1&origin=http://www.example.com&wmode=opaque
2254 .youtube.com/.*origin=http
2255 # URL = https://oss-fuzz.com/login?dest=https%3A%2F%2Foss-fuzz.com%2Ftestcase-detail%2F5727799779524608
2256 #MASTER# REMARKS: Only match based on the host so the test works even without https-inspection enabled.
2257 oss-fuzz.com/
2258 # URL = https://sourcepoint.vice.com/mms/choice_select?choice_id=523912&requestUUID=a98ca09e-5c1f-4aa4-b28e-ab5b26150859-1591162630861&href=https%3A%2F%2Fwww.vice.com%2Fen_us%2Farticle%2F7kpb9a%2Fhow-to-protest-racist-violence-instead-of-posting-blackout-tuesday-square
2259 sourcepoint.vice.com/
2260 # URL = https://collector.githubapp.com/github/page_view?dimensions[page]=https%3A%2F%2Fgithub.com%2Fopenbsd%2Fsrc%2Fblob%2F5ecdd0566b441ae0b99e73f410875e05dc0fa5b7%2Flib%2Flibc%2Finclude%2Fthread_private.h&dimensions[title]=src%2Fthread_private.h%20at%205ecdd0566b441ae0b99e73f410875e05dc0fa5b7%20%C2%B7%20openbsd%2Fsrc%20%C2%B7%20GitHub&dimensions[referrer]=https%3A%2F%2Fgithub.com%2Fopenbsd%2Fsrc%2Fsearch%3Fq%3D_MUTEX_LOCK%26unscoped_q%3D_MUTEX_LOCK&dimensions[user_agent]=Mozilla%2F5.0%20(X11%3B%20ElectroBSD%20amd64%3B%20rv%3A68.0)%20Gecko%2F20100101%20Firefox%2F68.0&dimensions[screen_resolution]=1366x768&dimensions[pixel_ratio]=1&dimensions[browser_resolution]=1362x636&dimensions[tz_seconds]=7200&dimensions[timestamp]=1591515169218&dimensions[referrer]=&dimensions[request_id]=22CA%3AE6F6%3A271ED2A%3A3839C5D%3A5EDB8295&dimensions[visitor_id]=5184934927058829974&dimensions[region_edge]=ams&dimensions[region_render]=ams&dimensions[user_id]=929183&dimensions[user_login]=openbsd&dimensions[repository_id]=66966208&dimensions[repository_nwo]=openbsd%2Fsrc&dimensions[repository_public]=true&dimensions[repository_is_fork]=false&dimensions[repository_network_root_id]=66966208&dimensions[repository_network_root_nwo]=openbsd%2Fsrc&dimensions[repository_explore_github_marketplace_ci_cta_shown]=false&&measures[performance_timing]=1-172-172-13996-12735-12426-12394-3858-172-172-172--13996-0---172-3853-3412-0--&&&dimensions[cid]=268614077.1591515169
2261 collector.githubapp.com/
2262 # URL = https://consentmanager.mgr.consensu.org/delivery/pixel.php?id=11319&did=0&cfdid=0&t=pv&h=https%3A%2F%2Fsourceforge.net%2Fp%2Fijbswa%2Ffeature-requests%2F535%2F&o=1591880198219&l=EN&lv=0&d=0&ct=14&e=&e2=&e3=&i=&sv=0&dv=0
2263 .consensu.org/delivery/pixel\.php
2264 # URL = https://de.wikipedia.org/beacon/event?%7B%22event%22%3A%7B%22source_page_id%22%3A1501869%2C%22source_namespace%22%3A0%2C%22source_title%22%3A%22Primat%22%2C%22source_url%22%3A%22https%3A%2F%2Fde.wikipedia.org%2Fwiki%2FPrimat%22%2C%22page_title%22%3A%22Primaten%22%2C%22page_id%22%3A4022%2C%22page_namespace%22%3A0%7D%2C%22schema%22%3A%22VirtualPageView%22%2C%22webHost%22%3A%22de.wikipedia.org%22%2C%22wiki%22%3A%22dewiki%22%2C%22revision%22%3A17780078%7D;
2265 .wikipedia.org/
2266 # URL = http://platform.twitter.com/widgets/widget_iframe.2d7d9a6d04538bf11c7b23641e75738c.html?origin=https%3A%2F%2F9gag.com
2267 .twitter.com/.*origin=http
2268 # URL = http://issue.freebsdfoundation.org/html5_viewer/index.html?issue_id=673890&publication_id=&parentUrl=https%3A%2F%2Fissue.freebsdfoundation.org%2Fpublication%2F%3Fi%3D673890
2269 issue.freebsdfoundation.org/
2270 # URL = http://ltfl.librarything.com//forlibraries/widget_response.php?id=1477&isbns=9780062279194&divs=ltfl_tagbrowse%2Cltfl_related%2Cltfl_similars%2Cltfl_series%2Cltfl_awards&lccn=&oclc=&t=1602093207304&systype=zones&pagetype=full&catalog_url=https%3A%2F%2Fkatalog.stbib-koeln.de%2Falswww2.dll%2FAPS_PRESENT_BIB%3FStyle%3DPortal3%26SubStyle%3D%26Lang%3DGER%26ResponseEncoding%3Dutf-8%26no%3DT011006751%26Via%3DZ3950%26View%3DAnnotated%26Parent%3DObj_482831602093137%26SearchBrowseList%3DObj_482831602093137%26SearchBrowseListItem%3D71831%26BrowseList%3DObj_482831602093137%3FStyle%3DPortal3%26SubStyle%3D%26Lang%3DGER%26ResponseEncoding%3Dutf-8%26BrowseListItem%3D71831%26QueryObject%3DObj_482811602093136&title=Think%20like%20a%20freak&author=Levitt%2C%20Steven%20D.&accession=T011006751&locations=&widget_response_loaded_after=764&container_widthAAS={%22body%22:{%22cw%22:1350,%22ch%22:946},%22ltfl_tagbrowse%22:{%22cw%22:614,%22ch%22:0},%22ltfl_related%22:{%22cw%22:614,%22ch%22:0},%22ltfl_similars%22:{%22cw%22:614,%22ch%22:0},%22ltfl_series%22:{%22cw%22:614,%22ch%22:0},%22ltfl_awards%22:{%22cw%22:614,%22ch%22:0}}
2271 .librarything.com/
2272 # URL = https://secure.gravatar.com/avatar/9032194c044d0e96c3bdabba35aff1e9?r=pg&d=https%3A%2F%2Fa.fsdn.com%2Fallura%2Fnf%2F1607031117%2F_ew_%2Ftheme%2Fsftheme%2Fimages%2Fsandiego%2Ficons%2Fdefault-avatar.png
2273 # https://s.gravatar.com/avatar/dbf187b5b45c400649ed7f946e8f00d6?s=220&d=https%3A%2F%2Flegacy.gitbook.com%2Fassets%2Fimages%2Favatars%2Fuser.png
2274 .gravatar.com/
2275 # URL = https://cas.fsf.org/login?service=https%3A%2F%2Fdirectory.fsf.org%2Fwiki%3Ftitle%3DSpecial%3AUserLogin%26returnto%3DPrivoxy
2276 .fsf.org/
2277 # URL = https://consent2.ksta.de/wrapper/tcfv2/v1/gdpr/native-message?requestUUID=56b465b7-5da2-44f0-83aa-aa50687d364f&hasCsp=true&env=prod&consentLanguage=browserDefault&body=%7B%22accountId%22%3A995%2C%22requestUUID%22%3A%2256b465b7-5da2-44f0-83aa-aa50687d364f%22%2C%22propertyHref%22%3A%22https%3A%2F%2Fwww.ksta.de%2Fhtml%2Fdumont-consent%2Findex.html%3Fparam%3DeyJyZWRpcmVjdFVybCI6Ii9yYXRnZWJlci9kaWdpdGFsL3BsYXR0Zm9ybS1tb29kbGUtc3RyZWlrdC11bnphZWhsaWdlLXNjaHVlbGVyLWluLW5ydy1rb2VubmVuLWFtLW1vbnRhZy1uaWNodC1hcmJlaXRlbi0zNzkxMzY0MD9jYj0xNjEwMzY1Njc4NjY3IiwicmVmZXJyZXIiOiIifQ%3D%3D%22%2C%22euconsent%22%3Anull%2C%22meta%22%3A%22%7B%5C%22mmsCookies%5C%22%3A%5B%5C%22_sp_enable_dfp_personalized_ads%3Dfalse%3B%5C%22%5D%2C%5C%22resolved%5C%22%3Anull%7D%22%2C%22clientMMSOrigin%22%3A%22https%3A%2F%2Fconsent2.ksta.de%22%2C%22targetingParams%22%3A%22%7B%5C%22mode%5C%22%3A%5C%22dumont-consent-message%5C%22%7D%22%2C%22campaignEnv%22%3A%22prod%22%2C%22pubData%22%3A%7B%7D%7D
2278 .ksta.de/
2279 # URL = https://www.linkedin.com/authwall?trk=bf&trkInfo=bf&originalReferer=https://www.linkedin.com/in/blafasel&sessionRedirect=https%3A%2F%2Fwww.linkedin.com%2Fin%2blafasel
2280 .linkedin.com/
2281 # URL = https://www.golem.de/sonstiges/zustimmung/auswahl.html?from=https%3A%2F%2Fwww.golem.de%2Fnews%2Flinux-rust-wandert-ins-system-2102-154041.html
2282 .golem.de/
2283 # URL = https://idp.springer.com/authorize?response_type=cookie&client_id=springerlink&redirect_uri=http%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2F978-3-319-00948-3_4
2284 idp.springer.com/
2285 # URL = https://login.microsoftonline.com/common/oauth2/authorize?client_id=00000006-0000-0ff1-ce00-000000000000&response_mode=form_post&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DPVPUdMPDQIWzMIsGOsfeSSwP9nHxMVzXDpwiEjukrVUCKS8OhdDdPhwWoL-M6sb8ft25tA0k8CUQIi-GyfgdmiNoSPRaGCiGLfB8TnvS5OR-1ri16BlPJrQzzv9yBIv_IkuFid0AvW5PYlXFpg1kgByUkEkVfnMK1_bOTPU7CpI&nonce=637504532331900462.Y2Y0YzJhYjEtYTdkMS00NTI1LTgxNDMtYjBhY2NmNWQ4MDg4NWQ5ODY4ZjItMzBjZi00Nzk5LTgzMDAtOGNmMjg5ZThhZmM1&redirect_uri=https%3A%2F%2Fportal.microsoft.com%2Flanding&ui_locales=pl-PL&mkt=pl-PL&client-request-id=843ff515-5e48-4fa8-a22b-edd72858073a&x-client-SKU=ID_NET45&x-client-ver=6.6.0.0
2286 .microsoftonline.com/
2287 # URL = https://www.zeit.de/zustimmung?url=https%3A%2F%2Fwww.zeit.de%2F2021%2F46%2Fchristian-drosten-coronavirus-virologie-pandemie-wissenschaft-impfung%2Fseite-4
2288 .zeit.de/zustimmung
2289 # URL = https://07.hagalil.com/www/delivery/ajs.php?zoneid=14&cb=35782002576&charset=UTF-8&loc=https%3A//www.hagalil.com/2021/12/rechtes-von-a-z-5/
2290 .hagalil.com/
2291 # URL = https://twitter.com/mariowitte/status/1479481418887663624?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1479481418887663624%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Ffuturezone.at%2Fprodukte%2Fcanon-toner-kopierschutz-gefaelscht-chips-chipmangel%2F401865218
2292 twitter.com/.*/status/
2293 #MASTER# REMARKS: There are lots of Nitter instances with onion addresses ...
2294 # URL = http://vfaomgh4jxphpbdfizkm5gbtjahmei234giqj4facbwhrfjtcldauqad.onion/mariowitte/status/1479481418887663624?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1479481418887663624%7Ctwgr%5E%7Ctwcon%5Es1_&ref_url=https%3A%2F%2Ffuturezone.at%2Fprodukte%2Fcanon-toner-kopierschutz-gefaelscht-chips-chipmangel%2F401865218
2295 .onion/.*/status/
2296 # URL = https://admin.gandi.net/dashboard/api/v5/login?redirect=https%3A%2F%2Fadmin.gandi.net%2Fdashboard%3Flocale%3Dde
2297 .gandi.net/
2298 # URL = https://launchpad.net/+openid-callback?starting_url=https%3A%2F%2Fanswers.launchpad.net%2Fdvdbackup%2F%2Bquestion%2F702512&janrain_nonce=2022-08-03T13%3A11%3A13ZnhmdLK...
2299 launchpad.net/
2300 # URL = https://consent.youtube.com/m?continue=https%3A%2F%2Fwww.youtube.com%2Fplaylist%3Flist%3DPLeF8ZihVdpFfttOtsot131byFrDVztt8T%26cbrd%3D1%26cbrd%3D1&gl=AT&m=0&pc=yt&hl=en&src=1
2301 consent.youtube.com/
2302 # URL = https://services.akteneinsichtsportal.de/oauth/authorize?client_id=ae-portal&redirect_uri=https%3A%2F%2Fwww.akteneinsichtsportal.de%2Fweb%2Fguest%2Faktenuebersicht&response_type=code&scope=read&state=0yT8EN
2303 services.akteneinsichtsportal.de/
2304 # URL = https://bpe-online.de/wp-content/plugins/pdf-viewer-for-elementor/assets/pdfjs/web/viewer.html?file=https://bpe-online.de/wp-content/uploads/2020/11/HarmReductionLeitfadenzumrisikoarmenAbsetzenvonPsychopharmaka2EdOnline.pdf&embedded=true
2305 /wp-content/plugins/pdf-viewer-for-elementor
2306 # URL = https://syndication.twitter.com/i/jot/embeds?l=%7B%22_category_%22%3A%22tfw_client_event%22%2C%22triggered_on%22%3A1709138733184%2C%22event_namespace%22%3A%7B%22client%22%3A%22tfw%22%2C%22page%22%3A%22tweet%22%2C%22action%22%3A%22seen%22%2C%22section%22%3A%22main%22%2C%22component%22%3A%22privacy-notice%22%7D%2C%22context%22%3A%22horizon%22%2C%22client_version%22%3A%222615f7e52b7e0%3A1702314776716%22%2C%22dnt%22%3Afalse%2C%22widget_id%22%3A%22twitter-widget-6%22%2C%22widget_origin%22%3A%22https%3A%2F%2Fwww.danisch.de%2Fblog%2F2024%2F01%2F31%2Fwas-ist-faschismus%2F%22%2C%22widget_frame%22%3A%22false%22%2C%22widget_partner%22%3A%22%22%2C%22widget_site_screen_name%22%3A%22%22%2C%22widget_site_user_id%22%3A%22%22%2C%22widget_creator_screen_name%22%3A%22%22%2C%22widget_creator_user_id%22%3A%22%22%2C%22widget_iframe_version%22%3A%22da31e07063cce%3A1708130301554%22%2C%22item_ids%22%3A%5B%221752320689309143351%22%5D%2C%22item_details%22%3A%7B%221752320689309143351%22%3A%7B%22item_type%22%3A0%7D%7D%7D
2307 syndication.twitter.com/
2308
2309 {+redirect{s@.*url=@http://@} -block}
2310 # Sticky Actions = +redirect -block
2311 # URL = http://go.eniro.dk/lg/ni/http:/eas8.emediate.eu/eas?camp=79;ty=ct;EASLink=http://www.bt.dk?http://redirect.metropol.dk/cgi-bin/redir.pl?url=www.bt.dk
2312 # URL = http://eas8.emediate.eu/eas?camp=79;ty=ct;EASLink=http://www.bt.dk?http://redirect.metropol.dk/cgi-bin/redir.pl?url=www.bt.dk
2313 # Redirected URL = http://go.eniro.dk/lg/ni/http:/eas8.emediate.eu/eas?camp=79;ty=ct;EASLink=http://www.bt.dk?http://redirect.metropol.dk/cgi-bin/redir.pl?url=www.bt.dk
2314 # Redirect Destination = http://www.bt.dk
2315 # Redirected URL = http://eas8.emediate.eu/eas?camp=79;ty=ct;EASLink=http://www.bt.dk?http://redirect.metropol.dk/cgi-bin/redir.pl?url=www.bt.dk
2316 # Redirect Destination = http://www.bt.dk
2317 go.eniro.dk/.*EASLink=http://.*url=(?!<=http:)
2318 .emediate.eu/.*EASLink=http://.*url=(?!<=http:)
2319
2320 #----------------------------------------------------------------------------
2321 # No filtering for sourcecode or other automatically parsed content
2322 #----------------------------------------------------------------------------
2323 {-filter -prevent-compression}
2324 # Sticky Actions = -filter -prevent-compression
2325 # URL = http://ijbswa.cvs.sourceforge.net/ijbswa/current/
2326 .cvs.
2327 /.*(cvs(view|web)|viewcvs)
2328 #MASTER# REMARKS: The same for Subversion
2329 # URL = http://svn.sourceforge.net/
2330 .svn.
2331 .websvn.
2332 /(.*/)?svn/
2333 #MASTER# REMARKS: Jeez, could you please stay with one of them?
2334 # URL = http://liveupdate.symantec.com/ennlu.x86
2335 liveupdate.symantec.com
2336 liveupdate.liveupdatesymantec.com
2337 liveupdate.symantecliveupdate.com
2338 # URL = http://www.bookmarklets.com/
2339 .bookmarklets.com
2340 # URL = http://www.squarefree.com/bookmarklets/
2341 .squarefree.com/bookmarklets/
2342 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
2343 swquery.apple.com
2344 swscan.apple.com
2345 #MASTER# REMARKS: These are various US DSL speed tests sites, where MIME is wrong
2346 # URL = http://atl.speakeasy.net/300k
2347 .speakeasy.net/\d+k
2348 # URL = http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=185033
2349 .debian.org
2350 #MASTER# DONT-VERIFY
2351 #MASTER# REMARKS: Popular bug-tracking system - likely to contain code
2352 bugzilla.
2353 .tldp.org
2354 #MASTER# REMARKS: mail should not be filtered 09/18/06
2355 webmail.
2356 #MASTER# REMARKS: all the world is wikified 09/02/06. Generic wiki un-filterers.
2357 .wiki*.
2358 .*wiki.
2359 /.*wiki/
2360 #MASTER# REMARKS Actionsfile feedback item #2299717 2008-11-16
2361 # URL = http://en.wiktionary.org/
2362 .wiktionary.org/
2363 #MASTER# REMARKS: protect some google projects from accidental JS/HTML tampering, etc
2364 maps.google.
2365 .google.com/(calendar|reader)
2366 #MASTER# REMARKS: A lot of code and docs on these sites:
2367 code.
2368 developer.
2369 .mozdev.org
2370 .mozilla.org
2371 .perl.org
2372 .cpan.org
2373 .webdeveloper.com
2374 .ibm.com/developerworks
2375 .apache.org/docs
2376 .comptechdoc.org
2377 .webmonkey.com
2378 .webreference.com
2379 docs.sun.com
2380 java.sun.com
2381 .thescripts.com
2382 .php.net
2383 .phpdeveloper.org
2384 .oreillynet.com/pub
2385 .devshed.com
2386 .htmlgoodies.com
2387 .javascript.com
2388 javascript.internet.com
2389 .w3schools.com
2390 .devguru.com
2391 javascriptkit.com
2392 .xulplanet.com
2393 .perl.com/language/newdocs
2394 # URL = http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?revision=238391&view=markup
2395 .freebsd.org
2396 # URL = http://fxr.watson.org/fxr/source/geom/geom_event.c
2397 .watson.org
2398 .netbsd.org
2399 .openbsd.org
2400 .dragonflybsd.org
2401 .freedesktop.org
2402 .gnu.org
2403 .fedoraproject.org
2404 .userscripts.org
2405 #MASTER# REMARKS: Bug trackers like Flyspray and Mailinglist interfaces like Mailman:
2406 /(.*/)?flyspray/
2407 /(.*/)?mail(man|archive|inglists?)/
2408 bugs.
2409 #MASTER# REMARKS: Actionsfile tracker 1555909 09/17/06, various problems with cpu and logging in.
2410 quoka.de
2411
2412 #----------------------------------------------------------------------------
2413 # Innocent images in standard banner sizes found here:
2414 #----------------------------------------------------------------------------
2415 {-filter{banners-by-size}}
2416 # Sticky Actions = -filter{banners-by-size}
2417 # URL = http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244
2418 .pricegrabber.com/search_getprod.php
2419 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
2420 # URL = http://www.cnn.com/WORLD/
2421 .cnn.com
2422 #MASTER# REMARKS: 120x90 content images
2423 # URL = http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
2424 .gamespot.com/gamespot
2425 #MASTER# PROBLEM-URL: http://www.wral.com/ 10/14/06
2426 www.wral.com
2427 #MASTER# PROBLEM-URL: http://www.cartoonnetwork.com/ 10/15/06
2428 .cartoonnetwork.com/
2429 # URL = http://www.anybrowser.org/campaign/
2430 .anybrowser.org
2431 # URL = http://images.google.de/images?q=cookie+monster&svnum=10&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=40&sa=N
2432 images.google.
2433 # URL =  http://www.pbs.org/wgbh/pages/roadshow/series/highlights/2003/albuquerque/index.html
2434 .pbs.org/.*/roadshow/
2435 # URL = http://objects.povworld.org/cat/Food/
2436 objects.povworld.org/cat/
2437 # URL = http://www.xach.com/gimp/tutorials/tiles.html
2438 www.xach.com/gimp/
2439 #MASTER# REMARKS: The destination map at the bottom of the page.
2440 # URL = http://www.mapquest.com/directions/main.adp?go=1&do=nw&ct=NA&1y=US&1a=255+w+88+st&1p=&1c=&1s=&1z=10024&2y=US&2a=20+milltown+rd&2p=&2c=&2s=&2z=10509&lr=2
2441 .mapquest.com/directions/
2442 #MASTER# PROBLEM-URL: http://www.theonion.com/ 10/15/06
2443 #MASTER# REMARKS: A nasty "premercial" ad is required to enter this site.
2444 .theonion.com/content/
2445 # URL = http://www.pattilupone.net/gallery.html
2446 .pattilupone.net/gallery.html
2447 # URL = http://www.ambrosiasw.com/games/evn/desktops.html
2448 .ambrosiasw.com/
2449 # URL = http://oca.microsoft.com/en/Welcome.asp
2450 .microsoft.com
2451 # URL = http://javabog.dk/ijk/
2452 javabog.dk/ijk/
2453 #MASTER# REMARK: Per Debian bug report #319025 09/09/06
2454 .w3.org
2455 # URL = http://www.encyclopediadramatica.com/New_Zealand_Fail_Guy
2456 .encyclopediadramatica.com/
2457 # URL = http://www.ikea.com/us/en/catalog/products/00103102
2458 .ikea.com/
2459 # URL = http://www.froscon.de/en/projects.html
2460 .froscon.de/
2461 # URL = http://www.fsfe.org/en/supporters
2462 .fsfe.org/
2463 # URL = http://www.couchsurfing.com/mapsurf.html
2464 .couchsurfing.com/
2465 # URL = http://www.couchsurfing.org/mapsurf.html
2466 .couchsurfing.org/
2467 # URL = http://www.thinkgeek.com/tshirts-apparel/unisex/generic/
2468 .thinkgeek.com/
2469 # URL = http://www.dgb-tagungszentren.de/hattingen/unsere-extras
2470 .dgb-tagungszentren.de/
2471 # URL = http://creativecommons.org/licenses/
2472 creativecommons.org/
2473 # URL = http://kggp.de/Blogosphere/blog/2014/11/07/frankfurtmain-hessen-polizeibeamter-muss-sich-vor-gericht-verantworten/
2474 kggp.de/
2475 # URL = http://www.plasmaservice.de/interviews/interviews_kln/interview_koeln_christmann.htm
2476 .plasmaservice.de/
2477 # URL = http://www.black-mosquito.org/index.php/kein-mensch-ist-illegal-fight-racism-now-40-aufkleber.html
2478 .black-mosquito.org/
2479 # URL = https://freebsdfoundation.org/about-us/board-of-directors/
2480 freebsdfoundation.org/
2481 # URL = https://freiheitsfoo.de/2022/10/03/wahlplakat-show-nds-ltw-2022/
2482 .freiheitsfoo.de/
2483
2484 {-filter{banners-by-link}}
2485 # Sticky Actions = -filter{banners-by-link}
2486 # URL = http://www.encyclopediadramatica.com/Advertisement
2487 .encyclopediadramatica.com/
2488 # URL = https://www.eff.org/deeplinks/2022/03/eff-investigation-mystery-gps-tracker-supporters-car
2489 .eff.org/
2490
2491 #----------------------------------------------------------------------------
2492 # These don't work without the referrer information:
2493 #----------------------------------------------------------------------------
2494 {-hide-referrer}
2495 # Sticky Actions = -hide-referrer
2496 #MASTER# REMARKS: This section NOT checked 10/18/06 HB
2497 #MASTER# REMARKS: These are movie clips, linked from http://us.imdb.com
2498 .totaleclips.com
2499 #MASTER# REMARKS: Actions Tracker 1313157
2500 # URL = http://validator.w3.org/check?uri=referer
2501 validator.w3.org/check\?uri=referer
2502 #MASTER# REMARKS: Fixes Debian Bug #250407
2503 # URL = http://www.petitiononline.com/mod_perl/signed.cgi
2504 .petitiononline.com/mod_perl/signed.cgi
2505 #MASTER# REMARKS: Tracker bug report 1107806 09/26/06
2506 .telia.se
2507 #MASTER# REMARKS: XML validator that actually works.
2508 # URL = schneegans.de/sv/?url=referer
2509 schneegans.de/sv/\?url=referer
2510
2511 #----------------------------------------------------------------------------
2512 # These animated gifs are either useful or nice:
2513 #----------------------------------------------------------------------------
2514 {-deanimate-gifs}
2515 # Sticky Actions = -deanimate-gifs
2516 #MASTER# REMARKS: Wanted animations on ecards
2517 #MASTER# REMARKS: Leaving 10/18/06 though most animated seem flash now.
2518 # URL = http://www.care2.com/
2519 .care2.com
2520 .care-mail.com
2521 #MASTER# PROBLEM-URL: http://weather.chicagotribune.com/radar/station.asp?ID=LOT19&type=loop
2522 #MASTER# REMARKS: These are weather radar images. 10/18/06
2523 # URL = http://www.wunderground.com/radar/station.asp?ID=MPX19&type=loop&clutter=1
2524 .wunderground.com
2525 66.28.250.180/data/
2526 #MASTER# PROBLEM-URL: http://www.teamquest.com/html/gunther/laquiz.shtml
2527 .teamquest.com/gifs/gunther/
2528 #MASTER# REMARKS: 09/12/06 Art site, and ad-free
2529 .rubberslug.com
2530 #MASTER# REMARKS: Actionsfile feedback item #2040467, allow animated gifs from wikipedia.org
2531 .wikipedia.org/
2532
2533 #----------------------------------------------------------------------------
2534 # The "site-specifics" filter has special cures for problems found here:
2535 #----------------------------------------------------------------------------
2536 #MASTER# REMARKS: This section NOT checked 10/15/06 HB.
2537 {+filter{site-specifics}}
2538 # Sticky Actions = +filter{site-specifics}
2539 # URL = http://www.spiegel.de/static/js/flash-plugin.js
2540 .spiegel.de/static/js/flash-plugin\.js
2541 # URL = http://www.quelle-bausparkasse.de/
2542 .quelle-bausparkasse.de/$
2543 # URL = http://de.groups.yahoo.com/group/die-spinner/interrupt?st=2&ln=die-spinner&m=1&done=%2Fgroup%2Fdie-spinner%2Fmessage%2F416
2544 .groups.yahoo.com/group/
2545 # URL = http://www.nytimes.com/
2546 .nytimes.com/
2547
2548 #----------------------------------------------------------------------------
2549 # Content under these TLDs is most probably in character sets which the
2550 # demoronizer filter would mess up
2551 #----------------------------------------------------------------------------
2552 {-filter{demoronizer}}
2553 .jp
2554 .cn
2555 .tw
2556 .ru
2557 .kr
2558
2559 #----------------------------------------------------------------------------
2560 # Misc special rules:
2561 #----------------------------------------------------------------------------
2562 {-filter{content-cookies} -filter{webbugs}}
2563 # Sticky Actions = -filter{content-cookies} -filter{webbugs}
2564 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
2565 # URL = http://www.friendscout24.de/
2566 .friendscout24.de
2567 #MASTER# REMARKS: Explains how content cookies work
2568 # URL = http://www.webreference.com/js/column8/property.html
2569 .webreference.com/js/column8/property.html
2570
2571 {-filter{fun}}
2572 # Sticky Actions = -filter{fun}
2573 #MASTER# REMARKS: Don't change the filter code with itself ;-)
2574 # URL = http://www.privoxy.org/user-manual/filter-file.html
2575 /(.*/)?user-manual/filter-file.html
2576
2577 #{+filter{img-reorder} +filter{banners-by-link}}
2578 #MASTER# REMARKS: Temporarily decommissioning 10/15/06. Violates Cautious no filter policy. HB
2579 #MASTER# PROBLEM-URL: http://www.dn.se/
2580 #MASTER# REMARKS: Can't catch by size or location
2581 #www.dn.se
2582
2583 {-filter{img-reorder}}
2584 # Sticky Actions = -filter{img-reorder}
2585 #MASTER# REMARKS: Google images don't show up with img-reorder on
2586 #MASTER# REMARKS: Also images on finance.google.com 09/25/06
2587 # URL = http://images.google.com
2588 .google.
2589 #MASTER# PROBLEM-URL: http://wired.com 09/23/06
2590 # URL = http://wired.com
2591 /.*wired(\.com)?/
2592 .wired.com/
2593
2594 {-filter{js-annoyances}}
2595 # Sticky Actions = -filter{js-annoyances}
2596 #MASTER# REMARKS: No progress past main page without js-annoyances
2597 # URL = http://www.nasa.gov
2598 .nasa.gov
2599 #MASTER# REMARKS: Exclude per Debian bug report #377843
2600 # URL = http://www2.cnrs.fr/presse/communique/900.htm
2601 .cnrs.fr
2602 #MASTER# REMARKS: Exclude per Debian bug report #377843
2603 # URL = http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
2604 blogs.msdn.com
2605
2606 {-filter{unsolicited-popups}}
2607 # Sticky Actions = -filter{unsolicited-popups}
2608 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
2609 /.*mt.cgi$
2610 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
2611 # URL = http://www2.cnrs.fr/presse/communique/900.htm
2612 .cnrs.fr
2613 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
2614 # URL = http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
2615 blogs.msdn.com
2616
2617 {-filter{jumping-windows}}
2618 # Sticky Actions = -filter{jumping-windows}
2619 # URL = http://www.openstreetmap.org
2620 .openstreetmap.org
2621
2622 {+fast-redirects{check-decoded-url} -block}
2623 # Sticky Actions = +fast-redirects{check-decoded-url} -block
2624 #MASTER# REMARKS: Yahoo search results. Added 2007-01-19 fk
2625 #MASTER# REDIRECT-REFERRER: http://search.yahoo.com/search?p=privoxy
2626 # URL = http://rds.yahoo.com/_ylt=A0geuryczbBF._YAEmxXNyoA;_ylu=X3oDMTB2b2gzdDdtBGNvbG8DZQRsA1dTMQRwb3MDMQRzZWMDc3IEdnRpZAM-/SIG=11b3qg40n/EXP=1169301276/**http%3a//www.privoxy.org/
2627 rds.yahoo.com/
2628 # Redirected URL = http://rds.yahoo.com/_ylt=A0geuryczbBF._YAEmxXNyoA;_ylu=X3oDMTB2b2gzdDdtBGNvbG8DZQRsA1dTMQRwb3MDMQRzZWMDc3IEdnRpZAM-/SIG=11b3qg40n/EXP=1169301276/**http%3a//www.privoxy.org/
2629 # Redirect Destination = http://www.privoxy.org/
2630 #MASTER# REDIRECT-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html
2631 # URL = http://dw.com.com/redir?asid=0&astid=8&siteid=19&edid=107&destCat=33862&destURL=http%3A%2F%2Fdb.gamefaqs.com%2Fcomputer%2Fdoswin%2Ffile%2Fvampire_tmb_b.txt
2632 dw.com.com/redir\?
2633 # Redirected URL = http://dw.com.com/redir?asid=0&astid=8&siteid=19&edid=107&destCat=33862&destURL=http%3A%2F%2Fdb.gamefaqs.com%2Fcomputer%2Fdoswin%2Ffile%2Fvampire_tmb_b.txt
2634 # Redirect Destination = http://db.gamefaqs.com/computer/doswin/file/vampire_tmb_b.txt
2635 #MASTER# REMARKS: Action tracker 1593393. Added 2007-01-20.
2636 # URL = http://wzus.bloglines.com/r?t=a&d=us&s=bl&c=blen&ti=1&ai=51060&l=dir&o=0&sv=z6f537f5b&ip=971AC44B&u=http%3A%2F%2Fwww.skweezer.net%2Fbloglines%2Fskweeze.aspx%3F%26i%3Dd%26l%3Den%26r%3Dhttp%253A%252F%252Fwww.bloglines.com%252Fmyblogs_display%253Fsub%253D29302699%2526site%253D5382440%26url%3Dhttp%253A%252F%252Fpermalink.gmane.org%252Fgmane.linux.debian.devel.changes.unstable%252F97340
2637 # Redirected URL = http://wzus.bloglines.com/r?t=a&d=us&s=bl&c=blen&ti=1&ai=51060&l=dir&o=0&sv=z6f537f5b&ip=971AC44B&u=http%3A%2F%2Fwww.skweezer.net%2Fbloglines%2Fskweeze.aspx%3F%26i%3Dd%26l%3Den%26r%3Dhttp%253A%252F%252Fwww.bloglines.com%252Fmyblogs_display%253Fsub%253D29302699%2526site%253D5382440%26url%3Dhttp%253A%252F%252Fpermalink.gmane.org%252Fgmane.linux.debian.devel.changes.unstable%252F97340
2638 # Redirect Destination = http://www.skweezer.net/bloglines/skweeze.aspx?&i=d&l=en&r=http%3A%2F%2Fwww.bloglines.com%2Fmyblogs_display%3Fsub%3D29302699%26site%3D5382440&url=http%3A%2F%2Fpermalink.gmane.org%2Fgmane.linux.debian.devel.changes.unstable%2F97340
2639 .bloglines.com/r\?
2640 www.skweezer.net/bloglines
2641 # URL = http://media.fastclick.net/w/get.media?sid=4681&m=5&tp=6&url=http%3A//www.sciam.com/article.cfm%3FchanID%3Dsa003%26articleID%3DC7C87ECC-E7F2-99DF-39AEFF3D7D1A8CFB%26ref%3Drss
2642 # Redirected URL = http://media.fastclick.net/w/get.media?sid=4681&m=5&tp=6&url=http%3A//www.sciam.com/article.cfm%3FchanID%3Dsa003%26articleID%3DC7C87ECC-E7F2-99DF-39AEFF3D7D1A8CFB%26ref%3Drss
2643 # Redirect Destination = http://www.sciam.com/article.cfm?chanID=sa003&articleID=C7C87ECC-E7F2-99DF-39AEFF3D7D1A8CFB&ref=rss
2644 .fastclick.net/w/get\.media\?
2645 # Redirected URL = http://www.awin1.com/cread.php?awinmid=2891&awinaffid=43305&clickref=&p=http://www.groupon.co.uk/
2646 # Redirect Destination = http://www.groupon.co.uk/
2647 .awin1.com/.*=http://
2648 # Redirected URL = http://tr.anp.se/track?t=c&mid=1132291&uid=328397249&&&http:%2F%2Fwww%2Eresume%2Ese%2F%2Fnyheter%2F2011%2F03%2F31%2Fexpressen%2Dkampanjen%2Danmald%2F
2649 # Redirect Destination = http://www.resume.se//nyheter/2011/03/31/expressen-kampanjen-anmald/
2650 # Redirected URL = http://tr.anp.se/track?t=c&mid=1129528&uid=328397249&&&http:%2F%2Fwww%2Eresume%2Ese%2F%2Fnyheter%2F2011%2F03%2F29%2Fanstalt%2Dforbjod%2Dskurk%2F
2651 # Redirect Destination = http://www.resume.se//nyheter/2011/03/29/anstalt-forbjod-skurk/
2652 tr.anp.se/
2653
2654 {+block{Looks like an anti-leech trigger URL.}}
2655 #MASTER# COMMENTS: This section not checked 10/17/06 HB. Still out there?
2656 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
2657 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
2658 /antitheft\.php
2659
2660 {+filter{tiny-textforms}}
2661 .sourceforge.net/tracker
2662
2663 {+downgrade-http-version}
2664 #MASTER# COMMENTS: This section not checked 10/17/06 HB
2665 #MASTER# REMARKS: This is work-around for CUPS http configuration.
2666 :631
2667
2668 #MASTER# REMARKS: If Privoxy is disabled, requests for config.privoxy.org/
2669 #MASTER# REMARKS: reach privoxy.org and are redirected to privoxy.org/config.
2670 #MASTER# REMARKS: The instructions tell the user to reload the page with
2671 #MASTER# REMARKS: Privoxy enabled to reach the configuration webinterface,
2672 #MASTER# REMARKS: to make this work we have to intercept the request and revert
2673 #MASTER# REMARKS: the redirection.
2674 {+redirect{http://config.privoxy.org/}}
2675 # Sticky Actions = +redirect{http://config.privoxy.org/}
2676 # URL = http://www.privoxy.org/config
2677 # Redirected URL = http://www.privoxy.org/config
2678 # Redirect Destination = http://config.privoxy.org/
2679 .privoxy.org/config
2680
2681 #MASTER# REMARKS: Privoxy's "unsafe" CGI pages check the referrer
2682 #MASTER# REMARKS: to make sure the user reached them intentionally.
2683 #MASTER# REMARKS: Disabling hide-referrer so there's a referrer left to check.
2684 #MASTER# REMARKS: Disabling fast-redirects because if CGI crunching gets
2685 #MASTER# REMARKS: enabled it could be leveraged to fool the referrer check.
2686 {-hide-referrer -fast-redirects}
2687 # Sticky Actions = -hide-referrer -fast-redirects
2688 # URL = http://p.p
2689 # URL = http://config.privoxy.org
2690 p.p/
2691 config.privoxy.org/
2692
2693 #MASTER# REMARKS: Yahoo logout URLs need special treatment,
2694 #MASTER# REMARKS: the URL after "done=" is no fast-redirect. 2007-01-19 fk
2695 #MASTER# REMARKS: Reported in support request #1635354.
2696 {-fast-redirects +redirect{s@^.*\*(http://login\.yahoo\.com/.*)$@$1@i}}
2697 # XXX: Privoxy-Regression-Test currently doesn't allow backslashes.
2698 # Sticky Actions = -fast-redirects +redirect
2699 # URL = http://us.ard.yahoo.com/SIG=AAAAAAAAA/M=NNNNNN.NNNNNNN.NNNNNNN.NNNNNNN/D=mail/S=NNNNNNNNN:HEADR/Y=YAHOO/EXP=NNNNNNNNNN/A=NNNNNNN/R=N/SIG=AAAAAAAAA/*http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
2700 # Redirected URL = http://us.ard.yahoo.com/SIG=AAAAAAAAA/M=NNNNNN.NNNNNNN.NNNNNNN.NNNNNNN/D=mail/S=NNNNNNNNN:HEADR/Y=YAHOO/EXP=NNNNNNNNNN/A=NNNNNNN/R=N/SIG=AAAAAAAAA/*http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
2701 # Redirect Destination = http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
2702 .yahoo./.*http://login.yahoo.com/config/login.*http://
2703
2704 #MASTER# PROBLEM-URL: http://www.washingtonpost.com/news/volokh-conspiracy/wp/2014/07/09/missouri-voters-will-consider-strengthening-state-constitutional-right-to-bear-arms/
2705 {-fast-redirects +redirect{s@.*(http://[^&]+\.jpg).*$@$1@i}}
2706 # Sticky Actions = -fast-redirects +redirect
2707 # Redirected URL = http://www.washingtonpost.com/wp-apps/imrs.php?src=http://img.washingtonpost.com/news/volokh-conspiracy/wp-content/uploads/sites/14/2014/07/Volk1.jpg&w=480
2708 # Redirect Destination = http://img.washingtonpost.com/news/volokh-conspiracy/wp-content/uploads/sites/14/2014/07/Volk1.jpg
2709 .washingtonpost.com/wp-apps/imrs\.php\?src=
2710
2711 #MASTER# REMARKS: The next two sections are to get flickr's Ajax interface working
2712 #MASTER# REMARKS: with default pre-settings. For more aggressive defaults they additionally
2713 #MASTER# REMARKS: need -crunch-incoming-cookies and -crunch-outgoing-cookies.
2714 #MASTER# REMARKS: They work with +session-cookies-only, though.
2715 {-block -filter}
2716 #MASTER# PROBLEM-URL: http://www.flickr.com/
2717 # Sticky Actions = -block -filter
2718 # URL = http://l.yimg.com/g/combo/1?event-custom/event-custom-min.js&event/event-min.js&j/.H-.K.A.vNKEa&j/.CP-.U-.DE.A.vKEJz&j/.J_.BR_.CA.A.vKYkg&j/.J_.DB.A.vPpBT&j/popup-login.A.vR53Z&dump/dump-min.js&datatype/datatype-xml-min.js&substitute/substitute-min.js&json/json-min.js&queue-promote/queue-promote-min.js&io/io-min.js&j/.J_.DS.A.vQa28&j/.FW-.FX-.GH.A.vP3XB&j/grease.A.vRktP&j/.CC.A.vNiA6&j/.C-.BL.A.vPPj2&j/.CE-.K.A.vNy32&attribute/attribute-base-min.js&base/base-min.js&anim/anim-min.js&cookie/cookie-min.js&j/.B-.C-.F.A.vQ7SZ&j/urls.A.vQtXp&j/.B-.BY.A.vQCXP&j/.H-.BY.A.vQXXx&j/.DS-value-conversions.A.vQpRt&j/.G-.BD.A.vNHSH&event/event-synthetic-min.js&j/.G-.BO.A.vNwR4&j/.CV-.CH.A.vPFSZ&j/.X-.W-.C-.F.A.vKPQa&j/.X-.W-.D.A.vQXXx&j/.Q-.BX-.K.A.vR1kt&j/.DL.A.vLPjD&j/.CF.A.vNC24&j/.CX-.CY.A.vP8ND&event-simulate/event-simulate-min.js&node/node-event-simulate-min.js&j/.B-.T-.CI-.C-.F.A.vPJPF&j/.CM/.BA_2.5.1-.D.A.vPzui&j/bo-.S-.C-.F.A.vNwWe&j/bo-.S-.D.A.vR6Hx&j/.BZ-.D.A.vNstB&j/.B-.L-.C-.F.A.vNxPX&j/.B-.L-.BH.A.vMdVB&j/.CN-.DD.A.vLjJ2&j/.B-.O-.C-.F.A.vPpcK&j/.BM.A.vKPmz&j/.B-.O.A.vQyHg&j/.B-.H-.BB-.C-.F.A.vQvrB&j/.CW-.CU.A.vQ7Rg&j/.Y-.C-.F.A.vNqGa&j/.Y.A.vLKiT&j/.B-.M-.C-.F.A.vQxDc&j/.U-.CG.A.vQ5Tt&j/.B-.M.A.vQXXx&j/.B-.Q-.BQ.A.vQvTt&j/.B-.N-.C-.F.A.vQaRp&j/.CL.A.vN4N6&j/.B-.CL-.BW.A.vPwkx&j/.DR-.DG.A.vMLJr&j/.B-.BE-.C-.F.A.vPHP4&j/.B-.BE-.D.A.vQLQH&j/.BV.A.vm3Uz&j/.Z-.DK-.D.A.vLQEe&j/.Z-.DJ-.BJ.A.vLQEe&j/.B-.I-.C-.F.A.vPKTK&stylesheet/stylesheet-min.js&j/.B-.I.A.vQvDF&j/.CM-.DO.A.vPboD&j/.B-.D.A.vRbv8&j/.B-.H-.BB.A.vQuhn&j/.B-.N.A.vR6Cn&j/.B-.L-.CZ.A.vQmzP&j/.B-.T-.CI.A.vQXXx&j/.B-.I-.CQ-.BK-.C-.F.A.vNwZF&j/.B-.I-.CQ-.BK.A.vLWQR&j/.B-.R-.C-.F.A.vPfwi&j/.B-.R.A.vRhND&j/.DN-.BB-.D-.C-.F.A.vQXZg&j/.DN-.BB-.D.A.vRcXB&j/.BF_.D-.C-.F.A.vPGYM&j/.BF_.D.A.vQxJn&plugin/plugin-min.js&cache/cache-min.js&j/.CB-.C-.F.A.vNwWe&j/.CB-.D.A.vQS6T
2719 .yimg.com/g/combo/1\?event-custom/
2720
2721 {-block -filter{content-cookies}}
2722 #MASTER# PROBLEM-URL: http://www.flickr.com/
2723 {-filter{content-cookies}}
2724 # Sticky Actions = -block
2725 # URL = http://www.flickr.com/
2726 .flickr.com/
2727
2728
2729 #----------------------------------------------------------------------------
2730 # Sections that modify the action settings based on tags.
2731 #----------------------------------------------------------------------------
2732
2733 #############################################################################
2734 # Depends on +client-header-tagger{image-requests}
2735 #############################################################################
2736 {-handle-as-empty-document \
2737  +handle-as-image \
2738 }
2739 TAG:^IMAGE-REQUEST$
2740
2741 #############################################################################
2742 # Depends on +client-header-tagger{css-requests}
2743 #############################################################################
2744 {-deanimate-gifs \
2745  -filter{html-annoyances} \
2746  -filter{content-cookies} \
2747  -filter{refresh-tags} \
2748  -filter{img-reorder} \
2749  -filter{banners-by-size} \
2750  -filter{banners-by-link} \
2751  -filter{webbugs} \
2752  -filter{tiny-textforms} \
2753  -filter{frameset-borders} \
2754  -filter{iframes} \
2755  -filter{demoronizer} \
2756  -filter{shockwave-flash} \
2757  -filter{quicktime-kioskmode} \
2758  -filter{fun} \
2759  -filter{crude-parental} \
2760  -filter{site-specifics} \
2761  -filter{no-ping} \
2762  -filter{google} \
2763  -filter{yahoo} \
2764  -filter{msn} \
2765  -filter{blogspot} \
2766  +handle-as-empty-document \
2767  -handle-as-image \
2768 }
2769 TAG:^CSS-REQUEST$
2770
2771 #############################################################################
2772 # Depends on +client-header-tagger{content-type}
2773 #############################################################################
2774 {-filter{html-annoyances} \
2775  -filter{content-cookies} \
2776  -filter{refresh-tags} \
2777  -filter{img-reorder} \
2778  -filter{banners-by-size} \
2779  -filter{banners-by-link} \
2780  -filter{webbugs} \
2781  -filter{tiny-textforms} \
2782  -filter{frameset-borders} \
2783  -filter{iframes} \
2784  -filter{demoronizer} \
2785  -filter{shockwave-flash} \
2786  -filter{quicktime-kioskmode} \
2787  -filter{fun} \
2788  -filter{crude-parental} \
2789  -filter{site-specifics} \
2790  -filter{no-ping} \
2791  -filter{google} \
2792  -filter{yahoo} \
2793  -filter{msn} \
2794  -filter{blogspot} \
2795 }
2796 TAG:^(application|text)/(x-)?javascript$
2797
2798 # Disable filtering for Range requests.
2799 #
2800 # With filtering enabled Privoxy would remove the Range headers
2801 # to be able to filter the whole response. The downside is that
2802 # it prevents clients from resuming downloads or skipping over
2803 # parts of multimedia files.
2804 {-filter -deanimate-gifs}
2805 TAG:^RANGE-REQUEST$
2806
2807 #MASTER# set vi:nowrap