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