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