Fix broken link to faq/questions.html.
[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.5 2002/09/26 16:44:45 oes 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
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 #     js-annoyances:       Get rid of particularly annoying JavaScript abuse
233 #     html-annoyances:     Get rid of particularly annoying HTML abuse
234 #     content-cookies:     Kill cookies that come in the HTML or JS content
235 #     webbugs:             Squish WebBugs (1x1 invisible GIFs used for user tracking)
236 #     popups:              Kill all popups in JS and HTML
237 #     frameset-borders:    Give frames a border
238 #     refresh-tags:        Kill automatic refresh tags (for dial-on-demand setups)
239 #     img-reorder:         Reorder attributes in <img> tags to make the banners-by-* filters more effective
240 #     banners-by-size:     Kill banners by size (very efficient!)
241 #     banners-by-link:     Kill banners by their links to known clicktrackers 
242 #     fun:                 Text replacements  for subversive browsing fun!
243 #     nimda:               Remove Nimda (virus) code.
244 #     shockwave-flash:     Kill embedded Shockwave Flash objects
245 #     quicktime-kioskmode: Make Quicktime movies saveable
246 #     js-events:           Kill all JS event bindings (Radically destructive! Use only on real suckers)
247 #     crude-parental:      Kill all web pages that contain the words "sex" or "warez"
248 #
249 # +hide-forwarded-for-headers
250 #    Block any existing X-Forwarded-for header, and do not add a new one.
251 #
252 # +hide-from-header{block}
253 # +hide-from-header{spam@sittingduck.xqq}
254 #    If the browser sends a "From:" header containing your e-mail address, 
255 #    either completely removes the header ("block"), or change it to the
256 #    specified e-mail address.
257 #
258 # +hide-referer{block}
259 # +hide-referer{forge}
260 # +hide-referer{http://nowhere.com}
261 #    Don't send the "Referer:" (sic) header to the web site.  You can
262 #    block it, forge a URL to the same server as the request (which is
263 #    preferred because some sites will not send images otherwise) or
264 #    set it to a constant string.
265 #
266 # +hide-referrer{...}
267 #    Alternative spelling of +hide-referer.  Has the same parameters,
268 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
269 #    correct English spelling, however the HTTP specification has a 
270 #    bug - it requires it to be spelt "referer").
271 #
272 # +hide-user-agent{browser-type}
273 #    Change the "User-Agent:" header so web servers can't tell your
274 #    browser type.  (Breaks many web sites).  Specify the user-agent
275 #    value you want - e.g., to pretend to be using Netscape on Linux:
276 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
277 #    Or to identify yourself explicitly as a Privoxy user:
278 #      +hide-user-agent{Privoxy/1.0}
279 #    (Don't change the version number from 1.0 - after all, why tell them?)
280 #
281 # +handle-as-image
282 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
283 #    in which case a "blocked" image can be sent rather than a HTML page.
284 #    See +set-image-blocker{} for the control over what is actually sent.
285 #
286 # +set-image-blocker{blank}
287 # +set-image-blocker{pattern}
288 # +set-image-blocker{<URL>} with <url> being any valid image URL
289 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
290 #    There are 4 options:
291 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
292 #         resulting in a "broken image" icon.
293 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
294 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
295 #        which is less intrusive than the logo but easier to recognize
296 #        than the transparent one.
297 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
298 #        to the specified image URL.
299 #
300 #
301 # +limit-connect{portlist}
302 #   The CONNECT methods exists in HTTP to allow access to secure websites
303 #   (https:// URLs) through proxies. It works very simply: The proxy
304 #   connects to the server on the specified port, and then short-circuits
305 #   its connections to the cliant and to the remote proxy.
306 #   This can be a big security hole, since CONNECT-enabled proxies can
307 #   be abused as TCP relays very easily.
308 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
309 #   will only allow CONNECT requests to port 443, which is the standard port
310 #   for https.
311 #   If you want to allow CONNECT for more ports than that, or want to forbid
312 #   CONNECT altogether, you can specify a comma separated list of ports and port
313 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
314 #
315 #   +limit-connect{443} # This is the default and need no be specified.
316 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
317 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
318 #
319 # +prevent-compression
320 #    Prevent the website from compressing the data. Some websites do
321 #    that, which is a problem for Privoxy, since +filter, +kill-popups
322 #    and +gif-deanimate will not work on compressed data. Will slow down
323 #    connections to those websites, though.
324 #
325 # +prevent-keeping-cookies
326 # +session-cookies-only
327 #    If the website sets cookies, make sure they are erased when you exit
328 #    and restart your web browser.  This makes profiling cookies useless,
329 #    but won't break sites which require cookies so that you can log in
330 #    or for transactions.
331 #
332 # +crunch-outgoing-cookies
333 #    Prevent the website from reading cookies
334 #
335 # +crunch-incoming-cookies
336 #    Prevent the website from setting cookies
337 #
338 # +kill-popups
339 #    Filter the website through a built-in filter to disable
340 #    window.open() etc.  The two alternative spellings are
341 #    equivalent.
342 #
343 # +send-vanilla-wafer
344 #    This action only applies if you are using a jarfile.  It sends a
345 #    cookie to every site stating that you do not accept any copyright
346 #    on cookies sent to you, and asking them not to track you.  Of
347 #    course, this is a (relatively) unique header they could use to 
348 #    track you.
349 #
350 # +send-wafer{name=value}
351 #    This allows you to add an arbitrary cookie.  Specify it multiple
352 #    times in order to add several cookies.
353 #
354 #############################################################################
355
356 #############################################################################
357 # Settings -- Don't change.
358 #############################################################################
359 {{settings}}
360 #############################################################################
361 for-privoxy-version=3.0
362
363 #############################################################################
364 # Aliases
365 #############################################################################
366 {{alias}}
367 #############################################################################
368 #
369 # You can define a short form for a list of permissions - e.g., instead
370 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
371 # you can just write "shop". This is called an alias.
372 #
373 # Currently, an alias can contain any character except space, tab, '=', '{'
374 # or '}'.
375 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
376 #
377 # Alias names are not case sensitive.
378 #
379 # Aliases beginning with '+' or '-' may be used for system action names 
380 # in future releases - so try to avoid alias names like this.  (e.g. 
381 # "+crunch-all-cookies" below is not a good name)
382 #
383 # Aliases must be defined before they are used.
384
385
386 # These aliases just save typing later:
387 #
388 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
389 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
390  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
391  allow-popups       = -filter{popups} -kill-popups
392 +block-as-image     = +block +handle-as-image
393 -block-as-image     = -block
394
395 # These aliases define combinations of actions
396 # that are useful for certain types of sites:
397 #
398 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups
399 shop        = -crunch-all-cookies allow-popups
400
401 # Your favourite blend of filters:
402 #
403 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{popups}\
404               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
405
406 # Allow ads for selected useful free sites:
407 #
408 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
409 #... etc.  Customize to your heart's content.
410
411
412 #############################################################################
413 # Defaults
414 #############################################################################
415 { \
416 -add-header \
417 -block \
418 -crunch-outgoing-cookies \
419 -crunch-incoming-cookies \
420 +deanimate-gifs{last} \
421 -downgrade-http-version \
422 -fast-redirects \
423 +filter{js-annoyances} \
424 +filter{html-annoyances} \
425 +filter{content-cookies} \
426 +filter{webbugs} \
427 +filter{popups} \
428 -filter{frameset-borders} \
429 -filter{refresh-tags} \
430 -filter{img-reorder} \
431 +filter{banners-by-size} \
432 -filter{banners-by-link} \
433 -filter{fun} \
434 +filter{nimda} \
435 -filter{shockwave-flash} \
436 +filter{quicktime-kioskmode} \
437 -filter{js-events} \
438 -filter{crude-parental} \
439 -handle-as-image \
440 +hide-forwarded-for-headers \
441 +hide-from-header{block} \
442 +hide-referrer{forge} \
443 -hide-user-agent \
444 -kill-popups \
445 -limit-connect \
446 +prevent-compression \
447 -send-vanilla-wafer \
448 -send-wafer \
449 +session-cookies-only \
450 +set-image-blocker{pattern} \
451 }
452 / # Match all URLs
453
454 #############################################################################
455 # Needed for automatic feedback evaluation; Please don't change or delete!
456 #############################################################################
457 {+add-header{X-Actions-File-Version: 1.5} -filter -kill-popups}
458 .privoxy.org
459 .oesterhelt.org/actions
460
461 #############################################################################
462 # These extensions belong to images:
463 #############################################################################
464 {+handle-as-image}
465 #############################################################################
466 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
467
468 #############################################################################
469 # Generic block patterns (the most effective!):
470 #############################################################################
471 {+block}
472 #MASTER# DONT-VERIFY (generic)
473
474 # By hostname:
475 #
476 ad*.
477 .*ads.
478 *banner*.
479 count*.
480
481 # By path:
482 #
483 /(.*/)?(ads(erver?|tream)?|.*?ads/|ad/|adv(iew|ert(s|enties|is(ing|e?ments)?)?)?|(ad|all|nn)?[-_]?banner(s|ads?|farm)?)
484 /(.*/)?(publicite|werbung|rekla(ma|me|am)|annonse|maino(kset|nta|s)?/)
485 /.*(count|track)(er|run)?\.(pl|cgi|exe|dll|asp|php[34]?)
486 /.*promo.gif
487
488 #############################################################################
489 # Site-specific block patterns;
490 #############################################################################
491
492 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
493 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
494 .hitbox.com 
495 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
496 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
497 #MASTER# BLOCK-REFERRER: http://www.stern.de/
498 www.stern.de/bilder/poweredby
499 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
500 images.gmx.net/images/bs/
501 #MASTER# BLOCK-REFERRER: http://www.max.de/
502 .akamaitech.net/.*/img/e-commerce
503 www.max.de/_teaser/partner/
504 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
505 search.atomz.com/search/i/tagw1c.gif
506 www.intelligentx.com/newsletters/.*\.gif
507 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/ThreeD/explain.html
508 www.whowhere.lycos.com/images/ebay_bst.gif
509 www.whowhere.lycos.com/images/find_books.gif
510 www.whowhere.lycos.com/images/1800/advppl1.gif
511 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
512 i.real.com/g/pics/games/gamepass_120x600_2.gif
513 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
514 www*.chathouse.com/chatimages/whopersonal.gif
515 #MASTER# BLOCK-REFERRER: http://www.beseen.com/
516 www.beseen.com/images/website3.gif
517 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
518 .planetspiele.de/gfx/partner
519 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
520 #MASTER# REMARKS: Yes, block *all* their graphics.
521 www.hot.ee/.*\.(gif|jpe?g)
522 top.ultraseek.net/top_sit.*\.gif
523 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
524 fosi.ural.net/.*\.jpg
525 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
526 .tucows.com/images/dodi.gif
527 .tucows.com/images/elibrary_searchTop.gif
528 #MASTER# BLOCK-REFERRER: http://www.ix.de/
529 #MASTER# BLOCK-REFERRER: http://www.heise.de/
530 /icons/emedia_b.gif
531 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
532 dest.travelocity.com/website/destinations/images/partner_frommers.gif
533 dest.travelocity.com/website/destinations/images/travelex_logo.gif
534 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
535 cobolreport.com/images/canam1.gif
536 cobolreport.com/images/Acucorp1.gif
537 cobolreport.com/images/netcobol.jpg
538 cobolreport.com/images/NetCOBOL-banner.gif
539 objectz.com/images/Landmark%20120x240.gif
540 #MASTER# BLOCK-REFERRER: http://www.theregister.co.uk/
541 www.theregister.co.uk/media
542 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
543 tribalfusion.speedera.net
544 .tribalfusion.com/media/
545 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
546 b*.portalofevil.com/shlv
547 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
548 i.imdb.com/Vpics/
549 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
550 i.imdb.com/Photos/CMSIcons
551 rcm.amazon.com
552 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
553 i.imdb.com/Icons/apix/
554 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
555 .nytimes.com/adx/
556 #MASTER# BLOCK-REFERRER: http://www.salon.com/
557 www.salon.com/Creatives
558 images.salon.com/plus/gear/src/
559 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
560 images.sourceforge.net/images/DB2powered.gif
561
562 #############################################################################
563 # Generic block-as-image patterns:
564 #############################################################################
565 {+block-as-image}
566 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
567 /.*adimage\.(php|cgi)
568
569 #############################################################################
570 # Site-specific block-as-image patterns:
571 #############################################################################
572 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
573 #MASTER# BLOCK-REFERRER: http://www.aol.com/
574 ar.atwola.com 
575 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
576 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
577 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
578 .[a-vx-z]*.doubleclick.net
579 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
580 netcomm.spinbox.net
581 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
582 servedby.advertising.com
583 #MASTER# BLOCK-REFERRER: http://hwww.yahoo.com/
584 .a.yimg.com/(?:(?!/i/).)*$
585 .a[0-9].yimg.com/(?:(?!/i/).)*$
586 .yimg.com/.*/a/
587 .yimg.com/.*/flash/promotions
588 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
589 werbung.guj.de
590 #MASTER# DONT-VERIFY
591 bs*.gsanet.com
592 bs*.einets.com
593 #MASTER# DONT-VERIFY (Opera browser built-in ads)
594 .qkimg.net
595 /scripts/cms/xcms.asp
596 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
597 .sexcounter.
598 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
599 www.asahi.com/(.*/)?ad/
600 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
601 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
602 .travelocity./Sponsor_gifs/
603 #MASTER# DONT-VERIFY
604 #MASTER# REMARKS: Bannerfarms used by grokster and others:
605 james.adbutler.de
606 gkas.de/affilinet
607 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
608 130.94.70.82
609 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
610 cashformel.com/web-sponsor
611 www.cash4banner.com/web-sponsor
612 213.221.106.162
613 #MASTER# BLOCK-REFERRER: http://www.ebay.com
614 pics.ebay.com/aw/pics/homepage/big8
615 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
616 #MASTER# REMARKS: ad*.adsolution.de
617 62.26.220.2
618 62.27.38.2
619 62.27.57.2
620 #MASTER# BLOCK-REFERRER: unknown
621 #MASTER# REMARKS: both exist and are banner farms
622 www.bannermania.nom.pl
623 magic.koti.com.pl/cgi-magic/banner_img.cgi
624 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
625 naturalismedicina.com/cgibin/linswap
626 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
627 statse.webtrendslive.com
628 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
629 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
630 spinbox.versiontracker.com/.*\.gif
631 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
632 #MASTER# REMARKS: Counter
633 .netscape.com/c\.cgi\?
634 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
635 a.consumer.net
636 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
637 #MASTER# REMARKS: Counter
638 m[0-9].nedstatbasic.net
639 #MASTER# BLOCK-REFERRER: http://salon.com/
640 #MASTER# REMARKS: Banner farms; just exclude their corp. info
641 [a-v,x-z]*.atdmt.com/
642 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
643 images.deviantart.com/affiliates/
644 images.deviantart.com/shared/(winzip|trillian)\.gif
645 #MASTER# DONT-VERIFY
646 #MASTER# REMARKS: Referenced from HTML-Emails
647 .weather.com/creatives/
648 .weather.com/web/services/email/
649
650 #############################################################################
651 # Generic unblockers to narrow the side effects of the generic blockers:
652 #############################################################################
653 {-block}
654 #MASTER# DONT-VERIFY (generic)
655
656 # By host:
657 #
658 adsl.
659 ad[ud]*.
660 advice.
661 .edu
662 .ac.uk
663 .uni-*.de
664 .*load*.
665
666 # By path:
667 #
668 /.*ad(sl|v(i[cs]|an|ertencia|entu)) # advice/advisories/advan*/advertencia (spanish)
669 /.*((up|down)lo|p?thre|he|d|gr|l|ro)ads
670 /.*account
671
672 #############################################################################
673 # Site-specific unblockers:
674 #############################################################################
675 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
676 bannerblind.mozdev.org
677 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
678 advogato.org
679 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
680 ad*.vhb.de
681 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
682 www.ugu.com/sui/ugu/adv
683 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
684 www.globalintersec.com/adv
685 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
686 banners.wunderground.com/banner/
687 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
688 www.sueddeutsche.de/.*banner
689 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
690 www.openoffice.org/banners/
691 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
692 capwiz.com/ieee/images/banner.gif
693 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
694 sec*.greymagic.com/adv/
695 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
696 .foxnews.com/images/banners/(sec|logo)
697 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
698 #MASTER# REMARKS: Used as link tracker on (needed) internal links
699 www.comdirect.de/stat/count.php
700 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
701 #MASTER# REMARKS: Part of site decoration
702 .amazon.com/.*/banners/
703 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
704 #MASTER# REMARKS: Javascripts whose absence messes the page
705 .washingtonpost.com/wp-srv/
706 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
707 www.gnome.org
708 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
709 .nycsubway.org/img/banner
710 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
711 ads.hellug.gr
712
713 #############################################################################
714 # Site-specific special rules:
715 #############################################################################
716
717 #----------------------------------------------------------------------------
718 # These sites are very complex (read: keen on your identity) and require
719 # minimal interference.
720 #----------------------------------------------------------------------------
721 {fragile}
722 .office.microsoft.com
723 .windowsupdate.microsoft.com
724
725 #----------------------------------------------------------------------------
726 # Shopping and banking sites - allow cookies and pop-ups
727 #----------------------------------------------------------------------------
728 {shop}
729 .quietpc.com
730 .worldpay.com   # for quietpc.com
731 .jungle.com
732 .scan.co.uk
733 .dabs.com
734 .overclockers.co.uk
735 .deutsche-bank-24.de
736 .db24.de
737 .ebay.
738 .mobile.de
739
740 #----------------------------------------------------------------------------
741 # These sites require pop-ups
742 #----------------------------------------------------------------------------
743 {allow-popups}
744 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
745 www.aprilbarrows.com/discography\.html$
746 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
747 .infospace.com/.*/venshopping/
748 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
749 www.nvidia.com
750 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
751 www*.chathouse.com/games/
752 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
753 #MASTER# REMARKS: Search results come in a popup
754 www.tagesschau.de
755 #MASTER# PROBLEM-URL: http://www.reuters.com/
756 #MASTER# REMARKS: Printer friendly versions pop up
757 www.reuters.com/news_article.jhtml
758 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
759 www.xmms.org
760 #MASTER# PROBLEM-URL: http://www.bild.de/
761 .bild.t-online.de
762 #MASTER# PROBLEM-URL: http://klubwakacyjny.interia.pl/pytanie.html
763 klubwakacyjny.interia.pl/pytanie.html
764 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
765 www.m-w.com
766 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
767 www.pcbox.es
768 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
769 www.hola.com/club/
770 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
771 www.infoempleo.com
772 #MASTER# PROBLEM-URL: http://www.netflix.com/
773 www.netflix.com
774
775 ##----------------------------------------------------------------------------
776 # Sometimes (i.e. often!) fast-redirects catches things by mistake
777 #----------------------------------------------------------------------------
778 {-fast-redirects}
779 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
780 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
781 .google.com
782 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
783 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
784 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
785 .speedfind.de
786 #MASTER# PROBLEM-URL: http://www.nytimes.com/
787 .nytimes.com
788 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
789 .yahoo.com/.*done=
790 #MASTER# PROBLEM-URL: http://validator.w3.org/check
791 .w3.org
792 #MASTER# PROBLEM-URL: http://www.ask.com/
793 .directhit.com
794 #MASTER# PROBLEM-URL: http://www.zagats.com/
795 .zagats.com
796 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
797 #MASTER# PROBLEM-URL: http://www.msn.com/
798 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
799 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
800 login.passport.com/logout\.(asp|srf)\?
801 #MASTER# PROBLEM-URL: http://www.fileplanet.com
802 download.com.com/redir\?
803 www.fileplanet.com/redir\.asp\?
804 #MASTER# PROBLEM-URL: http://www.washingtonpost.com/
805 .washingtonpost.com
806
807 #----------------------------------------------------------------------------
808 # No filtering for sourcecode
809 #----------------------------------------------------------------------------
810 {-filter}
811 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
812 cvs.
813 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
814 liveupdate.symantec.com
815
816 #----------------------------------------------------------------------------
817 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
818 # workaround is to use zlib.output_compression):
819 #----------------------------------------------------------------------------
820 {-prevent-compression}
821 #MASTER# PROBLEM-URL: http://www.powie.de/
822 www.powie.de
823 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
824 www.phpcenter.de
825 #MASTER# PROBLEM-URL: http://www.debianhelp.org/
826 www.debianhelp.org
827 #MASTER# PROBLEM-URL: http://www.timeanddate.com
828 www.timeanddate.com
829 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
830 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
831 .pclinuxonline.com
832 #MASTER# PROBLEM-URL: http://www.dhd24.com/
833 www.dhd24.com
834 #MASTER# PROBLEM-URL: http://www.linuxandmain.com/
835 .linuxandmain.com
836 #MASTER# PROBLEM-URL: http://www.ofb.biz/
837 .ofb.biz
838 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
839 .dungeoncrawl.org
840 #MASTER# PROBLEM-URL: http://www.deviantart.com/
841 .deviantart.com
842 #MASTER# PROBLEM-URL: http://www.planetspiele.de/wbboard/
843 www.planetspiele.de/wbboard/
844 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
845 www.digitalspy.co.uk
846 #MASTER# PROBLEM-URL: http://www.dealnews.com/
847 .dealnews.com   
848
849 #----------------------------------------------------------------------------
850 # The first frame of the gif animation is more useful here:
851 #----------------------------------------------------------------------------
852 {+deanimate-gifs{first}}
853 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
854 #MASTER# REMARKS: Animation shows phone number
855 .pricecontrast.com
856
857 #----------------------------------------------------------------------------
858 # Innocent images in standard banner sizes found here:
859 #----------------------------------------------------------------------------
860 {-filter{banners-by-size}}
861 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
862 .max.de
863 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
864 www.unmuseum.org
865
866 #----------------------------------------------------------------------------
867 # These don't work without the referrer information:
868 #----------------------------------------------------------------------------
869 {-hide-referrer}
870 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
871 /cgi-bin/fosi.cgi
872 #MASTER# PROBLEM-URL: http://www.abcnews.com/
873 printerfriendly.abcnews.com
874 #MASTER# PROBLEM-URL: http://www.ask.com/
875 .ask.com
876 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
877 www.amazon.de/exec/obidos/clipserve/
878 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
879 .lufthansa.
880
881 #----------------------------------------------------------------------------
882 # These animated gifs are either useful or nice:
883 #----------------------------------------------------------------------------
884 {-deanimate-gifs}
885 #MASTER# PROBLEM-URL: http://www.care2.com/
886 #MASTER# REMARKS: Wanted animations on ecards
887 .care2.com
888 .care-mail.com
889 #MASTER# PROBLEM-URL: http://www.ameritrade.com
890 #MASTER# REMARKS: Animated link texts
891 www.ameritrade.com
892
893 #----------------------------------------------------------------------------
894 # These sites are so abusive that we need to kill all JS event bindings (and
895 # probably a break a lot along the way)
896 #----------------------------------------------------------------------------
897 {+filter{js-radical}}
898 #MASTER# PROBLEM-URL: http://www..planetspiele.de/
899 .planetspiele.de
900 216.12.219.40
901
902 #----------------------------------------------------------------------------
903 # Misc special rules:
904 #----------------------------------------------------------------------------
905 {-filter{content-cookies} -filter{webbugs}}
906 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
907 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
908 www.friendscout24.de
909
910 {-deanimate-gifs -filter{popups} -kill-popups}
911 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
912 #MASTER# REMARKS: Know your enemy ;-)
913 www.valueclick.com
914 {-block}
915 www.valueclick.com/html/img/advertiser_top.gif
916
917 {-filter{banners-by-size} -deanimate-gifs}
918 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
919 #MASTER# REMARKS: They use banner-sized animated images
920 realguide.real.com/games
921
922 {-handle-as-image}
923 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
924 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
925 .doubleclick.net/adi
926
927 {+block}
928 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
929 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
930 www.geocities.com/js_source
931
932 {-filter{fun}}
933 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
934 #MASTER# REMARKS: Don't change the filter code with itself ;-)
935 /(.*/)?user-manual/filter-file.html
936
937 {+filter{img-reorder} +filter{banners-by-link}}
938 #MASTER# PROBLEM-URL: http://www.dn.se/
939 #MASTER# REMARKS: Can't catch by size or location
940 www.dn.se