Sync defaults with medium profile from standard.action
[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.2 2002/09/04 15:32:10 oes Exp $
6 #
7 #  Purpose     :  Default actions file, see
8 #                 http://www.privoxy.org/faq/questions.html#CONFIGFILES
9 #
10 #  Copyright   :  Written by and Copyright
11 #                 Privoxy team. http://www.privoxy.org/
12 #
13 #                 Based on the Internet Junkbuster originally written
14 #                 by and Copyright (C) 1997 Anonymous Coders and
15 #                 Junkbusters Corporation.  http://www.junkbusters.com
16
17 # Note: Updated versions of this file will be made available from time
18 #       to time. Check http://sourceforge.net/project/showfiles.php?group_id=11118
19 #       for updates and/or subscribe to the announce mailing list
20 #       (http://lists.sourceforge.net/lists/listinfo/ijbswa-announce) if you
21 #       wish to receive an email notice whenever updates are released.
22 #
23 # We value your feedback. However, to provide you with the best support,
24 # please note:
25 #  
26 #  * Use the support forum to get help:
27 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
28 #  * Submit feedback for this actions file only through our
29 #    actions file feedback script: http://www.privoxy.org/actions
30 #  * Submit bugs only through our bug forum:
31 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
32 #    Make sure that the bug has not already been submitted. Please try
33 #    to verify that it is a Privoxy bug, and not a browser or site
34 #    bug first. If you are using your own custom configuration, please
35 #    try the stock configs to see if the problem is a configuration
36 #    related bug. And if not using the latest development snapshot,
37 #    please try the latest one. Or even better, CVS sources.
38 #  * Submit feature requests only through our feature request forum:
39 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
40 #      
41 # For any other issues, feel free to use the mailing lists:
42 # http://sourceforge.net/mail/?group_id=11118
43 #    
44 # Anyone interested in actively participating in development and related
45 # discussions can join the appropriate mailing list here:
46 # http://sourceforge.net/mail/?group_id=11118. Archives are available
47 # here too.
48
49 #############################################################################
50 # Syntax
51 #############################################################################
52
53 # To determine which actions apply to a request, the URL of the request is
54 # compared to all patterns in this file. Every time it matches, the list of
55 # applicable actions for this URL is incrementally updated. You can trace
56 # this process by visiting http://i.j.b/show-url-info
57 #
58 # There are 4 types of lines in this file: comments (like this line),
59 # actions, aliases and patterns, all of which are explained below.
60 #
61 #############################################################################
62 # Pattern Syntax
63 #############################################################################
64
65 # 1. On Domains and Paths
66 # -----------------------
67 #
68 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
69 # and <path> part are optional. If you only specify a domain part, the "/"
70 # can be left out:
71
72 # www.example.com 
73 #   is a domain-only pattern and will match any request to www.yahoo.com
74
75 # www.example.com/
76 #   means exactly the same (but is slightly less efficient)
77
78 # www.example.com/index.html
79 #   matches only the document /index.html on www.example.com
80
81 # /index.html
82 #   matches the document /index.html, regardless of the domain
83
84 # index.html
85 #   matches nothing, since it would be interpreted as a domain name and
86 #   there is no top-level domain called ".html".
87
88 # 2. Domain Syntax
89 # ----------------
90
91 # The matching of the domain part offers some flexible options: If the
92 # domain starts or ends with a dot, it becomes unanchored at that end:
93
94 # www.example.com
95 #   matches only www.example.com
96
97 # .example.com
98 #   matches any domain that ENDS in .example.com
99
100 # www.
101 #   matches any domain that STARTS with www.
102 #
103 # .example.
104 #   matches any domain that CONTAINS example
105 #
106
107 # Additionally, there are wildcards that you can use in the domain names
108 # themselves. They work pretty similar to shell wildcards: "*" stands for
109 # zero or more arbitrary characters, "?" stands for one, and you can define
110 # charachter classes in square brackets and they can be freely mixed:
111
112 # ad*.example.com
113 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
114
115 # *ad*.example.com
116 #   matches all of the above
117
118 # .?pix.com
119 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
120
121 # www[1-9a-ez].example.com
122 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
123 #   wwwz.example.com etc, but not wwww.example.com
124
125 # You get the idea?
126
127 # 2. Path Syntax
128 # --------------
129
130 # Paths are specified as regular expressions. A comprehensive discussion of
131 # regular expressions wouldn't fit here, but (FIXME) someone should paste
132 # a concise intro to the regex language here.
133
134 # Perl compatible regular expressions are used. See the pcre/docs/ direcory or
135 # man perlre (also available on http://www.perldoc.com/perl5.6/pod/perlre.html)
136 # for details. The appendix to the user manual also has some detail.
137
138 # Please note that matching in the path is CASE INSENSITIVE by default, but
139 # you can switch to case sensitive by starting the pattern with the "(?-i)"
140 # switch:
141
142 # www.example.com/(?-i)PaTtErN.*
143 #   will match only documents whose path starts with PaTtErN in exactly this
144 #   capitalization.
145 #
146 # Partially case-sensetive and partially case-insensitive patterns are
147 # possible, but the rules about splitting them up are extremely complex
148 # - see the PCRE documentation for more information.
149
150 #############################################################################
151 # Action Syntax
152 #############################################################################
153 #
154 # There are 3 kinds of action:
155 #
156 # Boolean (e.g. "block"):
157 #   +name  # enable
158 #   -name  # disable
159 #
160 # Parameterized (e.g. "hide-user-agent"):
161 #   +name{param}  # enable and set parameter to "param"
162 #   -name         # disable
163 #
164 # Multi-value (e.g. "add-header", "send-wafer"):
165 #   +name{param}  # enable and add parameter "param"
166 #   -name{param}  # remove the parameter "param"
167 #   -name         # disable totally
168 #
169 # The default (if you don't specify anything in this file) is not to take
170 # any actions - i.e completely disabled, so Privoxy will just be a
171 # normal, non-blocking, non-anonymizing proxy.  You must specifically
172 # enable the privacy and blocking features you need (although the 
173 # provided default actions file will do that for you).
174 #
175 # Later actions always override earlier ones.  For multi-valued actions,
176 # the actions are applied in the order they are specified.
177 #
178 #############################################################################
179 # Valid actions are:
180 #############################################################################
181 #
182 # +add-header{Name: value}
183 #    Adds the specified HTTP header, which is not checked for validity.
184 #    You may specify this many times to specify many headers.
185 #
186 # +block
187 #    Block this URL
188 #
189 # +deanimate-gifs{last}
190 # +deanimate-gifs{first}
191 #    Deanimate all animated GIF images, i.e. reduce them to their last
192 #    frame. This will also shrink the images considerably. (In bytes,
193 #    not pixels!) 
194 #    If the option "first" is given, the first frame of the animation
195 #    is used as the replacement. If "last" is given, the last frame of
196 #    the animation is used instead, which propably makes more sense for
197 #    most banner animations, but also has the risk of not showing the
198 #    entire last frame (if it is only a delta to an earlier frame).
199 #
200 # +downgrade-http-version
201 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
202 #    responses as well. Use this action for servers that use HTTP/1.1
203 #    protocol features that Privoxy currently can't handle yet.
204 #
205 # +fast-redirects
206 #    Many sites, like yahoo.com, don't just link to other sites.
207 #    Instead, they will link to some script on their own server,
208 #    giving the destination as a parameter, which will then redirect
209 #    you to the final target. 
210 #
211 #    URLs resulting from this scheme typically look like:
212 #    http://some.place/some_script?http://some.where-else
213 #
214 #    Sometimes, there are even multiple consecutive redirects encoded
215 #    in the URL. These redirections via scripts make your web browing
216 #    more traceable, since the server from which you follow such a link
217 #    can see where you go to. Apart from that, valuable bandwidth and
218 #    time is wasted, while your browser aks the server for one redirect
219 #    after the other. Plus, it feeds the advertisers.
220 #
221 #    The +fast-redirects option enables interception of these requests
222 #    by Privoxy, who will cut off all but the last valid URL in the
223 #    request and send a local redirect back to your browser without
224 #    contacting the intermediate sites.
225 #
226 # +filter{name}
227 #    Filter the website through one or more regular expression filters.
228 #    Repeat for multiple filters.
229 #   
230 #    Filters predefined in the supplied default.action include:
231 #
232 #     html-annoyances:  Get rid of particularly annoying HTML abuse
233 #     js-annoyances:    Get rid of particularly annoying JavaScript abuse
234 #     content-cookies:  Kill cookies that come in the HTML or JS content
235 #     popups:           Kill all popups in JS and HTML
236 #     frameset-borders: Give frames a border
237 #     webbugs:          Squish WebBugs (1x1 invisible GIFs used for user tracking)
238 #     refresh-tags:     Kill automatic refresh tags (for dial-on-demand setups)
239 #     fun:              Text replacements  for subversive browsing fun!
240 #     nimda:            Remove Nimda (virus) code.
241 #     img-reorder:      Reorder attributes in <img> tags to make the banners-by-* filters more effective
242 #     banners-by-size:  Kill banners by size (very efficient!)
243 #     banners-by-link:  Kill banners by their links to known clicktrackers 
244 #     shockwave-flash:  Kill embedded Shockwave Flash objects
245 #     crude-parental:   Kill all web pages that contain the words "sex" or "warez"
246 #     js-events:        Kill all JS event bindings (Radically destructive! Use only on real suckers)
247 #
248 # +hide-forwarded-for-headers
249 #    Block any existing X-Forwarded-for header, and do not add a new one.
250 #
251 # +hide-from-header{block}
252 # +hide-from-header{spam@sittingduck.xqq}
253 #    If the browser sends a "From:" header containing your e-mail address, 
254 #    either completely removes the header ("block"), or change it to the
255 #    specified e-mail address.
256 #
257 # +hide-referer{block}
258 # +hide-referer{forge}
259 # +hide-referer{http://nowhere.com}
260 #    Don't send the "Referer:" (sic) header to the web site.  You can
261 #    block it, forge a URL to the same server as the request (which is
262 #    preferred because some sites will not send images otherwise) or
263 #    set it to a constant string.
264 #
265 # +hide-referrer{...}
266 #    Alternative spelling of +hide-referer.  Has the same parameters,
267 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
268 #    correct English spelling, however the HTTP specification has a 
269 #    bug - it requires it to be spelt "referer").
270 #
271 # +hide-user-agent{browser-type}
272 #    Change the "User-Agent:" header so web servers can't tell your
273 #    browser type.  (Breaks many web sites).  Specify the user-agent
274 #    value you want - e.g., to pretend to be using Netscape on Linux:
275 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
276 #    Or to identify yourself explicitly as a Privoxy user:
277 #      +hide-user-agent{Privoxy/1.0}
278 #    (Don't change the version number from 1.0 - after all, why tell them?)
279 #
280 # +handle-as-image
281 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
282 #    in which case a "blocked" image can be sent rather than a HTML page.
283 #    See +set-image-blocker{} for the control over what is actually sent.
284 #
285 # +set-image-blocker{blank}
286 # +set-image-blocker{pattern}
287 # +set-image-blocker{<URL>} with <url> being any valid image URL
288 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
289 #    There are 4 options:
290 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
291 #         resulting in a "broken image" icon.
292 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
293 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
294 #        which is less intrusive than the logo but easier to recognize
295 #        than the transparent one.
296 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
297 #        to the specified image URL.
298 #
299 #
300 # +limit-connect{portlist}
301 #   The CONNECT methods exists in HTTP to allow access to secure websites
302 #   (https:// URLs) through proxies. It works very simply: The proxy
303 #   connects to the server on the specified port, and then short-circuits
304 #   its connections to the cliant and to the remote proxy.
305 #   This can be a big security hole, since CONNECT-enabled proxies can
306 #   be abused as TCP relays very easily.
307 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
308 #   will only allow CONNECT requests to port 443, which is the standard port
309 #   for https.
310 #   If you want to allow CONNECT for more ports than that, or want to forbid
311 #   CONNECT altogether, you can specify a comma separated list of ports and port
312 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
313 #
314 #   +limit-connect{443} # This is the default and need no be specified.
315 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
316 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
317 #
318 # +prevent-compression
319 #    Prevent the website from compressing the data. Some websites do
320 #    that, which is a problem for Privoxy, since +filter, +kill-popups
321 #    and +gif-deanimate will not work on compressed data. Will slow down
322 #    connections to those websites, though.
323 #
324 # +prevent-keeping-cookies
325 # +session-cookies-only
326 #    If the website sets cookies, make sure they are erased when you exit
327 #    and restart your web browser.  This makes profiling cookies useless,
328 #    but won't break sites which require cookies so that you can log in
329 #    or for transactions.
330 #
331 # +crunch-outgoing-cookies
332 #    Prevent the website from reading cookies
333 #
334 # +crunch-incoming-cookies
335 #    Prevent the website from setting cookies
336 #
337 # +kill-popups
338 #    Filter the website through a built-in filter to disable
339 #    window.open() etc.  The two alternative spellings are
340 #    equivalent.
341 #
342 # +send-vanilla-wafer
343 #    This action only applies if you are using a jarfile.  It sends a
344 #    cookie to every site stating that you do not accept any copyright
345 #    on cookies sent to you, and asking them not to track you.  Of
346 #    course, this is a (relatively) unique header they could use to 
347 #    track you.
348 #
349 # +send-wafer{name=value}
350 #    This allows you to add an arbitrary cookie.  Specify it multiple
351 #    times in order to add several cookies.
352 #
353 #############################################################################
354
355 #############################################################################
356 # Settings -- Don't change.
357 #############################################################################
358 {{settings}}
359 #############################################################################
360 for-privoxy-version=3.0
361
362 #############################################################################
363 # Aliases
364 #############################################################################
365 {{alias}}
366 #############################################################################
367 #
368 # You can define a short form for a list of permissions - e.g., instead
369 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
370 # you can just write "shop". This is called an alias.
371 #
372 # Currently, an alias can contain any character except space, tab, '=', '{'
373 # or '}'.
374 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
375 #
376 # Alias names are not case sensitive.
377 #
378 # Aliases beginning with '+' or '-' may be used for system action names 
379 # in future releases - so try to avoid alias names like this.  (e.g. 
380 # "+crunch-all-cookies" below is not a good name)
381 #
382 # Aliases must be defined before they are used.
383
384
385 # These aliases just save typing later:
386 #
387 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
388 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
389  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
390  allow-popups       = -filter{popups} -kill-popups
391 +block-as-image     = +block +handle-as-image
392 -block-as-image     = -block
393
394 # These aliases define combinations of actions
395 # that are useful for certain types of sites:
396 #
397 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups
398 shop        = -crunch-all-cookies allow-popups
399
400 # Your favourite blend of filters:
401 #
402 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{popups}\
403               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
404
405 # Allow ads for selected useful free sites:
406 #
407 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
408 #... etc.  Customize to your heart's content.
409
410
411 #############################################################################
412 # Defaults
413 #############################################################################
414 { \
415 -add-header \
416 -block \
417 -crunch-outgoing-cookies \
418 -crunch-incoming-cookies \
419 +deanimate-gifs{last} \
420 -downgrade-http-version \
421 -fast-redirects \
422 +filter{js-annoyances} \
423 +filter{html-annoyances} \
424 +filter{content-cookies} \
425 +filter{webbugs} \
426 +filter{popups} \
427 -filter{frameset-borders} \
428 -filter{refresh-tags} \
429 -filter{img-reorder} \
430 +filter{banners-by-size} \
431 -filter{banners-by-link} \
432 -filter{fun} \
433 +filter{nimda} \
434 -filter{shockwave-flash} \
435 +filter{quicktime-kioskmode} \
436 -filter{js-events} \
437 -filter{crude-parental} \
438 -handle-as-image \
439 +hide-forwarded-for-headers \
440 +hide-from-header{block} \
441 +hide-referrer{forge} \
442 -hide-user-agent \
443 -kill-popups \
444 -limit-connect \
445 +prevent-compression \
446 -send-vanilla-wafer \
447 -send-wafer \
448 +session-cookies-only \
449 +set-image-blocker{pattern} \
450 }
451 / # Match all URLs
452
453 #############################################################################
454 # Needed for automatic feedback evaluation; Please don't change or delete!
455 #############################################################################
456 {+add-header{X-Actions-File-Version: 1.5} -filter -kill-popups}
457 .privoxy.org
458 .oesterhelt.org/actions
459
460 #############################################################################
461 # These extensions belong to images:
462 #############################################################################
463 {+handle-as-image}
464 #############################################################################
465 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
466
467 #############################################################################
468 # Generic block patterns (the most effective!):
469 #############################################################################
470 {+block}
471 #MASTER# DONT-VERIFY (generic)
472
473 # By hostname:
474 #
475 ad*.
476 .*ads.
477 *banner*.
478 count*.
479
480 # By path:
481 #
482 /(.*/)?(ads(erver?|tream)?|.*?ads/|ad/|adv(iew|ert(s|enties|is(ing|e?ments)?)?)?|(ad|all|nn)?[-_]?banner(s|ads?|farm)?)
483 /(.*/)?(publicite|werbung|rekla(ma|me|am)|annonse|maino(kset|nta|s)?/)
484 /.*(count|track)(er|run)?\.(pl|cgi|exe|dll|asp|php[34]?)
485 /.*promo.gif
486
487 #############################################################################
488 # Site-specific block patterns;
489 #############################################################################
490
491 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
492 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
493 .hitbox.com 
494 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
495 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
496 #MASTER# BLOCK-REFERRER: http://www.stern.de/
497 www.stern.de/bilder/poweredby
498 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
499 images.gmx.net/images/bs/
500 #MASTER# BLOCK-REFERRER: http://www.max.de/
501 .akamaitech.net/.*/img/e-commerce
502 www.max.de/_teaser/partner/
503 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
504 search.atomz.com/search/i/tagw1c.gif
505 www.intelligentx.com/newsletters/.*\.gif
506 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/ThreeD/explain.html
507 www.whowhere.lycos.com/images/ebay_bst.gif
508 www.whowhere.lycos.com/images/find_books.gif
509 www.whowhere.lycos.com/images/1800/advppl1.gif
510 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
511 i.real.com/g/pics/games/gamepass_120x600_2.gif
512 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
513 www*.chathouse.com/chatimages/whopersonal.gif
514 #MASTER# BLOCK-REFERRER: http://www.beseen.com/
515 www.beseen.com/images/website3.gif
516 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
517 .planetspiele.de/gfx/partner
518 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
519 #MASTER# REMARKS: Yes, block *all* their graphics.
520 www.hot.ee/.*\.(gif|jpe?g)
521 top.ultraseek.net/top_sit.*\.gif
522 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
523 fosi.ural.net/.*\.jpg
524 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
525 .tucows.com/images/dodi.gif
526 .tucows.com/images/elibrary_searchTop.gif
527 #MASTER# BLOCK-REFERRER: http://www.ix.de/
528 #MASTER# BLOCK-REFERRER: http://www.heise.de/
529 /icons/emedia_b.gif
530 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
531 dest.travelocity.com/website/destinations/images/partner_frommers.gif
532 dest.travelocity.com/website/destinations/images/travelex_logo.gif
533 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
534 cobolreport.com/images/canam1.gif
535 cobolreport.com/images/Acucorp1.gif
536 cobolreport.com/images/netcobol.jpg
537 cobolreport.com/images/NetCOBOL-banner.gif
538 objectz.com/images/Landmark%20120x240.gif
539 #MASTER# BLOCK-REFERRER: http://www.theregister.co.uk/
540 www.theregister.co.uk/media
541 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
542 tribalfusion.speedera.net
543 .tribalfusion.com/media/
544 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
545 b*.portalofevil.com/shlv
546 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
547 i.imdb.com/Vpics/
548 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
549 i.imdb.com/Photos/CMSIcons
550 rcm.amazon.com
551 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
552 i.imdb.com/Icons/apix/
553 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
554 .nytimes.com/adx/
555 #MASTER# BLOCK-REFERRER: http://www.salon.com/
556 www.salon.com/Creatives
557 images.salon.com/plus/gear/src/
558 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
559 images.sourceforge.net/images/DB2powered.gif
560
561 #############################################################################
562 # Generic block-as-image patterns:
563 #############################################################################
564 {+block-as-image}
565 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
566 /.*adimage\.(php|cgi)
567
568 #############################################################################
569 # Site-specific block-as-image patterns:
570 #############################################################################
571 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
572 #MASTER# BLOCK-REFERRER: http://www.aol.com/
573 ar.atwola.com 
574 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
575 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
576 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
577 .[a-vx-z]*.doubleclick.net
578 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
579 netcomm.spinbox.net
580 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
581 servedby.advertising.com
582 #MASTER# BLOCK-REFERRER: http://hwww.yahoo.com/
583 .a.yimg.com/(?:(?!/i/).)*$
584 .a[0-9].yimg.com/(?:(?!/i/).)*$
585 .yimg.com/.*/a/
586 .yimg.com/.*/flash/promotions
587 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
588 werbung.guj.de
589 #MASTER# DONT-VERIFY
590 bs*.gsanet.com
591 bs*.einets.com
592 #MASTER# DONT-VERIFY (Opera browser built-in ads)
593 .qkimg.net
594 /scripts/cms/xcms.asp
595 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
596 .sexcounter.
597 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
598 www.asahi.com/(.*/)?ad/
599 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
600 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
601 .travelocity./Sponsor_gifs/
602 #MASTER# DONT-VERIFY
603 #MASTER# REMARKS: Bannerfarms used by grokster and others:
604 james.adbutler.de
605 gkas.de/affilinet
606 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
607 130.94.70.82
608 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
609 cashformel.com/web-sponsor
610 www.cash4banner.com/web-sponsor
611 213.221.106.162
612 #MASTER# BLOCK-REFERRER: http://www.ebay.com
613 pics.ebay.com/aw/pics/homepage/big8
614 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
615 #MASTER# REMARKS: ad*.adsolution.de
616 62.26.220.2
617 62.27.38.2
618 62.27.57.2
619 #MASTER# BLOCK-REFERRER: unknown
620 #MASTER# REMARKS: both exist and are banner farms
621 www.bannermania.nom.pl
622 magic.koti.com.pl/cgi-magic/banner_img.cgi
623 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
624 naturalismedicina.com/cgibin/linswap
625 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
626 statse.webtrendslive.com
627 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
628 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
629 spinbox.versiontracker.com/.*\.gif
630 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
631 #MASTER# REMARKS: Counter
632 .netscape.com/c\.cgi\?
633 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
634 a.consumer.net
635 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
636 #MASTER# REMARKS: Counter
637 m[0-9].nedstatbasic.net
638 #MASTER# BLOCK-REFERRER: http://salon.com/
639 #MASTER# REMARKS: Banner farms; just exclude their corp. info
640 [a-v,x-z]*.atdmt.com/
641 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
642 images.deviantart.com/affiliates/
643 images.deviantart.com/shared/(winzip|trillian)\.gif
644 #MASTER# DONT-VERIFY
645 #MASTER# REMARKS: Referenced from HTML-Emails
646 .weather.com/creatives/
647 .weather.com/web/services/email/
648
649 #############################################################################
650 # Generic unblockers to narrow the side effects of the generic blockers:
651 #############################################################################
652 {-block}
653 #MASTER# DONT-VERIFY (generic)
654
655 # By host:
656 #
657 adsl.
658 ad[ud]*.
659 advice.
660 .edu
661 .ac.uk
662 .uni-*.de
663 .*load*.
664
665 # By path:
666 #
667 /.*ad(sl|v(i[cs]|an|ertencia|entu)) # advice/advisories/advan*/advertencia (spanish)
668 /.*((up|down)lo|p?thre|he|d|gr|l|ro)ads
669 /.*account
670
671 #############################################################################
672 # Site-specific unblockers:
673 #############################################################################
674 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
675 bannerblind.mozdev.org
676 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
677 advogato.org
678 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
679 ad*.vhb.de
680 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
681 www.ugu.com/sui/ugu/adv
682 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
683 www.globalintersec.com/adv
684 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
685 banners.wunderground.com/banner/
686 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
687 www.sueddeutsche.de/.*banner
688 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
689 www.openoffice.org/banners/
690 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
691 capwiz.com/ieee/images/banner.gif
692 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
693 sec*.greymagic.com/adv/
694 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
695 .foxnews.com/images/banners/(sec|logo)
696 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
697 #MASTER# REMARKS: Used as link tracker on (needed) internal links
698 www.comdirect.de/stat/count.php
699 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
700 #MASTER# REMARKS: Part of site decoration
701 .amazon.com/.*/banners/
702 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
703 #MASTER# REMARKS: Javascripts whose absence messes the page
704 .washingtonpost.com/wp-srv/
705 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
706 www.gnome.org
707 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
708 .nycsubway.org/img/banner
709 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
710 ads.hellug.gr
711
712 #############################################################################
713 # Site-specific special rules:
714 #############################################################################
715
716 #----------------------------------------------------------------------------
717 # These sites are very complex (read: keen on your identity) and require
718 # minimal interference.
719 #----------------------------------------------------------------------------
720 {fragile}
721 .office.microsoft.com
722 .windowsupdate.microsoft.com
723
724 #----------------------------------------------------------------------------
725 # Shopping and banking sites - allow cookies and pop-ups
726 #----------------------------------------------------------------------------
727 {shop}
728 .quietpc.com
729 .worldpay.com   # for quietpc.com
730 .jungle.com
731 .scan.co.uk
732 .dabs.com
733 .overclockers.co.uk
734 .deutsche-bank-24.de
735 .db24.de
736 .ebay.
737 .mobile.de
738
739 #----------------------------------------------------------------------------
740 # These sites require pop-ups
741 #----------------------------------------------------------------------------
742 {allow-popups}
743 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
744 www.aprilbarrows.com/discography\.html$
745 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
746 .infospace.com/.*/venshopping/
747 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
748 www.nvidia.com
749 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
750 www*.chathouse.com/games/
751 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
752 #MASTER# REMARKS: Search results come in a popup
753 www.tagesschau.de
754 #MASTER# PROBLEM-URL: http://www.reuters.com/
755 #MASTER# REMARKS: Printer friendly versions pop up
756 www.reuters.com/news_article.jhtml
757 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
758 www.xmms.org
759 #MASTER# PROBLEM-URL: http://www.bild.de/
760 .bild.t-online.de
761 #MASTER# PROBLEM-URL: http://klubwakacyjny.interia.pl/pytanie.html
762 klubwakacyjny.interia.pl/pytanie.html
763 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
764 www.m-w.com
765 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
766 www.pcbox.es
767 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
768 www.hola.com/club/
769 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
770 www.infoempleo.com
771 #MASTER# PROBLEM-URL: http://www.netflix.com/
772 www.netflix.com
773
774 ##----------------------------------------------------------------------------
775 # Sometimes (i.e. often!) fast-redirects catches things by mistake
776 #----------------------------------------------------------------------------
777 {-fast-redirects}
778 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
779 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
780 .google.com
781 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
782 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
783 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
784 .speedfind.de
785 #MASTER# PROBLEM-URL: http://www.nytimes.com/
786 .nytimes.com
787 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
788 .yahoo.com/.*done=
789 #MASTER# PROBLEM-URL: http://validator.w3.org/check
790 .w3.org
791 #MASTER# PROBLEM-URL: http://www.ask.com/
792 .directhit.com
793 #MASTER# PROBLEM-URL: http://www.zagats.com/
794 .zagats.com
795 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
796 #MASTER# PROBLEM-URL: http://www.msn.com/
797 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
798 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
799 login.passport.com/logout\.(asp|srf)\?
800 #MASTER# PROBLEM-URL: http://www.fileplanet.com
801 download.com.com/redir\?
802 www.fileplanet.com/redir\.asp\?
803
804 #----------------------------------------------------------------------------
805 # No filtering for sourcecode
806 #----------------------------------------------------------------------------
807 {-filter}
808 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
809 cvs.
810 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
811 liveupdate.symantec.com
812
813 #----------------------------------------------------------------------------
814 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
815 # workaround is to use zlib.output_compression):
816 #----------------------------------------------------------------------------
817 {-prevent-compression}
818 #MASTER# PROBLEM-URL: http://www.powie.de/
819 www.powie.de
820 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
821 www.phpcenter.de
822 #MASTER# PROBLEM-URL: http://www.debianhelp.org/
823 www.debianhelp.org
824 #MASTER# PROBLEM-URL: http://www.timeanddate.com
825 www.timeanddate.com
826 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
827 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
828 .pclinuxonline.com
829 #MASTER# PROBLEM-URL: http://www.dhd24.com/
830 www.dhd24.com
831 #MASTER# PROBLEM-URL: http://www.linuxandmain.com/
832 .linuxandmain.com
833 #MASTER# PROBLEM-URL: http://www.ofb.biz/
834 .ofb.biz
835 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
836 .dungeoncrawl.org
837 #MASTER# PROBLEM-URL: http://www.deviantart.com/
838 .deviantart.com
839 #MASTER# PROBLEM-URL: http://www.planetspiele.de/wbboard/
840 www.planetspiele.de/wbboard/
841 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
842 www.digitalspy.co.uk
843 #MASTER# PROBLEM-URL: http://www.dealnews.com/
844 .dealnews.com   
845
846 #----------------------------------------------------------------------------
847 # The first frame of the gif animation is more useful here:
848 #----------------------------------------------------------------------------
849 {+deanimate-gifs{first}}
850 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
851 #MASTER# REMARKS: Animation shows phone number
852 .pricecontrast.com
853
854 #----------------------------------------------------------------------------
855 # Innocent images in standard banner sizes found here:
856 #----------------------------------------------------------------------------
857 {-filter{banners-by-size}}
858 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
859 .max.de
860 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
861 www.unmuseum.org
862
863 #----------------------------------------------------------------------------
864 # These don't work without the referrer information:
865 #----------------------------------------------------------------------------
866 {-hide-referrer}
867 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
868 /cgi-bin/fosi.cgi
869 #MASTER# PROBLEM-URL: http://www.abcnews.com/
870 printerfriendly.abcnews.com
871 #MASTER# PROBLEM-URL: http://www.ask.com/
872 .ask.com
873 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
874 www.amazon.de/exec/obidos/clipserve/
875 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
876 .lufthansa.
877
878 #----------------------------------------------------------------------------
879 # These animated gifs are either useful or nice:
880 #----------------------------------------------------------------------------
881 {-deanimate-gifs}
882 #MASTER# PROBLEM-URL: http://www.care2.com/
883 #MASTER# REMARKS: Wanted animations on ecards
884 .care2.com
885 .care-mail.com
886 #MASTER# PROBLEM-URL: http://www.ameritrade.com
887 #MASTER# REMARKS: Animated link texts
888 www.ameritrade.com
889
890 #----------------------------------------------------------------------------
891 # These sites are so abusive that we need to kill all JS event bindings (and
892 # probably a break a lot along the way)
893 #----------------------------------------------------------------------------
894 {+filter{js-radical}}
895 #MASTER# PROBLEM-URL: http://www..planetspiele.de/
896 .planetspiele.de
897 216.12.219.40
898
899 #----------------------------------------------------------------------------
900 # Misc special rules:
901 #----------------------------------------------------------------------------
902 {-filter{content-cookies} -filter{webbugs}}
903 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
904 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
905 www.friendscout24.de
906
907 {-deanimate-gifs -filter{popups} -kill-popups}
908 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
909 #MASTER# REMARKS: Know your enemy ;-)
910 www.valueclick.com
911 {-block}
912 www.valueclick.com/html/img/advertiser_top.gif
913
914 {-filter{banners-by-size} -deanimate-gifs}
915 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
916 #MASTER# REMARKS: They use banner-sized animated images
917 realguide.real.com/games
918
919 {-handle-as-image}
920 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
921 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
922 .doubleclick.net/adi
923
924 {+block}
925 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
926 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
927 www.geocities.com/js_source
928
929 {-filter{fun}}
930 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
931 #MASTER# REMARKS: Don't change the filter code with itself ;-)
932 /(.*/)?user-manual/filter-file.html
933
934 {+filter{img-reorder} +filter{banners-by-link}}
935 #MASTER# PROBLEM-URL: http://www.dn.se/
936 #MASTER# REMARKS: Can't catch by size or location
937 www.dn.se