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