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