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