Sync with 3.0 branch. No new content.
[privoxy.git] / default.action.master
1 ######################################################################
2
3 #  File        :  $Source: /cvsroot/ijbswa//current/Attic/default.action.master,v $
4
5 #  $Id: default.action.master,v 1.1.2.9 2002/08/27 16:33:04 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{webbugs} \
425 +filter{popups} \
426 -filter{frameset-borders} \
427 -filter{refresh-tags} \
428 -filter{img-reorder} \
429 +filter{banners-by-size} \
430 -filter{banners-by-link} \
431 -filter{fun} \
432 +filter{nimda} \
433 -filter{shockwave-flash} \
434 -filter{js-events} \
435 -filter{crude-parental} \
436 -handle-as-image \
437 +hide-forwarded-for-headers \
438 +hide-from-header{block} \
439 +hide-referrer{forge} \
440 -hide-user-agent \
441 -kill-popups \
442 -limit-connect \
443 +prevent-compression \
444 -send-vanilla-wafer \
445 -send-wafer \
446 +session-cookies-only \
447 +set-image-blocker{pattern} \
448 }
449 / # Match all URLs
450
451 #############################################################################
452 # Needed for automatic feedback evaluation; Please don't change or delete!
453 #############################################################################
454 {+add-header{X-Actions-File-Version: 1.5} -filter -kill-popups}
455 .privoxy.org
456 .oesterhelt.org/actions
457
458 #############################################################################
459 # These extensions belong to images:
460 #############################################################################
461 {+handle-as-image}
462 #############################################################################
463 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
464
465 #############################################################################
466 # Generic block patterns (the most effective!):
467 #############################################################################
468 {+block}
469 #MASTER# DONT-VERIFY (generic)
470
471 # By hostname:
472 #
473 ad*.
474 .*ads.
475 *banner*.
476 count*.
477
478 # By path:
479 #
480 /(.*/)?(ads(erver?|tream)?|.*?ads/|ad/|adv(iew|ert(s|enties|is(ing|e?ments)?)?)?|(ad|all|nn)?[-_]?banner(s|ads?|farm)?)
481 /(.*/)?(publicite|werbung|rekla(ma|me|am)|annonse|maino(kset|nta|s)?/)
482 /.*(count|track)(er|run)?\.(pl|cgi|exe|dll|asp|php[34]?)
483 /.*promo.gif
484
485 #############################################################################
486 # Site-specific block patterns;
487 #############################################################################
488
489 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
490 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
491 .hitbox.com 
492 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
493 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
494 #MASTER# BLOCK-REFERRER: http://www.stern.de/
495 www.stern.de/bilder/poweredby
496 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
497 images.gmx.net/images/bs/
498 #MASTER# BLOCK-REFERRER: http://www.max.de/
499 .akamaitech.net/.*/img/e-commerce
500 www.max.de/_teaser/partner/
501 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
502 search.atomz.com/search/i/tagw1c.gif
503 www.intelligentx.com/newsletters/.*\.gif
504 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/ThreeD/explain.html
505 www.whowhere.lycos.com/images/ebay_bst.gif
506 www.whowhere.lycos.com/images/find_books.gif
507 www.whowhere.lycos.com/images/1800/advppl1.gif
508 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
509 i.real.com/g/pics/games/gamepass_120x600_2.gif
510 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
511 www*.chathouse.com/chatimages/whopersonal.gif
512 #MASTER# BLOCK-REFERRER: http://www.beseen.com/
513 www.beseen.com/images/website3.gif
514 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
515 .planetspiele.de/gfx/partner
516 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
517 #MASTER# REMARKS: Yes, block *all* their graphics.
518 www.hot.ee/.*\.(gif|jpe?g)
519 top.ultraseek.net/top_sit.*\.gif
520 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
521 fosi.ural.net/.*\.jpg
522 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
523 .tucows.com/images/dodi.gif
524 .tucows.com/images/elibrary_searchTop.gif
525 #MASTER# BLOCK-REFERRER: http://www.ix.de/
526 #MASTER# BLOCK-REFERRER: http://www.heise.de/
527 /icons/emedia_b.gif
528 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
529 dest.travelocity.com/website/destinations/images/partner_frommers.gif
530 dest.travelocity.com/website/destinations/images/travelex_logo.gif
531 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
532 cobolreport.com/images/canam1.gif
533 cobolreport.com/images/Acucorp1.gif
534 cobolreport.com/images/netcobol.jpg
535 cobolreport.com/images/NetCOBOL-banner.gif
536 objectz.com/images/Landmark%20120x240.gif
537 #MASTER# BLOCK-REFERRER: http://www.theregister.co.uk/
538 www.theregister.co.uk/media
539 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
540 tribalfusion.speedera.net
541 .tribalfusion.com/media/
542 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
543 b*.portalofevil.com/shlv
544 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
545 i.imdb.com/Vpics/
546 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
547 i.imdb.com/Photos/CMSIcons
548 rcm.amazon.com
549 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
550 i.imdb.com/Icons/apix/
551 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
552 .nytimes.com/adx/
553 #MASTER# BLOCK-REFERRER: http://www.salon.com/
554 www.salon.com/Creatives
555 images.salon.com/plus/gear/src/
556 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
557 images.sourceforge.net/images/DB2powered.gif
558
559 #############################################################################
560 # Generic block-as-image patterns:
561 #############################################################################
562 {+block-as-image}
563 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
564 /.*adimage\.(php|cgi)
565
566 #############################################################################
567 # Site-specific block-as-image patterns:
568 #############################################################################
569 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
570 #MASTER# BLOCK-REFERRER: http://www.aol.com/
571 ar.atwola.com 
572 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
573 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
574 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
575 .[a-vx-z]*.doubleclick.net
576 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
577 netcomm.spinbox.net
578 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
579 servedby.advertising.com
580 #MASTER# BLOCK-REFERRER: http://hwww.yahoo.com/
581 .a.yimg.com/(?:(?!/i/).)*$
582 .a[0-9].yimg.com/(?:(?!/i/).)*$
583 .yimg.com/.*/a/
584 .yimg.com/.*/flash/promotions
585 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
586 werbung.guj.de
587 #MASTER# DONT-VERIFY
588 bs*.gsanet.com
589 bs*.einets.com
590 #MASTER# DONT-VERIFY (Opera browser built-in ads)
591 .qkimg.net
592 /scripts/cms/xcms.asp
593 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
594 .sexcounter.
595 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
596 www.asahi.com/(.*/)?ad/
597 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
598 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
599 .travelocity./Sponsor_gifs/
600 #MASTER# DONT-VERIFY
601 #MASTER# REMARKS: Bannerfarms used by grokster and others:
602 james.adbutler.de
603 gkas.de/affilinet
604 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
605 130.94.70.82
606 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
607 cashformel.com/web-sponsor
608 www.cash4banner.com/web-sponsor
609 213.221.106.162
610 #MASTER# BLOCK-REFERRER: http://www.ebay.com
611 pics.ebay.com/aw/pics/homepage/big8
612 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
613 #MASTER# REMARKS: ad*.adsolution.de
614 62.26.220.2
615 62.27.38.2
616 62.27.57.2
617 #MASTER# BLOCK-REFERRER: unknown
618 #MASTER# REMARKS: both exist and are banner farms
619 www.bannermania.nom.pl
620 magic.koti.com.pl/cgi-magic/banner_img.cgi
621 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
622 naturalismedicina.com/cgibin/linswap
623 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
624 statse.webtrendslive.com
625 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
626 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
627 spinbox.versiontracker.com/.*\.gif
628 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
629 #MASTER# REMARKS: Counter
630 .netscape.com/c\.cgi\?
631 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
632 a.consumer.net
633 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
634 #MASTER# REMARKS: Counter
635 m[0-9].nedstatbasic.net
636 #MASTER# BLOCK-REFERRER: http://salon.com/
637 #MASTER# REMARKS: Banner farms; just exclude their corp. info
638 [a-v,x-z]*.atdmt.com/
639 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
640 images.deviantart.com/affiliates/
641 images.deviantart.com/shared/(winzip|trillian)\.gif
642 #MASTER# DONT-VERIFY
643 #MASTER# REMARKS: Referenced from HTML-Emails
644 .weather.com/creatives/
645 .weather.com/web/services/email/
646
647 #############################################################################
648 # Generic unblockers to narrow the side effects of the generic blockers:
649 #############################################################################
650 {-block}
651 #MASTER# DONT-VERIFY (generic)
652
653 # By host:
654 #
655 adsl.
656 ad[ud]*.
657 advice.
658 .edu
659 .ac.uk
660 .uni-*.de
661 .*load*.
662
663 # By path:
664 #
665 /.*ad(sl|v(i[cs]|an|ertencia|entu)) # advice/advisories/advan*/advertencia (spanish)
666 /.*((up|down)lo|p?thre|he|d|gr|l|ro)ads
667 /.*account
668
669 #############################################################################
670 # Site-specific unblockers:
671 #############################################################################
672 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
673 bannerblind.mozdev.org
674 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
675 advogato.org
676 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
677 ad*.vhb.de
678 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
679 www.ugu.com/sui/ugu/adv
680 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
681 www.globalintersec.com/adv
682 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
683 banners.wunderground.com/banner/
684 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
685 www.sueddeutsche.de/.*banner
686 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
687 www.openoffice.org/banners/
688 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
689 capwiz.com/ieee/images/banner.gif
690 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
691 sec*.greymagic.com/adv/
692 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
693 .foxnews.com/images/banners/(sec|logo)
694 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
695 #MASTER# REMARKS: Used as link tracker on (needed) internal links
696 www.comdirect.de/stat/count.php
697 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
698 #MASTER# REMARKS: Part of site decoration
699 .amazon.com/.*/banners/
700 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
701 #MASTER# REMARKS: Javascripts whose absence messes the page
702 .washingtonpost.com/wp-srv/
703 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
704 www.gnome.org
705 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
706 .nycsubway.org/img/banner
707 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
708 ads.hellug.gr
709
710 #############################################################################
711 # Site-specific special rules:
712 #############################################################################
713
714 #----------------------------------------------------------------------------
715 # These sites are very complex (read: keen on your identity) and require
716 # minimal interference.
717 #----------------------------------------------------------------------------
718 {fragile}
719 .office.microsoft.com
720 .windowsupdate.microsoft.com
721
722 #----------------------------------------------------------------------------
723 # Shopping and banking sites - allow cookies and pop-ups
724 #----------------------------------------------------------------------------
725 {shop}
726 .quietpc.com
727 .worldpay.com   # for quietpc.com
728 .jungle.com
729 .scan.co.uk
730 .dabs.com
731 .overclockers.co.uk
732 .deutsche-bank-24.de
733 .db24.de
734 .ebay.
735 .mobile.de
736
737 #----------------------------------------------------------------------------
738 # These sites require pop-ups
739 #----------------------------------------------------------------------------
740 {allow-popups}
741 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
742 www.aprilbarrows.com/discography\.html$
743 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
744 .infospace.com/.*/venshopping/
745 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
746 www.nvidia.com
747 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
748 www*.chathouse.com/games/
749 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
750 #MASTER# REMARKS: Search results come in a popup
751 www.tagesschau.de
752 #MASTER# PROBLEM-URL: http://www.reuters.com/
753 #MASTER# REMARKS: Printer friendly versions pop up
754 www.reuters.com/news_article.jhtml
755 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
756 www.xmms.org
757 #MASTER# PROBLEM-URL: http://www.bild.de/
758 .bild.t-online.de
759 #MASTER# PROBLEM-URL: http://klubwakacyjny.interia.pl/pytanie.html
760 klubwakacyjny.interia.pl/pytanie.html
761 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
762 www.m-w.com
763 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
764 www.pcbox.es
765 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
766 www.hola.com/club/
767 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
768 www.infoempleo.com
769 #MASTER# PROBLEM-URL: http://www.netflix.com/
770 www.netflix.com
771
772 ##----------------------------------------------------------------------------
773 # Sometimes (i.e. often!) fast-redirects catches things by mistake
774 #----------------------------------------------------------------------------
775 {-fast-redirects}
776 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
777 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
778 .google.com
779 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
780 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
781 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
782 .speedfind.de
783 #MASTER# PROBLEM-URL: http://www.nytimes.com/
784 .nytimes.com
785 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
786 .yahoo.com/.*done=
787 #MASTER# PROBLEM-URL: http://validator.w3.org/check
788 .w3.org
789 #MASTER# PROBLEM-URL: http://www.ask.com/
790 .directhit.com
791 #MASTER# PROBLEM-URL: http://www.zagats.com/
792 .zagats.com
793 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
794 #MASTER# PROBLEM-URL: http://www.msn.com/
795 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
796 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
797 login.passport.com/logout\.(asp|srf)\?
798 #MASTER# PROBLEM-URL: http://www.fileplanet.com
799 download.com.com/redir\?
800 www.fileplanet.com/redir\.asp\?
801
802 #----------------------------------------------------------------------------
803 # No filtering for sourcecode
804 #----------------------------------------------------------------------------
805 {-filter}
806 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
807 cvs.
808 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
809 liveupdate.symantec.com
810
811 #----------------------------------------------------------------------------
812 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
813 # workaround is to use zlib.output_compression):
814 #----------------------------------------------------------------------------
815 {-prevent-compression}
816 #MASTER# PROBLEM-URL: http://www.powie.de/
817 www.powie.de
818 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
819 www.phpcenter.de
820 #MASTER# PROBLEM-URL: http://www.debianhelp.org/
821 www.debianhelp.org
822 #MASTER# PROBLEM-URL: http://www.timeanddate.com
823 www.timeanddate.com
824 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
825 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
826 .pclinuxonline.com
827 #MASTER# PROBLEM-URL: http://www.dhd24.com/
828 www.dhd24.com
829 #MASTER# PROBLEM-URL: http://www.linuxandmain.com/
830 .linuxandmain.com
831 #MASTER# PROBLEM-URL: http://www.ofb.biz/
832 .ofb.biz
833 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
834 .dungeoncrawl.org
835 #MASTER# PROBLEM-URL: http://www.deviantart.com/
836 .deviantart.com
837 #MASTER# PROBLEM-URL: http://www.planetspiele.de/wbboard/
838 www.planetspiele.de/wbboard/
839 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
840 www.digitalspy.co.uk
841 #MASTER# PROBLEM-URL: http://www.dealnews.com/
842 .dealnews.com   
843
844 #----------------------------------------------------------------------------
845 # The first frame of the gif animation is more useful here:
846 #----------------------------------------------------------------------------
847 {+deanimate-gifs{first}}
848 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
849 #MASTER# REMARKS: Animation shows phone number
850 .pricecontrast.com
851
852 #----------------------------------------------------------------------------
853 # Innocent images in standard banner sizes found here:
854 #----------------------------------------------------------------------------
855 {-filter{banners-by-size}}
856 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
857 .max.de
858 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
859 www.unmuseum.org
860
861 #----------------------------------------------------------------------------
862 # These don't work without the referrer information:
863 #----------------------------------------------------------------------------
864 {-hide-referrer}
865 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
866 /cgi-bin/fosi.cgi
867 #MASTER# PROBLEM-URL: http://www.abcnews.com/
868 printerfriendly.abcnews.com
869 #MASTER# PROBLEM-URL: http://www.ask.com/
870 .ask.com
871 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
872 www.amazon.de/exec/obidos/clipserve/
873 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
874 .lufthansa.
875
876 #----------------------------------------------------------------------------
877 # These animated gifs are either useful or nice:
878 #----------------------------------------------------------------------------
879 {-deanimate-gifs}
880 #MASTER# PROBLEM-URL: http://www.care2.com/
881 #MASTER# REMARKS: Wanted animations on ecards
882 .care2.com
883 .care-mail.com
884 #MASTER# PROBLEM-URL: http://www.ameritrade.com
885 #MASTER# REMARKS: Animated link texts
886 www.ameritrade.com
887
888 #----------------------------------------------------------------------------
889 # These sites are so abusive that we need to kill all JS event bindings (and
890 # probably a break a lot along the way)
891 #----------------------------------------------------------------------------
892 {+filter{js-radical}}
893 #MASTER# PROBLEM-URL: http://www..planetspiele.de/
894 .planetspiele.de
895 216.12.219.40
896
897 #----------------------------------------------------------------------------
898 # Misc special rules:
899 #----------------------------------------------------------------------------
900 {-filter{content-cookies} -filter{webbugs}}
901 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
902 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
903 www.friendscout24.de
904
905 {-deanimate-gifs -filter{popups} -kill-popups}
906 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
907 #MASTER# REMARKS: Know your enemy ;-)
908 www.valueclick.com
909 {-block}
910 www.valueclick.com/html/img/advertiser_top.gif
911
912 {-filter{banners-by-size} -deanimate-gifs}
913 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
914 #MASTER# REMARKS: They use banner-sized animated images
915 realguide.real.com/games
916
917 {-handle-as-image}
918 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
919 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
920 .doubleclick.net/adi
921
922 {+block}
923 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
924 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
925 www.geocities.com/js_source
926
927 {-filter{fun}}
928 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
929 #MASTER# REMARKS: Don't change the filter code with itself ;-)
930 /(.*/)?user-manual/filter-file.html
931
932 {+filter{img-reorder} +filter{banners-by-link}}
933 #MASTER# PROBLEM-URL: http://www.dn.se/
934 #MASTER# REMARKS: Can't catch by size or location
935 www.dn.se