Adapt to CVS version as of 2006-09-17 (incl. new IPv6 patch).
[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.  
5 #MASTER# COMMENT:   
6 ######################################################################
7
8 #  File        :  $Source: /cvsroot/ijbswa/current/default.action.master,v $
9
10 #  $Id: default.action.master,v 1.23 2006/09/10 14:09:16 hal9 Exp $
11 #
12 #  Purpose     :  Default actions file, see
13 #                 http://www.privoxy.org/user-manual/actions-file.html
14 #
15 #  Copyright   :  Written by and Copyright (C) 2001 - 2006 the
16 #                 Privoxy team. http://www.privoxy.org/
17 #
18 # Note: Updated versions of this file will be made available from time
19 #       to time. Check http://sourceforge.net/project/showfiles.php?group_id=11118
20 #       for updates and/or subscribe to the announce mailing list
21 #       (http://lists.sourceforge.net/lists/listinfo/ijbswa-announce) if you
22 #       wish to receive an email notice whenever updates are released.
23 #
24 # We value your feedback. However, to provide you with the best support,
25 # please note:
26 #  
27 #  * Use the support forum to get help:
28 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
29 #  * Submit feedback for this actions file only through the 
30 #    SF actions file feedback tracker: 
31 #    http://sourceforge.net/tracker/?group_id=11118&atid=460288
32 #  * Submit bugs only through our bug forum:
33 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
34 #    Make sure that the bug has not already been submitted. Please try
35 #    to verify that it is a Privoxy bug, and not a browser or site
36 #    bug first. If you are using your own custom configuration, please
37 #    try the stock configs to see if the problem is a configuration
38 #    related bug. And if not using the latest development snapshot,
39 #    please try the latest one. Or even better, CVS sources.
40 #  * Submit feature requests only through our feature request forum:
41 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
42 #      
43 # For any other issues, feel free to use the mailing lists:
44 # http://sourceforge.net/mail/?group_id=11118
45 #    
46 # Anyone interested in actively participating in development and related
47 # discussions can join the appropriate mailing list here:
48 # http://sourceforge.net/mail/?group_id=11118. Archives are available
49 # here too.
50
51 #############################################################################
52 # Syntax
53 #############################################################################
54
55 # A much better explanation can be found in the user manual which is
56 # part of the distribution and can be found at http://www.privoxy.org/user-manual
57 #
58 # To determine which actions apply to a request, the URL of the request is
59 # compared to all patterns in this file. Every time it matches, the list of
60 # applicable actions for this URL is incrementally updated. You can trace
61 # this process by visiting http://config.privoxy.org/show-url-info
62 #
63 # There are 4 types of lines in this file: comments (like this line),
64 # actions, aliases and patterns, all of which are explained below.
65 #
66 #############################################################################
67 # Pattern Syntax
68 #############################################################################
69
70 # 1. On Domains and Paths
71 # -----------------------
72 #
73 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
74 # and <path> part are optional. If you only specify a domain part, the "/"
75 # can be left out:
76
77 # www.example.com 
78 #   is a domain-only pattern and will match any request to www.example.com
79
80 # www.example.com/
81 #   means exactly the same (but is slightly less efficient)
82
83 # www.example.com/index.html
84 #   matches only the document /index.html on www.example.com
85
86 # /index.html
87 #   matches the document /index.html, regardless of the domain
88
89 # index.html
90 #   matches nothing, since it would be interpreted as a domain name and
91 #   there is no top-level domain called ".html".
92
93 # 2. Domain Syntax
94 # ----------------
95
96 # The matching of the domain part offers some flexible options: If the
97 # domain starts or ends with a dot, it becomes unanchored at that end:
98
99 # www.example.com
100 #   matches only www.example.com
101
102 # .example.com
103 #   matches any domain that ENDS in .example.com
104
105 # www.
106 #   matches any domain that STARTS with www.
107 #
108 # .example.
109 #   matches any domain that CONTAINS example
110 #
111
112 # Additionally, there are wildcards that you can use in the domain names
113 # themselves. They work pretty similar to shell wildcards: "*" stands for
114 # zero or more arbitrary characters, "?" stands for one, and you can define
115 # charachter classes in square brackets and they can be freely mixed:
116
117 # ad*.example.com
118 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
119
120 # *ad*.example.com
121 #   matches all of the above
122
123 # .?pix.com
124 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
125
126 # www[1-9a-ez].example.com
127 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
128 #   wwwz.example.com etc, but not wwww.example.com
129
130 # You get the idea?
131
132 # 2. Path Syntax
133 # --------------
134
135 # Paths are specified as regular expressions. A comprehensive discussion of
136 # regular expressions wouldn't fit here, but (FIXME) someone should paste
137 # a concise intro to the regex language here.
138
139 # Perl compatible regular expressions are used. See the pcre/docs/ direcory or
140 # man perlre (also available on http://www.perldoc.com/perl5.6/pod/perlre.html)
141 # for details. The appendix to the user manual also has some detail.
142
143 # Please note that matching in the path is CASE INSENSITIVE by default, but
144 # you can switch to case sensitive by starting the pattern with the "(?-i)"
145 # switch:
146
147 # www.example.com/(?-i)PaTtErN.*
148 #   will match only documents whose path starts with PaTtErN in exactly this
149 #   capitalization.
150 #
151 # Partially case-sensetive and partially case-insensitive patterns are
152 # possible, but the rules about splitting them up are extremely complex
153 # - see the PCRE documentation for more information.
154
155 #############################################################################
156 # Action Syntax
157 #############################################################################
158 #
159 # There are 3 kinds of action:
160 #
161 # Boolean (e.g. "block"):
162 #   +name  # enable
163 #   -name  # disable
164 #
165 # Parameterized (e.g. "hide-user-agent"):
166 #   +name{param}  # enable and set parameter to "param"
167 #   -name         # disable
168 #
169 # Multi-value (e.g. "add-header", "send-wafer"):
170 #   +name{param}  # enable and add parameter "param"
171 #   -name{param}  # remove the parameter "param"
172 #   -name         # disable totally
173 #
174 # The default (if you don't specify anything in this file) is not to take
175 # any actions - i.e completely disabled, so Privoxy will just be a
176 # normal, non-blocking, non-anonymizing proxy.  You must specifically
177 # enable the privacy and blocking features you need (although the 
178 # provided default actions file will do that for you).
179 #
180 # Later actions always override earlier ones.  For multi-valued actions,
181 # the actions are applied in the order they are specified.
182 #
183 #############################################################################
184 # Valid actions are:
185 #############################################################################
186 #
187 # +add-header{Name: value}
188 #    Adds the specified HTTP header, which is not checked for validity.
189 #    You may specify this many times to specify many headers.
190 #
191 # +block
192 #    Block this URL
193 #
194 # +content-type-overwrite
195 #    Replaces the "Content-Type:" HTTP server header, so that unwanted
196 #    download menus will not pop up, or changes the browser's rendering mode.
197 #
198 # +crunch-client-header{string}
199 #    Deletes every header sent by the client that contains the string the 
200 #    user supplied as parameter. 
201 #    
202 # +crunch-if-none-match
203 #     Deletes the "If-None-Match:" HTTP client header. 
204 #
205 # +crunch-server-header{string}
206 #    Deletes every header sent by the server that contains the string the 
207 #    user supplied as a parameter. 
208
209 # +deanimate-gifs{last}
210 # +deanimate-gifs{first}
211 #    Deanimate all animated GIF images, i.e. reduce them to their last
212 #    frame. This will also shrink the images considerably. (In bytes,
213 #    not pixels!) 
214 #    If the option "first" is given, the first frame of the animation
215 #    is used as the replacement. If "last" is given, the last frame of
216 #    the animation is used instead, which propably makes more sense for
217 #    most banner animations, but also has the risk of not showing the
218 #    entire last frame (if it is only a delta to an earlier frame).
219 #
220 # +downgrade-http-version
221 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
222 #    responses as well. Use this action for servers that use HTTP/1.1
223 #    protocol features that Privoxy currently can't handle yet.
224 #
225 # +fast-redirects{check-decoded-url}
226 # +fast-redirects{simple-check}
227 #    Many sites, like yahoo.com, don't just link to other sites.
228 #    Instead, they will link to some script on their own server,
229 #    giving the destination as a parameter, which will then redirect
230 #    you to the final target. 
231 #
232 #    URLs resulting from this scheme typically look like:
233 #    http://some.place/some_script?http://some.where-else
234 #
235 #    Sometimes, there are even multiple consecutive redirects encoded
236 #    in the URL. These redirections via scripts make your web browing
237 #    more traceable, since the server from which you follow such a link
238 #    can see where you go to. Apart from that, valuable bandwidth and
239 #    time is wasted, while your browser aks the server for one redirect
240 #    after the other. Plus, it feeds the advertisers.
241 #
242 #    The +fast-redirects{check-decoded-url} option enables interception of 
243 #    these requests by Privoxy, who will cut off all but the last valid URL 
244 #    in the request and send a local redirect back to your browser without
245 #    contacting the intermediate sites. NOTE: Syntax change as of v.3.0.4.
246 #
247 # +filter{name}
248 #    Filter the website through one or more regular expression filters.
249 #    Repeat for multiple filters.
250 #   
251 #    Filters predefined in the supplied default.action include:
252 #
253 #     js-annoyances:       Get rid of particularly annoying JavaScript abuse
254 #     js-events:           Kill all JS event bindings (Radically destructive! Use only on real suckers)
255 #     html-annoyances:     Get rid of particularly annoying HTML abuse
256 #     content-cookies:     Kill cookies that come in the HTML or JS content
257 #     refresh-tags:        Kill automatic refresh tags (for dial-on-demand setups)
258 #     unsolicited-popups:  Disable only unsolicited pop-up windows
259 #     all-popups:          Kill all popups in JavaScript and HTML
260 #     img-reorder:         Reorder attributes in <img> tags to make the banners-by-* filters more effective
261 #     banners-by-size:     Kill banners by size (very efficient!)
262 #     banners-by-link:     Kill banners by their links to known clicktrackers 
263 #     webbugs:             Squish WebBugs (1x1 invisible GIFs used for user tracking)
264 #     tiny-textforms:      Extend those tiny textareas up to 40x80 and kill the hard wrap
265 #     jumping-windows:     Prevent windows from resizing and moving themselves
266 #     frameset-borders:    Give frames a border
267 #     demoronizer:         Fix MS's non-standard use of standard charsets
268 #     shockwave-flash:     Kill embedded Shockwave Flash objects
269 #     quicktime-kioskmode: Make Quicktime movies saveable
270 #     fun:                 Text replacements  for subversive browsing fun!
271 #     crude-parental:      Kill all web pages that contain the words "sex" or "warez"
272 #     ie-exploits:         Disable some known Internet Explorer bug exploits
273 #     site-specifics       Cure for site-specific problems. Don't apply generally!
274 #
275 # +filter-client-headers
276 #    By default, filters only apply to the document content itself. This will
277 #    extend those filters to include the client's headers as well.
278 #
279 # +filter-server-headers
280 #    By default, filters only apply to the document content itself. This will
281 #    extend those filters to include the server's headers as well.
282 #
283 # +force-text-mode
284 #    Declares a document as plain text, even if the "Content-Type:" isn't detected 
285 #    as such. 
286 #
287 # +handle-as-empty-document
288 #   This action alone doesn't do anything noticeable. It just marks URLs. If
289 #   the block action also applies, the presence or absence of this mark
290 #   decides whether an HTML "blocked"  page, or an empty document will be sent
291 #   to the client as a substitute for the blocked content.
292 #
293 # +hide-accept-language{lang}
294 # +hide-accept-language{block}
295 #   Deletes or replaces the "Accept-Language:" HTTP header in client
296 #   requests.
297 #
298 # +hide-content-disposition{block}
299 # +hide-content-disposition{string}
300 #   Deletes or replaces the "Content-Disposition:" HTTP header set by some 
301 #   servers. This can be used to prevent download menus for content you 
302 #   prefer to view inside the browser, for example.
303 #
304 # +hide-forwarded-for-headers
305 #   Block any existing X-Forwarded-for header, and do not add a new one.
306 #
307 # +hide-from-header{block}
308 # +hide-from-header{spam@sittingduck.xqq}
309 #   If the browser sends a "From:" header containing your e-mail address, 
310 #   either completely removes the header ("block"), or change it to the
311 #   specified e-mail address.
312 #
313 # +hide-if-modified-since{block}
314 # +hide-if-modified-since{-1}
315 #   Deletes the "If-Modified-Since:" HTTP client header or modifies its 
316 #   value, preventing another way to track users.
317 #
318 # +hide-referer{block}
319 # +hide-referer{forge}
320 # +hide-referer{http://nowhere.com}
321 #    Don't send the "Referer:" (sic) header to the web site.  You can
322 #    block it, forge a URL to the same server as the request (which is
323 #    preferred because some sites will not send images otherwise) or
324 #    set it to a constant string.
325 #
326 # +hide-referrer{...}
327 #    Alternative spelling of +hide-referer.  Has the same parameters,
328 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
329 #    correct English spelling, however the HTTP specification has a 
330 #    bug - it requires it to be spelt "referer").
331 #
332 # +hide-user-agent{browser-type}
333 #    Change the "User-Agent:" header so web servers can't tell your
334 #    browser type.  (Breaks many web sites).  Specify the user-agent
335 #    value you want - e.g., to pretend to be using Netscape on Linux:
336 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
337 #    Or to identify yourself explicitly as a Privoxy user:
338 #      +hide-user-agent{Privoxy/1.0}
339 #    (Don't change the version number from 1.0 - after all, why tell them?)
340 #
341 # +handle-as-image
342 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
343 #    in which case a "blocked" image can be sent rather than a HTML page.
344 #    See +set-image-blocker{} for the control over what is actually sent.
345 #
346 # +inspect-jpegs
347 #    Scan jpeg headers for malformed comment blocks and correct them.
348 #
349 # +set-image-blocker{blank}
350 # +set-image-blocker{pattern}
351 # +set-image-blocker{<URL>} with <url> being any valid image URL
352 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
353 #    There are 4 options:
354 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
355 #         resulting in a "broken image" icon.
356 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
357 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
358 #        which is less intrusive than the logo but easier to recognize
359 #        than the transparent one.
360 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
361 #        to the specified image URL.
362 #
363 #
364 # +limit-connect{portlist}
365 #   The CONNECT methods exists in HTTP to allow access to secure websites
366 #   (https:// URLs) through proxies. It works very simply: The proxy
367 #   connects to the server on the specified port, and then short-circuits
368 #   its connections to the cliant and to the remote proxy.
369 #   This can be a big security hole, since CONNECT-enabled proxies can
370 #   be abused as TCP relays very easily.
371 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
372 #   will only allow CONNECT requests to port 443, which is the standard port
373 #   for https.
374 #   If you want to allow CONNECT for more ports than that, or want to forbid
375 #   CONNECT altogether, you can specify a comma separated list of ports and port
376 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
377 #
378 #   +limit-connect{443} # This is the default and need no be specified.
379 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
380 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
381 #
382 # +overwrite-last-modified{block}
383 # +overwrite-last-modified{reset-to-request-time}
384 # +overwrite-last-modified{randomize}
385 #    Removing the "Last-Modified:" header is useful for filter testing, where
386 #    you want to force a real reload instead of getting status code "304",
387 #    which would cause the browser to reuse the old version of the page.
388 #
389 #    The "randomize" option overwrites the value of the "Last-Modified:"
390 #    header with a randomly chosen time between the original value and the
391 #    current time. In theory the server could send each document with a
392 #    different "Last-Modified:" header to track visits without using cookies.
393 #    "Randomize" makes it impossible and the browser can still revalidate
394 #    cached documents.
395 #
396 #    "reset-to-request-time" overwrites the value of the "Last-Modified:"
397 #    header with the current time. You could use this option together with
398 #    hided-if-modified-since to further customize your random range. 
399 #  
400 # +prevent-compression
401 #    Prevent the website from compressing the data. Some websites do
402 #    that, which is a problem for Privoxy, since +filter, +kill-popups
403 #    and +gif-deanimate will not work on compressed data. Will slow down
404 #    connections to those websites, though.
405 #
406 # +prevent-keeping-cookies
407 # +session-cookies-only
408 #    If the website sets cookies, make sure they are erased when you exit
409 #    and restart your web browser.  This makes profiling cookies useless,
410 #    but won't break sites which require cookies so that you can log in
411 #    or for transactions.
412 #
413 # +crunch-outgoing-cookies
414 #    Prevent the website from reading cookies
415 #
416 # +crunch-incoming-cookies
417 #    Prevent the website from setting cookies
418 #
419 # +kill-popups (deprecated)
420 #    Filter the website through a built-in filter to disable
421 #    window.open() etc.  The two alternative spellings are
422 #    equivalent.
423 #
424 # +redirect{<URL>}
425 #    Convinces the browser that the requested document has been moved to
426 #    another location and the browser should get it from the specified
427 #    URL.
428 #
429 # +send-vanilla-wafer
430 #    This action only applies if you are using a jarfile.  It sends a
431 #    cookie to every site stating that you do not accept any copyright
432 #    on cookies sent to you, and asking them not to track you.  Of
433 #    course, this is a (relatively) unique header they could use to 
434 #    track you.
435 #
436 # +send-wafer{name=value}
437 #    This allows you to add an arbitrary cookie.  Specify it multiple
438 #    times in order to add several cookies.
439 #
440 # +treat-forbidden-connects-like-blocks
441 #    If this action is enabled, Privoxy no longer makes a difference between
442 #    forbidden connects and ordinary blocks. 
443 #
444 #    By default Privoxy answers forbidden "Connect" requests  with a short
445 #    error message inside the headers. If the browser doesn't display headers
446 #    (most don't), you just see an empty page. With this action enabled,
447 #    Privoxy displays the message that is used for ordinary blocks instead. If
448 #    you decide to make an exception for the page in question, you can do so
449 #    by following the "See why" link. 
450 #
451 #############################################################################
452
453 #############################################################################
454 # Settings -- Don't change.
455 #############################################################################
456 {{settings}}
457 #############################################################################
458 for-privoxy-version=3.0.4
459
460 #############################################################################
461 # Aliases
462 #############################################################################
463 {{alias}}
464 #############################################################################
465 #
466 # You can define a short form for a list of permissions - e.g., instead
467 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
468 # you can just write "shop". This is called an alias.
469 #
470 # Currently, an alias can contain any character except space, tab, '=', '{'
471 # or '}'.
472 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
473 #
474 # Alias names are not case sensitive.
475 #
476 # Aliases beginning with '+' or '-' may be used for system action names 
477 # in future releases - so try to avoid alias names like this.  (e.g. 
478 # "+crunch-all-cookies" below is not a good name)
479 #
480 # Aliases must be defined before they are used.
481
482
483 # These aliases just save typing later:
484 #
485 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
486 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
487  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
488  allow-popups       = -filter{all-popups} -kill-popups
489 +block-as-image     = +block +handle-as-image
490 -block-as-image     = -block
491
492 # These aliases define combinations of actions
493 # that are useful for certain types of sites:
494 #
495 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups
496 shop        = -crunch-all-cookies allow-popups
497
498 # Your favourite blend of filters:
499 #
500 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{all-popups}\
501               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
502
503 # Allow ads for selected useful free sites:
504 #
505 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
506
507 #############################################################################
508 # Defaults
509 #############################################################################
510 { \
511 -add-header \
512 -block \
513 -content-type-overwrite \
514 -crunch-client-header \
515 -crunch-if-none-match \
516 -crunch-outgoing-cookies \
517 -crunch-incoming-cookies \
518 -crunch-server-header \
519 +deanimate-gifs{last} \
520 -downgrade-http-version \
521 -fast-redirects \
522 +filter{js-annoyances} \
523 -filter{js-events} \
524 +filter{html-annoyances} \
525 -filter{content-cookies} \
526 +filter{refresh-tags} \
527 +filter{unsolicited-popups} \
528 -filter{all-popups} \
529 +filter{img-reorder} \
530 +filter{banners-by-size} \
531 -filter{banners-by-link} \
532 +filter{webbugs} \
533 -filter{tiny-textforms} \
534 +filter{jumping-windows} \
535 -filter{frameset-borders} \
536 -filter{demoronizer} \
537 -filter{shockwave-flash} \
538 -filter{quicktime-kioskmode} \
539 -filter{fun} \
540 -filter{crude-parental} \
541 +filter{ie-exploits} \
542 -filter{site-specifics} \
543 -filter-client-headers \
544 -filter-server-headers \
545 -force-text-mode \
546 -handle-as-empty-document \
547 -handle-as-image \
548 -hide-accept-language \
549 -hide-content-disposition \
550 -hide-if-modified-since \
551 +hide-forwarded-for-headers \
552 +hide-from-header{block} \
553 +hide-referrer{forge} \
554 -hide-user-agent \
555 -inspect-jpegs \
556 -kill-popups \
557 -limit-connect \
558 -overwrite-last-modified \
559 -redirect \
560 +prevent-compression \
561 -send-vanilla-wafer \
562 -send-wafer \
563 +session-cookies-only \
564 +set-image-blocker{pattern} \
565 -treat-forbidden-connects-like-blocks \
566 }
567 / # Match all URLs
568
569 #############################################################################
570 # These extensions belong to images:
571 #############################################################################
572 {+handle-as-image -filter}
573 #############################################################################
574 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
575
576 #############################################################################
577 # These don't:
578 #############################################################################
579 {-handle-as-image}
580 /.*\.(js|php|css|.?html)
581
582 #############################################################################
583 # Generic block patterns by host:
584 #############################################################################
585 {+block}
586 #MASTER# DONT-VERIFY (generic)
587 ad*.
588 .*ads.
589 .ad.
590 *banner*.
591 count*.
592 *counter.
593
594 #############################################################################
595 # Generic unblockers by host:
596 #############################################################################
597 {-block}
598 #MASTER# DONT-VERIFY (generic)
599 adsl.
600 ad[udmw]*.
601 adbl*.
602 adam*.
603 adob*.
604 adtp*.
605 adv[oia]*.
606 .*road*.
607 .olympiad*.
608 .*load*.
609 .*[epu]ad*.
610 county*.
611 countr*.
612
613 #############################################################################
614 # Generic block patterns by path:
615 #############################################################################
616 {+block}
617 #MASTER# DONT-VERIFY (generic)
618 /(.*/)?ad(/|s|v|images|cycle|rotate|mentor|click|frame)
619 /.*ads/
620 /(.*/)?(ad|all|nn|db|promo(tion)?)?[-_]?banner
621 /(.*/)?(publicite|werbung|reklaa?m|annonse|maino(kset|nta|s)?/)
622 /.*(count|track|compteur|adframe|banner)(er|run)?(\?|\.(pl|cgi|exe|dll|asp|php|cpt))
623
624 #############################################################################
625 # Generic unblockers by path:
626 #############################################################################
627 {-block}
628 #MASTER# DONT-VERIFY (generic)
629 /.*ad(sl|v(i[cs]|o|an|ertencia|ent|.*search)) # advice/advisories/advan*/advertencia (spanish)
630 /.*(lo|thre|he|d|gr|l|ro|re|squ)ads
631 /.*account
632 support./(.*/)?track
633
634 #############################################################################
635 # Exceptions for academia
636 #############################################################################
637 .edu
638 .ac.*/
639 .uni-*.de
640 .tu-*.de
641
642 .gov
643
644 #############################################################################
645 # Site-specific block patterns;
646 #############################################################################
647 {+block}
648 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
649 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
650 .hitbox.com 
651 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
652 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
653 #MASTER# BLOCK-REFERRER: http://www.stern.de/
654 www.stern.de/bilder/poweredby
655 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
656 images.gmx.net/images/bs/
657 #MASTER# BLOCK-REFERRER: http://www.gmx.de/
658 www.gmx.de/promo
659 images.gmx.net/images/.*/promo/
660 #MASTER# BLOCK-REFERRER: http://www.max.de/
661 .akamaitech.net/.*/img/e-commerce
662 www.max.de/_teaser/partner/
663 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
664 search.atomz.com/search/i/tagw1c.gif
665 www.intelligentx.com/newsletters/.*\.gif
666 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
667 i.real.com/g/pics/games/gamepass_120x600_2.gif
668 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
669 www*.chathouse.com/chatimages/whopersonal.gif
670 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
671 .planetspiele.de/gfx/partner
672 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
673 top.ultraseek.net/top_sit.*\.gif
674 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
675 fosi.ural.net/.*\.jpg
676 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
677 .tucows.com/images/dodi.gif
678 .tucows.com/images/elibrary_searchTop.gif
679 #MASTER# BLOCK-REFERRER: http://www.ix.de/
680 #MASTER# BLOCK-REFERRER: http://www.heise.de/
681 /icons/emedia_b.gif
682 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
683 dest.travelocity.com/website/destinations/images/partner_frommers.gif
684 dest.travelocity.com/website/destinations/images/travelex_logo.gif
685 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
686 cobolreport.com/images/canam1.gif
687 cobolreport.com/images/Acucorp1.gif
688 cobolreport.com/images/netcobol.jpg
689 cobolreport.com/images/NetCOBOL-banner.gif
690 objectz.com/images/Landmark%20120x240.gif
691 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
692 tribalfusion.speedera.net
693 .tribalfusion.com/media/
694 #MASTER# BLOCK-REFERRER: http://www.stuff.co.nz
695 #MASTER# REMARKS: http://www.speedera.com/primary/newsroom/apr292002-arch.htm
696 engage.speedera.net/
697 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
698 b*.portalofevil.com/shlv
699 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
700 i.imdb.com/Vpics/
701 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
702 #MASTER# BLOCK-REFERRER: http://www.imdb.com/help/boards/markup
703 #MASTER# REMARKS: 2nd is for emoticons exception
704 i.imdb.com/Photos/CMSIcons/(?!buttons|emoticons)
705 rcm.amazon.com
706 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
707 i.imdb.com/Icons/apix/
708 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
709 .nytimes.com/adx/
710 #MASTER# BLOCK-REFERRER: http://www.salon.com/
711 www.salon.com/Creatives
712 images.salon.com/plus/gear/src/
713 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
714 images.sourceforge.net/images/DB2powered.gif
715 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/media.cfm?action=shot&id=250&seq=2
716 /.*paypal-smad\.gif
717 www.planetgamecube.com/images/PGC_Q_Edit.gif
718 #MASTER# BLOCK-REFERRER: http://www.samachar.com/
719 .samachar.com/banimages/
720 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/aws/index.asp
721 .weatherbug.com/popups/
722 #MASTER# BLOCK-REFERRER: http://portale.web.de/Film/
723 .web.de/.*/EIGENWERBUNG/
724 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/
725 www.aintitcool.com/.*\.swf
726 #MASTER# BLOCK-REFERRER: http://www.hispasexo.net/fotos/index.php?currDir=./Negras&pageType=image&image=bla001.jpg
727 www.hispasexo.net/.*/sxb
728 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2002/09/05/technology/05CODE.html
729 graphics.nytimes.com/nytstore/images/ctx
730 #MASTER# BLOCK-REFERRER: http://www.macfixit.com/
731 spinbox.techtracker.com
732 #MASTER# BLOCK-REFERRER: http://www.javaworld.com/javaworld/jw-11-2003/jw-1114-toolbox.html?
733 spinbox.macworld.com/
734 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/
735 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
736 www.popupad.net/ats/
737 #MASTER# BLOCK-REFERRER: http://www.gamespot.com/
738 www.gamespot.com/promos/
739 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm
740 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
741 hit-now.com
742 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/
743 [a-v]*.valueclick.com
744 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
745 www.crazypopups.com
746 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
747 /scripts/cms/xcms.asp
748 #MASTER# BLOCK-REFERRER: http://www.searchking.com/servlet/SearchKing?at=search&keyword=google+owns+you&but1.x=0&but1.y=0
749 www.searchking.com/skbanners/
750 www.searchking.com:443
751 #MASTER# BLOCK-REFERRER: http://www.dshield.org/dshieldmovie.php
752 www.dshield.org/.*anner.gif
753 #MASTER# REMARKS: #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/880835.asp?cp1=1
754 #MASTER# REMARKS: di.image.eshop.msn.com
755 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/12/18/politics/campaigns/18BRAU.html?hp
756 xlonhcld.xlontech.net/
757 #MASTER# REMARKS: Actionsfile feedback 1555719 09/10/06, and Debian Bug report 
758 #MASTER# REMARKS: See <http://www.google.com/analytics/> for user tracking.
759 .google-analytics.com/urchin.js
760
761 #----------------------------------------------------------------------------
762 # JavaScripts for ad and popup generation
763 #----------------------------------------------------------------------------
764 #MASTER# BLOCK-REFERRER: http://www.britannica.com/
765 www.britannica.com/marketing/
766 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/
767 mediamgr.ugo.com
768 #MASTER# BLOCK-REFERRER: http://www.ebookers.fr
769 #MASTER# REMARKS: Unanimis Advertising
770 awrz.net/
771 #MASTER# BLOCK-REFERRER: http://www.chip.de/artikel/c_artikelunterseite_10423683.html
772 pagead*.googlesyndication.com/.*\.js
773 a.tfag.de/js.ng/
774 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html
775 y.nbc4.com/js.ng
776 y.ibsys.com/event.ng/
777
778 #############################################################################
779 # Generic block-as-image patterns:
780 #############################################################################
781 {+block-as-image}
782 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
783 /.*adimage\.(php|cgi)
784 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
785 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
786 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
787 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
788 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
789 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
790 /.*recips?/
791 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
792 /bandeaux/
793 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/
794 /sponsors/.*\.gif
795 #MASTER# REMARKS: 09/11/06 example: img.webads.nl
796 .webads.
797
798 #############################################################################
799 # Site-specific block-as-image patterns:
800 #############################################################################
801 #----------------------------------------------------------------------------
802 # Banner farms:
803 #----------------------------------------------------------------------------
804 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
805 #MASTER# BLOCK-REFERRER: http://www.aol.com/
806 ar.atwola.com 
807 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
808 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
809 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
810 .[a-vx-z]*.doubleclick.net
811 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
812 netcomm.spinbox.net
813 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
814 .*servedby.advertising.com
815 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
816 .a.yimg.com/(?:(?!/i/).)*$
817 .a[0-9].yimg.com/(?:(?!/i/).)*$
818 .yimg.com/(.*/)?a/
819 .yimg.com/.*/(flash|java)/promotions
820 .yimg.com/a/.*/flash/
821 #MASTER# BLOCK-REFERRER: http://freeshells.linuxhelpnetwork.net/
822 .yimg.com/.*/justdeals
823 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
824 werbung.guj.de
825 #MASTER# DONT-VERIFY
826 bs*.gsanet.com
827 bs*.einets.com
828 #MASTER# DONT-VERIFY 
829 .qkimg.net
830 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
831 .sexcounter.
832 #MASTER# DONT-VERIFY
833 #MASTER# REMARKS: Bannerfarms used by grokster and others:
834 james.adbutler.de
835 gkas.de/affilinet
836 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
837 130.94.70.82
838 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
839 cashformel.com/web-sponsor
840 www.cash4banner.com/web-sponsor
841 213.221.106.162
842 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
843 #MASTER# REMARKS: ad*.adsolution.de
844 62.26.220.2
845 62.27.38.2
846 62.27.57.2
847 #MASTER# BLOCK-REFERRER: unknown
848 #MASTER# REMARKS: both exist and are banner farms
849 www.bannermania.nom.pl
850 magic.koti.com.pl/cgi-magic/banner_img.cgi
851 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
852 #MASTER# REMARKS: Counter
853 .netscape.com/c\.cgi\?
854 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
855 #MASTER# REMARKS: Counter
856 m[0-9].nedstatbasic.net
857 #MASTER# BLOCK-REFERRER: http://salon.com/
858 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
859 #MASTER# REMARKS: Banner farms; just exclude their corp. info
860 [a-vx-z]*.atdmt.com/
861 #MASTER# BLOCK-REFERRER: http://f1.racing-live.com/en/
862 .akamai.net/.*f1-live\.com/.*pub
863 #MASTER# BLOCK-REFERRER: http://www.melodysoft.com/cgi-bin/foro.cgi
864 tracker.tradedoubler.com
865 #MASTER# BLOCK-REFERRER: http://dlh.net/german.html
866 imp*.tradedoubler.com
867 #MASTER# BLOCK-REFERRER: http://www.physlink.com/Education/AskExperts/ae353.cfm
868 /.*affiliate.*120x90
869 #MASTER# BLOCK-REFERRER:  http://www.amayita.com/imagenes/index.php?currDir=./Hall_of_Fame&pageType=image&image=img_0265.jpg
870 #MASTER# BLOCK-REFERRER: http://www.macgamer.com/
871 .qksrv.net
872 #MASTER# BLOCK-REFERRER: http://www.drudgereport.com/
873 #MASTER# BLOCK-REFERRER: http://www.rpmseek.com/index.html
874 #MASTER# BLOCK-REFERRER: http://www.funnyjunk.com/pages/cooties.htm
875 .instacontent.net/fastclick/
876 #MASTER# BLOCK-REFERRER: http://www.exactaudiocopy.de/ 09/11/06
877 #MASTER# BLOCK-REFERRER:  http://stanford.facebook.com/home.php 
878 .fastclick.net
879 #MASTER# BLOCK-REFERRER: http://www.math.com/school/subject2/lessons/S2U3L6DP.html 09/11/06
880 .casalemedia.com
881 #MASTER# BLOCK-REFERRER: http://www.macnn.com/
882 kermit.macnn.com/
883 #MASTER# BLOCK-REFERRER: http://www.sdtimes.com/news/
884 www.sdtimes.com/phpads
885 #MASTER# BLOCK-REFERRER: http://www.pagesjaunes.fr/pj.cgi?
886 www.pagesjaunes.fr/EDITO/FR/images/barre_partenaires.gif
887 #MASTER# BLOCK-REFERRER: http://www.allocine.fr/
888 .allocine.fr/.*/logo_partenaire/
889 #MASTER# BLOCK-REFERRER: http://www.virtual-hideout.net/guides/psu_relay_timer_mod/index.shtml
890 www.virtual-hideout.net/sponsors/
891 #MASTER# BLOCK-REFERRER: http://www.the-underdogs.org/featured.php
892 ?.websponsors.com/
893 #MASTER# BLOCK-REFERRER: http://www.globalseeker.com/freesamples/
894 quinst.com/images
895 #MASTER# BLOCK-REFERRER: http://www.newsmax.com/archives/articles/2003/11/20/185048.shtml
896 ad*.fameleads.com
897 #MASTER# BLOCK-REFERRER: http://www.imdb.com/
898 ia.imdb.com/.*(\.swf|[0-9]\.(gif|jpg))
899 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
900 .[a-vx-z]*.comclick.com/
901 #MASTER# BLOCK-REFERRER: http://freemail.web.de/
902 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/11/19/politics/19DEAN.html?ex=1069822800&en=dc82dfff0502faeb&ei=5062&partner=GOOGLE
903 .as*.falkag.
904 #MASTER# BLOCK-REFERRER: http://www.macnn.com/news/18944
905 a.tribalfusion.com/
906 #MASTER# BLOCK-REFERRER: http://reviews.infosyncworld.com/palmos/featured/index.html?start=1&offset=10
907 .instacontent.net/adcouncil/
908 .adserver.com/
909 #MASTER# BLOCK-REFERRER: http://computers.cnet.com/hardware/0-1027-404-20857400.html?tag=rev
910 #MASTER# REMARKS: Pointdexter
911 .ru4.com/
912 #MASTER# BLOCK-REFERRER: http://arstechnica.com/
913 content.ad-flow.com/
914 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/infos/actualites/detail_actu_marches.phtml?news=1510287
915 www.smartadserver.com/
916 #MASTER# BLOCK-REFERRER: http://www.dn.se/hund
917 www.flashbanner.no/
918 #MASTER# BLOCK-REFERRER: http://abcnews.go.com/sections/us/GoodMorningAmerica/scottpeterson030509.html
919 .akamai.net/.*/adinterax.com/
920 #MASTER# BLOCK-REFERRER: http://www.chez.tiscali.fr/
921 admedia.tiscali.
922 pub.chez.com/
923 #MASTER# DONT-VERIFY
924 #MASTER# REMARKS: Bannerfarm used by Morpheus file sharing software
925 jmcms.cydoor.com/
926 #MASTER# BLOCK-REFERRER: http://www.ecranbureau.com/
927 www.allosponsor.com/images/ban
928 #MASTER# BLOCK-REFERRER: http://www.tech-report.com/etc/2003q2/3dmurk03/index.x?pg=7
929 #MASTER# REMARKS: Netshelter.com farm
930 .adtrix.com
931 #MASTER# BLOCK-REFERRER: http://discussion.brighthand.com/forumdisplay.php?s=fee44a5b2a6fc2e9e79d6472bc8fbe94&forumid=197
932 *[0-9].tribalfusion.com/
933 #MASTER# BLOCK-REFERRER: http://www.sf.net/
934 #MASTER# REMARKS: broadening scope from previous: ads.osdn.com/?ad 09/02/06 per tracker 
935 ads.osdn.com
936 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
937 kt*.kliptracker.com/
938 gfx.dvlabs.com/klipmart/
939 #MASTER# REMARKS: Actions file tracker 1547656 09/02/06
940 img.mediaplex.com
941 #MASTER# REMARKS: Actions file tracker 1152563 09/02/06
942 ads.monster.com
943 #MASTER# REMARKS: Support request 1312362 09/08/06
944 adserver.itsfogo.com
945 #MASTER# BLOCK-REFERRER: http://www.multiproxy.org/anon_proxy.htm 09/10/06
946 view.atdmt.com
947 #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
948 #MASTER# BLOCK-REFERRER:  http://www.heise.de/newsticker/meldung/61067
949 matrix.mediavantage.de
950 #MASTER# REMARKS Ad generator, user tracker 09/11/06
951 .cibleclick.com
952 MASTER# REMARKS: Ad generator 09/11/06  http://c1.netshelter.net/campaigns/ITTTech/itttech09_728x90.gif
953 #MASTER# BLOCK-REFERRER:  http://www.osnews.com/ 09/11/06
954 .netracker.net
955 #MASTER# REMARKS: ad generator domain per sf tracker 09/11/06
956 .interclick.com
957 MASTER# REMARKS: Ad generator http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
958 #MASTER# BLOCK-REFERRER: http://www.imdb.com/name/nm0000168/bio 09/12/06
959 .maxserving.com
960 MASTER# REMARKS: Ad generator http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
961 #MASTER# BLOCK-REFERRER:  http://torrent.to/torrent/ 09/12/06
962 .gonamic.de
963 MASTER# REMARKS: Ad generator http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
964 #MASTER# BLOCK-REFERRER:  http://news.yahoo.com/news?tmpl=story&cid=534&e=1&u=/ap/20050613/ap_on_he_me/cancer_research
965 .adlegend.com
966 MASTER# REMARKS: Ad generator 09/12/06 http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
967 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/louisianaandmardigra/messages/1?viscount=100
968 .belnk.com
969
970 #----------------------------------------------------------------------------
971 # Cross-site user tracking
972 #----------------------------------------------------------------------------
973 #MASTER# BLOCK-REFERRER: http://os2.ru/
974 .*.*.spylog.com/
975 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
976 statse.webtrendslive.com
977 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
978 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
979 spinbox.versiontracker.com/.*\.(gif|jpg)
980 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
981 stat.onestat.com
982 #MASTER# BLOCK-REFERRER: http://www.global.net.uk/
983 .[a-vx-z]*.tradedoubler.com
984 #MASTER# BLOCK-REFERRER: http://www.sharepoint.boo.pl/
985 stat.webmedia.pl/
986 #MASTER# BLOCK-REFERRER: http://www.asp-php.net/index.php
987 log*.xiti.com/
988 log*.hit-parade.com/
989 #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/884810.asp?0si=-&cp1=1
990 www.xml.eshop.msn.com/tracksponsorimpression.asp
991 #MASTER# BLOCK-REFERRER: http://www.washingtonpost.com/
992 stats.surfaid.ihost.com/(crc/)?images/(bounce/)?uc.GIF
993 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/
994 .imrworldwide.com
995
996 #----------------------------------------------------------------------------
997 # Specific counters (see above for generic patterns)
998 #----------------------------------------------------------------------------
999 #MASTER# BLOCK-REFERRER: http://www.distrowatch.com/table.php?distribution=linex
1000 s*.sitemeter.com/meter\.asp
1001 #MASTER# BLOCK-REFERRER: http://personales.mundivia.es/lbouza/
1002 fastcounter.bcentral.com/
1003 #MASTER# BLOCK-REFERRER: http://osnews.com/
1004 bilbo.counted.com/
1005 #MASTER# BLOCK-REFERRER: http://enciclopedia.us.es/
1006 p[0-9].nedstatbasic.net/
1007 #MASTER# BLOCK-REFERRER: http://www.vencor.narod.ru/films/inolv.htm
1008 bs.yandex.ru/count/
1009
1010 #----------------------------------------------------------------------------
1011 # On-site ads and other single sources:
1012 #----------------------------------------------------------------------------
1013 #MASTER# BLOCK-REFERRER: http://www.fotw.net/flags/
1014 www.fotw.net/images/linea2.gif
1015 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
1016 www.asahi.com/(.*/)?ad/
1017 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
1018 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
1019 .travelocity./Sponsor_gifs/
1020 #MASTER# BLOCK-REFERRER: http://www.ebay.com
1021 pics.ebay.com/aw/pics/homepage/big8
1022 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
1023 naturalismedicina.com/cgibin/linswap
1024 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
1025 a.consumer.net
1026 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
1027 images.deviantart.com/affiliates/
1028 images.deviantart.com/shared/(winzip|trillian)\.gif
1029 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/
1030 www.happypuppy.com/newstuff/netsys\.swf
1031 www.happypuppy.com/images/[^/]+\.gif
1032 www.happypuppy.com/images/sav_creative/savage_01.jpg
1033 www.happypuppy.com/images/site/cnb_but_nav.gif
1034 #MASTER# DONT-VERIFY
1035 #MASTER# REMARKS: Referenced from HTML-Emails
1036 .weather.com/creatives/
1037 .weather.com/web/services/email/
1038 #MASTER# BLOCK-REFERRER: http://www.mapblast.com/
1039 :81/feeds/
1040 x.mycity.com
1041 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html
1042 /.*/topslots/topslot_
1043 #MASTER# BLOCK-REFERRER: http://maccentral.macworld.com/
1044 maccentral.macworld.com/images/subsad
1045 #MASTER# BLOCK-REFERRER: http://bigcharts.marketwatch.com/
1046 a.mktw.net
1047 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/win/
1048 www.happypuppy.com/images/sav_creative
1049 #MASTER# BLOCK-REFERRER: http://www.wral.com/
1050 images.ibsys.com/.*/sponsors/
1051 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/money/economy/fed/2002-09-23-bubble-debate_x.htm
1052 www.usatoday.com/sponsors/
1053 #MASTER# BLOCK-REFERRER: http://www.jpost.com/
1054 ads.jpost.com
1055 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
1056 /.*/images/\d+/promos/
1057 #MASTER# BLOCK-REFERRER: http://www.kuro5hin.org/
1058 #www.kuro5hin.org/images/[^/]+\.gif
1059 #MASTER# BLOCK-REFERRER: http://www.uolsinectis.com.ar/
1060 ad.uol.com.br
1061 #MASTER# BLOCK-REFERRER: http://www.spammimic.com/credits.shtml
1062 www.anonymizer.com/images/affiliate/
1063 #MASTER# BLOCK-REFERRER: http://cracks.thebugs.ws/pages/H/7.shtml
1064 img.thebugs.ws
1065 #MASTER# BLOCK-REFERRER: http://www.kinghost.com/fetish/xworx/Azian/nextdoor/06/realm.html
1066 www.kinghost.com/ban/
1067 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/
1068 www.infoempleo.com/(pop-up|images(/Nueva/banner_|/motor))
1069 #MASTER# BLOCK-REFERRER: http://www.hardocp.com/
1070 hera.hardocp.com/
1071 #MASTER# BLOCK-REFERRER: http://www.slovio.com/
1072 www.slovio.com/1/signs/(66|120)
1073 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/
1074 images.usatoday.com/.*promo
1075 images.usatoday.com/shop 
1076 #MASTER# BLOCK-REFERRER: http://www.free.fr/
1077 www.free.fr/img_une
1078 www.free.fr/promos
1079 #MASTER# BLOCK-REFERRER: http://people.aol.com/
1080 i.timeinc.net/sponsors
1081 #MASTER# BLOCK-REFERRER: http://www.watch.impress.co.jp/akiba/hotline/20021221/ballpc.html
1082 ngs.impress.co.jp/image.ng
1083 #MASTER# BLOCK-REFERRER: http://forums2.warcry.com/forum.phtml?f=69
1084 ims.warcry.com/scripts/ims/skyscrapers
1085 #MASTER# BLOCK-REFERRER: 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
1086 cdn.mapquest.com/mqhome/toy_
1087 www.sunbelt-software.com/cfbanners/
1088 #MASTER# BLOCK-REFERRER: http://www.chip.de/
1089 195.27.236.226/
1090 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
1091 astalavista.box.sk/adult.*\.jpg
1092 .box.sk/(468x60|120x600|hbb)
1093 #MASTER# BLOCK-REFERRER: http://www.investorguide.com
1094 www.investorguide.com/ad_
1095 #MASTER# BLOCK-REFERRER: http://www.ig.com.br/
1096 image.ig.com.br/gn/modulos/
1097 image.ig.com.br/v5/flash/ig_br/flash\.swf
1098 #MASTER# BLOCK-REFERRER: http://www.bol.com.br/
1099 b.i.bol.com.br/b/catho/a_
1100 #MASTER# BLOCK-REFERRER: http://news.independent.co.uk/world/australasia/story.jsp?story=381080
1101 www.independent.co.uk/img/commercial/
1102 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/epdf/
1103 a.rn11.com/
1104 #MASTER# BLOCK-REFERRER: http://www.dinside.no/
1105 www.dinside.no/annonsorer/
1106 #MASTER# BLOCK-REFERRER: http://www.computrabajo.es/
1107 www.computrabajo.es/imagenes/publicidad/
1108 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/
1109 www.boursorama.com/pub/
1110 #MASTER# BLOCK-REFERRER: http://www.baquia.com/com/20020416/art00010.html
1111 www.baquia.com/imagenes/pub/
1112 #MASTER# BLOCK-REFERRER: http://www.aint-it-cool-news.com/display.cgi?id=15348
1113 www.aintitcool.com/foxsearchlight/
1114 #MASTER# BLOCK-REFERRER: http://www.diabloii.net
1115 etype.adbureau.net/
1116 rcm-images.amazon.com/
1117 #MASTER# BLOCK-REFERRER: http://millionaire.itv.com/millionaire/game/freegame/nq-anytime/anytimeset.html
1118 millionaire.itv.com/.*/assets/
1119 www.digitoday.fi/services/
1120 #MASTER# BLOCK-REFERRER: http://www.heise.de/
1121 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1122 /RealMedia/ads/
1123
1124 #############################################################################
1125 # Site-specific unblockers:
1126 #############################################################################
1127 {-block}
1128 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
1129 www.faqs.org/banner\.html
1130 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
1131 bannerblind.mozdev.org
1132 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
1133 advogato.org
1134 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
1135 ad*.vhb.de
1136 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
1137 www.ugu.com/sui/ugu/adv
1138 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
1139 www.globalintersec.com/adv
1140 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
1141 banners.wunderground.com/banner/
1142 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
1143 www.sueddeutsche.de/.*banner
1144 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
1145 www.openoffice.org/banners/
1146 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
1147 capwiz.com/ieee/images/banner.gif
1148 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
1149 sec*.greymagic.com/adv/
1150 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
1151 .foxnews.com/images/banners/(sec|logo)
1152 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
1153 #MASTER# REMARKS: Used as link tracker on (needed) internal links
1154 www.comdirect.de/stat/count.php
1155 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
1156 #MASTER# REMARKS: Part of site decoration
1157 .amazon.com/.*/banners/
1158 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
1159 #MASTER# REMARKS: Javascripts whose absence messes the page
1160 .washingtonpost.com/wp-srv/
1161 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
1162 www.gnome.org
1163 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
1164 .nycsubway.org/img/banner
1165 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
1166 ads.hellug.gr
1167 #MASTER# UNBLOCK-REFERRER: http://www.ebgames.com/ebx/ads/promos/bargainbin/pc/
1168 www.ebgames.com/ebx/ads/promos/
1169 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1170 www.forgotten-ny.com/ADS/
1171 #MASTER# UNBLOCK-REFERRER: http://bricolage.thepirtgroup.com/docs/Bric/AdvTemplates.html
1172 /.*/AdvTemplates.html
1173 #MASTER# UNBLOCK-REFERRER: http://counter.li.org
1174 counter.li.org
1175 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/
1176 adrian.adrian.org
1177 #MASTER# UNBLOCK-REFERRER: http://www.tompaine.com/op_ads/
1178 www.tompaine.com/op_ads/
1179 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/
1180 adela.karlin.mff.cuni.cz
1181 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html
1182 www.swcp.com/rtoads/
1183 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
1184 #MASTER# REMARKS: Don't block our own feedback process, even if the
1185 #MASTER# REMARKS: parameters contain block patterns
1186 www.privoxy.org
1187 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
1188 sourceforge.net/.*tracker
1189 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
1190 www.brawnylads.com
1191 #MASTER# UNBLOCK-REFERRER: http://www.artbrokerage.com/ads/ads2.htm
1192 www.artbrokerage.com/ads/
1193 #MASTER# UNBLOCK-REFERRER: http://www.tivoli.com/support/storage_mgr/
1194 www.tivoli.com/support/storage_mgr/adsercli.htm
1195 #MASTER# UNBLOCK-REFERRER: http://www.acm.org/siggroup/
1196 www.acm.org
1197 #MASTER# UNBLOCK-REFERRER: http://www.motel6.com/
1198 www.motel6.com/maps/detailmap_tracker.asp
1199 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
1200 adzapper.
1201 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
1202 .altavista.com/web/adv
1203 #MASTER# UNBLOCK-REFERRER: http://rads.mcafee.com/rads/scripts/RADS.dll?QueryProduct2
1204 rads.mcafee.com/rads/
1205 #MASTER# UNBLOCK-REFERRER: http://linuxfromscratch.org/cgi-bin/lfscounter.cgi
1206 linuxfromscratch.org/cgi-bin/lfscounter.cgi
1207 #MASTER# UNBLOCK-REFERRER: http://www.wholetomato.com/
1208 www.wholetomato.com/images/banner.jpg
1209 #MASTER# UNBLOCK-REFERRER: http://dv411.com/advc50.html
1210 dv411.com/advc50.html
1211 #MASTER# UNBLOCK-REFERRER: http://www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1212 www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1213 #MASTER# UNBLOCK-REFERRER: http://www.percom.org/
1214 www.percom.org/banner.html
1215 #MASTER# UNBLOCK-REFERRER: http://www.aaai.org/Magazine/Departments/calendar.html
1216 www.aaai.org/Graphics/Banners/
1217 #MASTER# UNBLOCK-REFERRER: http://www.arm.com/support/ads_faq?OpenDocument&ExpandSection=11
1218 www.arm.com/.*ads
1219 #MASTER# UNBLOCK-REFERRER: http://www.anybrowser.org/campaign/
1220 www.anybrowser.org/.*banner
1221 #MASTER# UNBLOCK-REFERRER: http://www.tads.org/
1222 www.tads.org/
1223 #MASTER# UNBLOCK-REFERRER: http://www.mbe.com/redir/packtrack.asp
1224 www.mbe.com/redir/packtrack.asp
1225 www.iship.com/trackit/
1226 #MASTER# UNBLOCK-REFERRER: http://www.newegg.com/
1227 www.newegg.com/track.asp
1228 #MASTER# UNBLOCK-REFERRER: http://kt.aspseek.org/
1229 kt.aspseek.org/adv.html
1230 #MASTER# UNBLOCK-REFERRER: http://www.esis.com.au/AdvSerialCards/Firewire.htm
1231 www.esis.com.au/AdvSerialCards
1232 #MASTER# UNBLOCK-REFERRER: http://www.familysearch.org/
1233 www.familysearch.org/.*banner
1234 #MASTER# UNBLOCK-REFERRER: http://coder.com/
1235 coder.com/creations/banner/
1236 #MASTER# UNBLOCK-REFERRER: http://arnolds.dhs.org/static/adv_tools.html
1237 arnolds.dhs.org/static/adv_tools.html
1238 #MASTER# UNBLOCK-REFERRER: http://www.ibm.com/
1239 www-3.ibm.com/software/ad/
1240 #MASTER# UNBLOCK-REFERRER: http://www.gpl.org/
1241 www.gpl.org/TLCimages2/banner2.gif
1242 #MASTER# UNBLOCK-REFERRER: http://europa.eu.int/yourvoice/
1243 europa.eu.int
1244 #MASTER# UNBLOCK-REFERRER: http://www.schooner.com/~loverso/no-ads/
1245 www.schooner.com/~loverso/no-ads/
1246 #MASTER# UNBLOCK-REFERRER: http://www.debka.com/
1247 ad.debka.com/(css|images)
1248 #MASTER# UNBLOCK-REFERRER: http://www.directv.com/DTVAPP/index.jsp
1249 #MASTER# REMARKS: Yuck!
1250 realmedia*./.*/DIRECTV/
1251 oascentral.directv.com/
1252 #MASTER# UNBLOCK-REFERRER: http://source.bungie.org/
1253 source.bungie.org/
1254 #MASTER# UNBLOCK-REFERRER: http://adonthell.linuxgames.com/
1255 adonthell.linuxgames.com/
1256 #MASTER# UNBLOCK-REFERRER: http://news.bbc.co.uk/furniture/chinese/banner/bbccantonese_600.gif
1257 #MASTER# REMARKS: Banner-free site(s).
1258 .bbc.co.uk/
1259 #MASTER# UNBLOCK-REFERRER: http://www.eclipse.org
1260 www.eclipse.org/banner\.html
1261 #MASTER# UNBLOCK-REFERRER: http://www.egads.com/
1262 .egads.com/
1263 #MASTER# UNBLOCK-REFERRER: http://adc.netlabs.org/
1264 adc.netlabs.org/
1265 #MASTER# UNBLOCK-REFERRER: http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm
1266 www.tela.bc.ca/tads/
1267 #MASTER# UNBLOCK-REFERRER: http://adbusters.org/information/
1268 adbusters.org/
1269 #MASTER# UNBLOCK-REFERRER: http://www.eads.com/
1270 #MASTER# UNBLOCK-REFERRER: http://www.eads.net/
1271 #MASTER# UNBLOCK-REFERRER: http://www.eads.de/
1272 .eads.*/
1273 #MASTER# UNBLOCK-REFERRER: http://www.qualcomm.com/brew/developer/resources/ad/documentation.html 
1274 www.qualcomm.com/brew/developer/resources/ad/
1275 #MASTER# UNBLOCK-REFERRER: http://www.tomshardware.com/storage/20031001/index.html
1276 www.ad.tomshardware.com/cgi-bin/logo2.m?
1277 #MASTER# UNBLOCK-REFERRER:  http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=2959829594&category=30018#ebayphotohosting
1278 .ebayimg.com/
1279 #MASTER# UNBLOCK-REFERRER: http://upgrade.bitdefender.com/update71/avx/Plugins/adsntfs.xmd.gzip 09/04/06
1280 /update/.*adsnt.*
1281 #MASTER# UNBLOCK-REFERRER: http://msdn.microsoft.com/
1282 msdn.microsoft.com/.*masthead
1283 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1284 .indymedia.org
1285 #MASTER# UNBLOCK-REFERRER: http://www.seanbaby.com/stupid/comicads05.shtml 09/11/06
1286 .seanbaby.com
1287 #MASTER# UNBLOCK-REFERRER:  http://www.cels.org/db/keep-track.pl?cat:1 09/11/06
1288 cels.org/.*track
1289 #MASTER# UNBLOCK-REFERRER: http://www.nic.ad.jp/ See http://jprs.co.jp/en/jpdomain.html 09/11/06
1290 .nic.ad.jp
1291 #MASTER# UNBLOCK-REFERRER: http://www.flickr.com/photo_zoom.gne?id=32594118&size=l 09/11/06
1292 #MASTER# REMARKS: creativecommons.org worthwhile organization 09/11/06
1293 /(.*/)?somerights20.gif
1294 .creativecommons.org
1295
1296 #############################################################################
1297 # Site-specific special rules:
1298 #############################################################################
1299
1300 #----------------------------------------------------------------------------
1301 # These sites are very complex (read: keen on your identity) and require
1302 # minimal interference.
1303 #----------------------------------------------------------------------------
1304 {fragile}
1305 .office.microsoft.com
1306 .windowsupdate.microsoft.com
1307 .apple.com
1308 .yahoo.com
1309 #MASTER# REMARKS: Actions Tracker 1293057 09/02/06
1310 .update.microsoft.com
1311
1312 #----------------------------------------------------------------------------
1313 # Shopping and banking sites - allow cookies and pop-ups
1314 #----------------------------------------------------------------------------
1315 {shop}
1316 .quietpc.com
1317 .worldpay.com   # for quietpc.com
1318 .jungle.com
1319 .dabs.com
1320 .overclockers.co.uk
1321 .db24.de
1322 .ebay.
1323 .mobile.de
1324 www.fondationlejeu.com
1325 www.techtv.com
1326 .mywebgrocer.com
1327
1328 #----------------------------------------------------------------------------
1329 # Subscription sites (with credible privacy policy) - allow permanent cookies
1330 #----------------------------------------------------------------------------
1331 {-session-cookies-only}
1332 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
1333 .nytimes.com/
1334 #MASTER# PROBLEM-URL: http://www.volkskrant.nl/
1335 .volkskrant.nl/
1336
1337 #----------------------------------------------------------------------------
1338 # These sites require pop-ups, so don't use the unconditional filters.
1339 #----------------------------------------------------------------------------
1340 {allow-popups}
1341 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
1342 www.aprilbarrows.com/discography\.html$
1343 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
1344 .infospace.com/.*/venshopping/
1345 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
1346 www.nvidia.com
1347 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
1348 www*.chathouse.com/games/
1349 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
1350 #MASTER# REMARKS: Search results come in a popup
1351 www.tagesschau.de
1352 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
1353 www.xmms.org
1354 #MASTER# PROBLEM-URL: http://www.bild.de/
1355 .bild.t-online.de
1356 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
1357 www.m-w.com
1358 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
1359 www.pcbox.es
1360 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
1361 www.hola.com/club/
1362 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
1363 www.infoempleo.com
1364 #MASTER# PROBLEM-URL: http://www.netflix.com/
1365 www.netflix.com
1366 #MASTER# PROBLEM-URL: http://amnistiapornigeria.org/
1367 amnistiapornigeria.org
1368 #MASTER# PROBLEM-URL: http://ponteensupiel.org/index2.html
1369 ponteensupiel.org
1370 #MASTER# PROBLEM-URL: http://www.ifilm.com/ifilm/aicn
1371 www.ifilm.com/ifilm
1372 #MASTER# PROBLEM-URL: http://www.pogo.com/
1373 .pogo.com
1374 #MASTER# PROBLEM-URL: http://my.aol.com/
1375 my.aol.com
1376 #MASTER# PROBLEM-URL: http://www.cnn.com/
1377 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
1378 i.cnn.net/cnn/.*/clickability/button
1379 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
1380 www.rosettaproject.org
1381 #MASTER# PROBLEM-URL: http://www.quantum.com requires popups for downloads, etc. 09/11/06
1382 .quantum.com
1383
1384
1385 #----------------------------------------------------------------------------
1386 # Sometimes (i.e. often!) fast-redirects catches things by mistake
1387 #----------------------------------------------------------------------------
1388 {-fast-redirects}
1389 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
1390 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
1391 .google.
1392 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
1393 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
1394 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
1395 .speedfind.de
1396 #MASTER# PROBLEM-URL: http://www.nytimes.com/
1397 .nytimes.com
1398 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
1399 .yahoo.com/.*done=
1400 #MASTER# PROBLEM-URL: http://validator.w3.org/check
1401 .w3.org
1402 #MASTER# PROBLEM-URL: http://www.ask.com/
1403 .directhit.com
1404 #MASTER# PROBLEM-URL: http://www.zagats.com/
1405 .zagats.com
1406 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
1407 #MASTER# PROBLEM-URL: http://www.msn.com/
1408 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
1409 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
1410 login.passport.com/logout\.(asp|srf)\?
1411 #MASTER# PROBLEM-URL: http://www.fileplanet.com
1412 download.com.com/redir\?
1413 www.fileplanet.com/redir\.asp\?
1414 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
1415 web.archive.org
1416 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
1417 .edu
1418 #MASTER# PROBLEM-URL: http://web.archive.org
1419 .archive.org
1420 #MASTER# PROBLEM-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
1421 www.guenstiger.de
1422 #MASTER# PROBLEM-URL: http://anon.free.anonymizer.com/http://www.privoxy.org/
1423 .anonymizer.com
1424 #MASTER# PROBLEM-URL: http://www.mailtothefuture.com/public/logon?http://www.mailtothefuture.com/
1425 www.mailtothefuture.com
1426 #MASTER# PROBLEM-URL: http://support.microsoft.com/default.aspx?scid=KB;en-us;q219110
1427 support.microsoft.com/
1428 #MASTER# PROBLEM-URL: http://www.alexa.com/data/details/traffic_details?q=blogspot&url=http://www.blogalia.com
1429 www.alexa.com
1430 #MASTER# PROBLEM-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
1431 www.translate.ru/url/
1432
1433 #----------------------------------------------------------------------------
1434 # No filtering for sourcecode or other automatically parsed content
1435 #----------------------------------------------------------------------------
1436 {-filter}
1437 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
1438 cvs.
1439 /.*(cvs(view|web)|viewcvs)
1440 #MASTER# REMARKS: The same for Subversion
1441 #MASTER# PROBLEM-URL: http://svn.sourceforge.net/
1442 svn.
1443 websvn.
1444 /(.*/)?svn/
1445
1446 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
1447 #MASTER# REMARKS: Jeez, could you please stay with one of them?
1448 liveupdate.symantec.com
1449 liveupdate.liveupdatesymantec.com
1450 liveupdate.symantecliveupdate.com
1451 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
1452 www.bookmarklets.com
1453 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
1454 www.squarefree.com/bookmarklets/
1455 #MASTER# DONT-VERIFY
1456 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
1457 swquery.apple.com
1458 swscan.apple.com
1459 #MASTER# PROBLEM-URL: http://atl.speakeasy.net/300k
1460 #MASTER# REMARKS: These are various US DSL speed tests sites, where MIME is wrong
1461 .speakeasy.net/\d+k
1462 #MASTER# PROBLEM-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=185033
1463 .debian.org
1464 #MASTER# DONT-VERIFY
1465 #MASTER# REMARKS: Popular bug-tracking system - likely to contain code
1466 bugzilla.
1467 .tldp.org
1468 #MASTER# REMARKS: all the world is wikified 09/02/06. Generic wiki un-filterers.
1469 .wiki*.
1470 .*wiki.
1471 /.*wiki/
1472 #MASTER# REMARKS: protect some google projects from accidental JS/HTML tampering, etc
1473 maps.google.
1474 .google.com/calendar
1475 #MASTER# REMARKS: A lot of code and docs on these sites:
1476 code.
1477 developer.
1478 .mozdev.org
1479 .mozilla.org
1480 .perl.org
1481 .cpan.org
1482 .webdeveloper.com
1483 .ibm.com/developerworks
1484 .apache.org/docs
1485 .comptechdoc.org
1486 .webmonkey.com
1487 .webreference.com
1488 docs.sun.com
1489 java.sun.com
1490 .thescripts.com
1491 .php.net
1492 .phpdeveloper.org
1493 .oreillynet.com/pub
1494 .devshed.com
1495 .htmlgoodies.com
1496 .javascript.com
1497 javascript.internet.com
1498 .w3schools.com
1499 .devguru.com
1500 javascriptkit.com
1501 .xulplanet.com
1502 .perl.com/language/newdocs/pod/
1503
1504 #----------------------------------------------------------------------------
1505 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1506 # workaround is to use zlib.output_compression):
1507 # (Section obsolete as of Privoxy 3.0.3, which has workaround)
1508 #----------------------------------------------------------------------------
1509 #{-prevent-compression}
1510 #MASTER# PROBLEM-URL: http://www.powie.de/
1511 #www.powie.de
1512 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1513 #www.phpcenter.de
1514 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1515 #www.timeanddate.com
1516 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1517 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1518 #.pclinuxonline.com
1519 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1520 #.dungeoncrawl.org
1521 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1522 #www.digitalspy.co.uk
1523 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1524 #www.audio-illumination.org/forums/
1525 #MASTER# PROBLEM-URL: http://www.catchword.com/
1526 #www.catchword.com
1527 #MASTER# PROBLEM-URL: http://www.ubernet.org
1528 #www.ubernet.org
1529 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1530 #www.ooodocs.org
1531 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1532 #www.ntcompatible.com
1533 #MASTER# PROBLEM-URL: http://www.winehq.com/
1534 #.winehq.com
1535 #MASTER# PROBLEM-URL: http://www.dotcomtod.de/
1536 #.dotcomtod.de/
1537 #MASTER# PROBLEM-URL: http://www.tweakers.net
1538 #.tweakers.net
1539 #MASTER# PROBLEM-URL: http://www.troublesathome.nl
1540 #.troublesathome.nl
1541 #MASTER# PROBLEM-URL: http://www.art.softshape.com
1542 #.art.softshape.com
1543
1544 #----------------------------------------------------------------------------
1545 # The first frame of the gif animation is more useful here:
1546 #----------------------------------------------------------------------------
1547 {+deanimate-gifs{first}}
1548 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
1549 #MASTER# REMARKS: Animation shows phone number
1550 .pricecontrast.com
1551
1552 #----------------------------------------------------------------------------
1553 # Innocent images in standard banner sizes found here:
1554 #----------------------------------------------------------------------------
1555 {-filter{banners-by-size}}
1556 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
1557 .max.de
1558 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
1559 www.unmuseum.org
1560 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hints.htm
1561 www.connected-media.com/.*/hints\.htm
1562 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244
1563 www.pricegrabber.com/search_getprod.php
1564 #MASTER# PROBLEM-URL: http://www.ebgames.com/ebx/categories/products/product.asp?pf_id=158422
1565 www.ebgames.com/ebx/.*/product.asp\?
1566 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1567 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1568 .cnn.com
1569 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1570 #MASTER# REMARKS: 120x90 content images
1571 .gamespot.com/gamespot
1572 .cnet.com
1573 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hint.htm
1574 www.connected-media.com/riven/
1575 #MASTER# PROBLEM-URL: http://www.wral.com/
1576 www.wral.com
1577 #MASTER# PROBLEM-URL: http://www.canada.com/calgary/
1578 www.canada.com
1579 #MASTER# PROBLEM-URL: http://www.theonionavclub.com
1580 www.theonionavclub.com
1581 #MASTER# PROBLEM-URL: http://www.lowermybills.com/servlet/LMBServlet?the_action=NavigateLongDistanceResults&sourceid=meweapu7att203500227&areacode=770&prefix=650&Go.x=23&Go.y=9
1582 #MASTER# REMARKS: Actually needs banners
1583 www.lowermybills.com
1584 #MASTER# PROBLEM-URL: http://www.theonionavclub.com
1585 www.theonionavclub.com
1586 #MASTER# PROBLEM-URL: http://www.care2.com/send/catbirthd1.html
1587 www.care2.com
1588 #MASTER# PROBLEM-URL: http://www.cartoonnetwork.com/
1589 www.cartoonnetwork.com/
1590 #MASTER# PROBLEM-URL: http://www.anybrowser.org/campaign/
1591 www.anybrowser.org
1592 #MASTER# PROBLEM-URL: http://images.google.de/images?q=cookie+monster&svnum=10&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=40&sa=N
1593 images.google.
1594 #MASTER# PROBLEM-URL: http://www.local6.com/news/1821238/detail.html
1595 www.local6.com/
1596 #MASTER# PROBLEM-URL: http://www.pbs.org/wgbh/pages/roadshow/series/highlights/2003/albuquerque/index.html
1597 www.pbs.org/wgbh/pages/roadshow/series
1598 #MASTER# PROBLEM-URL: http://objects.povworld.org/cat/Toys/for_Adults/
1599 objects.povworld.org/cat/
1600 #MASTER# PROBLEM-URL: http://www.xach.com/gimp/tutorials/tiles.html
1601 www.xach.com/gimp/
1602 #MASTER# PROBLEM-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
1603 #MASTER# REMARKS: The destination map at the bottom of the page.
1604 www.mapquest.com/directions/
1605 #MASTER# PROBLEM-URL: http://www.theonion.com/
1606 www.theonion.com/
1607 #MASTER# PROBLEM-URL: http://www.bookofratings.com/dangersymbols2.html
1608 www.bookofratings.com
1609 #MASTER# PROBLEM-URL: http://www.pattilupone.net/gallery.html
1610 www.pattilupone.net/gallery.html
1611 #MASTER# PROBLEM-URL: http://www.animositisomina.com/discog/present.php4
1612 www.animositisomina.com/discog/
1613 #MASTER# PROBLEM-URL: http://www.gamespot.com/pc/rpg/deusexinvisiblewar/screenindex.html
1614 www.gamespot.com/.*/screenindex\.html
1615 #MASTER# PROBLEM-URL: http://www.ambrosiasw.com/games/evn/desktops.html
1616 www.ambrosiasw.com/
1617 #MASTER# PROBLEM-URL: http://www.capitalnews9.com/
1618 www.capitalnews9.com
1619 #MASTER# PROBLEM-URL: http://www.golitestore.com/store/products.asp?dept=1003
1620 www.golitestore.com/store
1621 #MASTER# PROBLEM-URL: http://www.thinkgeek.com/
1622 www.thinkgeek.com/
1623 #MASTER# PROBLEM-URL: http://oca.microsoft.com/en/Welcome.asp
1624 .microsoft.com
1625 #MASTER# PROBLEM-URL: http://javabog.dk/ijk/
1626 javabog.dk/ijk/
1627 #MASTER# REMARK: Per Debian bug report #319025
1628 .w3.org
1629 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1630 .indymedia.org
1631
1632 #----------------------------------------------------------------------------
1633 # These don't work without the referrer information:
1634 #----------------------------------------------------------------------------
1635 {-hide-referrer}
1636 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
1637 /cgi-bin/fosi.cgi
1638 #MASTER# PROBLEM-URL: http://www.abcnews.com/
1639 printerfriendly.abcnews.com
1640 #MASTER# PROBLEM-URL: http://www.ask.com/
1641 .ask.com
1642 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
1643 www.amazon.de/exec/obidos/clipserve/
1644 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
1645 .lufthansa.
1646 #MASTER# REMARKS: These are movie clips, linked from http://us.imdb.com
1647 .totaleclips.com
1648 #MASTER# PROBLEM-URL: http://www.mandrakelinux.com/en/ftp.php3
1649 #MASTER# REMARKS: Link to download page breaks
1650 www.mandrakelinux.com/en/ftp.php3
1651 #MASTER# REMARKS: Actions Tracker 1313157
1652 validator.w3.org/check\?uri=referer
1653 #MASTER# REMARKS: Fixes Debian Bug #250407
1654 .petitiononline.com/mod_perl/signed.cgi
1655
1656
1657 #----------------------------------------------------------------------------
1658 # These animated gifs are either useful or nice:
1659 #----------------------------------------------------------------------------
1660 {-deanimate-gifs}
1661 #MASTER# PROBLEM-URL: http://www.care2.com/
1662 #MASTER# REMARKS: Wanted animations on ecards
1663 .care2.com
1664 .care-mail.com
1665 #MASTER# PROBLEM-URL: http://www.ameritrade.com
1666 #MASTER# REMARKS: Animated link texts
1667 www.ameritrade.com
1668 #MASTER# PROBLEM-URL: http://www.myrealbox.com/a?B.KL.U6wQ.d
1669 #MASTER# REMARKS: Bogus web server doesn't close connection -> deanimation doesn't terminate
1670 www.myrealbox.com
1671 #MASTER# PROBLEM-URL: http://weather.chicagotribune.com/radar/station.asp?ID=LOT19&type=loop
1672 #MASTER# REMARKS: These are weather radar images.
1673 .wunderground.com
1674 #MASTER# PROBLEM-URL: http://www.freewarepalm.com/games/spacetrader.shtml
1675 #MASTER# REMARKS: Alternating screenshots
1676 www.freewarepalm.com/images/products
1677 #MASTER# PROBLEM-URL: http://www.capitalnews9.com/
1678 images.newsx.cc/news9albany_media/weather/
1679 #MASTER# PROBLEM-URL: http://www.wunderground.com/radar/station.asp?ID=MPX19&type=loop&clutter=1
1680 66.28.250.180/data/
1681 #MASTER# PROBLEM-URL: http://www.stanford.edu/group/pandegroup/folding/
1682 www.stanford.edu/group/pandegroup/folding/villin/
1683 #MASTER# PROBLEM-URL: http://www.teamquest.com/html/gunther/laquiz.shtml
1684 www.teamquest.com/gifs/gunther/
1685
1686 #----------------------------------------------------------------------------
1687 # These sites are so abusive that we need to kill all JS event bindings (and
1688 # probably a break a lot along the way)
1689 #----------------------------------------------------------------------------
1690 {+filter{js-radical}}
1691 #MASTER# PROBLEM-URL: http://www.planetspiele.de/
1692 .planetspiele.de
1693 216.12.219.40
1694
1695 #----------------------------------------------------------------------------
1696 # The "site-specifics" filter has special cures for problems found here:
1697 #----------------------------------------------------------------------------
1698 {+filter{site-specifics}}
1699 #MASTER# PROBLEM-URL: http://www.spiegel.de/static/js/flash-plugin.js
1700 www.spiegel.de/static/js/flash-plugin\.js
1701 #MASTER# PROBLEM-URL: http://www.quelle-bausparkasse.de/
1702 www.quelle-bausparkasse.de/$
1703 #MASTER# PROBLEM-URL: http://de.groups.yahoo.com/group/die-spinner/interrupt?st=2&ln=die-spinner&m=1&done=%2Fgroup%2Fdie-spinner%2Fmessage%2F416
1704 .groups.yahoo.com/group/
1705 #MASTER PROBLEM-URL: http://www.nytimes.com/
1706 www.nytimes.com/
1707
1708 #----------------------------------------------------------------------------
1709 # Content under these TLDs is most probably in character sets which the
1710 # demoronizer filter would mess up
1711 #----------------------------------------------------------------------------
1712 {-filter{demoronizer}}
1713 .jp
1714 .cn
1715 .tw
1716 .ru
1717 .kr
1718
1719 #----------------------------------------------------------------------------
1720 # Misc special rules:
1721 #----------------------------------------------------------------------------
1722 {-filter{content-cookies} -filter{webbugs}}
1723 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1724 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1725 www.friendscout24.de
1726 #MASTER# PROBLEM-URL:  http://www.webreference.com/js/column8/property.html
1727 #MASTER# REMARKS: Explains how content cookies work
1728 www.webreference.com/js/column8/property.html
1729
1730 {-deanimate-gifs -filter{all-popups} -kill-popups}
1731 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
1732 #MASTER# REMARKS: Know your enemy ;-)
1733 www.valueclick.com
1734
1735 {-filter{banners-by-size} -deanimate-gifs}
1736 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
1737 #MASTER# REMARKS: They use banner-sized animated images
1738 realguide.real.com/games
1739
1740 {-handle-as-image}
1741 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
1742 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
1743 .doubleclick.net/adi
1744 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
1745 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs
1746 view.atdmt.com/(.*/)?iview/
1747
1748 {+block}
1749 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
1750 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
1751 www.geocities.com/js_source
1752
1753 {-filter{fun}}
1754 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1755 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1756 /(.*/)?user-manual/filter-file.html
1757
1758 {+filter{img-reorder} +filter{banners-by-link}}
1759 #MASTER# PROBLEM-URL: http://www.dn.se/
1760 #MASTER# REMARKS: Can't catch by size or location
1761 www.dn.se
1762
1763 {-filter{img-reorder}}
1764 #MASTER# PROBLEM-URL: http://images.google.com
1765 #MASTER# REMARKS: Google images don't show up with img-reorder on
1766 images.google.com
1767
1768 {-filter{js-annoyances}}
1769 #MASTER# PROBLEM-URL: http://www.munichre.com/
1770 #MASTER# REMARKS: Endless reload loop if referrer info supressed
1771 www.munichre.com
1772 #MASTER# PROBLEM-URL: http://www.sfgate.com
1773 .sfgate.com
1774 #MASTER# PROBLEM-URL: http://www.nasa.gov
1775 #MASTER# REMARKS: No progress past main page without js-annoyances
1776 .nasa.gov
1777 #MASTER# REMARKS: Exclude per Debian bug report #377843
1778 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1779 .cnrs.fr 
1780 #MASTER# REMARKS: Exclude per Debian bug report #377843
1781 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1782 blogs.msdn.com
1783
1784 {-filter{unsolicited-popups}}
1785 #MASTER# DONT-VERIFY
1786 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1787 /.*mt.cgi$
1788 #MASTER# PROBLEM-URL: http://www.discovery.de/
1789 .discovery.de
1790 #MASTER# PROBLEM-URL: http://www.bankrate.com/yclc/calc/mortgage-calculator/mortgage-calculator.asp?
1791 www.bankrate.com/brm/
1792 #MASTER# PROBLEM-URL: http://www.ukoln.ac.uk/cgi-bin/dcdot.pl?mode=auto&url=http://www.skripczynski.de/people/skripi/bookmark.shtml
1793 www.ukoln.ac.uk/cgi-bin/dcdot.pl
1794 #MASTER# PROBLEM-URL: http://www.metrolounge.de
1795 www.metrolounge.de
1796 #MASTER# PROBLEM-URL: http://www.mcmaster.com
1797 www.mcmaster.com/products.html
1798 #MASTER# PROBLEM-URL: http://www.nbc4.com/news/2672416/detail.html
1799 cf.nbc4.com/
1800 #MASTER# PROBLEM-URL: http://www.hh.schule.de/ak/nt/
1801 www.hh.schule.de/ak/nt/
1802 #MASTER# REMARKS: Exclude per Debian bug report #377843
1803 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1804 .cnrs.fr 
1805 #MASTER# REMARKS: Exclude per Debian bug report #377843
1806 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1807 blogs.msdn.com
1808
1809 {+fast-redirects{check-decoded-url} -block}
1810 #MASTER# PROBLEM-URL: http://isbn.nu/0596001088/price/2.html
1811 www.commission-junction.com/track/
1812 #MASTER# PROBLEM-URL: http://uk.rd.yahoo.com/M=200059723.200849546.202365062.200414073/D=ukhmpg/S=15426100:TEAR/A=200396897/R=1119/id=img1_nocap_dial/*http://ad.uk.doubleclick.net/clk;5982435;8261020;g?http://www.lunnpoly.com
1813 #MASTER# REMARKS: Basically all of Yahoo's outbound links
1814 .*rd.yahoo.com/
1815
1816 {-filter{webbugs}}
1817 #MASTER# REMARKS: Has nasty webbugs-in-JS-string syntaxy problem
1818 www.meteo.fr
1819
1820 {+block}
1821 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1822 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1823 /antitheft\.php
1824
1825 {+filter{tiny-textforms}}
1826 .sourceforge.net/tracker
1827
1828 {+downgrade-http-version}
1829 #MASTER# REMARKS: This is work-around for CUPS http configuration.
1830 :631
1831 #MASTER# PROBLEM-URL: http://cr.yp.to/
1832 cr.yp.to/
1833 #MASTER# PROBLEM-URL: http://www.canada.com/vancouver/
1834 www.canada.com/
1835
1836 { -crunch-outgoing-cookies \
1837   -crunch-incoming-cookies \
1838   +session-cookies-only \
1839 }
1840 www.versiontracker.com/
1841
1842 # The JS abuse hall of shame:
1843 #
1844 { +filter{js-events} }
1845 #MASTER# PROBLEM-URL: http://www.pharmcast.com/WarningLetters/Yr2002/December2002/J&J1202.htm
1846 www.pharmcast.com/