Regenerate docs for upcoming 3.0.1 release.
[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.1.2.13 2003/03/15 14:09:05 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 # Note: Updated versions of this file will be made available from time
14 #       to time. Check http://sourceforge.net/project/showfiles.php?group_id=11118
15 #       for updates and/or subscribe to the announce mailing list
16 #       (http://lists.sourceforge.net/lists/listinfo/ijbswa-announce) if you
17 #       wish to receive an email notice whenever updates are released.
18 #
19 # We value your feedback. However, to provide you with the best support,
20 # please note:
21 #  
22 #  * Use the support forum to get help:
23 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
24 #  * Submit feedback for this actions file only through our
25 #    actions file feedback script: http://www.privoxy.org/actions
26 #  * Submit bugs only through our bug forum:
27 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
28 #    Make sure that the bug has not already been submitted. Please try
29 #    to verify that it is a Privoxy bug, and not a browser or site
30 #    bug first. If you are using your own custom configuration, please
31 #    try the stock configs to see if the problem is a configuration
32 #    related bug. And if not using the latest development snapshot,
33 #    please try the latest one. Or even better, CVS sources.
34 #  * Submit feature requests only through our feature request forum:
35 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
36 #      
37 # For any other issues, feel free to use the mailing lists:
38 # http://sourceforge.net/mail/?group_id=11118
39 #    
40 # Anyone interested in actively participating in development and related
41 # discussions can join the appropriate mailing list here:
42 # http://sourceforge.net/mail/?group_id=11118. Archives are available
43 # here too.
44
45 #############################################################################
46 # Syntax
47 #############################################################################
48
49 # A much better explanation can be found in the user manual which is
50 # part of the distribution and can be found at http://www.privoxy.org/user-manual
51 #
52 # To determine which actions apply to a request, the URL of the request is
53 # compared to all patterns in this file. Every time it matches, the list of
54 # applicable actions for this URL is incrementally updated. You can trace
55 # this process by visiting http://config.privoxy.org/show-url-info
56 #
57 # There are 4 types of lines in this file: comments (like this line),
58 # actions, aliases and patterns, all of which are explained below.
59 #
60 #############################################################################
61 # Pattern Syntax
62 #############################################################################
63
64 # 1. On Domains and Paths
65 # -----------------------
66 #
67 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
68 # and <path> part are optional. If you only specify a domain part, the "/"
69 # can be left out:
70
71 # www.example.com 
72 #   is a domain-only pattern and will match any request to www.yahoo.com
73
74 # www.example.com/
75 #   means exactly the same (but is slightly less efficient)
76
77 # www.example.com/index.html
78 #   matches only the document /index.html on www.example.com
79
80 # /index.html
81 #   matches the document /index.html, regardless of the domain
82
83 # index.html
84 #   matches nothing, since it would be interpreted as a domain name and
85 #   there is no top-level domain called ".html".
86
87 # 2. Domain Syntax
88 # ----------------
89
90 # The matching of the domain part offers some flexible options: If the
91 # domain starts or ends with a dot, it becomes unanchored at that end:
92
93 # www.example.com
94 #   matches only www.example.com
95
96 # .example.com
97 #   matches any domain that ENDS in .example.com
98
99 # www.
100 #   matches any domain that STARTS with www.
101 #
102 # .example.
103 #   matches any domain that CONTAINS example
104 #
105
106 # Additionally, there are wildcards that you can use in the domain names
107 # themselves. They work pretty similar to shell wildcards: "*" stands for
108 # zero or more arbitrary characters, "?" stands for one, and you can define
109 # charachter classes in square brackets and they can be freely mixed:
110
111 # ad*.example.com
112 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
113
114 # *ad*.example.com
115 #   matches all of the above
116
117 # .?pix.com
118 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
119
120 # www[1-9a-ez].example.com
121 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
122 #   wwwz.example.com etc, but not wwww.example.com
123
124 # You get the idea?
125
126 # 2. Path Syntax
127 # --------------
128
129 # Paths are specified as regular expressions. A comprehensive discussion of
130 # regular expressions wouldn't fit here, but (FIXME) someone should paste
131 # a concise intro to the regex language here.
132
133 # Perl compatible regular expressions are used. See the pcre/docs/ direcory or
134 # man perlre (also available on http://www.perldoc.com/perl5.6/pod/perlre.html)
135 # for details. The appendix to the user manual also has some detail.
136
137 # Please note that matching in the path is CASE INSENSITIVE by default, but
138 # you can switch to case sensitive by starting the pattern with the "(?-i)"
139 # switch:
140
141 # www.example.com/(?-i)PaTtErN.*
142 #   will match only documents whose path starts with PaTtErN in exactly this
143 #   capitalization.
144 #
145 # Partially case-sensetive and partially case-insensitive patterns are
146 # possible, but the rules about splitting them up are extremely complex
147 # - see the PCRE documentation for more information.
148
149 #############################################################################
150 # Action Syntax
151 #############################################################################
152 #
153 # There are 3 kinds of action:
154 #
155 # Boolean (e.g. "block"):
156 #   +name  # enable
157 #   -name  # disable
158 #
159 # Parameterized (e.g. "hide-user-agent"):
160 #   +name{param}  # enable and set parameter to "param"
161 #   -name         # disable
162 #
163 # Multi-value (e.g. "add-header", "send-wafer"):
164 #   +name{param}  # enable and add parameter "param"
165 #   -name{param}  # remove the parameter "param"
166 #   -name         # disable totally
167 #
168 # The default (if you don't specify anything in this file) is not to take
169 # any actions - i.e completely disabled, so Privoxy will just be a
170 # normal, non-blocking, non-anonymizing proxy.  You must specifically
171 # enable the privacy and blocking features you need (although the 
172 # provided default actions file will do that for you).
173 #
174 # Later actions always override earlier ones.  For multi-valued actions,
175 # the actions are applied in the order they are specified.
176 #
177 #############################################################################
178 # Valid actions are:
179 #############################################################################
180 #
181 # +add-header{Name: value}
182 #    Adds the specified HTTP header, which is not checked for validity.
183 #    You may specify this many times to specify many headers.
184 #
185 # +block
186 #    Block this URL
187 #
188 # +deanimate-gifs{last}
189 # +deanimate-gifs{first}
190 #    Deanimate all animated GIF images, i.e. reduce them to their last
191 #    frame. This will also shrink the images considerably. (In bytes,
192 #    not pixels!) 
193 #    If the option "first" is given, the first frame of the animation
194 #    is used as the replacement. If "last" is given, the last frame of
195 #    the animation is used instead, which propably makes more sense for
196 #    most banner animations, but also has the risk of not showing the
197 #    entire last frame (if it is only a delta to an earlier frame).
198 #
199 # +downgrade-http-version
200 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
201 #    responses as well. Use this action for servers that use HTTP/1.1
202 #    protocol features that Privoxy currently can't handle yet.
203 #
204 # +fast-redirects
205 #    Many sites, like yahoo.com, don't just link to other sites.
206 #    Instead, they will link to some script on their own server,
207 #    giving the destination as a parameter, which will then redirect
208 #    you to the final target. 
209 #
210 #    URLs resulting from this scheme typically look like:
211 #    http://some.place/some_script?http://some.where-else
212 #
213 #    Sometimes, there are even multiple consecutive redirects encoded
214 #    in the URL. These redirections via scripts make your web browing
215 #    more traceable, since the server from which you follow such a link
216 #    can see where you go to. Apart from that, valuable bandwidth and
217 #    time is wasted, while your browser aks the server for one redirect
218 #    after the other. Plus, it feeds the advertisers.
219 #
220 #    The +fast-redirects option enables interception of these requests
221 #    by Privoxy, who will cut off all but the last valid URL in the
222 #    request and send a local redirect back to your browser without
223 #    contacting the intermediate sites.
224 #
225 # +filter{name}
226 #    Filter the website through one or more regular expression filters.
227 #    Repeat for multiple filters.
228 #   
229 #    Filters predefined in the supplied default.action include:
230 #
231 #     js-annoyances:       Get rid of particularly annoying JavaScript abuse
232 #     js-events:           Kill all JS event bindings (Radically destructive! Use only on real suckers)
233 #     html-annoyances:     Get rid of particularly annoying HTML abuse
234 #     content-cookies:     Kill cookies that come in the HTML or JS content
235 #     refresh-tags:        Kill automatic refresh tags (for dial-on-demand setups)
236 #     unsolicited-popups:  Disable only unsolicited pop-up windows
237 #     all-popups:          Kill all popups in JavaScript and HTML
238 #     img-reorder:         Reorder attributes in <img> tags to make the banners-by-* filters more effective
239 #     banners-by-size:     Kill banners by size (very efficient!)
240 #     banners-by-link:     Kill banners by their links to known clicktrackers 
241 #     webbugs:             Squish WebBugs (1x1 invisible GIFs used for user tracking)
242 #     tiny-textforms:      Extend those tiny textareas up to 40x80 and kill the hard wrap
243 #     jumping-windows:     Prevent windows from resizing and moving themselves
244 #     frameset-borders:    Give frames a border
245 #     demoronizer:         Fix MS's non-standard use of standard charsets
246 #     shockwave-flash:     Kill embedded Shockwave Flash objects
247 #     quicktime-kioskmode: Make Quicktime movies saveable
248 #     fun:                 Text replacements  for subversive browsing fun!
249 #     crude-parental:      Kill all web pages that contain the words "sex" or "warez"
250 #     ie-exploits:         Disable some known Internet Explorer bug exploits
251 #
252 # +hide-forwarded-for-headers
253 #    Block any existing X-Forwarded-for header, and do not add a new one.
254 #
255 # +hide-from-header{block}
256 # +hide-from-header{spam@sittingduck.xqq}
257 #    If the browser sends a "From:" header containing your e-mail address, 
258 #    either completely removes the header ("block"), or change it to the
259 #    specified e-mail address.
260 #
261 # +hide-referer{block}
262 # +hide-referer{forge}
263 # +hide-referer{http://nowhere.com}
264 #    Don't send the "Referer:" (sic) header to the web site.  You can
265 #    block it, forge a URL to the same server as the request (which is
266 #    preferred because some sites will not send images otherwise) or
267 #    set it to a constant string.
268 #
269 # +hide-referrer{...}
270 #    Alternative spelling of +hide-referer.  Has the same parameters,
271 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
272 #    correct English spelling, however the HTTP specification has a 
273 #    bug - it requires it to be spelt "referer").
274 #
275 # +hide-user-agent{browser-type}
276 #    Change the "User-Agent:" header so web servers can't tell your
277 #    browser type.  (Breaks many web sites).  Specify the user-agent
278 #    value you want - e.g., to pretend to be using Netscape on Linux:
279 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
280 #    Or to identify yourself explicitly as a Privoxy user:
281 #      +hide-user-agent{Privoxy/1.0}
282 #    (Don't change the version number from 1.0 - after all, why tell them?)
283 #
284 # +handle-as-image
285 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
286 #    in which case a "blocked" image can be sent rather than a HTML page.
287 #    See +set-image-blocker{} for the control over what is actually sent.
288 #
289 # +set-image-blocker{blank}
290 # +set-image-blocker{pattern}
291 # +set-image-blocker{<URL>} with <url> being any valid image URL
292 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
293 #    There are 4 options:
294 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
295 #         resulting in a "broken image" icon.
296 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
297 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
298 #        which is less intrusive than the logo but easier to recognize
299 #        than the transparent one.
300 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
301 #        to the specified image URL.
302 #
303 #
304 # +limit-connect{portlist}
305 #   The CONNECT methods exists in HTTP to allow access to secure websites
306 #   (https:// URLs) through proxies. It works very simply: The proxy
307 #   connects to the server on the specified port, and then short-circuits
308 #   its connections to the cliant and to the remote proxy.
309 #   This can be a big security hole, since CONNECT-enabled proxies can
310 #   be abused as TCP relays very easily.
311 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
312 #   will only allow CONNECT requests to port 443, which is the standard port
313 #   for https.
314 #   If you want to allow CONNECT for more ports than that, or want to forbid
315 #   CONNECT altogether, you can specify a comma separated list of ports and port
316 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
317 #
318 #   +limit-connect{443} # This is the default and need no be specified.
319 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
320 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
321 #
322 # +prevent-compression
323 #    Prevent the website from compressing the data. Some websites do
324 #    that, which is a problem for Privoxy, since +filter, +kill-popups
325 #    and +gif-deanimate will not work on compressed data. Will slow down
326 #    connections to those websites, though.
327 #
328 # +prevent-keeping-cookies
329 # +session-cookies-only
330 #    If the website sets cookies, make sure they are erased when you exit
331 #    and restart your web browser.  This makes profiling cookies useless,
332 #    but won't break sites which require cookies so that you can log in
333 #    or for transactions.
334 #
335 # +crunch-outgoing-cookies
336 #    Prevent the website from reading cookies
337 #
338 # +crunch-incoming-cookies
339 #    Prevent the website from setting cookies
340 #
341 # +kill-popups (deprecated)
342 #    Filter the website through a built-in filter to disable
343 #    window.open() etc.  The two alternative spellings are
344 #    equivalent.
345 #
346 # +send-vanilla-wafer
347 #    This action only applies if you are using a jarfile.  It sends a
348 #    cookie to every site stating that you do not accept any copyright
349 #    on cookies sent to you, and asking them not to track you.  Of
350 #    course, this is a (relatively) unique header they could use to 
351 #    track you.
352 #
353 # +send-wafer{name=value}
354 #    This allows you to add an arbitrary cookie.  Specify it multiple
355 #    times in order to add several cookies.
356 #
357 #############################################################################
358
359 #############################################################################
360 # Settings -- Don't change.
361 #############################################################################
362 {{settings}}
363 #############################################################################
364 for-privoxy-version=3.0
365
366 #############################################################################
367 # Aliases
368 #############################################################################
369 {{alias}}
370 #############################################################################
371 #
372 # You can define a short form for a list of permissions - e.g., instead
373 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
374 # you can just write "shop". This is called an alias.
375 #
376 # Currently, an alias can contain any character except space, tab, '=', '{'
377 # or '}'.
378 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
379 #
380 # Alias names are not case sensitive.
381 #
382 # Aliases beginning with '+' or '-' may be used for system action names 
383 # in future releases - so try to avoid alias names like this.  (e.g. 
384 # "+crunch-all-cookies" below is not a good name)
385 #
386 # Aliases must be defined before they are used.
387
388
389 # These aliases just save typing later:
390 #
391 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
392 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
393  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
394  allow-popups       = -filter{all-popups} -kill-popups
395 +block-as-image     = +block +handle-as-image
396 -block-as-image     = -block
397
398 # These aliases define combinations of actions
399 # that are useful for certain types of sites:
400 #
401 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups
402 shop        = -crunch-all-cookies allow-popups
403
404 # Your favourite blend of filters:
405 #
406 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{all-popups}\
407               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
408
409 # Allow ads for selected useful free sites:
410 #
411 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
412 #... etc.  Customize to your heart's content.
413
414
415 #############################################################################
416 # Defaults
417 #############################################################################
418 { \
419 -add-header \
420 -block \
421 -crunch-outgoing-cookies \
422 -crunch-incoming-cookies \
423 +deanimate-gifs{last} \
424 -downgrade-http-version \
425 -fast-redirects \
426 +filter{js-annoyances} \
427 -filter{js-events} \
428 +filter{html-annoyances} \
429 -filter{content-cookies} \
430 +filter{refresh-tags} \
431 +filter{unsolicited-popups} \
432 -filter{all-popups} \
433 +filter{img-reorder} \
434 +filter{banners-by-size} \
435 -filter{banners-by-link} \
436 +filter{webbugs} \
437 -filter{tiny-textforms} \
438 +filter{jumping-windows} \
439 -filter{frameset-borders} \
440 +filter{demoronizer} \
441 -filter{shockwave-flash} \
442 -filter{quicktime-kioskmode} \
443 -filter{fun} \
444 -filter{crude-parental} \
445 +filter{ie-exploits} \
446 -handle-as-image \
447 +hide-forwarded-for-headers \
448 +hide-from-header{block} \
449 +hide-referrer{forge} \
450 -hide-user-agent \
451 -kill-popups \
452 -limit-connect \
453 +prevent-compression \
454 -send-vanilla-wafer \
455 -send-wafer \
456 +session-cookies-only \
457 +set-image-blocker{pattern} \
458 }
459 / # Match all URLs
460
461 #############################################################################
462 # Needed for automatic feedback evaluation; Please don't change or delete!
463 #############################################################################
464 {+add-header{X-Actions-File-Version: 1.5} -filter -kill-popups}
465 .privoxy.org
466 .oesterhelt.org/actions
467
468 #############################################################################
469 # These extensions belong to images:
470 #############################################################################
471 {+handle-as-image}
472 #############################################################################
473 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
474
475 #############################################################################
476 # These don't:
477 #############################################################################
478 {-handle-as-image}
479 /.*\.js
480
481 #############################################################################
482 # Generic block patterns (the most effective!):
483 #############################################################################
484 {+block}
485 #MASTER# DONT-VERIFY (generic)
486
487 # By hostname:
488 #
489 ad*.
490 .*ads.
491 *banner*.
492 count*.
493
494 # By path:
495 #
496 /(.*/)?(ads(erver?|tream)?|.*?ads/|ad(images|cycle|rotate|mentor)?/|adv(iew|ert(s|enties|is(ing|e?ments)?)?)?|(ad|all|nn|db|promo(tion)?)?[-_]?banner(s|ads?|farm)?)
497 /(.*/)?(publicite|werbung|rekla(ma|me|am)|annonse|maino(kset|nta|s)?/)
498 /.*(count|track|compteur|adframe)(er|run)?\.(pl|cgi|exe|dll|asp|php[34]?|cpt)
499 /.*promo.gif
500
501 #############################################################################
502 # Site-specific block patterns;
503 #############################################################################
504
505 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
506 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
507 .hitbox.com 
508 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
509 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
510 #MASTER# BLOCK-REFERRER: http://www.stern.de/
511 www.stern.de/bilder/poweredby
512 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
513 images.gmx.net/images/bs/
514 #MASTER# BLOCK-REFERRER: http://www.max.de/
515 .akamaitech.net/.*/img/e-commerce
516 www.max.de/_teaser/partner/
517 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
518 search.atomz.com/search/i/tagw1c.gif
519 www.intelligentx.com/newsletters/.*\.gif
520 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/ThreeD/explain.html
521 www.whowhere.lycos.com/images/ebay_bst.gif
522 www.whowhere.lycos.com/images/find_books.gif
523 www.whowhere.lycos.com/images/1800/advppl1.gif
524 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
525 i.real.com/g/pics/games/gamepass_120x600_2.gif
526 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
527 www*.chathouse.com/chatimages/whopersonal.gif
528 #MASTER# BLOCK-REFERRER: http://www.beseen.com/
529 www.beseen.com/images/website3.gif
530 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
531 .planetspiele.de/gfx/partner
532 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
533 top.ultraseek.net/top_sit.*\.gif
534 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
535 fosi.ural.net/.*\.jpg
536 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
537 .tucows.com/images/dodi.gif
538 .tucows.com/images/elibrary_searchTop.gif
539 #MASTER# BLOCK-REFERRER: http://www.ix.de/
540 #MASTER# BLOCK-REFERRER: http://www.heise.de/
541 /icons/emedia_b.gif
542 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
543 dest.travelocity.com/website/destinations/images/partner_frommers.gif
544 dest.travelocity.com/website/destinations/images/travelex_logo.gif
545 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
546 cobolreport.com/images/canam1.gif
547 cobolreport.com/images/Acucorp1.gif
548 cobolreport.com/images/netcobol.jpg
549 cobolreport.com/images/NetCOBOL-banner.gif
550 objectz.com/images/Landmark%20120x240.gif
551 #MASTER# BLOCK-REFERRER: http://www.theregister.co.uk/
552 www.theregister.co.uk/media
553 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
554 tribalfusion.speedera.net
555 .tribalfusion.com/media/
556 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
557 b*.portalofevil.com/shlv
558 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
559 i.imdb.com/Vpics/
560 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
561 i.imdb.com/Photos/CMSIcons
562 rcm.amazon.com
563 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
564 i.imdb.com/Icons/apix/
565 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
566 .nytimes.com/adx/
567 #MASTER# BLOCK-REFERRER: http://www.salon.com/
568 www.salon.com/Creatives
569 images.salon.com/plus/gear/src/
570 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
571 images.sourceforge.net/images/DB2powered.gif
572 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/media.cfm?action=shot&id=250&seq=2
573 /.*paypal-smad\.gif
574 www.planetgamecube.com/images/PGC_Q_Edit.gif
575 #MASTER# BLOCK-REFERRER: http://www.samachar.com/
576 .samachar.com/banimages/
577 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/aws/index.asp
578 .weatherbug.com/popups/
579 #MASTER# BLOCK-REFERRER: http://portale.web.de/Film/
580 .web.de/.*/EIGENWERBUNG/
581 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/
582 www.aintitcool.com/.*\.swf
583 #MASTER# BLOCK-REFERRER: http://www.hispasexo.net/fotos/index.php?currDir=./Negras&pageType=image&image=bla001.jpg
584 www.hispasexo.net/.*/sxb
585 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2002/09/05/technology/05CODE.html
586 graphics.nytimes.com/nytstore/images/ctx
587 #MASTER# BLOCK-REFERRER: http://www.macfixit.com/
588 spinbox.techtracker.com
589 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/
590 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
591 www.popupad.net/ats/
592 #MASTER# BLOCK-REFERRER: http://www.gamespot.com/
593 www.gamespot.com/promos/
594 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm
595 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
596 hit-now.com
597 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/
598 st.valueclick.com
599 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
600 www.crazypopups.com
601 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
602 /scripts/cms/xcms.asp
603
604
605 #############################################################################
606 # Generic block-as-image patterns:
607 #############################################################################
608 {+block-as-image}
609 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
610 /.*adimage\.(php|cgi)
611 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
612 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
613 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
614 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
615 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
616 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
617 /.*recips?/
618
619 #############################################################################
620 # Site-specific block-as-image patterns:
621 #############################################################################
622 #----------------------------------------------------------------------------
623 # Banner farms:
624 #----------------------------------------------------------------------------
625 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
626 #MASTER# BLOCK-REFERRER: http://www.aol.com/
627 ar.atwola.com 
628 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
629 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
630 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
631 .[a-vx-z]*.doubleclick.net
632 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
633 netcomm.spinbox.net
634 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
635 .*servedby.advertising.com
636 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
637 .a.yimg.com/(?:(?!/i/).)*$
638 .a[0-9].yimg.com/(?:(?!/i/).)*$
639 .yimg.com/.*/a/
640 .yimg.com/.*/flash/promotions
641 .yimg.com/a/.*/flash/
642 #MASTER# BLOCK-REFERRER: http://freeshells.linuxhelpnetwork.net/
643 .yimg.com/.*/justdeals
644 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
645 werbung.guj.de
646 #MASTER# DONT-VERIFY
647 bs*.gsanet.com
648 bs*.einets.com
649 #MASTER# DONT-VERIFY (Opera browser built-in ads)
650 .qkimg.net
651 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
652 .sexcounter.
653 #MASTER# DONT-VERIFY
654 #MASTER# REMARKS: Bannerfarms used by grokster and others:
655 james.adbutler.de
656 gkas.de/affilinet
657 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
658 130.94.70.82
659 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
660 cashformel.com/web-sponsor
661 www.cash4banner.com/web-sponsor
662 213.221.106.162
663 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
664 #MASTER# REMARKS: ad*.adsolution.de
665 62.26.220.2
666 62.27.38.2
667 62.27.57.2
668 #MASTER# BLOCK-REFERRER: unknown
669 #MASTER# REMARKS: both exist and are banner farms
670 www.bannermania.nom.pl
671 magic.koti.com.pl/cgi-magic/banner_img.cgi
672 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
673 statse.webtrendslive.com
674 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
675 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
676 spinbox.versiontracker.com/.*\.(gif|jpg)
677 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
678 #MASTER# REMARKS: Counter
679 .netscape.com/c\.cgi\?
680 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
681 #MASTER# REMARKS: Counter
682 m[0-9].nedstatbasic.net
683 #MASTER# BLOCK-REFERRER: http://salon.com/
684 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
685 #MASTER# REMARKS: Banner farms; just exclude their corp. info
686 [a-v,x-z]*.atdmt.com/
687 #MASTER# BLOCK-REFERRER: http://f1.racing-live.com/en/
688 .akamai.net/.*f1-live\.com/.*pub
689 #MASTER# BLOCK-REFERRER: http://www.melodysoft.com/cgi-bin/foro.cgi
690 tracker.tradedoubler.com
691 #MASTER# BLOCK-REFERRER: http://dlh.net/german.html
692 imp*.tradedoubler.com
693 #MASTER# BLOCK-REFERRER: http://www.physlink.com/Education/AskExperts/ae353.cfm
694 /.*affiliate.*120x90
695 #MASTER# BLOCK-REFERRER:  http://www.amayita.com/imagenes/index.php?currDir=./Hall_of_Fame&pageType=image&image=img_0265.jpg
696 www.spanishbanner.com/cgi/bserve.cgi
697 #MASTER# BLOCK-REFERRER: http://www.macgamer.com/
698 .qksrv.net
699
700 #----------------------------------------------------------------------------
701 # On-site ads and other single sources:
702 #----------------------------------------------------------------------------
703 #MASTER# BLOCK-REFERRER: http://www.fotw.net/flags/
704 www.fotw.net/images/linea2.gif
705 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
706 www.asahi.com/(.*/)?ad/
707 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
708 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
709 .travelocity./Sponsor_gifs/
710 #MASTER# BLOCK-REFERRER: http://www.ebay.com
711 pics.ebay.com/aw/pics/homepage/big8
712 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
713 naturalismedicina.com/cgibin/linswap
714 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
715 a.consumer.net
716 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
717 images.deviantart.com/affiliates/
718 images.deviantart.com/shared/(winzip|trillian)\.gif
719 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/
720 www.happypuppy.com/newstuff/netsys\.swf
721 www.happypuppy.com/images/[^/]+\.gif
722 www.happypuppy.com/images/sav_creative/savage_01.jpg
723 www.happypuppy.com/images/site/cnb_but_nav.gif
724 #MASTER# DONT-VERIFY
725 #MASTER# REMARKS: Referenced from HTML-Emails
726 .weather.com/creatives/
727 .weather.com/web/services/email/
728 #MASTER# BLOCK-REFERRER: http://www.mapblast.com/
729 :81/feeds/
730 x.mycity.com
731 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html
732 /.*/topslots/topslot_
733 #MASTER# BLOCK-REFERRER: http://maccentral.macworld.com/
734 maccentral.macworld.com/images/subsad
735 #MASTER# BLOCK-REFERRER: http://bigcharts.marketwatch.com/
736 a.mktw.net
737 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/win/
738 www.happypuppy.com/images/sav_creative
739 #MASTER# BLOCK-REFERRER: http://www.wral.com/
740 images.ibsys.com/.*/sponsors/
741 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/money/economy/fed/2002-09-23-bubble-debate_x.htm
742 www.usatoday.com/sponsors/
743 #MASTER# BLOCK-REFERRER: http://www.jpost.com/
744 ads.jpost.com
745 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
746 /.*/images/\d+/promos/
747 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
748 www.subteran.ro/adult/adult20.jpg
749 #MASTER# BLOCK-REFERRER: http://www.kuro5hin.org/
750 #www.kuro5hin.org/images/[^/]+\.gif
751 #MASTER# BLOCK-REFERRER: http://www.uolsinectis.com.ar/
752 ad.uol.com.br
753 #MASTER# BLOCK-REFERRER: http://www.spammimic.com/credits.shtml
754 www.anonymizer.com/images/affiliate/
755 #MASTER# BLOCK-REFERRER: http://cracks.thebugs.ws/pages/H/7.shtml
756 img.thebugs.ws
757 #MASTER# BLOCK-REFERRER: http://www.kinghost.com/fetish/xworx/Azian/nextdoor/06/realm.html
758 www.kinghost.com/ban/
759 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/
760 www.infoempleo.com/(pop-up|images(/Nueva/banner_|/motor))
761
762 #############################################################################
763 # Generic unblockers to narrow the side effects of the generic blockers:
764 #############################################################################
765 {-block}
766 #MASTER# DONT-VERIFY (generic)
767
768 # By host:
769 #
770 adsl.
771 ad[udm]*.
772 advice.
773 advan*.
774 .*road*.
775 .olympiad*.
776 .*load*.
777 .*head*.
778 .edu
779 .ac.uk
780 .uni-*.de
781
782 # By path:
783 #
784 /.*ad(sl|v(i[cs]|an|ertencia|ent|search)) # advice/advisories/advan*/advertencia (spanish)
785 /.*((up|down)lo|p?thre|he|d|gr|l|ro|bre|spre)ads
786 /.*account
787
788 #############################################################################
789 # Site-specific unblockers:
790 #############################################################################
791 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
792 www.faqs.org/banner\.html
793 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
794 bannerblind.mozdev.org
795 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
796 advogato.org
797 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
798 ad*.vhb.de
799 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
800 www.ugu.com/sui/ugu/adv
801 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
802 www.globalintersec.com/adv
803 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
804 banners.wunderground.com/banner/
805 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
806 www.sueddeutsche.de/.*banner
807 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
808 www.openoffice.org/banners/
809 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
810 capwiz.com/ieee/images/banner.gif
811 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
812 sec*.greymagic.com/adv/
813 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
814 .foxnews.com/images/banners/(sec|logo)
815 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
816 #MASTER# REMARKS: Used as link tracker on (needed) internal links
817 www.comdirect.de/stat/count.php
818 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
819 #MASTER# REMARKS: Part of site decoration
820 .amazon.com/.*/banners/
821 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
822 #MASTER# REMARKS: Javascripts whose absence messes the page
823 .washingtonpost.com/wp-srv/
824 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
825 www.gnome.org
826 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
827 .nycsubway.org/img/banner
828 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
829 ads.hellug.gr
830 #MASTER# UNBLOCK-REFERRER: http://www.ebgames.com/ebx/ads/promos/bargainbin/pc/
831 www.ebgames.com/ebx/ads/promos/
832 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
833 www.forgotten-ny.com/ADS/
834 #MASTER# UNBLOCK-REFERRER: http://bricolage.thepirtgroup.com/docs/Bric/AdvTemplates.html
835 /.*/AdvTemplates.html
836 #MASTER# UNBLOCK-REFERRER: http://counter.li.org
837 counter.li.org
838 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/
839 adrian.adrian.org
840 #MASTER# UNBLOCK-REFERRER: http://www.tompaine.com/op_ads/
841 www.tompaine.com/op_ads/
842 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/
843 adela.karlin.mff.cuni.cz
844 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html
845 www.swcp.com/rtoads/
846 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
847 #MASTER# REMARKS: Don't block our own feedback process, even if the
848 #MASTER# REMARKS: parameters contain block patterns
849 www.privoxy.org
850 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
851 sourceforge.net/.*tracker
852 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
853 www.brawnylads.com
854 #MASTER# UNBLOCK-REFERRER: http://www.artbrokerage.com/ads/ads2.htm
855 www.artbrokerage.com/ads/
856 #MASTER# UNBLOCK-REFERRER: http://www.tivoli.com/support/storage_mgr/
857 www.tivoli.com/support/storage_mgr/adsercli.htm
858 #MASTER# UNBLOCK-REFERRER: http://www.acm.org/siggroup/
859 www.acm.org
860 #MASTER# UNBLOCK-REFERRER: http://www.motel6.com/
861 www.motel6.com/maps/detailmap_tracker.asp
862 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
863 adzapper.
864
865 #############################################################################
866 # Site-specific special rules:
867 #############################################################################
868
869 #----------------------------------------------------------------------------
870 # These sites are very complex (read: keen on your identity) and require
871 # minimal interference.
872 #----------------------------------------------------------------------------
873 {fragile}
874 .office.microsoft.com
875 .windowsupdate.microsoft.com
876
877 #----------------------------------------------------------------------------
878 # Shopping and banking sites - allow cookies and pop-ups
879 #----------------------------------------------------------------------------
880 {shop}
881 .quietpc.com
882 .worldpay.com   # for quietpc.com
883 .jungle.com
884 .scan.co.uk
885 .dabs.com
886 .overclockers.co.uk
887 .deutsche-bank-24.de
888 .db24.de
889 .deutsche-bank.de
890 .ebay.
891 .mobile.de
892 www.fondationlejeu.com
893 www.techtv.com
894
895 #----------------------------------------------------------------------------
896 # Subscription sites (with credible privacy policy) - allow permanent cookies
897 #----------------------------------------------------------------------------
898 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
899 www.nytimes.com
900
901 #----------------------------------------------------------------------------
902 # These sites require pop-ups
903 #----------------------------------------------------------------------------
904 {allow-popups}
905 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
906 www.aprilbarrows.com/discography\.html$
907 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
908 .infospace.com/.*/venshopping/
909 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
910 www.nvidia.com
911 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
912 www*.chathouse.com/games/
913 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
914 #MASTER# REMARKS: Search results come in a popup
915 www.tagesschau.de
916 #MASTER# PROBLEM-URL: http://www.reuters.com/
917 #MASTER# REMARKS: Printer friendly versions pop up
918 www.reuters.com/news_article.jhtml
919 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
920 www.xmms.org
921 #MASTER# PROBLEM-URL: http://www.bild.de/
922 .bild.t-online.de
923 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
924 www.m-w.com
925 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
926 www.pcbox.es
927 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
928 www.hola.com/club/
929 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
930 www.infoempleo.com
931 #MASTER# PROBLEM-URL: http://www.netflix.com/
932 www.netflix.com
933 #MASTER# PROBLEM-URL: http://amnistiapornigeria.org/
934 amnistiapornigeria.org
935 #MASTER# PROBLEM-URL: http://ponteensupiel.org/index2.html
936 ponteensupiel.org
937 #MASTER# PROBLEM-URL: http://www.ifilm.com/ifilm/aicn
938 www.ifilm.com/ifilm
939 #MASTER# PROBLEM-URL: http://www.pogo.com/
940 .pogo.com
941 #MASTER# PROBLEM-URL: http://my.aol.com/
942 my.aol.com
943 #MASTER# PROBLEM-URL: http://www.cnn.com/
944 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
945 i.cnn.net/cnn/.*/clickability/button
946 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
947 www.rosettaproject.org
948
949 #----------------------------------------------------------------------------
950 # Sometimes (i.e. often!) fast-redirects catches things by mistake
951 #----------------------------------------------------------------------------
952 {-fast-redirects}
953 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
954 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
955 .google.com
956 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
957 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
958 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
959 .speedfind.de
960 #MASTER# PROBLEM-URL: http://www.nytimes.com/
961 .nytimes.com
962 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
963 .yahoo.com/.*done=
964 #MASTER# PROBLEM-URL: http://validator.w3.org/check
965 .w3.org
966 #MASTER# PROBLEM-URL: http://www.ask.com/
967 .directhit.com
968 #MASTER# PROBLEM-URL: http://www.zagats.com/
969 .zagats.com
970 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
971 #MASTER# PROBLEM-URL: http://www.msn.com/
972 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
973 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
974 login.passport.com/logout\.(asp|srf)\?
975 #MASTER# PROBLEM-URL: http://www.fileplanet.com
976 download.com.com/redir\?
977 www.fileplanet.com/redir\.asp\?
978 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
979 web.archive.org
980 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
981 .edu
982 #MASTER# PROBLEM-URL: http://web.archive.org
983 .archive.org
984 #MASTER# PROBLEM-URL: http://www.guenstiger.de/gt/link.asp?url=http://www.edv-supermarkt.de&source=produkt=238284&USID=00086443917155&hnr=2199&pnr=238284&ppr=158,00
985 www.guenstiger.de
986
987 #----------------------------------------------------------------------------
988 # No filtering for sourcecode
989 #----------------------------------------------------------------------------
990 {-filter}
991 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
992 cvs.
993 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
994 liveupdate.symantec.com
995 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
996 www.bookmarklets.com
997 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
998 www.squarefree.com/bookmarklets/
999
1000 #----------------------------------------------------------------------------
1001 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1002 # workaround is to use zlib.output_compression):
1003 #----------------------------------------------------------------------------
1004 {-prevent-compression}
1005 #MASTER# PROBLEM-URL: http://www.powie.de/
1006 www.powie.de
1007 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1008 www.phpcenter.de
1009 #MASTER# PROBLEM-URL: http://www.debianhelp.org/
1010 www.debianhelp.org
1011 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1012 www.timeanddate.com
1013 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1014 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1015 .pclinuxonline.com
1016 #MASTER# PROBLEM-URL: http://www.dhd24.com/
1017 www.dhd24.com
1018 #MASTER# PROBLEM-URL: http://www.linuxandmain.com/
1019 .linuxandmain.com
1020 #MASTER# PROBLEM-URL: http://www.ofb.biz/
1021 .ofb.biz
1022 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1023 .dungeoncrawl.org
1024 #MASTER# PROBLEM-URL: http://www.deviantart.com/
1025 .deviantart.com
1026 #MASTER# PROBLEM-URL: http://www.planetspiele.de/wbboard/
1027 www.planetspiele.de/wbboard/
1028 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1029 www.digitalspy.co.uk
1030 #MASTER# PROBLEM-URL: http://www.dealnews.com/
1031 .dealnews.com   
1032 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1033 www.audio-illumination.org/forums/
1034 #MASTER# PROBLEM-URL: http://www.catchword.com/
1035 www.catchword.com
1036 #MASTER# PROBLEM-URL: http://www.mysql.com/
1037 www.mysql.com
1038 #MASTER# PROBLEM-URL: http://www.ubernet.org
1039 www.ubernet.org
1040 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1041 www.ooodocs.org
1042 #MASTER# PROBLEM-URL: http://ooextras.sourceforge.net/
1043 ooextras.sourceforge.net
1044 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1045 www.ntcompatible.com
1046 #MASTER# PROBLEM-URL: http://www.jabbercentral.org/
1047 www.jabbercentral.org
1048 #MASTER# PROBLEM-URL: http://www.kde-look.org/    
1049 www.kde-look.org
1050
1051 #----------------------------------------------------------------------------
1052 # The first frame of the gif animation is more useful here:
1053 #----------------------------------------------------------------------------
1054 {+deanimate-gifs{first}}
1055 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
1056 #MASTER# REMARKS: Animation shows phone number
1057 .pricecontrast.com
1058
1059 #----------------------------------------------------------------------------
1060 # Innocent images in standard banner sizes found here:
1061 #----------------------------------------------------------------------------
1062 {-filter{banners-by-size}}
1063 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
1064 .max.de
1065 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
1066 www.unmuseum.org
1067 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hints.htm
1068 www.connected-media.com/.*/hints\.htm
1069 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244
1070 www.pricegrabber.com/search_getprod.php
1071 #MASTER# PROBLEM-URL: http://www.ebgames.com/ebx/categories/products/product.asp?pf_id=158422
1072 www.ebgames.com/ebx/.*/product.asp\?
1073 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1074 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1075 .cnn.com
1076 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1077 #MASTER# REMARKS: 120x90 content images
1078 .gamespot.com/gamespot
1079 .cnet.com
1080 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hint.htm
1081 www.connected-media.com/riven/
1082 #MASTER# PROBLEM-URL: http://www.wral.com/
1083 www.wral.com
1084 #MASTER# PROBLEM-URL: http://www.canada.com/calgary/
1085 www.canada.com
1086
1087 #----------------------------------------------------------------------------
1088 # These don't work without the referrer information:
1089 #----------------------------------------------------------------------------
1090 {-hide-referrer}
1091 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
1092 /cgi-bin/fosi.cgi
1093 #MASTER# PROBLEM-URL: http://www.abcnews.com/
1094 printerfriendly.abcnews.com
1095 #MASTER# PROBLEM-URL: http://www.ask.com/
1096 .ask.com
1097 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
1098 www.amazon.de/exec/obidos/clipserve/
1099 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
1100 .lufthansa.
1101
1102 #----------------------------------------------------------------------------
1103 # These animated gifs are either useful or nice:
1104 #----------------------------------------------------------------------------
1105 {-deanimate-gifs}
1106 #MASTER# PROBLEM-URL: http://www.care2.com/
1107 #MASTER# REMARKS: Wanted animations on ecards
1108 .care2.com
1109 .care-mail.com
1110 #MASTER# PROBLEM-URL: http://www.ameritrade.com
1111 #MASTER# REMARKS: Animated link texts
1112 www.ameritrade.com
1113
1114 #----------------------------------------------------------------------------
1115 # These sites are so abusive that we need to kill all JS event bindings (and
1116 # probably a break a lot along the way)
1117 #----------------------------------------------------------------------------
1118 {+filter{js-radical}}
1119 #MASTER# PROBLEM-URL: http://www.planetspiele.de/
1120 .planetspiele.de
1121 216.12.219.40
1122
1123 #----------------------------------------------------------------------------
1124 # Misc special rules:
1125 #----------------------------------------------------------------------------
1126 {-filter{content-cookies} -filter{webbugs}}
1127 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1128 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1129 www.friendscout24.de
1130
1131 {-deanimate-gifs -filter{all-popups} -kill-popups}
1132 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
1133 #MASTER# REMARKS: Know your enemy ;-)
1134 www.valueclick.com
1135 {-block}
1136 www.valueclick.com/html/img/advertiser_top.gif
1137
1138 {-filter{banners-by-size} -deanimate-gifs}
1139 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
1140 #MASTER# REMARKS: They use banner-sized animated images
1141 realguide.real.com/games
1142
1143 {-handle-as-image}
1144 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
1145 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
1146 .doubleclick.net/adi
1147 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
1148 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs
1149 view.atdmt.com/(.*/)?iview/
1150
1151 {+block}
1152 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
1153 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
1154 www.geocities.com/js_source
1155
1156 {-filter{fun}}
1157 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1158 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1159 /(.*/)?user-manual/filter-file.html
1160
1161 {+filter{img-reorder} +filter{banners-by-link}}
1162 #MASTER# PROBLEM-URL: http://www.dn.se/
1163 #MASTER# REMARKS: Can't catch by size or location
1164 www.dn.se
1165
1166 {-filter{js-annoyances}}
1167 #MASTER# PROBLEM-URL: http://www.munichre.com/
1168 #MASTER# REMARKS: Endless reload loop if referrer info supressed
1169 www.munichre.com
1170
1171 {-filter{unsolicited-popups}}
1172 #MASTER# DONT-VERIFY
1173 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1174 /.*mt.cgi$
1175 #MASTER# PROBLEM-URL: http://www.discovery.de/
1176 .discovery.de
1177
1178 {+block}
1179 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1180 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1181 /antitheft\.php
1182
1183 {+filter{tiny-textforms}}
1184 .sourceforge.net/tracker