Replaces TABs by spaces in C source.
[privoxy.git] / default.action.master
1 #MASTER# COMMENT:   
2 #MASTER# COMMENT:   Anyone adding specific rules to this file,
3 #MASTER# COMMENT:   wherever possible please include a *full* URL 
4 #MASTER# COMMENT:   which can be used to verify the problem.  
5 #MASTER# COMMENT:   
6 ######################################################################
7
8 #  File        :  $Source: /cvsroot/ijbswa/current/default.action.master,v $
9
10 #  $Id: default.action.master,v 1.26 2006/09/20 02:16:43 hal9 Exp $
11 #
12 #  Purpose     :  Default actions file, see
13 #                 http://www.privoxy.org/user-manual/actions-file.html
14 #
15 #  Copyright   :  Written by and Copyright (C) 2001 - 2006 the
16 #                 Privoxy team. http://www.privoxy.org/
17 #
18 #  Note: Updated versions of this file will be made available from time
19 #        to time. Check http://sourceforge.net/project/showfiles.php?group_id=11118
20 #        for updates and/or subscribe to the announce mailing list
21 #        (http://lists.sourceforge.net/lists/listinfo/ijbswa-announce) if you
22 #        wish to receive an email notice whenever updates are released.
23 #
24 # We value your feedback. However, to provide you with the best support,
25 # please note:
26 #  
27 #  * Use the support forum to get help:
28 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
29 #  * Submit feedback for this actions file only through the 
30 #    SF actions file feedback tracker: 
31 #    http://sourceforge.net/tracker/?group_id=11118&atid=460288
32 #  * Submit bugs only through our bug forum:
33 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
34 #    Make sure that the bug has not already been submitted. Please try
35 #    to verify that it is a Privoxy bug, and not a browser or site
36 #    bug first. If you are using your own custom configuration, please
37 #    try the stock configs to see if the problem is a configuration
38 #    related bug. And if possible please try the latest CVS sources.
39 #  * Submit feature requests only through our feature request forum:
40 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
41 #      
42 # For any other issues, feel free to use the mailing lists:
43 # http://sourceforge.net/mail/?group_id=11118
44 #    
45 # Anyone interested in actively participating in development and related
46 # discussions can join the appropriate mailing list here:
47 # http://sourceforge.net/mail/?group_id=11118. Archives are available
48 # here too.
49
50 #############################################################################
51 # Syntax
52 #############################################################################
53
54 # A much better explanation can be found in the user manual which is
55 # part of the distribution and can be found at http://www.privoxy.org/user-manual
56 #
57 # To determine which actions apply to a request, the URL of the request is
58 # compared to all patterns in this file. Every time it matches, the list of
59 # applicable actions for this URL is incrementally updated. You can trace
60 # this process by visiting http://config.privoxy.org/show-url-info
61 #
62 # There are 4 types of lines in this file: comments (like this line),
63 # actions, aliases and patterns, all of which are explained below.
64 #
65 #############################################################################
66 # Pattern Syntax
67 #############################################################################
68
69 # 1. On Domains and Paths
70 # -----------------------
71 #
72 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
73 # and <path> part are optional. The pattern matching syntax is different for
74 # each. If you only specify a domain part, the "/" can be left out, but it is
75 # required for the path part.
76
77 # www.example.com 
78 #   is a domain-only pattern and will match any request to www.example.com
79
80 # www.example.com/
81 #   means exactly the same (but is slightly less efficient)
82
83 # www.example.com/index.html
84 #   matches only the document /index.html on www.example.com
85
86 # /index.html
87 #   matches the document /index.html, regardless of the domain
88
89 # index.html
90 #   matches nothing, since it would be interpreted as a domain name and
91 #   there is no top-level domain called ".html".
92
93 # 2. Domain Syntax
94 # ----------------
95
96 # The matching of the domain part offers some flexible options: If the
97 # domain starts or ends with a dot, it becomes unanchored at that end:
98
99 # www.example.com
100 #   matches only www.example.com
101
102 # .example.com
103 #   matches any domain that ENDS in .example.com
104
105 # www.
106 #   matches any domain that STARTS with www.
107 #
108 # .example.
109 #   matches any domain that CONTAINS example
110 #
111
112 # Additionally, there are wildcards that you can use in the domain names
113 # themselves. They work pretty similar to shell wildcards: "*" stands for
114 # zero or more arbitrary characters, "?" stands for one, and you can define
115 # charachter classes in square brackets and they can be freely mixed:
116
117 # ad*.example.com
118 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
119
120 # *ad*.example.com
121 #   matches all of the above
122
123 # .?pix.com
124 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
125
126 # www[1-9a-ez].example.com
127 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
128 #   wwwz.example.com etc, but not wwww.example.com
129
130 # You get the idea?
131
132 # 2. Path Syntax
133 # --------------
134
135 # Paths are specified as full regular expressions, and are more flexible than
136 # the domain syntax above. A comprehensive discussion of regular expressions
137 # wouldn't fit here.
138
139 # Perl compatible regular expressions are used. See the pcre/docs/ direcory or
140 # man perlre (also available at http://perldoc.perl.org/perlre.html) for
141 # details. The appendix to our User Manual also has some detail.
142
143 # Please note that matching in the path is CASE INSENSITIVE by default, but
144 # you can switch to case sensitive by starting the pattern with the "(?-i)"
145 # switch:
146
147 # www.example.com/(?-i)PaTtErN.*
148 #   will match only documents whose path starts with PaTtErN in exactly this
149 #   capitalization.
150 #
151 # Partially case-sensetive and partially case-insensitive patterns are
152 # possible, but the rules about splitting them up are extremely complex
153 # - see the PCRE documentation for more information.
154
155 #############################################################################
156 # Action Syntax
157 #############################################################################
158 #
159 # There are 3 kinds of action:
160 #
161 # Boolean (e.g. "block"):
162 #   +name  # enable
163 #   -name  # disable
164 #
165 # Parameterized (e.g. "hide-user-agent"):
166 #   +name{param}  # enable and set parameter to "param"
167 #   -name         # disable
168 #
169 # Multi-value (e.g. "add-header", "send-wafer"):
170 #   +name{param}  # enable and add parameter "param"
171 #   -name{param}  # remove the parameter "param"
172 #   -name         # disable totally
173 #
174 # The default (if you don't specify anything in this file) is not to take
175 # any actions - i.e completely disabled, so Privoxy will just be a
176 # normal, non-blocking, non-anonymizing proxy.  You must specifically
177 # enable the privacy and blocking features you need (although the 
178 # provided default actions file will do that for you).
179 #
180 # Later actions always override earlier ones.  For multi-valued actions,
181 # the actions are applied in the order they are specified.
182 #
183 #############################################################################
184 # Valid actions are:
185 #############################################################################
186 #
187 # +add-header{Name: value}
188 #    Adds the specified HTTP header, which is not checked for validity.
189 #    You may specify this many times to specify many headers.
190 #
191 # +block
192 #    Block this URL. Privoxy will ignore this URL completely, and not request
193 #    it.
194 #
195 # +content-type-overwrite
196 #    Replaces the "Content-Type:" HTTP server header, so that unwanted
197 #    download menus will not pop up, or changes the browser's rendering mode.
198 #
199 # +crunch-client-header{string}
200 #    Deletes every header sent by the client that contains the string the 
201 #    user supplied as parameter. 
202 #    
203 # +crunch-if-none-match
204 #     Deletes the "If-None-Match:" HTTP client header. 
205 #
206 # +crunch-server-header{string}
207 #    Deletes every header sent by the server that contains the string the 
208 #    user supplied as a parameter. 
209
210 # +deanimate-gifs{last}
211 # +deanimate-gifs{first}
212 #    Deanimate all animated GIF images, i.e. reduce them to their last
213 #    frame. This will also shrink the images considerably. (In bytes,
214 #    not pixels!) 
215 #    If the option "first" is given, the first frame of the animation
216 #    is used as the replacement. If "last" is given, the last frame of
217 #    the animation is used instead, which propably makes more sense for
218 #    most banner animations, but also has the risk of not showing the
219 #    entire last frame (if it is only a delta to an earlier frame).
220 #
221 # +downgrade-http-version
222 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
223 #    responses as well. Use this action for servers that use HTTP/1.1
224 #    protocol features that Privoxy currently can't handle yet.
225 #
226 # +fast-redirects{check-decoded-url}
227 # +fast-redirects{simple-check}
228 #    Many sites, like yahoo.com, don't just link to other sites.
229 #    Instead, they will link to some script on their own server,
230 #    giving the destination as a parameter, which will then redirect
231 #    you to the final target. 
232 #
233 #    URLs resulting from this scheme typically look like:
234 #    http://some.place/some_script?http://some.where-else
235 #
236 #    Sometimes, there are even multiple consecutive redirects encoded
237 #    in the URL. These redirections via scripts make your web browing
238 #    more traceable, since the server from which you follow such a link
239 #    can see where you go to. Apart from that, valuable bandwidth and
240 #    time is wasted, while your browser aks the server for one redirect
241 #    after the other. Plus, it feeds the advertisers.
242 #
243 #    The +fast-redirects{check-decoded-url} option enables interception of 
244 #    these requests by Privoxy, who will cut off all but the last valid URL 
245 #    in the request and send a local redirect back to your browser without
246 #    contacting the intermediate sites. NOTE: Syntax change as of v.3.0.4.
247 #
248 # +filter{name}
249 #    Filter the website through one or more regular expression filters.
250 #    Repeat for multiple filters.
251 #   
252 #    Filters predefined in the supplied default.action include:
253 #
254 #     js-annoyances:       Get rid of particularly annoying JavaScript abuse
255 #     js-events:           Kill all JS event bindings (Radically destructive! Use only on real suckers)
256 #     html-annoyances:     Get rid of particularly annoying HTML abuse
257 #     content-cookies:     Kill cookies that come in the HTML or JS content
258 #     refresh-tags:        Kill automatic refresh tags (for dial-on-demand setups)
259 #     unsolicited-popups:  Disable only unsolicited pop-up windows
260 #     all-popups:          Kill all popups in JavaScript and HTML
261 #     img-reorder:         Reorder attributes in <img> tags to make the banners-by-* filters more effective
262 #     banners-by-size:     Kill banners by size (very efficient!)
263 #     banners-by-link:     Kill banners by their links to known clicktrackers 
264 #     webbugs:             Squish WebBugs (1x1 invisible GIFs used for user tracking)
265 #     tiny-textforms:      Extend those tiny textareas up to 40x80 and kill the hard wrap
266 #     jumping-windows:     Prevent windows from resizing and moving themselves
267 #     frameset-borders:    Give frames a border
268 #     demoronizer:         Fix MS's non-standard use of standard charsets
269 #     shockwave-flash:     Kill embedded Shockwave Flash objects
270 #     quicktime-kioskmode: Make Quicktime movies saveable
271 #     fun:                 Text replacements  for subversive browsing fun!
272 #     crude-parental:      Kill all web pages that contain the words "sex" or "warez"
273 #     ie-exploits:         Disable some known Internet Explorer bug exploits
274 #     site-specifics       Cure for site-specific problems. Don't apply generally!
275 #
276 # +filter-client-headers
277 #    By default, filters only apply to the document content itself. This will
278 #    extend those filters to include the client's headers as well.
279 #
280 # +filter-server-headers
281 #    By default, filters only apply to the document content itself. This will
282 #    extend those filters to include the server's headers as well.
283 #
284 # +force-text-mode
285 #    Declares a document as plain text, even if the "Content-Type:" isn't detected 
286 #    as such. 
287 #
288 # +handle-as-empty-document
289 #   This action alone doesn't do anything noticeable. It just marks URLs. If
290 #   the block action also applies, the presence or absence of this mark
291 #   decides whether an HTML "blocked"  page, or an empty document will be sent
292 #   to the client as a substitute for the blocked content.
293 #
294 # +hide-accept-language{lang}
295 # +hide-accept-language{block}
296 #   Deletes or replaces the "Accept-Language:" HTTP header in client
297 #   requests.
298 #
299 # +hide-content-disposition{block}
300 # +hide-content-disposition{string}
301 #   Deletes or replaces the "Content-Disposition:" HTTP header set by some 
302 #   servers. This can be used to prevent download menus for content you 
303 #   prefer to view inside the browser, for example.
304 #
305 # +hide-forwarded-for-headers
306 #   Block any existing X-Forwarded-for header, and do not add a new one.
307 #
308 # +hide-from-header{block}
309 # +hide-from-header{spam@sittingduck.xqq}
310 #   If the browser sends a "From:" header containing your e-mail address, 
311 #   either completely removes the header ("block"), or change it to the
312 #   specified e-mail address.
313 #
314 # +hide-if-modified-since{block}
315 # +hide-if-modified-since{-1}
316 #   Deletes the "If-Modified-Since:" HTTP client header or modifies its 
317 #   value, preventing another way to track users.
318 #
319 # +hide-referer{block}
320 # +hide-referer{forge}
321 # +hide-referer{http://nowhere.com}
322 #    Don't send the "Referer:" (sic) header to the web site.  You can
323 #    block it, forge a URL to the same server as the request (which is
324 #    preferred because some sites will not send images otherwise) or
325 #    set it to a constant string.
326 #
327 # +hide-referrer{...}
328 #    Alternative spelling of +hide-referer.  Has the same parameters,
329 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
330 #    correct English spelling, however the HTTP specification has a 
331 #    bug - it requires it to be spelt "referer").
332 #
333 # +hide-user-agent{browser-type}
334 #    Change the "User-Agent:" header so web servers can't tell your
335 #    browser type.  (Breaks many web sites).  Specify the user-agent
336 #    value you want - e.g., to pretend to be using Netscape on Linux:
337 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
338 #    Or to identify yourself explicitly as a Privoxy user:
339 #      +hide-user-agent{Privoxy/1.0}
340 #    (Don't change the version number from 1.0 - after all, why tell them?)
341 #
342 # +handle-as-image
343 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
344 #    in which case a "blocked" image can be sent rather than a HTML page.
345 #    See +set-image-blocker{} for the control over what is actually sent.
346 #
347 # +inspect-jpegs
348 #    Scan jpeg headers for malformed comment blocks and correct them.
349 #
350 # +set-image-blocker{blank}
351 # +set-image-blocker{pattern}
352 # +set-image-blocker{<URL>} with <url> being any valid image URL
353 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
354 #    There are 4 options:
355 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
356 #         resulting in a "broken image" icon.
357 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
358 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
359 #        which is less intrusive than the logo but easier to recognize
360 #        than the transparent one.
361 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
362 #        to the specified image URL.
363 #
364 #
365 # +limit-connect{portlist}
366 #   The CONNECT methods exists in HTTP to allow access to secure websites
367 #   (https:// URLs) through proxies. It works very simply: The proxy
368 #   connects to the server on the specified port, and then short-circuits
369 #   its connections to the cliant and to the remote proxy.
370 #   This can be a big security hole, since CONNECT-enabled proxies can
371 #   be abused as TCP relays very easily.
372 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
373 #   will only allow CONNECT requests to port 443, which is the standard port
374 #   for https.
375 #   If you want to allow CONNECT for more ports than that, or want to forbid
376 #   CONNECT altogether, you can specify a comma separated list of ports and port
377 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
378 #
379 #   +limit-connect{443} # This is the default and need no be specified.
380 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
381 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
382 #
383 # +overwrite-last-modified{block}
384 # +overwrite-last-modified{reset-to-request-time}
385 # +overwrite-last-modified{randomize}
386 #    Removing the "Last-Modified:" header is useful for filter testing, where
387 #    you want to force a real reload instead of getting status code "304",
388 #    which would cause the browser to reuse the old version of the page.
389 #
390 #    The "randomize" option overwrites the value of the "Last-Modified:"
391 #    header with a randomly chosen time between the original value and the
392 #    current time. In theory the server could send each document with a
393 #    different "Last-Modified:" header to track visits without using cookies.
394 #    "Randomize" makes it impossible and the browser can still revalidate
395 #    cached documents.
396 #
397 #    "reset-to-request-time" overwrites the value of the "Last-Modified:"
398 #    header with the current time. You could use this option together with
399 #    hided-if-modified-since to further customize your random range. 
400 #  
401 # +prevent-compression
402 #    Prevent the website from compressing the data. Some websites do
403 #    that, which is a problem for Privoxy, since +filter, +kill-popups
404 #    and +gif-deanimate will not work on compressed data. Will slow down
405 #    connections to those websites, though.
406 #
407 # +prevent-keeping-cookies
408 # +session-cookies-only
409 #    If the website sets cookies, make sure they are erased when you exit
410 #    and restart your web browser.  This makes profiling cookies useless,
411 #    but won't break sites which require cookies so that you can log in
412 #    or for transactions.
413 #
414 # +crunch-outgoing-cookies
415 #    Prevent the website from reading cookies
416 #
417 # +crunch-incoming-cookies
418 #    Prevent the website from setting cookies
419 #
420 # +kill-popups (deprecated)
421 #    Filter the website through a built-in filter to disable
422 #    window.open() etc.  The two alternative spellings are
423 #    equivalent.
424 #
425 # +redirect{<URL>}
426 #    Convinces the browser that the requested document has been moved to
427 #    another location and the browser should get it from the specified
428 #    URL.
429 #
430 # +send-vanilla-wafer
431 #    This action only applies if you are using a jarfile.  It sends a
432 #    cookie to every site stating that you do not accept any copyright
433 #    on cookies sent to you, and asking them not to track you.  Of
434 #    course, this is a (relatively) unique header they could use to 
435 #    track you.
436 #
437 # +send-wafer{name=value}
438 #    This allows you to add an arbitrary cookie.  Specify it multiple
439 #    times in order to add several cookies.
440 #
441 # +treat-forbidden-connects-like-blocks
442 #    If this action is enabled, Privoxy no longer makes a difference between
443 #    forbidden connects and ordinary blocks. 
444 #
445 #    By default Privoxy answers forbidden "Connect" requests  with a short
446 #    error message inside the headers. If the browser doesn't display headers
447 #    (most don't), you just see an empty page. With this action enabled,
448 #    Privoxy displays the message that is used for ordinary blocks instead. If
449 #    you decide to make an exception for the page in question, you can do so
450 #    by following the "See why" link. 
451 #
452 #############################################################################
453
454 #############################################################################
455 # Settings -- Don't change.
456 #############################################################################
457 {{settings}}
458 #############################################################################
459 for-privoxy-version=3.0.4
460
461 #############################################################################
462 # Aliases
463 #############################################################################
464 {{alias}}
465 #############################################################################
466 #
467 # You can define a short form for a list of permissions - e.g., instead
468 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
469 # you can just write "shop". This is called an alias.
470 #
471 # Currently, an alias can contain any character except space, tab, '=', '{'
472 # or '}'.
473 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
474 #
475 # Alias names are not case sensitive.
476 #
477 # Aliases beginning with '+' or '-' may be used for system action names 
478 # in future releases - so try to avoid alias names like this.  (e.g. 
479 # "+crunch-all-cookies" below is not a good name)
480 #
481 # Aliases must be defined before they are used.
482
483
484 # These aliases just save typing later:
485 #
486 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
487 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
488  allow-all-cookies  = -crunch-all-cookies -session-cookies-only
489  allow-popups       = -filter{all-popups} -kill-popups
490 +block-as-image     = +block +handle-as-image
491 -block-as-image     = -block
492
493 # These aliases define combinations of actions
494 # that are useful for certain types of sites:
495 #
496 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups
497 shop        = -crunch-all-cookies allow-popups
498
499 # Your favourite blend of filters:
500 #
501 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{all-popups}\
502               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
503
504 # Allow ads for selected useful free sites:
505 #
506 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
507
508 #############################################################################
509 # Defaults
510 #############################################################################
511 { \
512 -add-header \
513 -block \
514 -content-type-overwrite \
515 -crunch-client-header \
516 -crunch-if-none-match \
517 -crunch-outgoing-cookies \
518 -crunch-incoming-cookies \
519 -crunch-server-header \
520 -deanimate-gifs \
521 -downgrade-http-version \
522 -fast-redirects \
523 -filter{js-annoyances} \
524 -filter{js-events} \
525 -filter{html-annoyances} \
526 -filter{content-cookies} \
527 -filter{refresh-tags} \
528 -filter{unsolicited-popups} \
529 -filter{all-popups} \
530 -filter{img-reorder} \
531 -filter{banners-by-size} \
532 -filter{banners-by-link} \
533 -filter{webbugs} \
534 -filter{tiny-textforms} \
535 -filter{jumping-windows} \
536 -filter{frameset-borders} \
537 -filter{demoronizer} \
538 -filter{shockwave-flash} \
539 -filter{quicktime-kioskmode} \
540 -filter{fun} \
541 -filter{crude-parental} \
542 -filter{ie-exploits} \
543 -filter{site-specifics} \
544 -filter-client-headers \
545 -filter-server-headers \
546 -force-text-mode \
547 -handle-as-empty-document \
548 -handle-as-image \
549 -hide-accept-language \
550 -hide-content-disposition \
551 -hide-if-modified-since \
552 +hide-forwarded-for-headers \
553 +hide-from-header{block} \
554 -hide-referrer \
555 -hide-user-agent \
556 -inspect-jpegs \
557 -kill-popups \
558 -limit-connect \
559 -prevent-compression \
560 -overwrite-last-modified \
561 -redirect \
562 -send-vanilla-wafer \
563 -send-wafer \
564 -session-cookies-only \
565 +set-image-blocker{pattern} \
566 -treat-forbidden-connects-like-blocks \
567 }
568 / # Match all URLs
569
570 #############################################################################
571 # These extensions belong to images:
572 #############################################################################
573 {+handle-as-image -filter}
574 #############################################################################
575 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
576
577 #############################################################################
578 # These don't:
579 #############################################################################
580 {-handle-as-image}
581 /.*\.(js|php|css|.?html?)
582
583 #############################################################################
584 # Generic block patterns by host:
585 #############################################################################
586 {+block}
587 #MASTER# DONT-VERIFY (generic)
588 ad*.
589 .*ads.
590 .ad.
591 *banner*.
592 count*.
593 *counter.
594
595 #############################################################################
596 # Generic unblockers by host:
597 #############################################################################
598 {-block}
599 #MASTER# DONT-VERIFY (generic)
600 adsl.
601 ad[udmw]*.
602 adbl*.
603 adam*.
604 adob*.
605 adrenaline.
606 adtp*.
607 adv[oia]*.
608 .*road*.
609 .olympiad*.
610 .*load*.
611 .*[epu]ad*.
612 county*.
613 countr*.
614
615 #############################################################################
616 # Generic block patterns by path:
617 #############################################################################
618 {+block}
619 #MASTER# DONT-VERIFY (generic)
620 /(.*/)?ad(/|s|v|_?image|cycle|rotate|mentor|click|frame|_?server|script|stream)
621 /.*ads/
622 /(.*/)?(ad|all|nn|db|promo(tion)?)?[-_]?banner
623 /(.*/)?(publicite|werbung|reklaa?m|annonse|maino(kset|nta|s)?/)
624 /.*(count|track|compteur|adframe|banner)(er|run)?(\?|\.(pl|cgi|exe|dll|asp|php|cpt))
625
626 #############################################################################
627 # Generic unblockers by path:
628 #############################################################################
629 {-block}
630 #MASTER# DONT-VERIFY (generic)
631 /.*ad(sl|v(i[cs]|o|an|ertencia|ent|.*search)) # advice/advisories/advan*/advertencia (spanish)
632 /.*(lo|thre|he|d|gr|l|ro|re|squ)ads
633 /.*account
634 support./(.*/)?track
635
636 #############################################################################
637 # Exceptions for academia
638 #############################################################################
639 .edu
640 .ac.*/
641 .uni-*.de
642 .tu-*.de
643 .gov
644 #MASTER# REMARKS: 09/18/06 Tracker request
645 .hs-*.de 
646 .fh-*.de
647
648 #############################################################################
649 # Site-specific block patterns;
650 #############################################################################
651 {+block}
652 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/
653 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
654 .hitbox.com 
655 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html
656 www.the-gadgeteer.com/cgi-bin/getimage.cgi/
657 #MASTER# BLOCK-REFERRER: http://www.stern.de/
658 www.stern.de/bilder/poweredby
659 #MASTER# BLOCK-REFERRER: http://www.gmx.net/de/cgi/logoutpage?CN=sJywqKCElHw%3D%3D
660 images.gmx.net/images/bs/
661 #MASTER# BLOCK-REFERRER: http://www.gmx.de/
662 www.gmx.de/promo
663 images.gmx.net/images/.*/promo/
664 #MASTER# BLOCK-REFERRER: http://www.max.de/
665 .akamaitech.net/.*/img/e-commerce
666 www.max.de/_teaser/partner/
667 #MASTER# BLOCK-REFERRER: http://search.atomz.com/search/?sp-k=&sp-p=any&sp-a=sp1001395b&sp-q=linux
668 search.atomz.com/search/i/tagw1c.gif
669 www.intelligentx.com/newsletters/.*\.gif
670 #MASTER# BLOCK-REFERRER: http://realguide.real.com/games/
671 i.real.com/g/pics/games/gamepass_120x600_2.gif
672 #MASTER# BLOCK-REFERRER: http://www1.chathouse.com/roomplan.html
673 www*.chathouse.com/chatimages/whopersonal.gif
674 #MASTER# BLOCK-REFERRER: http://www.planetspiele.de/
675 .planetspiele.de/gfx/partner
676 #MASTER# BLOCK-REFERRER: http://www.hot.ee/toptools/
677 top.ultraseek.net/top_sit.*\.gif
678 #MASTER# BLOCK-REFERRER: http://kickme.to/FOSI
679 fosi.ural.net/.*\.jpg
680 #MASTER# BLOCK-REFERRER: http://www.tucows.com/
681 .tucows.com/images/dodi.gif
682 .tucows.com/images/elibrary_searchTop.gif
683 #MASTER# BLOCK-REFERRER: http://www.ix.de/
684 #MASTER# BLOCK-REFERRER: http://www.heise.de/
685 /icons/emedia_b.gif
686 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
687 dest.travelocity.com/website/destinations/images/partner_frommers.gif
688 dest.travelocity.com/website/destinations/images/travelex_logo.gif
689 #MASTER# BLOCK-REFERRER: http://www.dpreview.com/reviews/canons40/
690 tribalfusion.speedera.net
691 .tribalfusion.com/media/
692 #MASTER# BLOCK-REFERRER: http://www.stuff.co.nz
693 #MASTER# REMARKS: http://www.speedera.com/primary/newsroom/apr292002-arch.htm
694 engage.speedera.net/
695 #MASTER# BLOCK-REFERRER: http://www.portalofevil.com/
696 b*.portalofevil.com/shlv
697 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Quotes?0110912
698 i.imdb.com/Vpics/
699 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912
700 #MASTER# BLOCK-REFERRER: http://www.imdb.com/help/boards/markup
701 #MASTER# REMARKS: 2nd is for emoticons exception
702 i.imdb.com/Photos/CMSIcons/(?!buttons|emoticons)
703 rcm.amazon.com
704 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Trivia?0110116
705 i.imdb.com/Icons/apix/
706 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
707 .nytimes.com/adx/
708 #MASTER# BLOCK-REFERRER: http://www.salon.com/
709 www.salon.com/Creatives
710 images.salon.com/plus/gear/src/
711 #MASTER# BLOCK-REFERRER: http://www.sourceforge.net/
712 images.sourceforge.net/images/DB2powered.gif
713 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/media.cfm?action=shot&id=250&seq=2
714 /.*paypal-smad\.gif
715 www.planetgamecube.com/images/PGC_Q_Edit.gif
716 #MASTER# BLOCK-REFERRER: http://www.samachar.com/
717 .samachar.com/banimages/
718 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/aws/index.asp
719 .weatherbug.com/popups/
720 #MASTER# BLOCK-REFERRER: http://portale.web.de/Film/
721 .web.de/.*/EIGENWERBUNG/
722 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/
723 www.aintitcool.com/.*\.swf
724 #MASTER# BLOCK-REFERRER: http://www.hispasexo.net/fotos/index.php?currDir=./Negras&pageType=image&image=bla001.jpg
725 www.hispasexo.net/.*/sxb
726 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2002/09/05/technology/05CODE.html
727 graphics.nytimes.com/nytstore/images/ctx
728 #MASTER# BLOCK-REFERRER: http://www.macfixit.com/
729 spinbox.techtracker.com
730 #MASTER# BLOCK-REFERRER: http://www.javaworld.com/javaworld/jw-11-2003/jw-1114-toolbox.html?
731 spinbox.macworld.com/
732 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/
733 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
734 www.popupad.net/ats/
735 #MASTER# BLOCK-REFERRER: http://www.gamespot.com/
736 www.gamespot.com/promos/
737 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm
738 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
739 hit-now.com
740 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/
741 [a-v]*.valueclick.com
742 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
743 www.crazypopups.com
744 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
745 /scripts/cms/xcms.asp
746 #MASTER# BLOCK-REFERRER: http://www.searchking.com/servlet/SearchKing?at=search&keyword=google+owns+you&but1.x=0&but1.y=0
747 www.searchking.com/skbanners/
748 www.searchking.com:443
749 #MASTER# BLOCK-REFERRER: http://www.dshield.org/dshieldmovie.php
750 www.dshield.org/.*anner.gif
751 #MASTER# REMARKS: #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/880835.asp?cp1=1
752 #MASTER# REMARKS: di.image.eshop.msn.com
753 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/12/18/politics/campaigns/18BRAU.html?hp
754 xlonhcld.xlontech.net/
755 #MASTER# REMARKS: Actionsfile tracker 1559740 09/16/06 See http://www.vibrantmedia.com/whatisIntelliTXT.asp
756 #MASTER# BLOCK-REFERRER: http://www.hartware.de/news_40795.html
757 /.*intellitxt/
758 .intellitxt.com
759 #MASTER# REMARKS: Video advertizer, owned by doubleclick.net.
760 #MASTER# BLOCK-REFERRER: http://www.ign.com/ 09/17/06
761 .klipmart.com
762
763 #----------------------------------------------------------------------------
764 # JavaScripts for ad and popup generation
765 #----------------------------------------------------------------------------
766 #MASTER# BLOCK-REFERRER: http://www.britannica.com/
767 www.britannica.com/marketing/
768 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/
769 mediamgr.ugo.com
770 #MASTER# BLOCK-REFERRER: http://www.ebookers.fr
771 #MASTER# REMARKS: Unanimis Advertising
772 awrz.net/
773 #MASTER# BLOCK-REFERRER: http://www.chip.de/artikel/c_artikelunterseite_10423683.html
774 pagead*.googlesyndication./.*\.js
775 a.tfag.de/js.ng/
776 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html
777 y.nbc4.com/js.ng
778 y.ibsys.com/event.ng/
779
780 #############################################################################
781 # Generic block-as-image patterns:
782 #############################################################################
783 {+block-as-image}
784 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
785 /.*ad_?image\.(php|cgi)
786 #MASTER# COMMENT: SF tracker 09/15/06
787 /.*client_?ad\.(php|cgi)
788 #MASTER# COMMENT: SF tracker 09/15/06
789 /.*AIM_UAC.adp
790 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
791 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
792 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
793 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
794 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
795 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
796 /.*recips?/
797 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
798 /bandeaux/
799 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/
800 /sponsors/.*\.gif
801
802 #############################################################################
803 # Site-specific block-as-image patterns:
804 #############################################################################
805 #----------------------------------------------------------------------------
806 # Banner farms:
807 #----------------------------------------------------------------------------
808 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
809 #MASTER# BLOCK-REFERRER: http://www.aol.com/
810 ar.atwola.com 
811 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
812 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
813 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
814 .[a-vx-z]*.doubleclick.net
815 #MASTER# BLOCK-REFERRER: http://www.theinquirer.net/
816 netcomm.spinbox.net
817 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/
818 .*servedby.advertising.com
819 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
820 .a.yimg.com/(?:(?!/i/).)*$
821 .a[0-9].yimg.com/(?:(?!/i/).)*$
822 .yimg.com/(.*/)?a/
823 .yimg.com/.*/(flash|java)/promotions
824 .yimg.com/a/.*/flash/
825 #MASTER# BLOCK-REFERRER: http://freeshells.linuxhelpnetwork.net/
826 .yimg.com/.*/justdeals
827 #MASTER# BLOCK-REFERRER: http://www.kostenlos.de/
828 werbung.guj.de
829 #MASTER# DONT-VERIFY
830 bs*.gsanet.com
831 bs*.einets.com
832 #MASTER# DONT-VERIFY 
833 .qkimg.net
834 #MASTER# BLOCK-REFERRER: http://www.sevac.com/
835 .sexcounter.
836 #MASTER# DONT-VERIFY
837 #MASTER# REMARKS: Bannerfarms used by grokster and others:
838 james.adbutler.de
839 gkas.de/affilinet
840 #MASTER# BLOCK-REFERRER: http://www.macaddict.com/
841 130.94.70.82
842 #MASTER# BLOCK-REFERRER: http://asitreff.6x.to/
843 cashformel.com/web-sponsor
844 www.cash4banner.com/web-sponsor
845 213.221.106.162
846 #MASTER# BLOCK-REFERRER: http://www.falk-online.de/index.jsp
847 #MASTER# REMARKS: ad*.adsolution.de
848 62.26.220.2
849 62.27.38.2
850 62.27.57.2
851 #MASTER# BLOCK-REFERRER: unknown
852 #MASTER# REMARKS: both exist and are banner farms
853 www.bannermania.nom.pl
854 magic.koti.com.pl/cgi-magic/banner_img.cgi
855 #MASTER# BLOCK-REFERRER: http://educ8search.tripod.com/hacksoft.html
856 #MASTER# REMARKS: Counter
857 .netscape.com/c\.cgi\?
858 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
859 #MASTER# REMARKS: Counter
860 m[0-9].nedstatbasic.net
861 #MASTER# BLOCK-REFERRER: http://salon.com/
862 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
863 #MASTER# REMARKS: Banner farms; just exclude their corp. info
864 [a-vx-z]*.atdmt.com/
865 #MASTER# BLOCK-REFERRER: http://f1.racing-live.com/en/
866 .akamai.net/.*f1-live\.com/.*pub
867 #MASTER# BLOCK-REFERRER: http://www.melodysoft.com/cgi-bin/foro.cgi
868 tracker.tradedoubler.com
869 #MASTER# BLOCK-REFERRER: http://dlh.net/german.html
870 imp*.tradedoubler.com
871 #MASTER# BLOCK-REFERRER: http://www.physlink.com/Education/AskExperts/ae353.cfm
872 /.*affiliate.*120x90
873 #MASTER# BLOCK-REFERRER:  http://www.amayita.com/imagenes/index.php?currDir=./Hall_of_Fame&pageType=image&image=img_0265.jpg
874 #MASTER# BLOCK-REFERRER: http://www.macgamer.com/
875 .qksrv.net
876 #MASTER# BLOCK-REFERRER: http://www.drudgereport.com/
877 #MASTER# BLOCK-REFERRER: http://www.rpmseek.com/index.html
878 #MASTER# BLOCK-REFERRER: http://www.funnyjunk.com/pages/cooties.htm
879 .instacontent.net/fastclick/
880 #MASTER# BLOCK-REFERRER: http://www.exactaudiocopy.de/ 09/11/06
881 #MASTER# BLOCK-REFERRER:  http://stanford.facebook.com/home.php 
882 .fastclick.net
883 #MASTER# BLOCK-REFERRER: http://www.math.com/school/subject2/lessons/S2U3L6DP.html 09/11/06
884 .casalemedia.com
885 #MASTER# BLOCK-REFERRER: http://www.macnn.com/
886 kermit.macnn.com/
887 #MASTER# BLOCK-REFERRER: http://www.sdtimes.com/news/
888 www.sdtimes.com/phpads
889 #MASTER# BLOCK-REFERRER: http://www.pagesjaunes.fr/pj.cgi?
890 www.pagesjaunes.fr/EDITO/FR/images/barre_partenaires.gif
891 #MASTER# BLOCK-REFERRER: http://www.allocine.fr/
892 .allocine.fr/.*/logo_partenaire/
893 #MASTER# BLOCK-REFERRER: http://www.virtual-hideout.net/guides/psu_relay_timer_mod/index.shtml
894 www.virtual-hideout.net/sponsors/
895 #MASTER# BLOCK-REFERRER: http://www.the-underdogs.org/featured.php
896 ?.websponsors.com/
897 #MASTER# BLOCK-REFERRER: http://www.globalseeker.com/freesamples/
898 quinst.com/images
899 #MASTER# BLOCK-REFERRER: http://www.newsmax.com/archives/articles/2003/11/20/185048.shtml
900 ad*.fameleads.com
901 #MASTER# BLOCK-REFERRER: http://www.imdb.com/
902 ia.imdb.com/.*(\.swf|[0-9]\.(gif|jpg))
903 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
904 .[a-vx-z]*.comclick.com/
905 #MASTER# BLOCK-REFERRER: http://freemail.web.de/
906 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/11/19/politics/19DEAN.html?ex=1069822800&en=dc82dfff0502faeb&ei=5062&partner=GOOGLE
907 .as*.falkag.
908 #MASTER# BLOCK-REFERRER: http://www.macnn.com/news/18944
909 a.tribalfusion.com/
910 #MASTER# BLOCK-REFERRER: http://reviews.infosyncworld.com/palmos/featured/index.html?start=1&offset=10
911 .instacontent.net/adcouncil/
912 .adserver.com/
913 #MASTER# BLOCK-REFERRER: http://computers.cnet.com/hardware/0-1027-404-20857400.html?tag=rev
914 #MASTER# REMARKS: Pointdexter
915 .ru4.com/
916 #MASTER# BLOCK-REFERRER: http://arstechnica.com/
917 content.ad-flow.com/
918 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/infos/actualites/detail_actu_marches.phtml?news=1510287
919 www.smartadserver.com/
920 #MASTER# BLOCK-REFERRER: http://www.dn.se/hund
921 www.flashbanner.no/
922 #MASTER# BLOCK-REFERRER: http://abcnews.go.com/sections/us/GoodMorningAmerica/scottpeterson030509.html
923 .akamai.net/.*/adinterax.com/
924 #MASTER# BLOCK-REFERRER: http://www.chez.tiscali.fr/
925 admedia.tiscali.
926 pub.chez.com/
927 #MASTER# DONT-VERIFY
928 #MASTER# REMARKS: Bannerfarm used by Morpheus file sharing software
929 jmcms.cydoor.com/
930 #MASTER# BLOCK-REFERRER: http://www.ecranbureau.com/
931 www.allosponsor.com/images/ban
932 #MASTER# BLOCK-REFERRER: http://www.tech-report.com/etc/2003q2/3dmurk03/index.x?pg=7
933 #MASTER# REMARKS: Netshelter.com farm
934 .adtrix.com
935 #MASTER# BLOCK-REFERRER: http://discussion.brighthand.com/forumdisplay.php?s=fee44a5b2a6fc2e9e79d6472bc8fbe94&forumid=197
936 *[0-9].tribalfusion.com/
937 #MASTER# BLOCK-REFERRER: http://www.sf.net/
938 #MASTER# REMARKS: broadening scope from previous: ads.osdn.com/?ad 09/02/06 per tracker 
939 ads.osdn.com
940 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/
941 kt*.kliptracker.com/
942 gfx.dvlabs.com/klipmart/
943 #MASTER# REMARKS: Actions file tracker 1547656 09/02/06
944 img.mediaplex.com
945 #MASTER# REMARKS: Actions file tracker 1152563 09/02/06
946 ads.monster.com
947 #MASTER# REMARKS: Support request 1312362 09/08/06
948 adserver.itsfogo.com
949 #MASTER# BLOCK-REFERRER: http://www.multiproxy.org/anon_proxy.htm 09/10/06
950 view.atdmt.com
951 #MASTER# REMARKS: Actionsfile feedback 09/11/06 http://matrix.mediavantage.de/mx.one?                                              p=210&pa=1060&pb=1906&pd=10944&aid=399&x=120&y=240&ts=2005.06.27.21.38.08
952 #MASTER# BLOCK-REFERRER:  http://www.heise.de/newsticker/meldung/61067
953 matrix.mediavantage.de
954 #MASTER# REMARKS Ad generator, user tracker 09/11/06
955 .cibleclick.com
956 #MASTER# REMARKS: Ad generator 09/11/06  http://c1.netshelter.net/campaigns/ITTTech/itttech09_728x90.gif
957 #MASTER# BLOCK-REFERRER:  http://www.osnews.com/ 09/11/06
958 .netracker.net
959 #MASTER# REMARKS: ad generator domain per sf tracker 09/11/06
960 .interclick.com
961 #MASTER# REMARKS: Ad generator http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
962 #MASTER# BLOCK-REFERRER: http://www.imdb.com/name/nm0000168/bio 09/12/06
963 .maxserving.com
964 #MASTER# REMARKS: Ad generator http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
965 #MASTER# BLOCK-REFERRER:  http://torrent.to/torrent/ 09/12/06
966 .gonamic.de
967 #MASTER# REMARKS: 09/11/06 example: img.webads.nl
968 .webads.
969 #MASTER# REMARKS: Ad generator http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
970 #MASTER# BLOCK-REFERRER:  http://news.yahoo.com/news?tmpl=story&cid=534&e=1&u=/ap/20050613/ap_on_he_me/cancer_research
971 .adlegend.com
972 #MASTER# REMARKS: Ad generator 09/12/06 http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
973 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/louisianaandmardigra/messages/1?viscount=100
974 .belnk.com
975 .euros4click./.+
976 #MASTER# BLOCK-REFERRER: http://www.planet3dnow.de/cgi-bin/newspub/viewnews.cgi?id=1129904195
977 ads-*.quarterserver.de/adserver
978
979 #----------------------------------------------------------------------------
980 # Cross-site user tracking
981 #----------------------------------------------------------------------------
982 #MASTER# BLOCK-REFERRER: http://os2.ru/
983 .*.*.spylog.com/
984 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/
985 statse.webtrendslive.com
986 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
987 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
988 spinbox.versiontracker.com/.*\.(gif|jpg)
989 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/
990 stat.onestat.com
991 #MASTER# BLOCK-REFERRER: http://www.global.net.uk/
992 .[a-vx-z]*.tradedoubler.com
993 #MASTER# BLOCK-REFERRER: http://www.sharepoint.boo.pl/
994 stat.webmedia.pl/
995 #MASTER# BLOCK-REFERRER: http://www.asp-php.net/index.php
996 log*.xiti.com/
997 log*.hit-parade.com/
998 #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/884810.asp?0si=-&cp1=1
999 www.xml.eshop.msn.com/tracksponsorimpression.asp
1000 #MASTER# BLOCK-REFERRER: http://www.washingtonpost.com/
1001 stats.surfaid.ihost.com/(crc/)?images/(bounce/)?uc.GIF
1002 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/
1003 .imrworldwide.com
1004 #MASTER# REMARKS: Actionsfile feedback 1555719 09/10/06, and Debian Bug report 
1005 #MASTER# BLOCK-REFERRER: http://www.nrc.nl/ 09/12/06
1006 .clicktracks.com
1007 #MASTER# REMARK: Actionsfile tracker 1159072 09/12/06
1008 .etracker.
1009 #MASTER# REMARK: Actionsfile tracker 1243494 09/12/06
1010 #MASTER# BLOCK-REFERRER: http://www.spanked-slaves.com/movies14/bdsm14c.html
1011 .x-traceur.com
1012 #MASTER# REMARKS: See <http://www.google.com/analytics/> for user tracking.
1013 #MASTER# REMARKS: There is a ssl.google-analytics as well.
1014 .google-analytics.
1015
1016
1017 #----------------------------------------------------------------------------
1018 # Specific counters (see above for generic patterns)
1019 #----------------------------------------------------------------------------
1020 #MASTER# BLOCK-REFERRER: http://www.distrowatch.com/table.php?distribution=linex
1021 s*.sitemeter.com/meter\.asp
1022 #MASTER# BLOCK-REFERRER: http://personales.mundivia.es/lbouza/
1023 fastcounter.bcentral.com/
1024 #MASTER# BLOCK-REFERRER: http://osnews.com/
1025 bilbo.counted.com/
1026 #MASTER# BLOCK-REFERRER: http://enciclopedia.us.es/
1027 p[0-9].nedstatbasic.net/
1028 #MASTER# BLOCK-REFERRER: http://www.vencor.narod.ru/films/inolv.htm
1029 bs.yandex.ru/count/
1030
1031 #----------------------------------------------------------------------------
1032 # On-site ads and other single sources:
1033 #----------------------------------------------------------------------------
1034 #MASTER# BLOCK-REFERRER: http://www.fotw.net/flags/
1035 www.fotw.net/images/linea2.gif
1036 #MASTER# BLOCK-REFERRER: http://www.asahi.com/
1037 www.asahi.com/(.*/)?ad/
1038 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
1039 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
1040 .travelocity./Sponsor_gifs/
1041 #MASTER# BLOCK-REFERRER: http://www.ebay.com
1042 pics.ebay.com/aw/pics/homepage/big8
1043 #MASTER# BLOCK-REFERRER: http://www.linuxdot.org/cgi-bin/columns.cgi?id=26
1044 naturalismedicina.com/cgibin/linswap
1045 #MASTER# BLOCK-REFERRER: http://privacy.net/analyze/
1046 a.consumer.net
1047 #MASTER# BLOCK-REFERRER: http://www.deviantart.com/
1048 images.deviantart.com/affiliates/
1049 images.deviantart.com/shared/(winzip|trillian)\.gif
1050 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/
1051 www.happypuppy.com/newstuff/netsys\.swf
1052 www.happypuppy.com/images/[^/]+\.gif
1053 www.happypuppy.com/images/sav_creative/savage_01.jpg
1054 www.happypuppy.com/images/site/cnb_but_nav.gif
1055 #MASTER# DONT-VERIFY
1056 #MASTER# REMARKS: Referenced from HTML-Emails
1057 .weather.com/creatives/
1058 .weather.com/web/services/email/
1059 #MASTER# BLOCK-REFERRER: http://www.mapblast.com/
1060 :81/feeds/
1061 x.mycity.com
1062 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html
1063 /.*/topslots/topslot_
1064 #MASTER# BLOCK-REFERRER: http://maccentral.macworld.com/
1065 maccentral.macworld.com/images/subsad
1066 #MASTER# BLOCK-REFERRER: http://bigcharts.marketwatch.com/
1067 a.mktw.net
1068 #MASTER# BLOCK-REFERRER: http://www.happypuppy.com/win/
1069 www.happypuppy.com/images/sav_creative
1070 #MASTER# BLOCK-REFERRER: http://www.wral.com/
1071 images.ibsys.com/.*/sponsors/
1072 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/money/economy/fed/2002-09-23-bubble-debate_x.htm
1073 www.usatoday.com/sponsors/
1074 #MASTER# BLOCK-REFERRER: http://www.jpost.com/
1075 ads.jpost.com
1076 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
1077 /.*/images/\d+/promos/
1078 #MASTER# BLOCK-REFERRER: http://www.kuro5hin.org/
1079 #www.kuro5hin.org/images/[^/]+\.gif
1080 #MASTER# BLOCK-REFERRER: http://www.uolsinectis.com.ar/
1081 ad.uol.com.br
1082 #MASTER# BLOCK-REFERRER: http://www.spammimic.com/credits.shtml
1083 www.anonymizer.com/images/affiliate/
1084 #MASTER# BLOCK-REFERRER: http://cracks.thebugs.ws/pages/H/7.shtml
1085 img.thebugs.ws
1086 #MASTER# BLOCK-REFERRER: http://www.kinghost.com/fetish/xworx/Azian/nextdoor/06/realm.html
1087 www.kinghost.com/ban/
1088 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/
1089 www.infoempleo.com/(pop-up|images(/Nueva/banner_|/motor))
1090 #MASTER# BLOCK-REFERRER: http://www.hardocp.com/
1091 hera.hardocp.com/
1092 #MASTER# BLOCK-REFERRER: http://www.slovio.com/
1093 www.slovio.com/1/signs/(66|120)
1094 #MASTER# BLOCK-REFERRER: http://www.usatoday.com/
1095 images.usatoday.com/.*promo
1096 images.usatoday.com/shop 
1097 #MASTER# BLOCK-REFERRER: http://www.free.fr/
1098 www.free.fr/img_une
1099 www.free.fr/promos
1100 #MASTER# BLOCK-REFERRER: http://people.aol.com/
1101 i.timeinc.net/sponsors
1102 #MASTER# BLOCK-REFERRER: http://www.watch.impress.co.jp/akiba/hotline/20021221/ballpc.html
1103 ngs.impress.co.jp/image.ng
1104 #MASTER# BLOCK-REFERRER: http://forums2.warcry.com/forum.phtml?f=69
1105 ims.warcry.com/scripts/ims/skyscrapers
1106 #MASTER# BLOCK-REFERRER: http://www.mapquest.com/directions/main.adp?go=1&do=nw&ct=NA&1y=US&1a=255+w+88+st&1p=&1c=&1s=&1z=10024&2y=US&2a=20+milltown+rd&2p=&2c=&2s=&2z=10509&lr=2
1107 cdn.mapquest.com/mqhome/toy_
1108 www.sunbelt-software.com/cfbanners/
1109 #MASTER# BLOCK-REFERRER: http://www.chip.de/
1110 195.27.236.226/
1111 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
1112 astalavista.box.sk/adult.*\.jpg
1113 .box.sk/(468x60|120x600|hbb)
1114 #MASTER# BLOCK-REFERRER: http://www.investorguide.com
1115 www.investorguide.com/ad_
1116 #MASTER# BLOCK-REFERRER: http://www.ig.com.br/
1117 image.ig.com.br/gn/modulos/
1118 image.ig.com.br/v5/flash/ig_br/flash\.swf
1119 #MASTER# BLOCK-REFERRER: http://www.bol.com.br/
1120 b.i.bol.com.br/b/catho/a_
1121 #MASTER# BLOCK-REFERRER: http://news.independent.co.uk/world/australasia/story.jsp?story=381080
1122 www.independent.co.uk/img/commercial/
1123 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/epdf/
1124 a.rn11.com/
1125 #MASTER# BLOCK-REFERRER: http://www.dinside.no/
1126 www.dinside.no/annonsorer/
1127 #MASTER# BLOCK-REFERRER: http://www.computrabajo.es/
1128 www.computrabajo.es/imagenes/publicidad/
1129 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/
1130 www.boursorama.com/pub/
1131 #MASTER# BLOCK-REFERRER: http://www.baquia.com/com/20020416/art00010.html
1132 www.baquia.com/imagenes/pub/
1133 #MASTER# BLOCK-REFERRER: http://www.aint-it-cool-news.com/display.cgi?id=15348
1134 www.aintitcool.com/foxsearchlight/
1135 #MASTER# BLOCK-REFERRER: http://www.diabloii.net
1136 etype.adbureau.net/
1137 rcm-images.amazon.com/
1138 #MASTER# BLOCK-REFERRER: http://millionaire.itv.com/millionaire/game/freegame/nq-anytime/anytimeset.html
1139 millionaire.itv.com/.*/assets/
1140 www.digitoday.fi/services/
1141 #MASTER# BLOCK-REFERRER: http://www.heise.de/
1142 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1143 /RealMedia/ads/
1144
1145 #############################################################################
1146 # Site-specific unblockers:
1147 #############################################################################
1148 {-block}
1149 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
1150 www.faqs.org/banner\.html
1151 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
1152 bannerblind.mozdev.org
1153 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
1154 advogato.org
1155 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
1156 ad*.vhb.de
1157 #MASTER# UNBLOCK-REFERRER: http://www.ugu.com/
1158 www.ugu.com/sui/ugu/adv
1159 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
1160 www.globalintersec.com/adv
1161 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html
1162 banners.wunderground.com/banner/
1163 #MASTER# UNBLOCK-REFERRER: http://www.sueddeutsche.de/
1164 www.sueddeutsche.de/.*banner
1165 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/
1166 www.openoffice.org/banners/
1167 #MASTER# UNBLOCK-REFERRER: http://capwiz.com/ieeeusa/home/
1168 capwiz.com/ieee/images/banner.gif
1169 #MASTER# UNBLOCK-REFERRER: http://security.greymagic.com/
1170 sec*.greymagic.com/adv/
1171 #MASTER# UNBLOCK-REFERRER: http://www.foxnews.com
1172 .foxnews.com/images/banners/(sec|logo)
1173 #MASTER# UNBLOCK-REFERRER: http://www.comdirect.de/
1174 #MASTER# REMARKS: Used as link tracker on (needed) internal links
1175 www.comdirect.de/stat/count.php
1176 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926
1177 #MASTER# REMARKS: Part of site decoration
1178 .amazon.com/.*/banners/
1179 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
1180 #MASTER# REMARKS: Javascripts whose absence messes the page
1181 .washingtonpost.com/wp-srv/
1182 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis
1183 www.gnome.org
1184 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/
1185 .nycsubway.org/img/banner
1186 #MASTER# UNBLOCK-REFERRER: http://www.hellug.gr
1187 ads.hellug.gr
1188 #MASTER# UNBLOCK-REFERRER: http://www.ebgames.com/ebx/ads/promos/bargainbin/pc/
1189 www.ebgames.com/ebx/ads/promos/
1190 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1191 www.forgotten-ny.com/ADS/
1192 #MASTER# UNBLOCK-REFERRER: http://bricolage.thepirtgroup.com/docs/Bric/AdvTemplates.html
1193 /.*/AdvTemplates.html
1194 #MASTER# UNBLOCK-REFERRER: http://counter.li.org
1195 counter.li.org
1196 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/
1197 adrian.adrian.org
1198 #MASTER# UNBLOCK-REFERRER: http://www.tompaine.com/op_ads/
1199 www.tompaine.com/op_ads/
1200 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/
1201 adela.karlin.mff.cuni.cz
1202 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html
1203 www.swcp.com/rtoads/
1204 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
1205 #MASTER# REMARKS: Don't block our own feedback process, even if the
1206 #MASTER# REMARKS: parameters contain block patterns
1207 www.privoxy.org
1208 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
1209 sourceforge.net/.*tracker
1210 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
1211 www.brawnylads.com
1212 #MASTER# UNBLOCK-REFERRER: http://www.artbrokerage.com/ads/ads2.htm
1213 www.artbrokerage.com/ads/
1214 #MASTER# UNBLOCK-REFERRER: http://www.tivoli.com/support/storage_mgr/
1215 www.tivoli.com/support/storage_mgr/adsercli.htm
1216 #MASTER# UNBLOCK-REFERRER: http://www.acm.org/siggroup/
1217 www.acm.org
1218 #MASTER# UNBLOCK-REFERRER: http://www.motel6.com/
1219 www.motel6.com/maps/detailmap_tracker.asp
1220 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
1221 adzapper.
1222 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
1223 .altavista.com/web/adv
1224 #MASTER# UNBLOCK-REFERRER: http://rads.mcafee.com/rads/scripts/RADS.dll?QueryProduct2
1225 rads.mcafee.com/rads/
1226 #MASTER# UNBLOCK-REFERRER: http://linuxfromscratch.org/cgi-bin/lfscounter.cgi
1227 linuxfromscratch.org/cgi-bin/lfscounter.cgi
1228 #MASTER# UNBLOCK-REFERRER: http://www.wholetomato.com/
1229 www.wholetomato.com/images/banner.jpg
1230 #MASTER# UNBLOCK-REFERRER: http://dv411.com/advc50.html
1231 dv411.com/advc50.html
1232 #MASTER# UNBLOCK-REFERRER: http://www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1233 www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1234 #MASTER# UNBLOCK-REFERRER: http://www.percom.org/
1235 www.percom.org/banner.html
1236 #MASTER# UNBLOCK-REFERRER: http://www.aaai.org/Magazine/Departments/calendar.html
1237 www.aaai.org/Graphics/Banners/
1238 #MASTER# UNBLOCK-REFERRER: http://www.arm.com/support/ads_faq?OpenDocument&ExpandSection=11
1239 www.arm.com/.*ads
1240 #MASTER# UNBLOCK-REFERRER: http://www.anybrowser.org/campaign/
1241 www.anybrowser.org/.*banner
1242 #MASTER# UNBLOCK-REFERRER: http://www.tads.org/
1243 www.tads.org/
1244 #MASTER# UNBLOCK-REFERRER: http://www.mbe.com/redir/packtrack.asp
1245 www.mbe.com/redir/packtrack.asp
1246 www.iship.com/trackit/
1247 #MASTER# UNBLOCK-REFERRER: http://www.newegg.com/
1248 www.newegg.com/track.asp
1249 #MASTER# UNBLOCK-REFERRER: http://kt.aspseek.org/
1250 kt.aspseek.org/adv.html
1251 #MASTER# UNBLOCK-REFERRER: http://www.esis.com.au/AdvSerialCards/Firewire.htm
1252 www.esis.com.au/AdvSerialCards
1253 #MASTER# UNBLOCK-REFERRER: http://www.familysearch.org/
1254 www.familysearch.org/.*banner
1255 #MASTER# UNBLOCK-REFERRER: http://coder.com/
1256 coder.com/creations/banner/
1257 #MASTER# UNBLOCK-REFERRER: http://arnolds.dhs.org/static/adv_tools.html
1258 arnolds.dhs.org/static/adv_tools.html
1259 #MASTER# UNBLOCK-REFERRER: http://www.ibm.com/
1260 www-3.ibm.com/software/ad/
1261 #MASTER# UNBLOCK-REFERRER: http://www.gpl.org/
1262 www.gpl.org/TLCimages2/banner2.gif
1263 #MASTER# UNBLOCK-REFERRER: http://europa.eu.int/yourvoice/
1264 europa.eu.int
1265 #MASTER# UNBLOCK-REFERRER: http://www.schooner.com/~loverso/no-ads/
1266 www.schooner.com/~loverso/no-ads/
1267 #MASTER# UNBLOCK-REFERRER: http://www.debka.com/
1268 ad.debka.com/(css|images)
1269 #MASTER# UNBLOCK-REFERRER: http://www.directv.com/DTVAPP/index.jsp
1270 #MASTER# REMARKS: Yuck!
1271 realmedia*./.*/DIRECTV/
1272 oascentral.directv.com/
1273 #MASTER# UNBLOCK-REFERRER: http://source.bungie.org/
1274 source.bungie.org/
1275 #MASTER# UNBLOCK-REFERRER: http://adonthell.linuxgames.com/
1276 adonthell.linuxgames.com/
1277 #MASTER# UNBLOCK-REFERRER: http://news.bbc.co.uk/furniture/chinese/banner/bbccantonese_600.gif
1278 #MASTER# REMARKS: Banner-free site(s).
1279 .bbc.co.uk/
1280 #MASTER# UNBLOCK-REFERRER: http://www.eclipse.org
1281 www.eclipse.org/banner\.html
1282 #MASTER# UNBLOCK-REFERRER: http://www.egads.com/
1283 .egads.com/
1284 #MASTER# UNBLOCK-REFERRER: http://adc.netlabs.org/
1285 adc.netlabs.org/
1286 #MASTER# UNBLOCK-REFERRER: http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm
1287 www.tela.bc.ca/tads/
1288 #MASTER# UNBLOCK-REFERRER: http://adbusters.org/information/
1289 adbusters.org/
1290 #MASTER# UNBLOCK-REFERRER: http://www.eads.com/
1291 #MASTER# UNBLOCK-REFERRER: http://www.eads.net/
1292 #MASTER# UNBLOCK-REFERRER: http://www.eads.de/
1293 .eads.*/
1294 #MASTER# UNBLOCK-REFERRER: http://www.qualcomm.com/brew/developer/resources/ad/documentation.html 
1295 www.qualcomm.com/brew/developer/resources/ad/
1296 #MASTER# UNBLOCK-REFERRER: http://www.tomshardware.com/storage/20031001/index.html
1297 www.ad.tomshardware.com/cgi-bin/logo2.m?
1298 #MASTER# UNBLOCK-REFERRER:  http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=2959829594&category=30018#ebayphotohosting
1299 .ebayimg.com/
1300 #MASTER# UNBLOCK-REFERRER: http://upgrade.bitdefender.com/update71/avx/Plugins/adsntfs.xmd.gzip 09/04/06
1301 /update/.*adsnt.*
1302 #MASTER# UNBLOCK-REFERRER: http://msdn.microsoft.com/
1303 msdn.microsoft.com/.*masthead
1304 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1305 .indymedia.org
1306 #MASTER# UNBLOCK-REFERRER: http://www.seanbaby.com/stupid/comicads05.shtml 09/11/06
1307 .seanbaby.com
1308 #MASTER# UNBLOCK-REFERRER:  http://www.cels.org/db/keep-track.pl?cat:1 09/11/06
1309 cels.org/.*track
1310 #MASTER# UNBLOCK-REFERRER: http://www.nic.ad.jp/ See http://jprs.co.jp/en/jpdomain.html 09/11/06
1311 .nic.ad.jp
1312 #MASTER# UNBLOCK-REFERRER: http://www.flickr.com/photo_zoom.gne?id=32594118&size=l 09/11/06
1313 #MASTER# REMARKS: creativecommons.org worthwhile organization 09/11/06
1314 /(.*/)?somerights20.gif
1315 .creativecommons.org
1316 #MASTER# UNBLOCK-REFERRER: http://www.ups.com/WebTracking/track?loc=en_US
1317 .ups.com/.*/track
1318 #MASTER# UNBLOCK-REFERRER: http://adju.st
1319 .adju.
1320 #MASTER# REMARKS: Ad-free art site 09/12/06
1321 .rubberslug.com
1322 .freebsd.org
1323 #MASTER# REMARKS: SF tracker 09/15/06
1324 adiumx.com
1325
1326 #############################################################################
1327 # Site-specific special rules:
1328 #############################################################################
1329
1330 #----------------------------------------------------------------------------
1331 # These sites are very complex (read: keen on your identity) and require
1332 # minimal interference.
1333 #----------------------------------------------------------------------------
1334 {fragile}
1335 .office.microsoft.com
1336 .windowsupdate.microsoft.com
1337 .apple.com
1338 .yahoo.com
1339 #MASTER# REMARKS: Actions Tracker 1293057 09/02/06
1340 .update.microsoft.com
1341 #MASTER# REMARKS: Various reports 09/16/06
1342 mail.google.
1343
1344 #----------------------------------------------------------------------------
1345 # Shopping and banking sites - allow cookies and pop-ups
1346 #----------------------------------------------------------------------------
1347 {shop}
1348 .quietpc.com
1349 .worldpay.com   # for quietpc.com
1350 .jungle.com
1351 .dabs.com
1352 .overclockers.co.uk
1353 .db24.de
1354 .ebay.
1355 .mobile.de
1356 www.fondationlejeu.com
1357 www.techtv.com
1358 .mywebgrocer.com
1359
1360 #----------------------------------------------------------------------------
1361 # Subscription sites (with credible privacy policy) - allow permanent cookies
1362 #----------------------------------------------------------------------------
1363 {-session-cookies-only}
1364 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
1365 .nytimes.com/
1366 #MASTER# PROBLEM-URL: http://www.volkskrant.nl/
1367 .volkskrant.nl/
1368
1369 #----------------------------------------------------------------------------
1370 # These sites require pop-ups, so don't use the unconditional filters.
1371 #----------------------------------------------------------------------------
1372 {allow-popups}
1373 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
1374 www.aprilbarrows.com/discography\.html$
1375 #MASTER# PROBLEM-URL: http://kevxml2a.infospace.com/info.metac/venshopping/index.htm
1376 .infospace.com/.*/venshopping/
1377 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
1378 www.nvidia.com
1379 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
1380 www*.chathouse.com/games/
1381 #MASTER# PROBLEM-URL: http://www.tagesschau.de/
1382 #MASTER# REMARKS: Search results come in a popup
1383 www.tagesschau.de
1384 #MASTER# PROBLEM-URL: http://www.xmms.org/skins.html?num=15&sort=daily_download&order=desc
1385 www.xmms.org
1386 #MASTER# PROBLEM-URL: http://www.bild.de/
1387 .bild.t-online.de
1388 #MASTER# PROBLEM-URL: http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va=cupel
1389 www.m-w.com
1390 #MASTER# PROBLEM-URL: http://www.pcbox.es/boxshop/catalogo/entrada.asp?centro=53
1391 www.pcbox.es
1392 #MASTER# PROBLEM-URL: http://www.hola.com/club/trajelegante/
1393 www.hola.com/club/
1394 #MASTER# PROBLEM-URL: http://www.infoempleo.com/
1395 www.infoempleo.com
1396 #MASTER# PROBLEM-URL: http://www.netflix.com/
1397 www.netflix.com
1398 #MASTER# PROBLEM-URL: http://amnistiapornigeria.org/
1399 amnistiapornigeria.org
1400 #MASTER# PROBLEM-URL: http://ponteensupiel.org/index2.html
1401 ponteensupiel.org
1402 #MASTER# PROBLEM-URL: http://www.ifilm.com/ifilm/aicn
1403 www.ifilm.com/ifilm
1404 #MASTER# PROBLEM-URL: http://www.pogo.com/
1405 .pogo.com
1406 #MASTER# PROBLEM-URL: http://my.aol.com/
1407 my.aol.com
1408 #MASTER# PROBLEM-URL: http://www.cnn.com/
1409 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
1410 i.cnn.net/cnn/.*/clickability/button
1411 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
1412 www.rosettaproject.org
1413 #MASTER# PROBLEM-URL: http://www.quantum.com requires popups for downloads, etc. 09/11/06
1414 .quantum.com
1415
1416
1417 #----------------------------------------------------------------------------
1418 # Sometimes (i.e. often!) fast-redirects catches things by mistake
1419 #----------------------------------------------------------------------------
1420 {-fast-redirects}
1421 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
1422 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
1423 .google.
1424 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
1425 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
1426 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
1427 .speedfind.de
1428 #MASTER# PROBLEM-URL: http://www.nytimes.com/
1429 .nytimes.com
1430 #MASTER# PROBLEM-URL: http://groups.yahoo.com/
1431 .yahoo.com/.*done=
1432 #MASTER# PROBLEM-URL: http://validator.w3.org/check
1433 .w3.org
1434 #MASTER# PROBLEM-URL: http://www.ask.com/
1435 .directhit.com
1436 #MASTER# PROBLEM-URL: http://www.zagats.com/
1437 .zagats.com
1438 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
1439 #MASTER# PROBLEM-URL: http://www.msn.com/
1440 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
1441 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
1442 login.passport.com/logout\.(asp|srf)\?
1443 #MASTER# PROBLEM-URL: http://www.fileplanet.com
1444 download.com.com/redir\?
1445 www.fileplanet.com/redir\.asp\?
1446 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
1447 web.archive.org
1448 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
1449 .edu
1450 #MASTER# PROBLEM-URL: http://web.archive.org
1451 .archive.org
1452 #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
1453 www.guenstiger.de
1454 #MASTER# PROBLEM-URL: http://anon.free.anonymizer.com/http://www.privoxy.org/
1455 .anonymizer.com
1456 #MASTER# PROBLEM-URL: http://www.mailtothefuture.com/public/logon?http://www.mailtothefuture.com/
1457 www.mailtothefuture.com
1458 #MASTER# PROBLEM-URL: http://support.microsoft.com/default.aspx?scid=KB;en-us;q219110
1459 support.microsoft.com/
1460 #MASTER# PROBLEM-URL: http://www.alexa.com/data/details/traffic_details?q=blogspot&url=http://www.blogalia.com
1461 www.alexa.com
1462 #MASTER# PROBLEM-URL: http://www.translate.ru/url/tran_url.asp?lang=es&url=http%3A%2F%2Fos2progg.by.ru%2Findex.shtml&direction=rs&template=General&cp1=NO&cp2=NO&autotranslate=on&transliterate=on&psubmit2.x=68&psubmit2.y=12
1463 www.translate.ru/url/
1464 #MASTER# PROBLEM-URL: http://schneegans.de/sv/?url=http%3A%2F%2Fwww.freebsd.org%2F&schema=%28Detect+automatically%29&encoding=%28Detect+automatically%29&htmlcomp=%28Detect+automatically%29
1465 schneegans.de/
1466 #MASTER# PROBLEM-URL: http://config.privoxy.org/edit-actions-submit?f=user ... &redirect_mode=http%3A%2F%2Fwww.privoxy.org%2F
1467 config.privoxy.org/
1468
1469 #----------------------------------------------------------------------------
1470 # No filtering for sourcecode or other automatically parsed content
1471 #----------------------------------------------------------------------------
1472 {-filter}
1473 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
1474 cvs.
1475 /.*(cvs(view|web)|viewcvs)
1476 #MASTER# REMARKS: The same for Subversion
1477 #MASTER# PROBLEM-URL: http://svn.sourceforge.net/
1478 svn.
1479 websvn.
1480 /(.*/)?svn/
1481 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
1482 #MASTER# REMARKS: Jeez, could you please stay with one of them?
1483 liveupdate.symantec.com
1484 liveupdate.liveupdatesymantec.com
1485 liveupdate.symantecliveupdate.com
1486 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
1487 www.bookmarklets.com
1488 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
1489 www.squarefree.com/bookmarklets/
1490 #MASTER# DONT-VERIFY
1491 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
1492 swquery.apple.com
1493 swscan.apple.com
1494 #MASTER# PROBLEM-URL: http://atl.speakeasy.net/300k
1495 #MASTER# REMARKS: These are various US DSL speed tests sites, where MIME is wrong
1496 .speakeasy.net/\d+k
1497 #MASTER# PROBLEM-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=185033
1498 .debian.org
1499 #MASTER# DONT-VERIFY
1500 #MASTER# REMARKS: Popular bug-tracking system - likely to contain code
1501 bugzilla.
1502 .tldp.org
1503 #MASTER# REMARKS: mail should not be filtered 09/18/06
1504 webmail.
1505 #MASTER# REMARKS: all the world is wikified 09/02/06. Generic wiki un-filterers.
1506 .wiki*.
1507 .*wiki.
1508 /.*wiki/
1509 #MASTER# REMARKS: protect some google projects from accidental JS/HTML tampering, etc
1510 maps.google.
1511 .google.com/calendar
1512 #MASTER# REMARKS: A lot of code and docs on these sites:
1513 code.
1514 developer.
1515 .mozdev.org
1516 .mozilla.org
1517 .perl.org
1518 .cpan.org
1519 .webdeveloper.com
1520 .ibm.com/developerworks
1521 .apache.org/docs
1522 .comptechdoc.org
1523 .webmonkey.com
1524 .webreference.com
1525 docs.sun.com
1526 java.sun.com
1527 .thescripts.com
1528 .php.net
1529 .phpdeveloper.org
1530 .oreillynet.com/pub
1531 .devshed.com
1532 .htmlgoodies.com
1533 .javascript.com
1534 javascript.internet.com
1535 .w3schools.com
1536 .devguru.com
1537 javascriptkit.com
1538 .xulplanet.com
1539 .perl.com/language/newdocs
1540 .freebsd.org
1541 .watson.org
1542 .netbsd.org
1543 .openbsd.org
1544 .dragonflybsd.org
1545 .freedesktop.org
1546 #MASTER# REMARKS: Bug trackers like Flyspray and Mailinglist interfaces like Mailman:
1547 /(.*/)?flyspray/
1548 /(.*/)?mail(man|archive|inglists?)/
1549 bugs.
1550 #MASTER# REMARKS: Actionsfile tracker 1555909 09/17/06, various problems with cpu and logging in.
1551 quoka.de
1552
1553 #----------------------------------------------------------------------------
1554 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1555 # workaround is to use zlib.output_compression):
1556 # (Section obsolete as of Privoxy 3.0.3, which has workaround)
1557 #----------------------------------------------------------------------------
1558 #{-prevent-compression}
1559 #MASTER# PROBLEM-URL: http://www.powie.de/
1560 #www.powie.de
1561 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1562 #www.phpcenter.de
1563 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1564 #www.timeanddate.com
1565 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1566 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1567 #.pclinuxonline.com
1568 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1569 #.dungeoncrawl.org
1570 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1571 #www.digitalspy.co.uk
1572 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1573 #www.audio-illumination.org/forums/
1574 #MASTER# PROBLEM-URL: http://www.catchword.com/
1575 #www.catchword.com
1576 #MASTER# PROBLEM-URL: http://www.ubernet.org
1577 #www.ubernet.org
1578 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1579 #www.ooodocs.org
1580 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1581 #www.ntcompatible.com
1582 #MASTER# PROBLEM-URL: http://www.winehq.com/
1583 #.winehq.com
1584 #MASTER# PROBLEM-URL: http://www.dotcomtod.de/
1585 #.dotcomtod.de/
1586 #MASTER# PROBLEM-URL: http://www.tweakers.net
1587 #.tweakers.net
1588 #MASTER# PROBLEM-URL: http://www.troublesathome.nl
1589 #.troublesathome.nl
1590 #MASTER# PROBLEM-URL: http://www.art.softshape.com
1591 #.art.softshape.com
1592
1593 #----------------------------------------------------------------------------
1594 # The first frame of the gif animation is more useful here:
1595 #----------------------------------------------------------------------------
1596 {+deanimate-gifs{first}}
1597 #MASTER# PROBLEM-URL: http://www.pricecontrast.com/
1598 #MASTER# REMARKS: Animation shows phone number
1599 .pricecontrast.com
1600
1601 #----------------------------------------------------------------------------
1602 # Innocent images in standard banner sizes found here:
1603 #----------------------------------------------------------------------------
1604 {-filter{banners-by-size}}
1605 #MASTER# PROBLEM-URL: http://www.max.de/ratgeber/
1606 .max.de
1607 #MASTER# PROBLEM-URL: http://www.unmuseum.org/pirate.htm
1608 www.unmuseum.org
1609 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hints.htm
1610 www.connected-media.com/.*/hints\.htm
1611 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244
1612 www.pricegrabber.com/search_getprod.php
1613 #MASTER# PROBLEM-URL: http://www.ebgames.com/ebx/categories/products/product.asp?pf_id=158422
1614 www.ebgames.com/ebx/.*/product.asp\?
1615 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1616 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1617 .cnn.com
1618 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1619 #MASTER# REMARKS: 120x90 content images
1620 .gamespot.com/gamespot
1621 .cnet.com
1622 #MASTER# PROBLEM-URL: http://www.connected-media.com/riven/hint.htm
1623 www.connected-media.com/riven/
1624 #MASTER# PROBLEM-URL: http://www.wral.com/
1625 www.wral.com
1626 #MASTER# PROBLEM-URL: http://www.canada.com/calgary/
1627 www.canada.com
1628 #MASTER# PROBLEM-URL: http://www.theonionavclub.com
1629 www.theonionavclub.com
1630 #MASTER# PROBLEM-URL: http://www.lowermybills.com/servlet/LMBServlet?the_action=NavigateLongDistanceResults&sourceid=meweapu7att203500227&areacode=770&prefix=650&Go.x=23&Go.y=9
1631 #MASTER# REMARKS: Actually needs banners
1632 www.lowermybills.com
1633 #MASTER# PROBLEM-URL: http://www.theonionavclub.com
1634 www.theonionavclub.com
1635 #MASTER# PROBLEM-URL: http://www.care2.com/send/catbirthd1.html
1636 www.care2.com
1637 #MASTER# PROBLEM-URL: http://www.cartoonnetwork.com/
1638 www.cartoonnetwork.com/
1639 #MASTER# PROBLEM-URL: http://www.anybrowser.org/campaign/
1640 www.anybrowser.org
1641 #MASTER# PROBLEM-URL: http://images.google.de/images?q=cookie+monster&svnum=10&hl=de&lr=&ie=UTF-8&oe=UTF-8&start=40&sa=N
1642 images.google.
1643 #MASTER# PROBLEM-URL: http://www.local6.com/news/1821238/detail.html
1644 www.local6.com/
1645 #MASTER# PROBLEM-URL: http://www.pbs.org/wgbh/pages/roadshow/series/highlights/2003/albuquerque/index.html
1646 www.pbs.org/wgbh/pages/roadshow/series
1647 #MASTER# PROBLEM-URL: http://objects.povworld.org/cat/Toys/for_Adults/
1648 objects.povworld.org/cat/
1649 #MASTER# PROBLEM-URL: http://www.xach.com/gimp/tutorials/tiles.html
1650 www.xach.com/gimp/
1651 #MASTER# PROBLEM-URL: http://www.mapquest.com/directions/main.adp?go=1&do=nw&ct=NA&1y=US&1a=255+w+88+st&1p=&1c=&1s=&1z=10024&2y=US&2a=20+milltown+rd&2p=&2c=&2s=&2z=10509&lr=2
1652 #MASTER# REMARKS: The destination map at the bottom of the page.
1653 www.mapquest.com/directions/
1654 #MASTER# PROBLEM-URL: http://www.theonion.com/
1655 www.theonion.com/
1656 #MASTER# PROBLEM-URL: http://www.bookofratings.com/dangersymbols2.html
1657 www.bookofratings.com
1658 #MASTER# PROBLEM-URL: http://www.pattilupone.net/gallery.html
1659 www.pattilupone.net/gallery.html
1660 #MASTER# PROBLEM-URL: http://www.animositisomina.com/discog/present.php4
1661 www.animositisomina.com/discog/
1662 #MASTER# PROBLEM-URL: http://www.gamespot.com/pc/rpg/deusexinvisiblewar/screenindex.html
1663 www.gamespot.com/.*/screenindex\.html
1664 #MASTER# PROBLEM-URL: http://www.ambrosiasw.com/games/evn/desktops.html
1665 www.ambrosiasw.com/
1666 #MASTER# PROBLEM-URL: http://www.capitalnews9.com/
1667 www.capitalnews9.com
1668 #MASTER# PROBLEM-URL: http://www.golitestore.com/store/products.asp?dept=1003
1669 www.golitestore.com/store
1670 #MASTER# PROBLEM-URL: http://www.thinkgeek.com/
1671 www.thinkgeek.com/
1672 #MASTER# PROBLEM-URL: http://oca.microsoft.com/en/Welcome.asp
1673 .microsoft.com
1674 #MASTER# PROBLEM-URL: http://javabog.dk/ijk/
1675 javabog.dk/ijk/
1676 #MASTER# REMARK: Per Debian bug report #319025
1677 .w3.org
1678 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1679 .indymedia.org
1680
1681 #----------------------------------------------------------------------------
1682 # These don't work without the referrer information:
1683 #----------------------------------------------------------------------------
1684 {-hide-referrer}
1685 #MASTER# PROBLEM-URL: http://kickme.to/FOSI
1686 /cgi-bin/fosi.cgi
1687 #MASTER# PROBLEM-URL: http://www.abcnews.com/
1688 printerfriendly.abcnews.com
1689 #MASTER# PROBLEM-URL: http://www.ask.com/
1690 .ask.com
1691 #MASTER# PROBLEM-URL: http://www.amazon.de/exec/obidos/ASIN/B000067CPX/028-5048678-2899722
1692 www.amazon.de/exec/obidos/clipserve/
1693 #MASTER# PROBLEM-URL: http://www.lufthansa.de/  http://www.lufthansa.com/  http://cms.lufthansa.com/ 
1694 .lufthansa.
1695 #MASTER# REMARKS: These are movie clips, linked from http://us.imdb.com
1696 .totaleclips.com
1697 #MASTER# PROBLEM-URL: http://www.mandrakelinux.com/en/ftp.php3
1698 #MASTER# REMARKS: Link to download page breaks
1699 www.mandrakelinux.com/en/ftp.php3
1700 #MASTER# REMARKS: Actions Tracker 1313157
1701 validator.w3.org/check\?uri=referer
1702 #MASTER# REMARKS: Fixes Debian Bug #250407
1703 .petitiononline.com/mod_perl/signed.cgi
1704
1705
1706 #----------------------------------------------------------------------------
1707 # These animated gifs are either useful or nice:
1708 #----------------------------------------------------------------------------
1709 {-deanimate-gifs}
1710 #MASTER# PROBLEM-URL: http://www.care2.com/
1711 #MASTER# REMARKS: Wanted animations on ecards
1712 .care2.com
1713 .care-mail.com
1714 #MASTER# PROBLEM-URL: http://www.ameritrade.com
1715 #MASTER# REMARKS: Animated link texts
1716 www.ameritrade.com
1717 #MASTER# PROBLEM-URL: http://www.myrealbox.com/a?B.KL.U6wQ.d
1718 #MASTER# REMARKS: Bogus web server doesn't close connection -> deanimation doesn't terminate
1719 www.myrealbox.com
1720 #MASTER# PROBLEM-URL: http://weather.chicagotribune.com/radar/station.asp?ID=LOT19&type=loop
1721 #MASTER# REMARKS: These are weather radar images.
1722 .wunderground.com
1723 #MASTER# PROBLEM-URL: http://www.freewarepalm.com/games/spacetrader.shtml
1724 #MASTER# REMARKS: Alternating screenshots
1725 www.freewarepalm.com/images/products
1726 #MASTER# PROBLEM-URL: http://www.capitalnews9.com/
1727 images.newsx.cc/news9albany_media/weather/
1728 #MASTER# PROBLEM-URL: http://www.wunderground.com/radar/station.asp?ID=MPX19&type=loop&clutter=1
1729 66.28.250.180/data/
1730 #MASTER# PROBLEM-URL: http://www.stanford.edu/group/pandegroup/folding/
1731 www.stanford.edu/group/pandegroup/folding/villin/
1732 #MASTER# PROBLEM-URL: http://www.teamquest.com/html/gunther/laquiz.shtml
1733 www.teamquest.com/gifs/gunther/
1734 #MASTER# REMARKS: 09/12/06 Art site, and ad-free
1735 .rubberslug.com
1736
1737 #----------------------------------------------------------------------------
1738 # These sites are so abusive that we need to kill all JS event bindings (and
1739 # probably a break a lot along the way)
1740 #----------------------------------------------------------------------------
1741 {+filter{js-radical}}
1742 #MASTER# PROBLEM-URL: http://www.planetspiele.de/
1743 .planetspiele.de
1744 216.12.219.40
1745
1746 #----------------------------------------------------------------------------
1747 # The "site-specifics" filter has special cures for problems found here:
1748 #----------------------------------------------------------------------------
1749 {+filter{site-specifics}}
1750 #MASTER# PROBLEM-URL: http://www.spiegel.de/static/js/flash-plugin.js
1751 www.spiegel.de/static/js/flash-plugin\.js
1752 #MASTER# PROBLEM-URL: http://www.quelle-bausparkasse.de/
1753 www.quelle-bausparkasse.de/$
1754 #MASTER# PROBLEM-URL: http://de.groups.yahoo.com/group/die-spinner/interrupt?st=2&ln=die-spinner&m=1&done=%2Fgroup%2Fdie-spinner%2Fmessage%2F416
1755 .groups.yahoo.com/group/
1756 #MASTER PROBLEM-URL: http://www.nytimes.com/
1757 www.nytimes.com/
1758
1759 #----------------------------------------------------------------------------
1760 # Content under these TLDs is most probably in character sets which the
1761 # demoronizer filter would mess up
1762 #----------------------------------------------------------------------------
1763 {-filter{demoronizer}}
1764 .jp
1765 .cn
1766 .tw
1767 .ru
1768 .kr
1769
1770 #----------------------------------------------------------------------------
1771 # Misc special rules:
1772 #----------------------------------------------------------------------------
1773 {-filter{content-cookies} -filter{webbugs}}
1774 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1775 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1776 www.friendscout24.de
1777 #MASTER# PROBLEM-URL:  http://www.webreference.com/js/column8/property.html
1778 #MASTER# REMARKS: Explains how content cookies work
1779 www.webreference.com/js/column8/property.html
1780
1781 {-deanimate-gifs -filter{all-popups} -kill-popups}
1782 #MASTER# PROBLEM-URL: http://www.valueclick.com/html/
1783 #MASTER# REMARKS: Know your enemy ;-)
1784 www.valueclick.com
1785
1786 {-filter{banners-by-size} -deanimate-gifs}
1787 #MASTER# PROBLEM-URL: http://realguide.real.com/games/
1788 #MASTER# REMARKS: They use banner-sized animated images
1789 realguide.real.com/games
1790
1791 {-handle-as-image}
1792 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
1793 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs
1794 .doubleclick.net/adi
1795 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
1796 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs
1797 view.atdmt.com/(.*/)?iview/
1798
1799 {+block}
1800 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html
1801 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
1802 www.geocities.com/js_source
1803
1804 {-filter{fun}}
1805 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1806 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1807 /(.*/)?user-manual/filter-file.html
1808
1809 {+filter{img-reorder} +filter{banners-by-link}}
1810 #MASTER# PROBLEM-URL: http://www.dn.se/
1811 #MASTER# REMARKS: Can't catch by size or location
1812 www.dn.se
1813
1814 {-filter{img-reorder}}
1815 #MASTER# PROBLEM-URL: http://images.google.com
1816 #MASTER# REMARKS: Google images don't show up with img-reorder on
1817 images.google.
1818
1819 {-filter{js-annoyances}}
1820 #MASTER# PROBLEM-URL: http://www.munichre.com/
1821 #MASTER# REMARKS: Endless reload loop if referrer info supressed
1822 www.munichre.com
1823 #MASTER# PROBLEM-URL: http://www.sfgate.com
1824 .sfgate.com
1825 #MASTER# PROBLEM-URL: http://www.nasa.gov
1826 #MASTER# REMARKS: No progress past main page without js-annoyances
1827 .nasa.gov
1828 #MASTER# REMARKS: Exclude per Debian bug report #377843
1829 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1830 .cnrs.fr 
1831 #MASTER# REMARKS: Exclude per Debian bug report #377843
1832 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1833 blogs.msdn.com
1834
1835 {-filter{unsolicited-popups}}
1836 #MASTER# DONT-VERIFY
1837 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1838 /.*mt.cgi$
1839 #MASTER# PROBLEM-URL: http://www.discovery.de/
1840 .discovery.de
1841 #MASTER# PROBLEM-URL: http://www.bankrate.com/yclc/calc/mortgage-calculator/mortgage-calculator.asp?
1842 www.bankrate.com/brm/
1843 #MASTER# PROBLEM-URL: http://www.ukoln.ac.uk/cgi-bin/dcdot.pl?mode=auto&url=http://www.skripczynski.de/people/skripi/bookmark.shtml
1844 www.ukoln.ac.uk/cgi-bin/dcdot.pl
1845 #MASTER# PROBLEM-URL: http://www.metrolounge.de
1846 www.metrolounge.de
1847 #MASTER# PROBLEM-URL: http://www.mcmaster.com
1848 www.mcmaster.com/products.html
1849 #MASTER# PROBLEM-URL: http://www.nbc4.com/news/2672416/detail.html
1850 cf.nbc4.com/
1851 #MASTER# PROBLEM-URL: http://www.hh.schule.de/ak/nt/
1852 www.hh.schule.de/ak/nt/
1853 #MASTER# REMARKS: Exclude per Debian bug report #377843
1854 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1855 .cnrs.fr 
1856 #MASTER# REMARKS: Exclude per Debian bug report #377843
1857 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1858 blogs.msdn.com
1859
1860 {+fast-redirects{check-decoded-url} -block}
1861 #MASTER# PROBLEM-URL: http://isbn.nu/0596001088/price/2.html
1862 www.commission-junction.com/track/
1863 #MASTER# PROBLEM-URL: http://uk.rd.yahoo.com/M=200059723.200849546.202365062.200414073/D=ukhmpg/S=15426100:TEAR/A=200396897/R=1119/id=img1_nocap_dial/*http://ad.uk.doubleclick.net/clk;5982435;8261020;g?http://www.lunnpoly.com
1864 #MASTER# REMARKS: Basically all of Yahoo's outbound links
1865 .*rd.yahoo.com/
1866
1867 {-filter{webbugs}}
1868 #MASTER# REMARKS: Has nasty webbugs-in-JS-string syntaxy problem
1869 www.meteo.fr
1870
1871 {+block}
1872 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1873 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1874 /antitheft\.php
1875
1876 {+filter{tiny-textforms}}
1877 .sourceforge.net/tracker
1878
1879 {+downgrade-http-version}
1880 #MASTER# REMARKS: This is work-around for CUPS http configuration.
1881 :631
1882 #MASTER# PROBLEM-URL: http://cr.yp.to/
1883 cr.yp.to/
1884 #MASTER# PROBLEM-URL: http://www.canada.com/vancouver/
1885 www.canada.com/
1886
1887 { -crunch-outgoing-cookies \
1888   -crunch-incoming-cookies \
1889   +session-cookies-only \
1890 }
1891 www.versiontracker.com/
1892
1893 # The JS abuse hall of shame:
1894 #
1895 { +filter{js-events} }
1896 #MASTER# PROBLEM-URL: http://www.pharmcast.com/WarningLetters/Yr2002/December2002/J&J1202.htm
1897 www.pharmcast.com/