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