Just a test ...
[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.22 2003/04/14 11:27:02 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 -filter{site-specifics} \
447 -handle-as-image \
448 +hide-forwarded-for-headers \
449 +hide-from-header{block} \
450 +hide-referrer{forge} \
451 -hide-user-agent \
452 -kill-popups \
453 -limit-connect \
454 +prevent-compression \
455 -send-vanilla-wafer \
456 -send-wafer \
457 +session-cookies-only \
458 +set-image-blocker{pattern} \
459 }
460 / # Match all URLs
461
462 #############################################################################
463 # Needed for automatic feedback evaluation; Please don't change or delete!
464 #############################################################################
465 {+add-header{X-Actions-File-Version: 1.6} -filter -kill-popups}
466 .privoxy.org
467 .oesterhelt.org/actions
468
469 #############################################################################
470 # These extensions belong to images:
471 #############################################################################
472 {+handle-as-image -filter}
473 #############################################################################
474 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
475
476 #############################################################################
477 # These don't:
478 #############################################################################
479 {-handle-as-image}
480 /.*\.js
481
482 #############################################################################
483 # Generic block patterns (the most effective!):
484 #############################################################################
485 {+block}
486 #MASTER# DONT-VERIFY (generic)
487
488 # By hostname:
489 #
490 ad*.
491 .*ads.
492 *banner*.
493 count*.
494
495 # By path:
496 #
497 /(.*/)?(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)?)
498 /(.*/)?(publicite|werbung|rekla(ma|me|am)|annonse|maino(kset|nta|s)?/)
499 /.*(count|track|compteur|adframe)(er|run)?\.(pl|cgi|exe|dll|asp|php[34]?|cpt)
500 /.*promo.gif
501
502 #############################################################################
503 # Site-specific block patterns;
504 #############################################################################
505
506 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
507 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
508 .hitbox.com 
509 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
510 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
511 #MASTER# BLOCK-REFERRER: http://www.stern.de/
512 www.stern.de/bilder/poweredby
513 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
514 images.gmx.net/images/bs/
515 #MASTER# BLOCK-REFERRER: http://www.max.de/
516 .akamaitech.net/.*/img/e-commerce
517 www.max.de/_teaser/partner/
518 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
519 search.atomz.com/search/i/tagw1c.gif
520 www.intelligentx.com/newsletters/.*\.gif
521 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/ThreeD/explain.html
522 www.whowhere.lycos.com/images/ebay_bst.gif
523 www.whowhere.lycos.com/images/find_books.gif
524 www.whowhere.lycos.com/images/1800/advppl1.gif
525 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
526 i.real.com/g/pics/games/gamepass_120x600_2.gif
527 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
528 www*.chathouse.com/chatimages/whopersonal.gif
529 #MASTER# BLOCK-REFERRER: http://www.beseen.com/
530 www.beseen.com/images/website3.gif
531 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
532 .planetspiele.de/gfx/partner
533 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
534 top.ultraseek.net/top_sit.*\.gif
535 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
536 fosi.ural.net/.*\.jpg
537 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
538 .tucows.com/images/dodi.gif
539 .tucows.com/images/elibrary_searchTop.gif
540 #MASTER# BLOCK-REFERRER: http://www.ix.de/
541 #MASTER# BLOCK-REFERRER: http://www.heise.de/
542 /icons/emedia_b.gif
543 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
544 dest.travelocity.com/website/destinations/images/partner_frommers.gif
545 dest.travelocity.com/website/destinations/images/travelex_logo.gif
546 #MASTER# BLOCK-REFERRER: http://cobolreport.com/
547 cobolreport.com/images/canam1.gif
548 cobolreport.com/images/Acucorp1.gif
549 cobolreport.com/images/netcobol.jpg
550 cobolreport.com/images/NetCOBOL-banner.gif
551 objectz.com/images/Landmark%20120x240.gif
552 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
553 tribalfusion.speedera.net
554 .tribalfusion.com/media/
555 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
556 b*.portalofevil.com/shlv
557 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
558 i.imdb.com/Vpics/
559 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
560 i.imdb.com/Photos/CMSIcons
561 rcm.amazon.com
562 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
563 i.imdb.com/Icons/apix/
564 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
565 .nytimes.com/adx/
566 #MASTER# BLOCK-REFERRER: http://www.salon.com/
567 www.salon.com/Creatives
568 images.salon.com/plus/gear/src/
569 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
570 images.sourceforge.net/images/DB2powered.gif
571 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/media.cfm?action=shot&id=250&seq=2
572 /.*paypal-smad\.gif
573 www.planetgamecube.com/images/PGC_Q_Edit.gif
574 #MASTER# BLOCK-REFERRER: http://www.samachar.com/
575 .samachar.com/banimages/
576 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/aws/index.asp
577 .weatherbug.com/popups/
578 #MASTER# BLOCK-REFERRER: http://portale.web.de/Film/
579 .web.de/.*/EIGENWERBUNG/
580 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/
581 www.aintitcool.com/.*\.swf
582 #MASTER# BLOCK-REFERRER: http://www.hispasexo.net/fotos/index.php?currDir=./Negras&pageType=image&image=bla001.jpg
583 www.hispasexo.net/.*/sxb
584 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2002/09/05/technology/05CODE.html
585 graphics.nytimes.com/nytstore/images/ctx
586 #MASTER# BLOCK-REFERRER: http://www.macfixit.com/
587 spinbox.techtracker.com
588 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/
589 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
590 www.popupad.net/ats/
591 #MASTER# BLOCK-REFERRER: http://www.gamespot.com/
592 www.gamespot.com/promos/
593 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm
594 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
595 hit-now.com
596 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/
597 st.valueclick.com
598 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
599 www.crazypopups.com
600 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
601 /scripts/cms/xcms.asp
602
603
604 #############################################################################
605 # Generic block-as-image patterns:
606 #############################################################################
607 {+block-as-image}
608 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
609 /.*adimage\.(php|cgi)
610 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
611 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
612 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
613 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
614 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
615 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
616 /.*recips?/
617
618 #############################################################################
619 # Site-specific block-as-image patterns:
620 #############################################################################
621 #----------------------------------------------------------------------------
622 # Banner farms:
623 #----------------------------------------------------------------------------
624 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
625 #MASTER# BLOCK-REFERRER: http://www.aol.com/
626 ar.atwola.com 
627 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
628 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
629 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
630 .[a-vx-z]*.doubleclick.net
631 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
632 netcomm.spinbox.net
633 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
634 .*servedby.advertising.com
635 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
636 .a.yimg.com/(?:(?!/i/).)*$
637 .a[0-9].yimg.com/(?:(?!/i/).)*$
638 .yimg.com/.*/a/
639 .yimg.com/.*/flash/promotions
640 .yimg.com/a/.*/flash/
641 #MASTER# BLOCK-REFERRER: http://freeshells.linuxhelpnetwork.net/
642 .yimg.com/.*/justdeals
643 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
644 werbung.guj.de
645 #MASTER# DONT-VERIFY
646 bs*.gsanet.com
647 bs*.einets.com
648 #MASTER# DONT-VERIFY (Opera browser built-in ads)
649 .qkimg.net
650 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
651 .sexcounter.
652 #MASTER# DONT-VERIFY
653 #MASTER# REMARKS: Bannerfarms used by grokster and others:
654 james.adbutler.de
655 gkas.de/affilinet
656 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
657 130.94.70.82
658 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
659 cashformel.com/web-sponsor
660 www.cash4banner.com/web-sponsor
661 213.221.106.162
662 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
663 #MASTER# REMARKS: ad*.adsolution.de
664 62.26.220.2
665 62.27.38.2
666 62.27.57.2
667 #MASTER# BLOCK-REFERRER: unknown
668 #MASTER# REMARKS: both exist and are banner farms
669 www.bannermania.nom.pl
670 magic.koti.com.pl/cgi-magic/banner_img.cgi
671 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
672 statse.webtrendslive.com
673 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
674 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
675 spinbox.versiontracker.com/.*\.(gif|jpg)
676 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
677 #MASTER# REMARKS: Counter
678 .netscape.com/c\.cgi\?
679 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
680 #MASTER# REMARKS: Counter
681 m[0-9].nedstatbasic.net
682 #MASTER# BLOCK-REFERRER: http://salon.com/
683 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
684 #MASTER# REMARKS: Banner farms; just exclude their corp. info
685 [a-v,x-z]*.atdmt.com/
686 #MASTER# BLOCK-REFERRER: http://f1.racing-live.com/en/
687 .akamai.net/.*f1-live\.com/.*pub
688 #MASTER# BLOCK-REFERRER: http://www.melodysoft.com/cgi-bin/foro.cgi
689 tracker.tradedoubler.com
690 #MASTER# BLOCK-REFERRER: http://dlh.net/german.html
691 imp*.tradedoubler.com
692 #MASTER# BLOCK-REFERRER: http://www.physlink.com/Education/AskExperts/ae353.cfm
693 /.*affiliate.*120x90
694 #MASTER# BLOCK-REFERRER:  http://www.amayita.com/imagenes/index.php?currDir=./Hall_of_Fame&pageType=image&image=img_0265.jpg
695 www.spanishbanner.com/cgi/bserve.cgi
696 #MASTER# BLOCK-REFERRER: http://www.macgamer.com/
697 .qksrv.net
698
699 #----------------------------------------------------------------------------
700 # On-site ads and other single sources:
701 #----------------------------------------------------------------------------
702 #MASTER# BLOCK-REFERRER: http://www.fotw.net/flags/
703 www.fotw.net/images/linea2.gif
704 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
705 www.asahi.com/(.*/)?ad/
706 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
707 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
708 .travelocity./Sponsor_gifs/
709 #MASTER# BLOCK-REFERRER: http://www.ebay.com
710 pics.ebay.com/aw/pics/homepage/big8
711 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
712 naturalismedicina.com/cgibin/linswap
713 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
714 a.consumer.net
715 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
716 images.deviantart.com/affiliates/
717 images.deviantart.com/shared/(winzip|trillian)\.gif
718 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/
719 www.happypuppy.com/newstuff/netsys\.swf
720 www.happypuppy.com/images/[^/]+\.gif
721 www.happypuppy.com/images/sav_creative/savage_01.jpg
722 www.happypuppy.com/images/site/cnb_but_nav.gif
723 #MASTER# DONT-VERIFY
724 #MASTER# REMARKS: Referenced from HTML-Emails
725 .weather.com/creatives/
726 .weather.com/web/services/email/
727 #MASTER# BLOCK-REFERRER: http://www.mapblast.com/
728 :81/feeds/
729 x.mycity.com
730 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html
731 /.*/topslots/topslot_
732 #MASTER# BLOCK-REFERRER: http://maccentral.macworld.com/
733 maccentral.macworld.com/images/subsad
734 #MASTER# BLOCK-REFERRER: http://bigcharts.marketwatch.com/
735 a.mktw.net
736 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/win/
737 www.happypuppy.com/images/sav_creative
738 #MASTER# BLOCK-REFERRER: http://www.wral.com/
739 images.ibsys.com/.*/sponsors/
740 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/money/economy/fed/2002-09-23-bubble-debate_x.htm
741 www.usatoday.com/sponsors/
742 #MASTER# BLOCK-REFERRER: http://www.jpost.com/
743 ads.jpost.com
744 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
745 /.*/images/\d+/promos/
746 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
747 www.subteran.ro/adult/adult20.jpg
748 #MASTER# BLOCK-REFERRER: http://www.kuro5hin.org/
749 #www.kuro5hin.org/images/[^/]+\.gif
750 #MASTER# BLOCK-REFERRER: http://www.uolsinectis.com.ar/
751 ad.uol.com.br
752 #MASTER# BLOCK-REFERRER: http://www.spammimic.com/credits.shtml
753 www.anonymizer.com/images/affiliate/
754 #MASTER# BLOCK-REFERRER: http://cracks.thebugs.ws/pages/H/7.shtml
755 img.thebugs.ws
756 #MASTER# BLOCK-REFERRER: http://www.kinghost.com/fetish/xworx/Azian/nextdoor/06/realm.html
757 www.kinghost.com/ban/
758 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/
759 www.infoempleo.com/(pop-up|images(/Nueva/banner_|/motor))
760
761 #############################################################################
762 # Generic unblockers to narrow the side effects of the generic blockers:
763 #############################################################################
764 {-block}
765 #MASTER# DONT-VERIFY (generic)
766
767 # By host:
768 #
769 adsl.
770 ad[udm]*.
771 advice.
772 advan*.
773 .*road*.
774 .olympiad*.
775 .*load*.
776 .*head*.
777 .edu
778 .ac.uk
779 .uni-*.de
780
781 # By path:
782 #
783 /.*ad(sl|v(i[cs]|an|ertencia|ent|search)) # advice/advisories/advan*/advertencia (spanish)
784 /.*((up|down)lo|p?thre|he|d|gr|l|ro|bre|spre)ads
785 /.*account
786
787 #############################################################################
788 # Site-specific unblockers:
789 #############################################################################
790 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
791 www.faqs.org/banner\.html
792 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
793 bannerblind.mozdev.org
794 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
795 advogato.org
796 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
797 ad*.vhb.de
798 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
799 www.ugu.com/sui/ugu/adv
800 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
801 www.globalintersec.com/adv
802 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
803 banners.wunderground.com/banner/
804 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
805 www.sueddeutsche.de/.*banner
806 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
807 www.openoffice.org/banners/
808 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
809 capwiz.com/ieee/images/banner.gif
810 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
811 sec*.greymagic.com/adv/
812 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
813 .foxnews.com/images/banners/(sec|logo)
814 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
815 #MASTER# REMARKS: Used as link tracker on (needed) internal links
816 www.comdirect.de/stat/count.php
817 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
818 #MASTER# REMARKS: Part of site decoration
819 .amazon.com/.*/banners/
820 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
821 #MASTER# REMARKS: Javascripts whose absence messes the page
822 .washingtonpost.com/wp-srv/
823 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
824 www.gnome.org
825 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
826 .nycsubway.org/img/banner
827 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
828 ads.hellug.gr
829 #MASTER# UNBLOCK-REFERRER: http://www.ebgames.com/ebx/ads/promos/bargainbin/pc/
830 www.ebgames.com/ebx/ads/promos/
831 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
832 www.forgotten-ny.com/ADS/
833 #MASTER# UNBLOCK-REFERRER: http://bricolage.thepirtgroup.com/docs/Bric/AdvTemplates.html
834 /.*/AdvTemplates.html
835 #MASTER# UNBLOCK-REFERRER: http://counter.li.org
836 counter.li.org
837 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/
838 adrian.adrian.org
839 #MASTER# UNBLOCK-REFERRER: http://www.tompaine.com/op_ads/
840 www.tompaine.com/op_ads/
841 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/
842 adela.karlin.mff.cuni.cz
843 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html
844 www.swcp.com/rtoads/
845 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
846 #MASTER# REMARKS: Don't block our own feedback process, even if the
847 #MASTER# REMARKS: parameters contain block patterns
848 www.privoxy.org
849 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
850 sourceforge.net/.*tracker
851 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
852 www.brawnylads.com
853 #MASTER# UNBLOCK-REFERRER: http://www.artbrokerage.com/ads/ads2.htm
854 www.artbrokerage.com/ads/
855 #MASTER# UNBLOCK-REFERRER: http://www.tivoli.com/support/storage_mgr/
856 www.tivoli.com/support/storage_mgr/adsercli.htm
857 #MASTER# UNBLOCK-REFERRER: http://www.acm.org/siggroup/
858 www.acm.org
859 #MASTER# UNBLOCK-REFERRER: http://www.motel6.com/
860 www.motel6.com/maps/detailmap_tracker.asp
861 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
862 adzapper.
863 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
864 .altavista.com/web/adv
865
866
867 #############################################################################
868 # Site-specific special rules:
869 #############################################################################
870
871 #----------------------------------------------------------------------------
872 # These sites are very complex (read: keen on your identity) and require
873 # minimal interference.
874 #----------------------------------------------------------------------------
875 {fragile}
876 .office.microsoft.com
877 .windowsupdate.microsoft.com
878
879 #----------------------------------------------------------------------------
880 # Shopping and banking sites - allow cookies and pop-ups
881 #----------------------------------------------------------------------------
882 {shop}
883 .quietpc.com
884 .worldpay.com   # for quietpc.com
885 .jungle.com
886 .scan.co.uk
887 .dabs.com
888 .overclockers.co.uk
889 .deutsche-bank-24.de
890 .db24.de
891 .deutsche-bank.de
892 .ebay.
893 .mobile.de
894 www.fondationlejeu.com
895 www.techtv.com
896
897 #----------------------------------------------------------------------------
898 # Subscription sites (with credible privacy policy) - allow permanent cookies
899 #----------------------------------------------------------------------------
900 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
901 www.nytimes.com
902
903 #----------------------------------------------------------------------------
904 # These sites require pop-ups, so don't use the unconditional filters.
905 #----------------------------------------------------------------------------
906 {allow-popups}
907 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
908 www.aprilbarrows.com/discography\.html$
909 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
910 .infospace.com/.*/venshopping/
911 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
912 www.nvidia.com
913 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
914 www*.chathouse.com/games/
915 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
916 #MASTER# REMARKS: Search results come in a popup
917 www.tagesschau.de
918 #MASTER# PROBLEM-URL: http://www.reuters.com/
919 #MASTER# REMARKS: Printer friendly versions pop up
920 www.reuters.com/news_article.jhtml
921 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
922 www.xmms.org
923 #MASTER# PROBLEM-URL: http://www.bild.de/
924 .bild.t-online.de
925 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
926 www.m-w.com
927 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
928 www.pcbox.es
929 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
930 www.hola.com/club/
931 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
932 www.infoempleo.com
933 #MASTER# PROBLEM-URL: http://www.netflix.com/
934 www.netflix.com
935 #MASTER# PROBLEM-URL: http://amnistiapornigeria.org/
936 amnistiapornigeria.org
937 #MASTER# PROBLEM-URL: http://ponteensupiel.org/index2.html
938 ponteensupiel.org
939 #MASTER# PROBLEM-URL: http://www.ifilm.com/ifilm/aicn
940 www.ifilm.com/ifilm
941 #MASTER# PROBLEM-URL: http://www.pogo.com/
942 .pogo.com
943 #MASTER# PROBLEM-URL: http://my.aol.com/
944 my.aol.com
945 #MASTER# PROBLEM-URL: http://www.cnn.com/
946 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
947 i.cnn.net/cnn/.*/clickability/button
948 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
949 www.rosettaproject.org
950
951 #----------------------------------------------------------------------------
952 # Sometimes (i.e. often!) fast-redirects catches things by mistake
953 #----------------------------------------------------------------------------
954 {-fast-redirects}
955 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
956 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
957 .google.com
958 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
959 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
960 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
961 .speedfind.de
962 #MASTER# PROBLEM-URL: http://www.nytimes.com/
963 .nytimes.com
964 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
965 .yahoo.com/.*done=
966 #MASTER# PROBLEM-URL: http://validator.w3.org/check
967 .w3.org
968 #MASTER# PROBLEM-URL: http://www.ask.com/
969 .directhit.com
970 #MASTER# PROBLEM-URL: http://www.zagats.com/
971 .zagats.com
972 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
973 #MASTER# PROBLEM-URL: http://www.msn.com/
974 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
975 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
976 login.passport.com/logout\.(asp|srf)\?
977 #MASTER# PROBLEM-URL: http://www.fileplanet.com
978 download.com.com/redir\?
979 www.fileplanet.com/redir\.asp\?
980 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
981 web.archive.org
982 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
983 .edu
984 #MASTER# PROBLEM-URL: http://web.archive.org
985 .archive.org
986 #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
987 www.guenstiger.de
988
989 #----------------------------------------------------------------------------
990 # No filtering for sourcecode or other automatically parsed content
991 #----------------------------------------------------------------------------
992 {-filter}
993 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
994 cvs.
995 /.*(cvs(view|web)|viewcvs)
996 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
997 liveupdate.symantec.com
998 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
999 www.bookmarklets.com
1000 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
1001 www.squarefree.com/bookmarklets/
1002 #MASTER# DONT-VERIFY
1003 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
1004 swquery.apple.com
1005 swscan.apple.com
1006
1007 #----------------------------------------------------------------------------
1008 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1009 # workaround is to use zlib.output_compression):
1010 #----------------------------------------------------------------------------
1011 {-prevent-compression}
1012 #MASTER# PROBLEM-URL: http://www.powie.de/
1013 www.powie.de
1014 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1015 www.phpcenter.de
1016 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1017 www.timeanddate.com
1018 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1019 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1020 .pclinuxonline.com
1021 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1022 .dungeoncrawl.org
1023 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1024 www.digitalspy.co.uk
1025 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1026 www.audio-illumination.org/forums/
1027 #MASTER# PROBLEM-URL: http://www.catchword.com/
1028 www.catchword.com
1029 #MASTER# PROBLEM-URL: http://www.ubernet.org
1030 www.ubernet.org
1031 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1032 www.ooodocs.org
1033 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1034 www.ntcompatible.com
1035
1036
1037 #----------------------------------------------------------------------------
1038 # The first frame of the gif animation is more useful here:
1039 #----------------------------------------------------------------------------
1040 {+deanimate-gifs{first}}
1041 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
1042 #MASTER# REMARKS: Animation shows phone number
1043 .pricecontrast.com
1044
1045 #----------------------------------------------------------------------------
1046 # Innocent images in standard banner sizes found here:
1047 #----------------------------------------------------------------------------
1048 {-filter{banners-by-size}}
1049 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
1050 .max.de
1051 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
1052 www.unmuseum.org
1053 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hints.htm
1054 www.connected-media.com/.*/hints\.htm
1055 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244
1056 www.pricegrabber.com/search_getprod.php
1057 #MASTER# PROBLEM-URL: http://www.ebgames.com/ebx/categories/products/product.asp?pf_id=158422
1058 www.ebgames.com/ebx/.*/product.asp\?
1059 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1060 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1061 .cnn.com
1062 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1063 #MASTER# REMARKS: 120x90 content images
1064 .gamespot.com/gamespot
1065 .cnet.com
1066 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hint.htm
1067 www.connected-media.com/riven/
1068 #MASTER# PROBLEM-URL: http://www.wral.com/
1069 www.wral.com
1070 #MASTER# PROBLEM-URL: http://www.canada.com/calgary/
1071 www.canada.com
1072
1073 #----------------------------------------------------------------------------
1074 # These don't work without the referrer information:
1075 #----------------------------------------------------------------------------
1076 {-hide-referrer}
1077 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
1078 /cgi-bin/fosi.cgi
1079 #MASTER# PROBLEM-URL: http://www.abcnews.com/
1080 printerfriendly.abcnews.com
1081 #MASTER# PROBLEM-URL: http://www.ask.com/
1082 .ask.com
1083 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
1084 www.amazon.de/exec/obidos/clipserve/
1085 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
1086 .lufthansa.
1087
1088 #----------------------------------------------------------------------------
1089 # These animated gifs are either useful or nice:
1090 #----------------------------------------------------------------------------
1091 {-deanimate-gifs}
1092 #MASTER# PROBLEM-URL: http://www.care2.com/
1093 #MASTER# REMARKS: Wanted animations on ecards
1094 .care2.com
1095 .care-mail.com
1096 #MASTER# PROBLEM-URL: http://www.ameritrade.com
1097 #MASTER# REMARKS: Animated link texts
1098 www.ameritrade.com
1099 #MASTER# PROBLEM-URL: http://www.myrealbox.com/a?B.KL.U6wQ.d
1100 #MASTER# REMARKS: Bogus web server doesn't close connection -> deanimation doesn't terminate
1101 www.myrealbox.com
1102
1103 #----------------------------------------------------------------------------
1104 # These sites are so abusive that we need to kill all JS event bindings (and
1105 # probably a break a lot along the way)
1106 #----------------------------------------------------------------------------
1107 {+filter{js-radical}}
1108 #MASTER# PROBLEM-URL: http://www.planetspiele.de/
1109 .planetspiele.de
1110 216.12.219.40
1111
1112 #----------------------------------------------------------------------------
1113 # The "site-specifics" filter has special cures for problems found here:
1114 #----------------------------------------------------------------------------
1115 {+filter{site-specifics}}
1116 #MASTER# PROBLEM-URL: http://www.spiegel.de/static/js/flash-plugin.js
1117 www.spiegel.de/static/js/flash-plugin\.js
1118 #MASTER# PROBLEM-URL: http://www.quelle-bausparkasse.de/
1119 www.quelle-bausparkasse.de/$
1120
1121 #----------------------------------------------------------------------------
1122 # Content under these TLDs is most probably in character sets which the
1123 # demoronizer filter would mess up
1124 #----------------------------------------------------------------------------
1125 {-filter{demoronizer}}
1126 .jp
1127 .cn
1128 .tw
1129 .ru
1130
1131 #----------------------------------------------------------------------------
1132 # Misc special rules:
1133 #----------------------------------------------------------------------------
1134 {-filter{content-cookies} -filter{webbugs}}
1135 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1136 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1137 www.friendscout24.de
1138
1139 {-deanimate-gifs -filter{all-popups} -kill-popups}
1140 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
1141 #MASTER# REMARKS: Know your enemy ;-)
1142 www.valueclick.com
1143 {-block}
1144 www.valueclick.com/html/img/advertiser_top.gif
1145
1146 {-filter{banners-by-size} -deanimate-gifs}
1147 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
1148 #MASTER# REMARKS: They use banner-sized animated images
1149 realguide.real.com/games
1150
1151 {-handle-as-image}
1152 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
1153 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
1154 .doubleclick.net/adi
1155 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
1156 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs
1157 view.atdmt.com/(.*/)?iview/
1158
1159 {+block}
1160 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
1161 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
1162 www.geocities.com/js_source
1163
1164 {-filter{fun}}
1165 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1166 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1167 /(.*/)?user-manual/filter-file.html
1168
1169 {+filter{img-reorder} +filter{banners-by-link}}
1170 #MASTER# PROBLEM-URL: http://www.dn.se/
1171 #MASTER# REMARKS: Can't catch by size or location
1172 www.dn.se
1173
1174 {-filter{js-annoyances}}
1175 #MASTER# PROBLEM-URL: http://www.munichre.com/
1176 #MASTER# REMARKS: Endless reload loop if referrer info supressed
1177 www.munichre.com
1178
1179 {-filter{unsolicited-popups}}
1180 #MASTER# DONT-VERIFY
1181 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1182 /.*mt.cgi$
1183 #MASTER# PROBLEM-URL: http://www.discovery.de/
1184 .discovery.de
1185
1186 {+block}
1187 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1188 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1189 /antitheft\.php
1190
1191 {+filter{tiny-textforms}}
1192 .sourceforge.net/tracker