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