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