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