e8ad211dd111406305be49d82cf3e48c1e3f4d43
[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.53 2007/01/16 10:54:36 hal9 Exp $
13 #
14 #  Requires    :  This version requires Privoxy v3.0.7 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 - 2007 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.7
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 /phpads(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 #MASTER# REMARKS: Added 12/28/06 per Adam Piggott
668 /(.*/)?(full)?pop[-_]?(up|over|under|open(er)?)?s?(/|\.)
669 /(.*/)?((flash)?pop|live(cnt|count(er)?)).*\.(js|php|cgi)
670
671 #############################################################################
672 # Generic unblockers by path:
673 #############################################################################
674 {-block}
675 #MASTER# DONT-VERIFY (generic)
676 /.*ad(sl|v(i[cs]|o|an|ertencia|ent|.*search)) # advice/advisories/advan*/advertencia (spanish)
677 /.*(lo|thre|he|d|gr|l|ro|re|squ|class(ified)?)ads
678 /.*account
679 support./(.*/)?track
680
681 #############################################################################
682 # Exceptions for academia and non-profits
683 #############################################################################
684 .edu
685 .ac.*/
686 .uni-*.de
687 .tu-*.de
688 .gov
689 #MASTER# REMARKS: 09/18/06 Tracker request
690 .hs-*.de 
691 .fh-*.de
692 #MASTER# REMARKS: Try to avoid harmless names in non-commercial organizations. Added 10/24/06
693 #MASTER# PROBLEM URL: http://www.gnu.org/graphics/gnu-head-banner.png
694 .org/.*(image|banner)
695
696 #############################################################################
697 # Catch-all for false-positives that are just TOO obvious to let go
698 #############################################################################
699 {+block}
700 #MASTER# PROBLEM URL: http://ads.facebook.com/ads/spreadshirt/banner120x600.jpg
701 #MASTER# REMARKS: Going for adsrv, adserve, adserver*.
702 .ads[erv][rv]*.
703 .ads.
704 /(.*/)?ad(se?rv|click|stream|image|log|farm|script)
705
706 #############################################################################
707 # Site-specific block patterns;
708 #############################################################################
709 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/ 10/18/06
710 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
711 .hitbox.com 
712 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html 10/18/06
713 .the-gadgeteer.com/cgi-bin/getimage.cgi/
714 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
715 dest.travelocity.com/website/destinations/images/partner_frommers.gif
716 dest.travelocity.com/website/destinations/images/travelex_logo.gif
717 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912 10/18/06
718 #MASTER# BLOCK-REFERRER: http://www.imdb.com/help/boards/markup
719 #MASTER# REMARKS: 2nd is for emoticons exception
720 i.imdb.com/Photos/CMSIcons/(?!buttons|emoticons)
721 rcm.amazon.com
722 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/ 10/18/06
723 .nytimes.com/adx/
724 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/ 10/19/06
725 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
726 #www.popupad.net/ats/
727 .adtrak.net 
728 .elitemediagroup.net
729 .popuptraffic.com
730 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm 10/19/06
731 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
732 .hit-now.com
733 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/ 10/18/06
734 [a-v]*.valueclick.com
735 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
736 #MASTER# REMARKS: Yea, all these at one site! 10/19/06
737 .cpays.com
738 .oxado.com
739 .adult*finder.com
740 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
741 /scripts/cms/xcms.asp
742 #MASTER# REMARKS: Actionsfile tracker 1559740 09/16/06 See http://www.vibrantmedia.com/whatisIntelliTXT.asp
743 #MASTER# BLOCK-REFERRER: http://www.hartware.de/news_40795.html
744 /.*intellitxt/
745 .intellitxt.com
746 #MASTER# REMARKS: per Actions File tracker: #1597893 11/17/06, similar to intellitxt
747 .kontera.com
748 #MASTER# REMARKS: Video advertizer, owned by doubleclick.net.
749 #MASTER# BLOCK-REFERRER: http://www.ign.com/ 09/17/06
750 .klipmart.com
751 #MASTER# BLOCK-REFERRER: http://gamespot.com 09/26/06
752 #MASTER# REMARKS: adlog.com.com and ads.com.com
753 ad*.com.com
754 #MASTER# REMARKS: used in redirects: dw.com.com 12/18/06
755 #MASTER# BLOCK-REFERRER: http://verizon.net 09/29/06
756 sales.liveperson.net
757 #MASTER# BLOCK-REFERRER: www.avclub.com/ 10/14/06
758 .iad.liveperson.net
759 #MASTER# BLOCK-REFERRER: http://homedepot.com 09/29/06
760 #MASTER# BLOCK-REFERRER: http://weather.com 11/03/06
761 .coremetrics.com/
762 #MASTER# BLOCK-REFERRER: http://wired.com 09/29/06
763 .realmedia.com/data/
764 #MASTER# REMARKS: webbugs, ads and user tracking js in many places.
765 #MASTER# BLOCK-REFERRER: http://washingtonpost.com & http://tomshardware.com 09/29/06
766 .revsci.net
767 #MASTER# BLOCK-REFERRER: http://www.time.com/time/business/article/0,8599,1073341,00.html 09/29/06
768 .clickability.com
769 /.*clickability(.com)?/
770 #MASTER# BLOCK-REFERRER: http://washingtonpost.com 09/29/06
771 stats.*.ihost.com
772 #MASTER# BLOCK-REFERRER: http://msnbc.com and many others 09/29/06
773 .2o7.net
774 #MASTER# BLOCK-REFERRER: http://microsoft.com 09/29/06
775 .webtrends.com
776 #MASTER# BLOCK-REFERRER: http://tomshardware.com 09/29/06
777 .tacoda.
778 #MASTER# BLOCK-REFERRER: http://www.torrentazos.com 10/04/06
779 ad.theadhost.com
780 #MASTER# BLOCK-REFERRER: http://www.stuff.co.nz 10/06/06
781 .adbureau.net
782 #MASTER# BLOCK-REFERRER: http://drudgereport.com 10/06/06
783 .adgardener.com
784 #MASTER# BLOCK-REFERRER: http://www.connected-media.com/riven/hints.htm 10/14/06
785 #MASTER# REMARKS: ads.kw.revenue.net/? etc
786 .revenue.net
787 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html 10/15/06
788 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
789 .geocities.com/js_source
790 #MASTER# BLOCK-REFERRER: http://www.google.com 09/28/06
791 .dartsearch.net
792 #MASTER# BLOCK-REFERRER: http://wunderground.com 11/02/06
793 .zedo.com
794 #MASTER# BLOCK-REFERRER: http://realtor.org 11/03/06
795 .trk.sodoit.com/
796 #MASTER# BLOCK-REFERRER: http://www.freenews.fr 11/23/06 Actionsfile feedback item #1597034
797 .espace.netavenir.com
798 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com/ 12/28/06
799 .hitfarm.com
800
801 #----------------------------------------------------------------------------
802 # Misc Web-bugs, JS and just plain Junk. Images here aren't normal images.
803 #----------------------------------------------------------------------------
804 {+block +handle-as-empty-document -handle-as-image}
805 #MASTER# REMARKS: signature for user tracking nytimes, cnn.com,latimes.com and many others. 10/06/06
806 /b/ss/.+
807 #MASTER# BLOCK-REFERRER: http://www.thesun.co.uk/article/0,,11071-10784,00.html
808 #MASTER# REMARKS: widespread hitbox signature 10/06/06
809 /HG\?hc=
810 #MASTER# BLOCK-REFERRER: http://macaddict.com 10/06/06
811 .visistat.com
812 #MASTER# REMARKS: See <http://www.google.com/analytics/> for user tracking.
813 #MASTER# REMARKS: There is a ssl.google-analytics as well.
814 .google-analytics./
815 #MASTER# BLOCK-REFERRER: http://versiontracker.com and many others. 10/20/06
816 /(.*/)?__utm.gif\?
817 #MASTER# REMARKS: Below Moved here from -handle-as-image 10/16/06 ##########
818 #MASTER# BLOCK-REFERRER: http://forums2.gardenweb.com/forums/orchids/ 09/25/06
819 #MASTER# REMARKS: Mostly JS and plain text stuff
820 .overture.
821 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
822 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs 10/15/06
823 .doubleclick.net/adi
824 .doubleclick.net/(.*/)?adj/
825 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
826 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs 10/15/06
827 view.atdmt.com/(.*/)?iview/
828 #MASTER# REMARKS: Above Moved here from -handle-as-image 10/16/06 ##########
829 #MASTER# REMARKS: Generic, re: tracking.foxnews.com/HG? 10/01/06
830 tracking.
831 #MASTER# BLOCK-REFERRER: http://netcraft.com and many others 10/22/06
832 /(.*/)?adjs\.php\?
833 #MASTER# BLOCK-REFERRER: http://washingpost.com and others 10/25/06
834 /.*\.gif\?D=DM
835 #MASTER# BLOCK-REFERRER: http://www.washingtonpost.com/
836 #stats.surfaid.ihost.com/(crc/)?images/(bounce/)?uc.GIF
837 #MASTER# BLOCK-REFERRER: http://www.ibm.com 10/09/06
838 #MASTER# REMARKS: Similar hostname and paths appear in multiple locations.
839 stats./c?rc/.*/uc.gif
840 #MASTER# BLOCK-REFERRER: http://priceline.com 10/20/06
841 #MASTER# REMARKS: User tracking, webbug stuff
842 /(.*/)?dcs.gif\?&?dcs
843 #MASTER# BLOCK-REFERRER: http://www.msnbc.com 10/07/06
844 #MASTER# REMARKS: And MANY others. Webbug stuff.
845 /(.*/)?c(lear)?\.gif\?.
846 #MASTER# BLOCK-REFERRER: http://www.investorguide.com 10/08/06
847 #MASTER# BLOCK-REFERRER: http://foodnetwork.com, http://gardenweb.com 10/20/06
848 #MASTER# REMARK: webbug type gif used in MANY places.
849 #MASTER# REMARK: Too many false positives
850 #/(.*/)?(clear|(trans_?1x|blank)?1).gif
851 #MASTER# REMARK: Let's try this way.
852 /(.*/)?(clear|blank|(trans_?|1x)?1).gif\?.
853 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/epdf/ 10/08/06
854 .bc.yahoo.com/b\?P=
855 #MASTER# BLOCK-REFERRER: http://www.motherboard.cz 10/30/06
856 x*.alexa.com
857 #MASTER# BLOCK-REFERRER: http://actorstheatre.org 11/02/06
858 stats./.*\.gif\?
859 #MASTER# BLOCK-REFERRER: http://mplayernetwork.com 11/07/06
860 #MASTER# BLOCK-REFERRER: http://eetimes.com 09/26/06
861 /event.ng/
862 #MASTER# BLOCK-REFERRER: http://www.homedepot.com/ 11/08/06
863 #MASTER# BLOCK-REFERRER: http://www.williams-sonoma.com/ 11/08/06
864 /cm\?[tc]
865 #MASTER# BLOCK-REFERRER: http://www.snapfiles.com/feedback/ 12/13/06 SF tracker
866 .snapfiles.net/rotation/.*\.asp
867 #MASTER# BLOCK-REFERRER: not provided. SF tracker #1616034 12/16/06
868 #MASTER# COMMENT: JS pop-ups
869 spa.snap.com/
870 #MASTER# BLOCK-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html 12/18/06
871 dw.com.com/clear/
872
873 #----------------------------------------------------------------------------
874 # JavaScripts for ad and popup generation
875 #----------------------------------------------------------------------------
876 #MASTER# BLOCK-REFERRER: http://www.chip.de/artikel/c_artikelunterseite_10423683.html
877 pagead*.googlesyndication./.*\.js
878 #MASTER# REMARKS: broadening scope from a.tfag.de/js.ng/ 10/23/06
879 /js\.ng/
880 #MASTER# BLOCK-REFERRER: http://www.britannica.com/ 10/23/06
881 /popunder
882 #MASTER# BLOCK-REFERRER: http://www.pcmag.com/ 11/22/06 per SF Tracker # 1601148
883 /js/slider\.js
884 #MASTER# BLOCK-REFERRER: http://www.earthcore.com/ feedback item #1605385 12/14/06
885 /t\.php\?cat=.*&kw=.*&sc=
886
887 #############################################################################
888 # Generic block-as-image patterns:
889 #############################################################################
890 {+block-as-image}
891 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
892 /.*ad_?image\.(php|cgi)
893 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
894 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
895 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
896 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
897 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
898 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
899 /.*recips?/
900 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
901 /bandeaux/
902 #MASTER# COMMENT: SF tracker 09/15/06
903 /.*client_?ad\.(php|cgi)
904 #MASTER# COMMENT: SF tracker 09/15/06
905 /.*AIM_UAC.adp
906
907 #############################################################################
908 # Site-specific block-as-image patterns:
909 #############################################################################
910 #----------------------------------------------------------------------------
911 # Banner farms:
912 #----------------------------------------------------------------------------
913 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
914 #MASTER# BLOCK-REFERRER: http://www.aol.com/
915 #MASTER# COMMENT: There are at least ar.atwola and pr.atwola. 10/01/06
916 ?r.atwola.com 
917 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
918 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
919 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
920 #MASTER# REMARKS: Do NOT block /adj or /adi here since these are typically JS
921 .[a-vx-z]*.doubleclick.net/(?!(.*/)?ad[ji])
922 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/  10/17/06
923 .*servedby.advertising.com
924 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
925 .a.yimg.com/(?:(?!/i/).)*$
926 .a[0-9].yimg.com/(?:(?!/i/).)*$
927 .yimg.com/(.*/)?a/
928 .yimg.com/.*/(flash|java)/promotions
929 .yimg.com/a/.*/flash/
930 #MASTER# DONT-VERIFY
931 bs*.gsanet.com
932 bs*.einets.com
933 #MASTER# DONT-VERIFY 
934 .qkimg.net
935 #MASTER# BLOCK-REFERRER: http://salon.com/ 10/19/06
936 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
937 #MASTER# REMARKS: Banner farms; just exclude their corp. info
938 [a-vx-z]*.atdmt.com/
939 #MASTER# BLOCK-REFERRER: http://www.exactaudiocopy.de/ 09/11/06
940 #MASTER# BLOCK-REFERRER: http://stanford.facebook.com/home.php 
941 .fastclick.net
942 #MASTER# BLOCK-REFERRER: http://www.math.com/school/subject2/lessons/S2U3L6DP.html 09/11/06
943 .casalemedia.com
944 #MASTER# BLOCK-REFERRER: http://www.macnn.com/ 10/09/06
945 kermit.macnn.com/
946 #MASTER# BLOCK-REFERRER: http://www.globalseeker.com/freesamples/ 10/09/06
947 quinst.com/images
948 valuepage.com/images
949 #MASTER# BLOCK-REFERRER: http://www.imdb.com/
950 ia.imdb.com/.*\.swf
951 #MASTER# BLOCK-REFERRER: http://www.dietngo.com/ 10/09/06
952 .reactivpub.
953 #MASTER# BLOCK-REFERRER: http://freemail.web.de/  10/17/06
954 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/11/19/politics/19DEAN.html?ex=1069822800&en=dc82dfff0502faeb&ei=5062&partner=GOOGLE
955 .as*.falkag.
956 #MASTER# BLOCK-REFERRER: http://www.macnn.com/news/18944 10/17/06
957 a.tribalfusion.com/
958 #MASTER# BLOCK-REFERRER: http://reviews.infosyncworld.com/palmos/featured/index.html?start=1&offset=10 10/19/06
959 .adserver.com/
960 #MASTER# BLOCK-REFERRER: http://computers.cnet.com/hardware/0-1027-404-20857400.html?tag=rev
961 #MASTER# REMARKS: Pointdexter
962 .ru4.com/
963 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/infos/actualites/detail_actu_marches.phtml?news=1510287
964 www.smartadserver.com/
965 #MASTER# BLOCK-REFERRER: http://www.chez.tiscali.fr/ 10/07/06
966 admedia.
967 #MASTER# DONT-VERIFY
968 #MASTER# REMARKS: Bannerfarm used by Morpheus file sharing software
969 jmcms.cydoor.com/
970 #MASTER# BLOCK-REFERRER: http://www.tech-report.com/etc/2003q2/3dmurk03/index.x?pg=7
971 #MASTER# REMARKS: Netshelter.com farm
972 #MASTER# REMARKS: Not found but leaving 10/07/06
973 .adtrix.com
974 #MASTER# BLOCK-REFERRER: http://discussion.brighthand.com/forumdisplay.php?s=fee44a5b2a6fc2e9e79d6472bc8fbe94&forumid=197 10/19/06
975 *[0-9].tribalfusion.com/
976 #MASTER# REMARKS: Actions file tracker 1547656 09/02/06
977 img.mediaplex.com
978 #MASTER# BLOCK-REFERRER: http://www.tomshardware.com/ 09/28/06
979 #MASTER# REMARKS: There is adfarm and altfarm.mediaplex
980 a*farm.mediaplex.com
981 #MASTER# REMARKS: Support request 1312362 09/08/06
982 #MASTER# DUPLICATED: adserver.itsfogo.com
983 #MASTER# BLOCK-REFERRER: http://www.multiproxy.org/anon_proxy.htm 09/10/06
984 view.atdmt.com
985 #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
986 #MASTER# BLOCK-REFERRER: http://www.heise.de/newsticker/meldung/61067
987 matrix.mediavantage.
988 #MASTER# REMARKS Ad generator, SF user tracker 09/11/06
989 .cibleclick.com
990 #MASTER# REMARKS: Ad generator 09/11/06  http://c1.netshelter.net/campaigns/ITTTech/itttech09_728x90.gif
991 #MASTER# BLOCK-REFERRER: http://www.osnews.com/ 09/11/06
992 .netracker.net
993 #MASTER# REMARKS: ad generator domain per SF tracker 09/11/06
994 .interclick.com
995 #MASTER# REMARKS: Ad generator http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
996 #MASTER# BLOCK-REFERRER: http://www.imdb.com/name/nm0000168/bio 09/12/06
997 .maxserving.com
998 #MASTER# REMARKS: Ad generator http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
999 #MASTER# BLOCK-REFERRER:  http://torrent.to/torrent/ 09/12/06
1000 .gonamic.de
1001 #MASTER# REMARKS: 09/11/06 example: img.webads.nl
1002 .webads.
1003 #MASTER# REMARKS: Ad generator http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
1004 #MASTER# BLOCK-REFERRER:  http://news.yahoo.com/news?tmpl=story&cid=534&e=1&u=/ap/20050613/ap_on_he_me/cancer_research
1005 .adlegend.com
1006 #MASTER# REMARKS: Ad generator 09/12/06 http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
1007 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/louisianaandmardigra/messages/1?viscount=100
1008 .belnk.com
1009 .euros4click.
1010 #MASTER# BLOCK-REFERRER: http://www.planet3dnow.de/cgi-bin/newspub/viewnews.cgi?id=1129904195 
1011 ads-*.quarterserver.
1012 #MASTER# BLOCK-REFERRER: http://adrian.adrian.org/ 10/07/06
1013 searchportal.information.com/
1014 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/17/06
1015 images.ibsys.com/
1016 #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
1017 .lduhtrp.net/image
1018
1019
1020 #----------------------------------------------------------------------------
1021 # Cross-site user tracking
1022 #----------------------------------------------------------------------------
1023 #MASTER# REMARKS: +block-as-image here
1024 #MASTER# BLOCK-REFERRER: http://os2.ru/ 10/07/06
1025 .*.*.spylog.com/
1026 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/ 10/07/06
1027 statse.webtrendslive.com
1028 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
1029 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
1030 spinbox.versiontracker.com/.*\.(gif|jpg)
1031 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/ 10/07/06
1032 stat.onestat.com
1033 #MASTER# BLOCK-REFERRER: http://www.global.net.uk/ 10/07/06
1034 .[a-vx-z]*.tradedoubler.com
1035 #MASTER# BLOCK-REFERRER: http://www.sharepoint.boo.pl/
1036 #MASTER# REMARKS: Not found, but left 10/07/06
1037 stat.webmedia.
1038 #MASTER# BLOCK-REFERRER: http://www.asp-php.net/index.php 10/07/06
1039 log*.xiti.com/
1040 log*.hit-parade.com/
1041 #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/884810.asp?0si=-&cp1=1
1042 www.xml.eshop.msn.com/tracksponsorimpression.asp
1043 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/ 10/07/06
1044 .imrworldwide.com
1045 #MASTER# REMARKS: Actionsfile feedback 1555719 09/10/06, and Debian Bug report 
1046 #MASTER# BLOCK-REFERRER: http://www.nrc.nl/ 09/12/06
1047 .clicktracks.com
1048 #MASTER# REMARK: Actionsfile tracker 1159072 09/12/06
1049 .etracker.
1050 #MASTER# REMARK: Actionsfile tracker 1243494 09/12/06
1051 #MASTER# BLOCK-REFERRER: http://www.spanked-slaves.com/movies14/bdsm14c.html
1052 .x-traceur.com
1053 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/ 10/05/06
1054 content.ipro.com
1055 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/default.asp 10/05/06
1056 .247realmedia.com
1057 #MASTER# BLOCK-REFERRER: http://www.samachar.com/ 10/05/06
1058 .sify.com
1059 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/06/06
1060 .searchignite.com
1061 #MASTER# BLOCK-REFERRER: http://www.sdtimes.com/ 10/07/06
1062 .statcounter.com
1063 #MASTER# BLOCK-REFERRER: http://www.dn.se/ 10/07/06
1064 .research-int.se/data
1065 #MASTER# BLOCK-REFERRER: http://www.chez.aliceadsl.fr/ 10/07/06
1066 .cybermonitor.com
1067 #MASTER# BLOCK-REFERRER: http://disney.go.com
1068 #MASTER# BLOCK-REFERRER: http://abcnews.com  10/15/06
1069 log.go.com/log
1070 #MASTER# BLOCK-REFERRER: http://www.care2.com 10/18/06
1071 stats.indextools.com
1072 #MASTER# BLOCK-REFERRER: http://www.techcrunch.com/ 12/16/06 #1616497 3 urls.
1073 tra*.measuremap.com
1074 .eurekster.com/sidebar
1075 tra*.mybloglog.com
1076 #MASTER# BLOCK-REFERRER:  http://www.polymervision.com/ 
1077 #MASTER# REMARKS: Actionsfile feedback item #1629370 01/16/07
1078 .guesttrace.
1079
1080 #----------------------------------------------------------------------------
1081 # Specific counters (see above for generic patterns)
1082 #----------------------------------------------------------------------------
1083 #MASTER# BLOCK-REFERRER: http://www.distrowatch.com/table.php?distribution=linex 10/19/06
1084 s*.sitemeter.com/meter
1085 #MASTER# BLOCK-REFERRER: http://personales.mundivia.es/lbouza/ 10/19/06
1086 fastcounter.bcentral.com/
1087 #MASTER# BLOCK-REFERRER: http://osnews.com/ 10/19/06
1088 bilbo.counted.com/
1089 #MASTER# BLOCK-REFERRER: http://enciclopedia.us.es/
1090 #MASTER# REMAKRKS: Not found, but leaving 10/19/06
1091 #[a-z][0-9].nedstatbasic.net/
1092
1093 #----------------------------------------------------------------------------
1094 # On-site ads and other single sources:
1095 #----------------------------------------------------------------------------
1096 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
1097 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest 10/07/06
1098 .travelocity./Sponsor_gifs/
1099 #MASTER# DONT-VERIFY
1100 #MASTER# REMARKS: Referenced from HTML-Emails (not checked 10/08/06)
1101 .weather.com/creatives/
1102 .weather.com/web/services/email/
1103 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html 10/08/06
1104 /.*/topslots/topslot
1105 .contextweb.com/
1106 .offermatica.com/
1107 #MASTER# BLOCK-REFERRER: http://www.jpost.com/ 10/08/06
1108 .adbrite.com
1109 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
1110 .jpost.com/images/\d+/promos/
1111 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/ 10/08/06
1112 .infoempleo.com/(pop-up|images(/Nueva/|/motor))
1113 #MASTER# BLOCK-REFERRER: http://www.hardocp.com/ 10/08/06
1114 hera.hardocp.com/
1115 #MASTER# BLOCK-REFERRER: http://people.aol.com/ 10/08/06
1116 leadback.advertising.
1117 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/ 10/08/06
1118 .yieldmanager.com/
1119 .displayadsmedia.com
1120 astalavista.box.sk/adult.*\.jpg
1121 #MASTER# BLOCK-REFERRER: http://www.bol.com.br/
1122 smartad.*.*.*
1123 #MASTER# BLOCK-REFERRER: http://www.dinside.no/ 10/08/06
1124 .dinside.no/annonsorer/
1125 #MASTER# BLOCK-REFERRER: http://www.heise.de/ 10/08/06
1126 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1127 /RealMedia/ads/
1128 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com 12/28/06 per SF tracker
1129 /top\.php\?d=.*\.[a-z]{2,5}
1130
1131 #############################################################################
1132 # Site-specific unblockers:
1133 #############################################################################
1134 {-block}
1135 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
1136 .faqs.org/banner\.html
1137 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
1138 bannerblind.mozdev.org
1139 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
1140 advogato.org
1141 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
1142 ad*.vhb.de
1143 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
1144 .globalintersec.com/adv
1145 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html 10/08/06
1146 banners.wunderground.com/
1147 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/ 10/09/06
1148 .openoffice.org/banners/
1149 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926 10/09/06
1150 #MASTER# REMARKS: Part of site decoration
1151 .amazon.com/.*/banners/
1152 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
1153 #MASTER# REMARKS: Javascripts whose absence messes the page
1154 .washingtonpost.com/wp-srv/
1155 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis 10/09/06
1156 .gnome.org
1157 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/ 10/09/06
1158 .nycsubway.org/img/banner
1159 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1160 .forgotten-ny.com/ADS/
1161 #MASTER# UNBLOCK-REFERRER: http://counter.li.org 10/09/06
1162 counter.li.org
1163 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/ 10/09/06
1164 adrian.adrian.org
1165 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/ 10/09/06
1166 adela.karlin.mff.cuni.cz
1167 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html 10/09/06
1168 .swcp.com/rtoads/
1169 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
1170 #MASTER# REMARKS: Don't block our own feedback process, even if the
1171 #MASTER# REMARKS: parameters contain block patterns
1172 .privoxy.org
1173 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
1174 sourceforge.net/.*tracker
1175 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
1176 .brawnylads.com
1177 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
1178 adzapper.
1179 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
1180 .altavista.com/web/adv
1181 #MASTER# UNBLOCK-REFERRER: http://rads.mcafee.com/rads/scripts/RADS.dll?QueryProduct2
1182 rads.mcafee.com/
1183 #MASTER# UNBLOCK-REFERRER: http://linuxfromscratch.org/cgi-bin/lfscounter.cgi
1184 linuxfromscratch.org/
1185 #MASTER# UNBLOCK-REFERRER: http://dv411.com/advc50.html
1186 dv411.com/.*advc50
1187 #MASTER# UNBLOCK-REFERRER: http://www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1188 .freeswan.org/
1189 #MASTER# UNBLOCK-REFERRER: http://www.arm.com/support/ads_faq?OpenDocument&ExpandSection=11 10/09/06
1190 www.arm.com/.*ads
1191 #MASTER# UNBLOCK-REFERRER: http://www.anybrowser.org/campaign/ 10/09/06
1192 www.anybrowser.org/
1193 #MASTER# UNBLOCK-REFERRER: http://www.tads.org/ 10/09/06
1194 www.tads.org/
1195 #MASTER# UNBLOCK-REFERRER: http://www.mbe.com/redir/packtrack.asp 10/10/06
1196 .mbe.com/redir/packtrack.asp
1197 .iship.com/trackit/
1198 #MASTER# UNBLOCK-REFERRER: http://www.esis.com.au/AdvSerialCards/Firewire.htm 10/11/06
1199 .esis.com.au/AdvSerialCards
1200 #MASTER# UNBLOCK-REFERRER: http://www.familysearch.org/ 10/11/06
1201 .familysearch.org/.*banner
1202 #MASTER# UNBLOCK-REFERRER: http://coder.com/ 10/11/06
1203 coder.com/creations/banner/
1204 #MASTER# UNBLOCK-REFERRER: http://arnolds.dhs.org/static/adv_tools.html 10/11/06
1205 arnolds.dhs.org/static/adv_tools.html
1206 #MASTER# UNBLOCK-REFERRER: http://www.gpl.org/
1207 .gpl.org/
1208 #MASTER# UNBLOCK-REFERRER: http://europa.eu.int/yourvoice/ 10/11/06
1209 .europa.eu.
1210 #MASTER# UNBLOCK-REFERRER: http://www.schooner.com/~loverso/no-ads/ 10/11/06
1211 .schooner.com/~loverso/no-ads/
1212 #MASTER# UNBLOCK-REFERRER: http://source.bungie.org/ 10/11/06
1213 source.bungie.org/
1214 #MASTER# UNBLOCK-REFERRER: http://adonthell.linuxgames.com/ 10/11/06
1215 adonthell.linuxgames.com/
1216 #MASTER# UNBLOCK-REFERRER: http://news.bbc.co.uk/furniture/chinese/banner/bbccantonese_600.gif
1217 #MASTER# REMARKS: Banner-free site(s).
1218 .bbc.co.uk/
1219 #MASTER# UNBLOCK-REFERRER: http://adc.netlabs.org/ 10/11/06
1220 adc.netlabs.org/
1221 #MASTER# UNBLOCK-REFERRER: http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm 10/11/06
1222 .tela.bc.ca/tads/
1223 #MASTER# UNBLOCK-REFERRER: http://adbusters.org/information/ 10/19/06
1224 adbusters.org/
1225 #MASTER# UNBLOCK-REFERRER: http://www.eads.com/ 10/11/06
1226 #MASTER# UNBLOCK-REFERRER: http://www.eads.net/
1227 #MASTER# UNBLOCK-REFERRER: http://www.eads.de/
1228 .eads.*/
1229 #MASTER# UNBLOCK-REFERRER: http://brew.qualcomm.com/brew/en/developer/resources/ad/documentation.html 10/11/06 
1230 .qualcomm.com/brew/developer/resources/ad/
1231 #MASTER# UNBLOCK-REFERRER: http://upgrade.bitdefender.com/update71/avx/Plugins/adsntfs.xmd.gzip 09/04/06
1232 /update/.*adsnt.*
1233 #MASTER# UNBLOCK-REFERRER: http://msdn.microsoft.com/ 09/11/06
1234 .microsoft.com/.*masthead
1235 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1236 .indymedia.org
1237 #MASTER# UNBLOCK-REFERRER: http://www.seanbaby.com/stupid/comicads05.shtml 09/11/06
1238 .seanbaby.com
1239 #MASTER# UNBLOCK-REFERRER:  http://www.cels.org/db/keep-track.pl?cat:1 09/11/06
1240 cels.org/.*track
1241 #MASTER# UNBLOCK-REFERRER: http://www.nic.ad.jp/ See http://jprs.co.jp/en/jpdomain.html 09/11/06
1242 .nic.ad.jp
1243 #MASTER# UNBLOCK-REFERRER: http://www.flickr.com/photo_zoom.gne?id=32594118&size=l 09/11/06
1244 #MASTER# REMARKS: creativecommons.org worthwhile organization 09/11/06
1245 /(.*/)?somerights20.gif
1246 .creativecommons.org
1247 #MASTER# UNBLOCK-REFERRER: http://www.ups.com/WebTracking/track?loc=en_US 09/11/06
1248 .ups.com/.*/track
1249 #MASTER# UNBLOCK-REFERRER: http://adju.st 09/12/06
1250 .adju.
1251 #MASTER# REMARKS: Ad-free art site 09/12/06
1252 .rubberslug.com
1253 .freebsd.org
1254 .fsf.org
1255 .gnu.org
1256 #MASTER# REMARKS: SF tracker 09/15/06
1257 adiumx.com
1258 #MASTER# UNBLOCK-REFERRER: http://google.com 10/01/06
1259 #MASTER# REMARKS: This allows many (but not all) Google "Sponsored Links" to function. 
1260 #MASTER# REMARKS: Presumably if someone clicks these they want to go there.
1261 .googleadservices./pagead/adclick
1262 #MASTER# UNBLOCK-REFERRER: http://www.garaget.org
1263 #MASTER# REMARKS: These are "ads" from individuals selling cars per tracker. 10/06/06 
1264 .garaget.org/annonser/
1265 #MASTER# UNBLOCK-REFERRER: http://www.macworld.com/ 10/07/06
1266 #MASTER# REMARKS: Without the unblock, the page layout is horribly broken 10/08/06
1267 edge.macworld.com
1268 #MASTER# UNBLOCK-REFERRER: http:// www.discovery.de  10/19/06
1269 #MASTER# REMARKS: These are promos relevant to the page content.
1270 .discovery./.*/topads/
1271 #MASTER# UNBLOCK-REFERRER: http://dawn.com
1272 #MASTER# REMARKS: SF Actionsfile tracker 10/19/06. These images are not ads.
1273 .dawn.com/.*/(9690dina|aurora_award)\.
1274 #MASTER# UNBLOCK-REFERRER: http://google.com/reader/ 
1275 #MASTER# REMARKS: Initial page does not load, per Support request 10/27/06
1276 .google.com/reader/
1277 #MASTER# REMARKS: Actionsfile Tracker 1587079 10/30/06
1278 .parcel2go.com/track
1279 #MASTER# REMARKS: Actionsfile Tracker #1612950 12/11/06
1280 .amazon.com/gp/gift-central/.*recip/
1281
1282 #############################################################################
1283 # Site-specific special rules:
1284 #############################################################################
1285
1286 #----------------------------------------------------------------------------
1287 # These sites are very complex (read: keen on your identity) and require
1288 # minimal interference.
1289 #----------------------------------------------------------------------------
1290 {fragile}
1291 .office.microsoft.com
1292 .windowsupdate.microsoft.com
1293 #MASTER# PROBLEM URL: http://metrics.apple.com 10/11/06
1294 # too broad: .apple.com
1295 www.apple.com
1296 store.apple.com
1297 images.apple.com
1298 #MASTER# REMARKS: Actions Tracker 1293057 09/02/06
1299 .update.microsoft.com
1300 #MASTER# REMARKS: Various reports 09/16/06. This site also requires pop-ups.
1301 mail.google.
1302
1303 #----------------------------------------------------------------------------
1304 # Semi-fragile, allow for blocks.
1305 #----------------------------------------------------------------------------
1306 { -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups -prevent-compression }
1307 #MASTER# REMARKS: Problem URL: adserver.yahoo.com 10/01/06
1308 #MASTER# REMARKS: This is much too broad for my taste. It forces me to add
1309 #MASTER# REMARKS: a special yahoo section in my user.action file, just to
1310 #MASTER# REMARKS: confirm my defaults in default.action. fk 2007-01-19
1311 .yahoo.com
1312
1313 #----------------------------------------------------------------------------
1314 # Shopping and banking sites - allow cookies and pop-ups
1315 #----------------------------------------------------------------------------
1316 #MASTER# REMARKS: This section not checked 10/11/06 HB
1317 {shop}
1318 .quietpc.com
1319 .worldpay.com   # for quietpc.com
1320 .jungle.com
1321 .dabs.com
1322 .overclockers.co.uk
1323 .db24.de
1324 .ebay.
1325 .mobile.de
1326 www.fondationlejeu.com
1327 www.techtv.com
1328 .mywebgrocer.com
1329
1330 #----------------------------------------------------------------------------
1331 # Subscription sites (with credible privacy policy) - allow permanent cookies
1332 #----------------------------------------------------------------------------
1333 {-session-cookies-only}
1334 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
1335 .nytimes.com/
1336 #MASTER# PROBLEM-URL: http://www.volkskrant.nl/
1337 .volkskrant.nl/
1338
1339 #----------------------------------------------------------------------------
1340 # These sites require pop-ups, so don't use the unconditional filters.
1341 #----------------------------------------------------------------------------
1342 {allow-popups}
1343 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
1344 www.aprilbarrows.com/discography\.html$
1345 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
1346 .nvidia.com
1347 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
1348 www*.chathouse.com/games/
1349 #MASTER# PROBLEM-URL: http://www.bild.de/
1350 .bild.t-online.de
1351 #MASTER# PROBLEM-URL: http://www.netflix.com/
1352 .netflix.com
1353 #MASTER# PROBLEM-URL: http://my.aol.com/
1354 my.aol.com
1355 #MASTER# PROBLEM-URL: http://www.cnn.com/
1356 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
1357 i.cnn.net/cnn/.*/clickability/button
1358 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
1359 .rosettaproject.org
1360 #MASTER# PROBLEM-URL: http://www.quantum.com requires popups for downloads, etc. 09/11/06
1361 .quantum.com
1362 #MASTER# PROBLEM-URL: http://www.liberation.fr 11/23/06 Actions tracker
1363 .liberation.fr
1364
1365 #----------------------------------------------------------------------------
1366 # Sometimes (i.e. often!) fast-redirects catches things by mistake
1367 #----------------------------------------------------------------------------
1368 #MASTER# REMARKS: This section NOT checked 10/13/06 HB
1369 {-fast-redirects}
1370 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
1371 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
1372 .google.
1373 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
1374 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
1375 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
1376 .speedfind.de
1377 #MASTER# PROBLEM-URL: http://www.nytimes.com/
1378 .nytimes.com
1379 #MASTER# PROBLEM-URL: http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
1380 #MASTER# REMARKS: Yahoo logout URL after first redirect. fk 2007-01-19
1381 #MASTER# REMARKS: Logout fails if we fast-redirect to the URL after "done=".
1382 #MASTER# REMARKS: Reported in support request #1635354.
1383 .yahoo.com/.*done=http
1384 #MASTER# PROBLEM-URL: http://validator.w3.org/check
1385 .w3.org
1386 #MASTER# PROBLEM-URL: http://www.ask.com/
1387 .directhit.com
1388 #MASTER# PROBLEM-URL: http://www.zagats.com/
1389 .zagats.com
1390 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
1391 #MASTER# PROBLEM-URL: http://www.msn.com/
1392 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
1393 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
1394 login.passport.com/logout\.(asp|srf)\?
1395 #MASTER# PROBLEM-URL: http://www.fileplanet.com
1396 download.com.com/redir\?
1397 www.fileplanet.com/redir\.asp\?
1398 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
1399 web.archive.org
1400 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
1401 .edu
1402 #MASTER# PROBLEM-URL: http://web.archive.org
1403 .archive.org
1404 #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
1405 www.guenstiger.de
1406 #MASTER# PROBLEM-URL: http://anon.free.anonymizer.com/http://www.privoxy.org/
1407 .anonymizer.com
1408 #MASTER# PROBLEM-URL: http://www.mailtothefuture.com/public/logon?http://www.mailtothefuture.com/
1409 www.mailtothefuture.com
1410 #MASTER# PROBLEM-URL: http://support.microsoft.com/default.aspx?scid=KB;en-us;q219110
1411 support.microsoft.com/
1412 #MASTER# PROBLEM-URL: http://www.alexa.com/data/details/traffic_details?q=blogspot&url=http://www.blogalia.com
1413 .alexa.com
1414 #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
1415 www.translate.ru/url/
1416 #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
1417 schneegans.de/
1418 #MASTER# PROBLEM-URL: http://config.privoxy.org/edit-actions-submit?f=user ... &redirect_mode=http%3A%2F%2Fwww.privoxy.org%2F
1419 config.privoxy.org/
1420
1421 #----------------------------------------------------------------------------
1422 # No filtering for sourcecode or other automatically parsed content
1423 #----------------------------------------------------------------------------
1424 {-filter -prevent-compression}
1425 #MASTER# PROBLEM-URL: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/current/
1426 cvs.
1427 /.*(cvs(view|web)|viewcvs)
1428 #MASTER# REMARKS: The same for Subversion
1429 #MASTER# PROBLEM-URL: http://svn.sourceforge.net/
1430 svn.
1431 websvn.
1432 /(.*/)?svn/
1433 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
1434 #MASTER# REMARKS: Jeez, could you please stay with one of them?
1435 liveupdate.symantec.com
1436 liveupdate.liveupdatesymantec.com
1437 liveupdate.symantecliveupdate.com
1438 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
1439 .bookmarklets.com
1440 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
1441 .squarefree.com/bookmarklets/
1442 #MASTER# DONT-VERIFY
1443 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
1444 swquery.apple.com
1445 swscan.apple.com
1446 #MASTER# PROBLEM-URL: http://atl.speakeasy.net/300k
1447 #MASTER# REMARKS: These are various US DSL speed tests sites, where MIME is wrong
1448 .speakeasy.net/\d+k
1449 #MASTER# PROBLEM-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=185033
1450 .debian.org
1451 #MASTER# DONT-VERIFY
1452 #MASTER# REMARKS: Popular bug-tracking system - likely to contain code
1453 bugzilla.
1454 .tldp.org
1455 #MASTER# REMARKS: mail should not be filtered 09/18/06
1456 webmail.
1457 #MASTER# REMARKS: all the world is wikified 09/02/06. Generic wiki un-filterers.
1458 .wiki*.
1459 .*wiki.
1460 /.*wiki/
1461 #MASTER# REMARKS: protect some google projects from accidental JS/HTML tampering, etc
1462 maps.google.
1463 .google.com/(calendar|reader)
1464 #MASTER# REMARKS: A lot of code and docs on these sites:
1465 code.
1466 developer.
1467 .mozdev.org
1468 .mozilla.org
1469 .perl.org
1470 .cpan.org
1471 .webdeveloper.com
1472 .ibm.com/developerworks
1473 .apache.org/docs
1474 .comptechdoc.org
1475 .webmonkey.com
1476 .webreference.com
1477 docs.sun.com
1478 java.sun.com
1479 .thescripts.com
1480 .php.net
1481 .phpdeveloper.org
1482 .oreillynet.com/pub
1483 .devshed.com
1484 .htmlgoodies.com
1485 .javascript.com
1486 javascript.internet.com
1487 .w3schools.com
1488 .devguru.com
1489 javascriptkit.com
1490 .xulplanet.com
1491 .perl.com/language/newdocs
1492 .freebsd.org
1493 .watson.org
1494 .netbsd.org
1495 .openbsd.org
1496 .dragonflybsd.org
1497 .freedesktop.org
1498 .gnu.org
1499 .fedoraproject.org
1500 .userscripts.org
1501 #MASTER# REMARKS: Bug trackers like Flyspray and Mailinglist interfaces like Mailman:
1502 /(.*/)?flyspray/
1503 /(.*/)?mail(man|archive|inglists?)/
1504 bugs.
1505 #MASTER# REMARKS: Actionsfile tracker 1555909 09/17/06, various problems with cpu and logging in.
1506 quoka.de
1507
1508 #----------------------------------------------------------------------------
1509 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1510 # workaround is to use zlib.output_compression):
1511 # (Section obsolete as of Privoxy 3.0.3, which has workaround)
1512 #----------------------------------------------------------------------------
1513 #{-prevent-compression}
1514 # Surely this is rectified by now 09/16/06 ???
1515 #MASTER# PROBLEM-URL: http://www.powie.de/
1516 #www.powie.de
1517 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1518 #www.phpcenter.de
1519 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1520 #www.timeanddate.com
1521 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1522 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1523 #.pclinuxonline.com
1524 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1525 #.dungeoncrawl.org
1526 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1527 #www.digitalspy.co.uk
1528 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1529 #www.audio-illumination.org/forums/
1530 #MASTER# PROBLEM-URL: http://www.catchword.com/
1531 #www.catchword.com
1532 #MASTER# PROBLEM-URL: http://www.ubernet.org
1533 #www.ubernet.org
1534 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1535 #www.ooodocs.org
1536 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1537 #www.ntcompatible.com
1538 #MASTER# PROBLEM-URL: http://www.winehq.com/
1539 #.winehq.com
1540 #MASTER# PROBLEM-URL: http://www.dotcomtod.de/
1541 #.dotcomtod.de/
1542 #MASTER# PROBLEM-URL: http://www.tweakers.net
1543 #.tweakers.net
1544 #MASTER# PROBLEM-URL: http://www.troublesathome.nl
1545 #.troublesathome.nl
1546 #MASTER# PROBLEM-URL: http://www.art.softshape.com
1547 #.art.softshape.com
1548
1549 #----------------------------------------------------------------------------
1550 # Innocent images in standard banner sizes found here:
1551 #----------------------------------------------------------------------------
1552 {-filter{banners-by-size}}
1553 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244 10/14/06
1554 .pricegrabber.com/search_getprod.php
1555 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1556 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1557 .cnn.com
1558 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1559 #MASTER# REMARKS: 120x90 content images
1560 .gamespot.com/gamespot
1561 #MASTER# PROBLEM-URL: http://www.wral.com/ 10/14/06
1562 www.wral.com
1563 #MASTER# PROBLEM-URL: http://www.cartoonnetwork.com/ 10/15/06
1564 .cartoonnetwork.com/
1565 #MASTER# PROBLEM-URL: http://www.anybrowser.org/campaign/  10/15/06
1566 .anybrowser.org
1567 #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
1568 images.google.
1569 #MASTER# PROBLEM-URL: http://www.pbs.org/wgbh/pages/roadshow/series/highlights/2003/albuquerque/index.html 10/15/06
1570 .pbs.org/.*/roadshow/
1571 #MASTER# PROBLEM-URL: http://objects.povworld.org/cat/Food/ 10/15/06
1572 objects.povworld.org/cat/
1573 #MASTER# PROBLEM-URL: http://www.xach.com/gimp/tutorials/tiles.html 10/15/06
1574 www.xach.com/gimp/
1575 #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
1576 #MASTER# REMARKS: The destination map at the bottom of the page.
1577 .mapquest.com/directions/
1578 #MASTER# PROBLEM-URL: http://www.theonion.com/ 10/15/06
1579 #MASTER# REMARKS: A nasty "premercial" ad is required to enter this site.
1580 .theonion.com/content/
1581 #MASTER# PROBLEM-URL: http://www.pattilupone.net/gallery.html 10/15/06
1582 .pattilupone.net/gallery.html
1583 #MASTER# PROBLEM-URL: http://www.ambrosiasw.com/games/evn/desktops.html 10/15/06
1584 .ambrosiasw.com/
1585 #MASTER# PROBLEM-URL: http://oca.microsoft.com/en/Welcome.asp 10/14/06
1586 .microsoft.com
1587 #MASTER# PROBLEM-URL: http://javabog.dk/ijk/ 10/15/06
1588 javabog.dk/ijk/
1589 #MASTER# REMARK: Per Debian bug report #319025 09/09/06
1590 .w3.org
1591
1592 #----------------------------------------------------------------------------
1593 # These don't work without the referrer information:
1594 #----------------------------------------------------------------------------
1595 {-hide-referrer}
1596 #MASTER# REMARKS: This section NOT checked 10/18/06 HB
1597 #MASTER# REMARKS: These are movie clips, linked from http://us.imdb.com
1598 .totaleclips.com
1599 #MASTER# PROBLEM-URL: http://www.mandrakelinux.com/en/ftp.php3
1600 #MASTER# REMARKS: Link to download page breaks
1601 .mandrakelinux.com/en/ftp.php3
1602 #MASTER# REMARKS: Actions Tracker 1313157
1603 validator.w3.org/check\?uri=referer
1604 #MASTER# REMARKS: Fixes Debian Bug #250407
1605 .petitiononline.com/mod_perl/signed.cgi
1606 #MASTER# REMARKS: Tracker bug report 1107806 09/26/06
1607 .telia.se
1608 #MASTER# REMARKS: XML validator that actually works.
1609 schneegans.de/sv/\?url=referer
1610
1611 #----------------------------------------------------------------------------
1612 # These animated gifs are either useful or nice:
1613 #----------------------------------------------------------------------------
1614 {-deanimate-gifs}
1615 #MASTER# PROBLEM-URL: http://www.care2.com/
1616 #MASTER# REMARKS: Wanted animations on ecards
1617 #MASTER# REMARKS: Leaving 10/18/06 though most animated seem flash now.
1618 .care2.com
1619 .care-mail.com
1620 #MASTER# PROBLEM-URL: http://weather.chicagotribune.com/radar/station.asp?ID=LOT19&type=loop
1621 #MASTER# REMARKS: These are weather radar images. 10/18/06
1622 .wunderground.com
1623 #MASTER# PROBLEM-URL: http://www.wunderground.com/radar/station.asp?ID=MPX19&type=loop&clutter=1 10/18/06
1624 66.28.250.180/data/
1625 #MASTER# PROBLEM-URL: http://www.teamquest.com/html/gunther/laquiz.shtml
1626 .teamquest.com/gifs/gunther/
1627 #MASTER# REMARKS: 09/12/06 Art site, and ad-free
1628 .rubberslug.com
1629
1630 #----------------------------------------------------------------------------
1631 # These sites are so abusive that we need to kill all JS event bindings (and
1632 # probably a break a lot along the way)
1633 #----------------------------------------------------------------------------
1634 #MASTER# REMARKS: Surely this has changed. Commenting out 10/15/06 HB
1635 #{+filter{js-radical}}
1636 ##MASTER# PROBLEM-URL: http://www.planetspiele.de/
1637 #.planetspiele.de
1638 #216.12.219.40
1639
1640 #----------------------------------------------------------------------------
1641 # The "site-specifics" filter has special cures for problems found here:
1642 #----------------------------------------------------------------------------
1643 #MASTER# REMARKS: This section NOT checked 10/15/06 HB.
1644 {+filter{site-specifics} +prevent-compression}
1645 #MASTER# REMARKS: +prevent-compression in case its off as a default setting.
1646 #MASTER# PROBLEM-URL: http://www.spiegel.de/static/js/flash-plugin.js
1647 .spiegel.de/static/js/flash-plugin\.js
1648 #MASTER# PROBLEM-URL: http://www.quelle-bausparkasse.de/
1649 .quelle-bausparkasse.de/$
1650 #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
1651 .groups.yahoo.com/group/
1652 #MASTER PROBLEM-URL: http://www.nytimes.com/
1653 .nytimes.com/
1654
1655 #----------------------------------------------------------------------------
1656 # Content under these TLDs is most probably in character sets which the
1657 # demoronizer filter would mess up
1658 #----------------------------------------------------------------------------
1659 {-filter{demoronizer}}
1660 .jp
1661 .cn
1662 .tw
1663 .ru
1664 .kr
1665
1666 #----------------------------------------------------------------------------
1667 # Misc special rules:
1668 #----------------------------------------------------------------------------
1669 {-filter{content-cookies} -filter{webbugs}}
1670 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1671 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1672 .friendscout24.de
1673 #MASTER# PROBLEM-URL:  http://www.webreference.com/js/column8/property.html 10/15/06
1674 #MASTER# REMARKS: Explains how content cookies work
1675 .webreference.com/js/column8/property.html
1676
1677 {-filter{fun}}
1678 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1679 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1680 /(.*/)?user-manual/filter-file.html
1681
1682 #{+filter{img-reorder} +filter{banners-by-link}}
1683 #MASTER# REMARKS: Temporarily decommissioning 10/15/06. Violates Cautious no filter policy. HB
1684 ##MASTER# PROBLEM-URL: http://www.dn.se/
1685 ##MASTER# REMARKS: Can't catch by size or location
1686 #www.dn.se
1687
1688 {-filter{img-reorder}}
1689 #MASTER# PROBLEM-URL: http://images.google.com
1690 #MASTER# REMARKS: Google images don't show up with img-reorder on
1691 #MASTER# REMARKS: Also images on finance.google.com 09/25/06
1692 .google.
1693 #MASTER# PROBLEM-URL: http://wired.com 09/23/06
1694 /.*wired(\.com)?/
1695 .wired.com/
1696
1697 {-filter{js-annoyances}}
1698 #MASTER# PROBLEM-URL: http://www.nasa.gov 10/16/06, still breaks.
1699 #MASTER# REMARKS: No progress past main page without js-annoyances
1700 .nasa.gov
1701 #MASTER# REMARKS: Exclude per Debian bug report #377843
1702 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1703 .cnrs.fr 
1704 #MASTER# REMARKS: Exclude per Debian bug report #377843
1705 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1706 blogs.msdn.com
1707
1708 {-filter{unsolicited-popups}}
1709 #MASTER# DONT-VERIFY
1710 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1711 /.*mt.cgi$
1712 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
1713 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1714 .cnrs.fr 
1715 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
1716 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1717 blogs.msdn.com
1718
1719 {+fast-redirects{check-decoded-url} -block}
1720 #MASTER# COMMENTS: Is this still in use? 2007-01-19 fk
1721 #MASTER# REMARKS: Remark used to be "Basically all of Yahoo's outbound links" which is no longer true.
1722 #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
1723 .*rd.yahoo.com/
1724 #MASTER# REMARKS: Yahoo search results. Added 2007-01-19 fk
1725 #MASTER# REDIRECT-REFERRER: http://search.yahoo.com/search?p=privoxy
1726 #MASTER# PROBLEM-URL: http://rds.yahoo.com/_ylt=A0geuryczbBF._YAEmxXNyoA;_ylu=X3oDMTB2b2gzdDdtBGNvbG8DZQRsA1dTMQRwb3MDMQRzZWMDc3IEdnRpZAM-/SIG=11b3qg40n/EXP=1169301276/**http%3a//www.privoxy.org/
1727 rds.yahoo.com/
1728 #MASTER# COMMENTS: Verified 2007-01-19 fk
1729 #MASTER# REDIRECT-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html
1730 #MASTER# PROBLEM-URL: http://dw.com.com/redir?asid=0&astid=8&siteid=19&edid=107&destCat=33862&destURL=http%3A%2F%2Fdb.gamefaqs.com%2Fcomputer%2Fdoswin%2Ffile%2Fvampire_tmb_b.txt
1731 dw.com.com/
1732
1733 {+block}
1734 #MASTER# COMMENTS: This section not checked 10/17/06 HB. Still out there?
1735 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1736 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1737 /antitheft\.php
1738
1739 {+filter{tiny-textforms} +prevent-compression}
1740 .sourceforge.net/tracker
1741
1742 {+downgrade-http-version}
1743 #MASTER# COMMENTS: This section not checked 10/17/06 HB
1744 #MASTER# REMARKS: This is work-around for CUPS http configuration.
1745 :631
1746
1747 #MASTER# REMARKS: What is this? Something special?
1748 #{ -crunch-outgoing-cookies \
1749 #  -crunch-incoming-cookies \
1750 #  +session-cookies-only \
1751 #}
1752 #www.versiontracker.com/
1753
1754 #MASTER# REMARKS: If Privoxy is disabled, requests for config.privoxy.org/
1755 #MASTER# REMARKS: reach privoxy.org and are redirected to privoxy.org/config.
1756 #MASTER# REMARKS: The instructions tell the user to reload the page with
1757 #MASTER# REMARKS: Privoxy enabled to reach the configuration webinterface,
1758 #MASTER# REMARKS: to make this work we have to intercept the request and revert
1759 #MASTER# REMARKS: the redirection.
1760 {+redirect{http://config.privoxy.org/}}
1761 .privoxy.org/config
1762
1763 #MASTER# REMARKS: Yahoo logout URLs need special treatment,
1764 #MASTER# REMARKS: the URL after "done=" is no fast-redirect. 2007-01-19 fk
1765 #MASTER# REMARKS: Reported in support request #1635354.
1766 #MASTER# PROBLEM-URL: http://us.ard.yahoo.com/SIG=AAAAAAAAA/M=NNNNNN.NNNNNNN.NNNNNNN.NNNNNNN/D=mail/S=NNNNNNNNN:HEADR/Y=YAHOO/EXP=NNNNNNNNNN/A=NNNNNNN/R=N/SIG=AAAAAAAAA/*http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
1767 {-fast-redirects +redirect{s@^.*\*(http://login\.yahoo\.com/.*)$@$1@i}}
1768 .yahoo./.*http://login.yahoo.com/config/login.*http://
1769
1770 #MASTER# set vi:nowrap