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