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