In socks5_connect:
[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, and if
5 #MASTER# COMMENT:   the problem may not always be fully obvious, a 
6 #MASTER# COMMENT:   brief explanation. Thanks.
7 #MASTER# COMMENT:   
8 ######################################################################
9
10 #  File        :  $Source: /cvsroot/ijbswa/current/default.action.master,v $
11
12 #  $Id: default.action.master,v 1.108 2008/01/25 19:29:20 fabiankeil Exp $
13 #
14 #  Requires    :  This version requires Privoxy v3.0.7 or later due to 
15 #                 syntax changes.
16 #
17 #  Purpose     :  Default actions file, see
18 #                 http://www.privoxy.org/user-manual/actions-file.html.
19 #                 This file is subject to periodic updating. Local exceptions
20 #                 and enhancements are better placed in user.action. 
21 #
22 #  Copyright   :  Written by and Copyright (C) 2001 - 2007 the
23 #                 Privoxy team. http://www.privoxy.org/
24 #
25 #  Note: Updated versions of this file will be made available from time
26 #        to time. Check http://sourceforge.net/project/showfiles.php?group_id=11118
27 #        for updates and/or subscribe to the announce mailing list
28 #        (http://lists.sourceforge.net/lists/listinfo/ijbswa-announce) if you
29 #        wish to receive an email notice whenever updates are released.
30 #
31 # We value your feedback. However, to provide you with the best support,
32 # please note:
33 #  
34 #  * Use the support forum to get help:
35 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
36 #  * Submit feedback for this actions file only through the 
37 #    SF actions file feedback tracker: 
38 #    http://sourceforge.net/tracker/?group_id=11118&atid=460288
39 #  * Submit bugs only through our bug forum:
40 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
41 #    Make sure that the bug has not already been submitted. Please try
42 #    to verify that it is a Privoxy bug, and not a browser or site
43 #    bug first. If you are using your own custom configuration, please
44 #    try the stock configs to see if the problem is a configuration
45 #    related bug. And if possible please try the latest CVS sources.
46 #  * Submit feature requests only through our feature request forum:
47 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
48 #      
49 # For any other issues, feel free to use the mailing lists:
50 # http://sourceforge.net/mail/?group_id=11118
51 #    
52 # Anyone interested in actively participating in development and related
53 # discussions can join the appropriate mailing list here:
54 # http://sourceforge.net/mail/?group_id=11118. Archives are available
55 # here too. 
56 #
57 # The current development version of this file is located: 
58 # http://ijbswa.cvs.sourceforge.net/*checkout*/ijbswa/current/default.action.master
59
60 #############################################################################
61 # Syntax
62 #############################################################################
63
64 # A much better explanation can be found in the user manual which is
65 # part of the distribution and can be found at http://www.privoxy.org/user-manual
66 #
67 # To determine which actions apply to a request, the URL of the request is
68 # compared to all patterns in this file. Every time it matches, the list of
69 # applicable actions for this URL is incrementally updated. You can trace
70 # this process by visiting http://config.privoxy.org/show-url-info
71 #
72 # There are 4 types of lines in this file: comments (like this line),
73 # actions, aliases and patterns, all of which are explained below.
74 #
75 #############################################################################
76 # Pattern Syntax
77 #############################################################################
78
79 # 1. On Domains and Paths
80 # -----------------------
81 #
82 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
83 # and <path> part are optional. The pattern matching syntax is different for
84 # each. If you only specify a domain part, the "/" can be left out, but it is
85 # required for the path part.
86
87 # www.example.com 
88 #   is a domain-only pattern and will match any request to www.example.com
89
90 # www.example.com/
91 #   means exactly the same (but is slightly less efficient)
92
93 # www.example.com/index.html
94 #   matches only the document /index.html on www.example.com
95
96 # /index.html
97 #   matches the document /index.html, regardless of the domain
98
99 # index.html
100 #   matches nothing, since it would be interpreted as a domain name and
101 #   there is no top-level domain called ".html".
102
103 # 2. Domain Syntax
104 # ----------------
105
106 # The matching of the domain part offers some flexible options: If the
107 # domain starts or ends with a dot, it becomes unanchored at that end:
108
109 # www.example.com
110 #   matches only www.example.com
111
112 # .example.com
113 #   matches any domain that ENDS in .example.com
114
115 # www.
116 #   matches any domain that STARTS with www.
117 #
118 # .example.
119 #   matches any domain that CONTAINS example
120 #
121
122 # Additionally, there are wildcards that you can use in the domain names
123 # themselves. They work pretty similar to shell wildcards: "*" stands for
124 # zero or more arbitrary characters, "?" stands for one, and you can define
125 # character classes in square brackets and they can be freely mixed:
126
127 # ad*.example.com
128 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
129
130 # *ad*.example.com
131 #   matches all of the above
132
133 # .?pix.com
134 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
135
136 # www[1-9a-ez].example.com
137 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
138 #   wwwz.example.com etc, but not wwww.example.com
139
140 # You get the idea?
141
142 # 2. Path Syntax
143 # --------------
144
145 # Paths are specified as full regular expressions, and are more flexible than
146 # the domain syntax above. A comprehensive discussion of regular expressions
147 # wouldn't fit here.
148
149 # Perl compatible regular expressions are used. See the pcre/docs/ direcory or
150 # man perlre (also available at http://perldoc.perl.org/perlre.html) for
151 # details. The appendix to our User Manual also has some detail.
152
153 # Please note that matching in the path is CASE INSENSITIVE by default, but
154 # you can switch to case sensitive by starting the pattern with the "(?-i)"
155 # switch:
156
157 # www.example.com/(?-i)PaTtErN.*
158 #   will match only documents whose path starts with PaTtErN in exactly this
159 #   capitalization.
160 #
161 # Partially case-sensitive and partially case-insensitive patterns are
162 # possible, but the rules about splitting them up are extremely complex
163 # - see the PCRE documentation for more information.
164
165 #############################################################################
166 # Action Syntax
167 #############################################################################
168 #
169 # There are 3 kinds of actions:
170 #
171 # Boolean (e.g. "block"):
172 #   +name  # enable
173 #   -name  # disable
174 #
175 # Parameterized (e.g. "hide-user-agent"):
176 #   +name{param}  # enable and set parameter to "param"
177 #   -name         # disable
178 #
179 # Multi-value (e.g. "add-header", "send-wafer"):
180 #   +name{param}  # enable and add parameter "param"
181 #   -name{param}  # remove the parameter "param"
182 #   -name         # disable totally
183 #
184 # The default (if you don't specify anything in this file) is not to take
185 # any actions - i.e completely disabled, so Privoxy will just be a
186 # normal, non-blocking, non-anonymizing proxy.  You must specifically
187 # enable the privacy and blocking features you need (although the 
188 # provided default actions file will do that for you).
189 #
190 # Later actions always override earlier ones.  For multi-valued actions,
191 # the actions are applied in the order they are specified.
192 #
193 #############################################################################
194 # Valid actions are:
195 #############################################################################
196 #
197 # +add-header{Name: value}
198 #    Adds the specified HTTP header, which is not checked for validity.
199 #    You may specify this many times to specify many headers.
200 #
201 # +block
202 #    Block this URL. Privoxy will ignore this URL completely, and not request
203 #    it.
204 #
205 # +client-header-filter{name}
206 #    All client headers to which this action applies are filtered on-the-fly
207 #    through the specified regular expression based substitutions.
208 #
209 #    Client-header filters predefined in the supplied default.filter include:
210 #
211 #     hide-tor-exit-notation: Removes the Tor exit node notation in Host and Referer headers
212 #
213 # +client-header-tagger{string}
214 #    Block requests based on their headers. Client headers to which this
215 #    action applies are filtered on-the-fly through the specified regular
216 #    expression based substitutions, the result is used as a tag.
217 #    Client-header taggers are the first actions that are executed and their
218 #    tags can be used to control every other action.
219 #
220 # +content-type-overwrite
221 #    Replaces the "Content-Type:" HTTP server header, so that unwanted
222 #    download menus will not pop up, or changes the browser's rendering mode.
223 #
224 # +crunch-client-header{string}
225 #    Deletes every header sent by the client that contains the string the 
226 #    user supplied as parameter. 
227 #    
228 # +crunch-if-none-match
229 #     Deletes the "If-None-Match:" HTTP client header. 
230 #
231 # +crunch-server-header{string}
232 #    Deletes every header sent by the server that contains the string the 
233 #    user supplied as a parameter. 
234
235 # +deanimate-gifs{last}
236 # +deanimate-gifs{first}
237 #    Deanimate all animated GIF images, i.e. reduce them to their last
238 #    frame. This will also shrink the images considerably. (In bytes,
239 #    not pixels!) 
240 #    If the option "first" is given, the first frame of the animation
241 #    is used as the replacement. If "last" is given, the last frame of
242 #    the animation is used instead, which propably makes more sense for
243 #    most banner animations, but also has the risk of not showing the
244 #    entire last frame (if it is only a delta to an earlier frame).
245 #
246 # +downgrade-http-version
247 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
248 #    responses as well. Use this action for servers that use HTTP/1.1
249 #    protocol features that Privoxy currently can't handle yet.
250 #
251 # +fast-redirects{check-decoded-url}
252 # +fast-redirects{simple-check}
253 #    Many sites, like yahoo.com, don't just link to other sites.
254 #    Instead, they will link to some script on their own server,
255 #    giving the destination as a parameter, which will then redirect
256 #    you to the final target. 
257 #
258 #    URLs resulting from this scheme typically look like:
259 #    http://some.place/some_script?http://some.where-else
260 #
261 #    Sometimes, there are even multiple consecutive redirects encoded
262 #    in the URL. These redirections via scripts make your web browsing
263 #    more traceable, since the server from which you follow such a link
264 #    can see where you go to. Apart from that, valuable bandwidth and
265 #    time is wasted, while your browser asks the server for one redirect
266 #    after the other. Plus, it feeds the advertisers.
267 #
268 #    The +fast-redirects{check-decoded-url} option enables interception of 
269 #    these requests by Privoxy, who will cut off all but the last valid URL 
270 #    in the request and send a local redirect back to your browser without
271 #    contacting the intermediate sites. NOTE: Syntax change as of v.3.0.4.
272 #
273 # +filter{name}
274 #    All files of text-based type, most notably HTML and JavaScript, to which
275 #    this action applies, can be filtered on-the-fly through the specified
276 #    regular expression based substitutions. (Note: plain text documents are
277 #    exempted from filtering, because web servers often use the text/plain
278 #    MIME type for all files whose type they don't know.) By default,
279 #    filtering works only on the raw document content itself (that which can
280 #    be seen with View Source), not the headers. Repeat for multiple filters.
281 #    Use with caution: filters can be very intrusive.
282 #   
283 #    Filters predefined in the supplied default.filter include:
284 #
285 #     js-annoyances:         Get rid of particularly annoying JavaScript abuse
286 #     js-events:             Kill all JS event bindings (Radically destructive! Use only on real suckers)
287 #     html-annoyances:       Get rid of particularly annoying HTML abuse
288 #     content-cookies:       Kill cookies that come in the HTML or JS content
289 #     refresh-tags:          Kill automatic refresh tags (for dial-on-demand setups)
290 #     unsolicited-popups:    Disable only unsolicited pop-up windows
291 #     all-popups:            Kill all popups in JavaScript and HTML
292 #     img-reorder:           Reorder attributes in <img> tags to make the banners-by-* filters more effective
293 #     banners-by-size:       Kill banners by size (very efficient!)
294 #     banners-by-link:       Kill banners by their links to known clicktrackers 
295 #     webbugs:               Squish WebBugs (1x1 invisible GIFs used for user tracking)
296 #     tiny-textforms:        Extend those tiny textareas up to 40x80 and kill the hard wrap
297 #     jumping-windows:       Prevent windows from resizing and moving themselves
298 #     frameset-borders:      Give frames a border
299 #     demoronizer:           Fix MS's non-standard use of standard charsets
300 #     shockwave-flash:       Kill embedded Shockwave Flash objects
301 #     quicktime-kioskmode:   Make Quicktime movies saveable
302 #     fun:                   Text replacements  for subversive browsing fun!
303 #     crude-parental:        Kill all web pages that contain the words "sex" or "warez"
304 #     ie-exploits:           Disable some known Internet Explorer bug exploits
305 #     site-specifics:        Cure for site-specific problems. Don't apply generally!
306 #     google:                Removes text ads and other Google specific improvements
307 #     yahoo:                 Removes text ads and other Yahoo specific improvements
308 #     msn:                   Removes text ads and other MSN specific improvements
309 #     blogspot:              Cleans up Blogspot blogs
310 #     no-ping:               Removes non-standard ping attributes from anchor and area tags
311 #
312 # +force-text-mode
313 #    Declares a document as plain text, even if the "Content-Type:" isn't detected 
314 #    as such. 
315 #
316 # +forward-override{forward .}
317 # +forward-override{forward 127.0.0.1:8123}
318 # +forward-override{forward-socks4a 127.0.0.1:9050 .}
319 # +forward-override{forward-socks4a 127.0.0.1:9050 proxy.example.org:8000}
320 # +forward-override{forward-socks5 127.0.0.1:9050 .}
321 # +forward-override{forward-socks5 127.0.0.1:9050 proxy.example.org:8000}
322 #   This action overrules the forward directives in the configuration file. 
323 #
324 # +handle-as-empty-document
325 #   This action alone doesn't do anything noticeable. It just marks URLs. If
326 #   the block action also applies, the presence or absence of this mark
327 #   decides whether an HTML "blocked"  page, or an empty document will be sent
328 #   to the client as a substitute for the blocked content.
329 #
330 # +hide-accept-language{lang}
331 # +hide-accept-language{block}
332 #   Deletes or replaces the "Accept-Language:" HTTP header in client
333 #   requests.
334 #
335 # +hide-content-disposition{block}
336 # +hide-content-disposition{string}
337 #   Deletes or replaces the "Content-Disposition:" HTTP header set by some 
338 #   servers. This can be used to prevent download menus for content you 
339 #   prefer to view inside the browser, for example.
340 #
341 # +hide-forwarded-for-headers
342 #   Block any existing X-Forwarded-for header.
343 #
344 # +hide-from-header{block}
345 # +hide-from-header{spam@sittingduck.xqq}
346 #   If the browser sends a "From:" header containing your e-mail address, 
347 #   either completely removes the header ("block"), or change it to the
348 #   specified e-mail address.
349 #
350 # +hide-if-modified-since{block}
351 # +hide-if-modified-since{-60}
352 #   Deletes the "If-Modified-Since:" HTTP client header or modifies its 
353 #   value, preventing another way to track users.
354 #
355 # +hide-referer{block}
356 # +hide-referer{forge}
357 # +hide-referer{http://nowhere.com}
358 #    Don't send the "Referer:" (sic) header to the web site.  You can
359 #    block it, forge a URL to the same server as the request (which is
360 #    preferred because some sites will not send images otherwise) or
361 #    set it to a constant string.
362 #
363 # +hide-referrer{...}
364 #    Alternative spelling of +hide-referer.  Has the same parameters,
365 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
366 #    correct English spelling, however the HTTP specification has a 
367 #    bug - it requires it to be spelt "referer").
368 #
369 # +hide-user-agent{browser-type}
370 #    Change the "User-Agent:" header so web servers can't tell your
371 #    browser type.  (Breaks many web sites).  Specify the user-agent
372 #    value you want - e.g., to pretend to be using Netscape on Linux:
373 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
374 #    Or to identify yourself explicitly as a Privoxy user:
375 #      +hide-user-agent{Privoxy/1.0}
376 #    (Don't change the version number from 1.0 - after all, why tell them?)
377 #
378 # +handle-as-image
379 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
380 #    in which case a "blocked" image can be sent rather than a HTML page.
381 #    See +set-image-blocker{} for the control over what is actually sent.
382 #
383 # +inspect-jpegs
384 #    Scan jpeg headers for malformed comment blocks and correct them.
385 #
386 # +limit-connect{portlist}
387 #   The CONNECT methods exists in HTTP to allow access to secure websites
388 #   (https:// URLs) through proxies. It works very simply: The proxy
389 #   connects to the server on the specified port, and then short-circuits
390 #   its connections to the client and to the remote proxy.
391 #   This can be a big security hole, since CONNECT-enabled proxies can
392 #   be abused as TCP relays very easily.
393 #   By default, i.e. in the absence of a +limit-connect action, Privoxy
394 #   will only allow CONNECT requests to port 443, which is the standard port
395 #   for https.
396 #   If you want to allow CONNECT for more ports than that, or want to forbid
397 #   CONNECT altogether, you can specify a comma separated list of ports and port
398 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
399 #
400 #   +limit-connect{443} # This is the default and need no be specified.
401 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
402 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
403 #
404 # +overwrite-last-modified{block}
405 # +overwrite-last-modified{reset-to-request-time}
406 # +overwrite-last-modified{randomize}
407 #    Removing the "Last-Modified:" header is useful for filter testing, where
408 #    you want to force a real reload instead of getting status code "304",
409 #    which would cause the browser to reuse the old version of the page.
410 #
411 #    The "randomize" option overwrites the value of the "Last-Modified:"
412 #    header with a randomly chosen time between the original value and the
413 #    current time. In theory the server could send each document with a
414 #    different "Last-Modified:" header to track visits without using cookies.
415 #    "Randomize" makes it impossible and the browser can still revalidate
416 #    cached documents.
417 #
418 #    "reset-to-request-time" overwrites the value of the "Last-Modified:"
419 #    header with the current time. You could use this option together with
420 #    hided-if-modified-since to further customize your random range. 
421 #  
422 # +prevent-compression
423 #    Prevent the website from compressing the data. Some websites do
424 #    that, which is a problem for Privoxy, since +filter, +kill-popups
425 #    and +gif-deanimate will not work on compressed data. Will slow down
426 #    connections to those websites, though.
427 #
428 # +server-header-filter{name}
429 #    All server headers to which this action applies are filtered on-the-fly
430 #    through the specified regular expression based substitutions.
431 #
432 #    Server-header filters predefined in the supplied default.filter include:
433 #
434 #     html-to-xml:           Changes the Content-Type header from html to xml
435 #     xml-to-html:           Changes the Content-Type header from xml to html
436 #
437 # +server-header-tagger{content-type}
438 #    Server headers to which this action applies are filtered on-the-fly
439 #    through the specified regular expression based substitutions, the result
440 #    is used as a tag. Server-header taggers are executed before all other
441 #    header actions that modify server headers. Their tags can be used to
442 #    control all of the other server-header actions, the content filters and
443 #    the crunch actions (redirect and block). 
444 #
445 # +session-cookies-only
446 #    If the website sets cookies, make sure they are erased when you exit
447 #    and restart your web browser.  This makes profiling cookies useless,
448 #    but won't break sites which require cookies so that you can log in
449 #    or for transactions.
450 #
451 # +set-image-blocker{blank}
452 # +set-image-blocker{pattern}
453 # +set-image-blocker{<URL>} with <url> being any valid image URL
454 #    Decides what to do with URLs that end up tagged with {+block +handle-as-image}.
455 #    There are 4 options:
456 #      * "-set-image-blocker" will send a HTML "blocked" page, usually
457 #         resulting in a "broken image" icon.
458 #      * "+set-image-blocker{blank}" will send a 1x1 transparent image
459 #      * "+set-image-blocker{pattern}" will send a 4x4 grey/white pattern
460 #        which is less intrusive than the logo but easier to recognize
461 #        than the transparent one.
462 #      * "+set-image-blocker{<URL>}" will send a HTTP temporary redirect
463 #        to the specified image URL.
464 #
465 #
466 # +crunch-outgoing-cookies
467 #    Prevent the website from reading cookies
468 #
469 # +crunch-incoming-cookies
470 #    Prevent the website from setting cookies
471 #
472 # +kill-popups (deprecated)
473 #    Filter the website through a built-in filter to disable
474 #    window.open() etc.  The two alternative spellings are
475 #    equivalent.
476 #
477 # +redirect{<URL>}
478 # +redirect{<pcrs command>}
479 #    Convinces the browser that the requested document has been moved to
480 #    another location and the browser should get it from the specified
481 #    URL.
482 #
483 # +send-vanilla-wafer
484 #    This action only applies if you are using a jarfile.  It sends a
485 #    cookie to every site stating that you do not accept any copyright
486 #    on cookies sent to you, and asking them not to track you.  Of
487 #    course, this is a (relatively) unique header they could use to 
488 #    track you.
489 #
490 # +send-wafer{name=value}
491 #    This allows you to add an arbitrary cookie.  Specify it multiple
492 #    times in order to add several cookies.
493 #
494 # +treat-forbidden-connects-like-blocks
495 #    If this action is enabled, Privoxy no longer makes a difference between
496 #    forbidden connects and ordinary blocks. 
497 #
498 #    By default Privoxy answers forbidden "Connect" requests  with a short
499 #    error message inside the headers. If the browser doesn't display headers
500 #    (most don't), you just see an empty page. With this action enabled,
501 #    Privoxy displays the message that is used for ordinary blocks instead. If
502 #    you decide to make an exception for the page in question, you can do so
503 #    by following the "See why" link. 
504 #
505 #############################################################################
506
507 #############################################################################
508 # Settings -- Don't change.
509 #############################################################################
510 {{settings}}
511 #############################################################################
512 #MASTER# COMMENT: The minimum Privoxy version:
513 for-privoxy-version=3.0.7
514
515 #############################################################################
516 # Aliases
517 #############################################################################
518 {{alias}}
519 #############################################################################
520 #
521 # You can define a short form for a list of permissions - e.g., instead
522 # of "-crunch-incoming-cookies -crunch-outgoing-cookies -filter -fast-redirects",
523 # you can just write "shop". This is called an alias.
524 #
525 # Currently, an alias can contain any character except space, tab, '=', '{'
526 # or '}'.
527 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
528 #
529 # Alias names are not case sensitive.
530 #
531 # Aliases beginning with '+' or '-' may be used for system action names 
532 # in future releases - so try to avoid alias names like this.  (e.g. 
533 # "+crunch-all-cookies" below is not a good name)
534 #
535 # Aliases must be defined before they are used.
536
537
538 # These aliases just save typing later:
539 #
540 +crunch-all-cookies = +crunch-incoming-cookies +crunch-outgoing-cookies
541 -crunch-all-cookies = -crunch-incoming-cookies -crunch-outgoing-cookies
542  allow-all-cookies  = -crunch-all-cookies -session-cookies-only 
543  allow-popups       = -filter{all-popups} -kill-popups -filter{unsolicited-popups}
544 +block-as-image     = +block +handle-as-image
545 -block-as-image     = -block
546
547 # These aliases define combinations of actions
548 # that are useful for certain types of sites:
549 #
550 fragile     = -block -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups -prevent-compression
551 shop        = -crunch-all-cookies allow-popups
552
553 # Your favourite blend of filters:
554 #
555 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{all-popups}\
556               +filter{webbugs} +filter{nimda} +filter{banners-by-size} #+filter{fun}
557
558 # Allow ads for selected useful free sites:
559 #
560 allow-ads   = -block -filter{banners-by-size} -filter{banners-by-link}
561
562 #############################################################################
563 # Defaults
564 #############################################################################
565 { \
566 +hide-forwarded-for-headers \
567 +hide-from-header{block} \
568 +set-image-blocker{pattern} \
569 }
570 / # Match all URLs
571
572 #############################################################################
573 # These extensions belong to images:
574 #############################################################################
575 {+handle-as-image -filter}
576 #############################################################################
577 /.*\.(gif|jpe?g|png|bmp|ico)($|\?)
578
579 #############################################################################
580 # These don't:
581 #############################################################################
582 {-handle-as-image}
583 /.*\.(js|php|css|.?html?)
584
585 #############################################################################
586 # Generic block patterns by host:
587 #############################################################################
588 {+block}
589 #MASTER# DONT-VERIFY (generic)
590 ad*.
591 .*ads.
592 #MASTER# REMARKS: removed .ad. 2007-12-18 HB
593 #MASTER# REMARKS: Modifications per Actionsfile feedback item #1807613
594 .ad.?.
595 .ad.[a-ik-z][a-oq-z].
596 .ad.jp.*.
597 .ad.???*.
598 #MASTER# PROBLEM URL: http://alternativos.iw-advertising.com/
599 .*advert*.
600 *banner*.
601 count*.
602 *counter.
603 #MASTER# PROBLEM URL: http://www.newegg.com
604 promotions.
605 #MASTER# PROBLEM URL: http://metrics.performancing.com/ 11/04/06
606 #MASTER# BLOCK-REFERRER: http://tech.cybernetnews.com/
607 metrics.
608
609 #############################################################################
610 # Generic unblockers by host:
611 #############################################################################
612 {-block}
613 #MASTER# DONT-VERIFY (generic)
614 adsl.
615 ad[udmw]*.
616 adbl*.
617 adam*.
618 adapt*.
619 adob*.
620 adrenaline.
621 adtp*.
622 adv[oia]*.
623 .*road*.
624 .olympiad*.
625 .*load*.
626 .*[epu]ad*.
627 county*.
628 countr*.
629
630 #############################################################################
631 # Generic block patterns by path:
632 #############################################################################
633 {+block}
634 #MASTER# DONT-VERIFY (generic)
635 /(.*/)?ad(\?|/|s|v|_?(image|se?rv|box)|cycle|rotate|mentor|click|f[ra]m|script|stream|fetch|log|space)
636 /phpads(new)?/
637 /(.*/)?(ad|all|nn|db|promo(tion)?)?[-_]?banner
638 /(.*/)?(publicite|werbung|reklaa?m|annonse|maino(kset|nta|s)?/)
639 /.*(count|track|compteur|(?<!relo)adframe|adse?rve?|banner)(er|run)?(\?|\.(pl|cgi|exe|dll|asp|php|cpt))
640 /(.*/)?clicktrack
641 #MASTER# REMARKS: Added 12/28/06 per Adam Piggott
642 /(.*/)?(full)?pop[-_]?(up|over|under|open(er)?)?s?(/|\.)
643 /(.*/)?((flash)?pop|live(cnt|count(er)?)).*\.(js|php|cgi)
644
645 #############################################################################
646 # Generic unblockers by path:
647 #############################################################################
648 {-block}
649 #MASTER# DONT-VERIFY (generic)
650 /.*ad(sl|v(i[cs]|o|an|ertencia|ent|.*search|erse)) # advice/advisories/advan*/advertencia (spanish) adverse
651 /.*(lo|thre|he|d|gr|l|ro|re|squ|class(ified)?)ads
652 /.*account
653 support./(.*/)?track
654
655 #############################################################################
656 # Exceptions for academia and non-profits
657 #############################################################################
658 .edu
659 .ac.*/
660 .uni-*.de
661 .tu-*.de
662 .gov
663 #MASTER# REMARKS: 09/18/06 Tracker request
664 .hs-*.de 
665 .fh-*.de
666 #MASTER# REMARKS: Try to avoid harmless names in non-commercial organizations. Added 10/24/06
667 #MASTER# PROBLEM URL: http://www.gnu.org/graphics/gnu-head-banner.png
668 .org/.*(image|banner)
669
670 #############################################################################
671 # Catch-all for false-positives that are just TOO obvious to let go
672 #############################################################################
673 {+block}
674 #MASTER# PROBLEM URL: http://ads.facebook.com/ads/spreadshirt/banner120x600.jpg
675 #MASTER# REMARKS: Going for adsrv, adserve, adserver*.
676 .ads[erv][rv]*.
677 .ads.
678 /(.*/)?ad(se?rv|click|stream|image|log|farm|script)
679 #MASTER# PROBLEM URL: http://www.torrentportal.com/topad.html
680 #MASTER# REMARKS: Action tracker 1637648 and a bit of imagination. Added 2007-01-20.
681 #MASTER# REMARKS: Added "text" 20070730 as per http://www.pcworld.com/textad?Keywords=System Resources Tune-Up.&type=pcworld_downloads_search&count=3&ord=906010128&serveUrl=http%3A%2F%2Fwww.pcworld.com%2Fdownloads%2Ffile%2Ffid%2C7661-order%2C1-page%2C1-c%2Csystemresourcestuneup%2Fdescription.html Adam Piggott
682 /.*(top|bottom|left|right|text)_?ad
683
684 #############################################################################
685 # Site-specific block patterns;
686 #############################################################################
687 #MASTER# BLOCK-REFERRER: http://www.brooksbrothers.com/ 10/18/06
688 #MASTER# BLOCK-REFERRER: http://www.autodesk.com/
689 .hitbox.com 
690 #MASTER# BLOCK-REFERRER: http://www.the-gadgeteer.com/palmos.html 10/18/06
691 .the-gadgeteer.com/cgi-bin/getimage.cgi/
692 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest
693 dest.travelocity.com/website/destinations/images/partner_frommers.gif
694 dest.travelocity.com/website/destinations/images/travelex_logo.gif
695 #MASTER# BLOCK-REFERRER: http://us.imdb.com/Title?0110912 10/18/06
696 #MASTER# BLOCK-REFERRER: http://www.imdb.com/help/boards/markup
697 #MASTER# REMARKS: 2nd is for emoticons exception
698 i.imdb.com/Photos/CMSIcons/(?!buttons|emoticons)
699 rcm.amazon.com
700 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/ 10/18/06
701 .nytimes.com/adx/
702 #MASTER# BLOCK-REFERRER: http://www.sharereactor.com/ 10/19/06
703 #MASTER# BLOCK-REFERRER: http://www.popupad.net/
704 #www.popupad.net/ats/
705 .adtrak.net 
706 .elitemediagroup.net
707 .popuptraffic.com
708 #MASTER# BLOCK-REFERRER: http://www.famousbabes.com/gabrielleR/grpics1.htm 10/19/06
709 #MASTER# BLOCK-REFERRER: http://www.hit-now.com/
710 .hit-now.com
711 #MASTER# BLOCK-REFERRER: http://www.pgpi.org/ 10/18/06
712 [a-v]*.valueclick.com
713 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/
714 #MASTER# REMARKS: Yea, all these at one site! 10/19/06
715 .cpays.com
716 .oxado.com
717 .adult*finder.com
718 #MASTER# DONT-VERIFY: Opera's list of banners to load (XML)
719 /scripts/cms/xcms.asp
720 #MASTER# REMARKS: Actionsfile tracker 1559740 09/16/06 See http://www.vibrantmedia.com/whatisIntelliTXT.asp
721 #MASTER# BLOCK-REFERRER: http://www.hartware.de/news_40795.html
722 /.*intellitxt/
723 .intellitxt.com
724 #MASTER# REMARKS: per Actions File tracker: #1597893 11/17/06, similar to intellitxt
725 .kontera.com
726 #MASTER# REMARKS: 2007-08-17 HB, similar to intellitxt
727 #MASTER# BLOCK-REFERRER: http://www.webhostingtalk.com/archive/index.php/t-533369.html
728 .tribalfusion.com/ctxt
729 #MASTER# REMARKS: Video advertizer, owned by doubleclick.net.
730 #MASTER# BLOCK-REFERRER: http://www.ign.com/ 09/17/06
731 .klipmart.com
732 #MASTER# BLOCK-REFERRER: http://gamespot.com 09/26/06
733 #MASTER# REMARKS: adlog.com.com and ads.com.com
734 ad*.com.com
735 #MASTER# REMARKS: used in redirects: dw.com.com 12/18/06
736 #MASTER# BLOCK-REFERRER: http://verizon.net 09/29/06
737 sales.liveperson.net
738 #MASTER# BLOCK-REFERRER: www.avclub.com/ 10/14/06
739 .iad.liveperson.net
740 #MASTER# BLOCK-REFERRER: http://homedepot.com 09/29/06
741 #MASTER# BLOCK-REFERRER: http://weather.com 11/03/06
742 .coremetrics.com/
743 #MASTER# BLOCK-REFERRER: http://wired.com 09/29/06
744 .realmedia.com/data/
745 #MASTER# REMARKS: webbugs, ads and user tracking js in many places.
746 #MASTER# BLOCK-REFERRER: http://washingtonpost.com & http://tomshardware.com 09/29/06
747 .revsci.net
748 #MASTER# BLOCK-REFERRER: http://www.time.com/time/business/article/0,8599,1073341,00.html 09/29/06
749 .clickability.com
750 /.*clickability(.com)?/
751 #MASTER# BLOCK-REFERRER: http://washingtonpost.com 09/29/06
752 stats.*.ihost.com
753 #MASTER# BLOCK-REFERRER: http://msnbc.com and many others 09/29/06
754 .2o7.net
755 #MASTER# BLOCK-REFERRER: http://microsoft.com 09/29/06
756 .webtrends.com
757 #MASTER# BLOCK-REFERRER: http://tomshardware.com 09/29/06
758 .tacoda.
759 #MASTER# BLOCK-REFERRER: http://www.torrentazos.com 10/04/06
760 ad.theadhost.com
761 #MASTER# BLOCK-REFERRER: http://www.stuff.co.nz 10/06/06
762 .adbureau.net
763 #MASTER# BLOCK-REFERRER: http://drudgereport.com 10/06/06
764 .adgardener.com
765 #MASTER# BLOCK-REFERRER: http://www.connected-media.com/riven/hints.htm 10/14/06
766 #MASTER# REMARKS: ads.kw.revenue.net/? etc
767 .revenue.net
768 #MASTER# BLOCK-REFERRER: http://www.geocities.com/the_sockman1/index.html 10/15/06
769 #MASTER# REMARKS: ..and any other page on geocities. Source of the obnoxious Geocities drop-in menu.
770 .geocities.com/js_source
771 #MASTER# BLOCK-REFERRER: http://www.google.com 09/28/06
772 .dartsearch.net
773 #MASTER# BLOCK-REFERRER: http://wunderground.com 11/02/06
774 .zedo.com
775 #MASTER# BLOCK-REFERRER: http://realtor.org 11/03/06
776 .trk.sodoit.com/
777 #MASTER# BLOCK-REFERRER: http://www.freenews.fr 11/23/06 Actionsfile feedback item #1597034
778 .espace.netavenir.com
779 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com/ 12/28/06
780 .hitfarm.com
781 #MASTER# BLOCK-REFERRER: http://www.uk-businessdirectory.co.uk/
782 #MASTER# REMARKS: Action tracker 1616457. Added 2007-01-20.
783 .topnemo.com/engine
784 .top100categories.com/engine
785 #MASTER# REMARKS: Actionsfile feedback item #1647852 2007-01-30
786 #MASTER# REMARKS: Domain squatting onload pop-ups
787 #MASTER# BLOCK-REFERRER: http://www.memtest.com/
788 /(t|search)\.php\?uid=ws[a-z0-9]+\.[a-z0-9]+
789 #MASTER# BLOCK-REFERRER: via Yahoo groups
790 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
791 .adinterax.com/(?!(.*)\.(js|gif|jpg))
792 #MASTER# BLOCK-REFERRER:  http://www.weilpod.com
793 #MASTER# REMARKS: Actionsfile feedback item #1710951 2007-05-02
794 img.bluehost.com
795 #MASTER# BLOCK-REFERRER: http://www.linuxinsider.com/story/57759.html
796 #MASTER# REMARKS: Actionsfile feedback item #1736213 at 2007-06-12
797 linuxinsider.com/images/sda/
798 #MASTER# REMARKS: 20070711 Adam Piggott Actionsfile feedback #1700692
799 #MASTER# REMARKS: Tracking JavaScript
800 #MASTER# BLOCK-REFERRER: http://www.hants.gov.uk/record-office/
801 [a-z].clickdensity.com
802 #MASTER# REMARKS: Obnoxious "widget" adverts
803 #MASTER# BLOCK-REFERRER: http://www.quickonlinetips.com/archives/2007/08/nokia-offers-free-bl-5c-battery-replacement-for-overheating/
804 .widgetbucks.com
805
806 #----------------------------------------------------------------------------
807 # Misc Web-bugs, JS and just plain Junk. Images here aren't normal images.
808 #----------------------------------------------------------------------------
809 {+block +handle-as-empty-document -handle-as-image}
810 #MASTER# REMARKS: signature for user tracking nytimes, cnn.com,latimes.com and many others. 10/06/06
811 /b/ss/.+
812 #MASTER# BLOCK-REFERRER: http://www.thesun.co.uk/article/0,,11071-10784,00.html
813 #MASTER# REMARKS: widespread hitbox signature 10/06/06
814 /HG\?hc=
815 #MASTER# BLOCK-REFERRER: http://macaddict.com 10/06/06
816 .visistat.com
817 #MASTER# REMARKS: See <http://www.google.com/analytics/> for user tracking.
818 #MASTER# REMARKS: There is a ssl.google-analytics as well.
819 .google-analytics./
820 #MASTER# BLOCK-REFERRER: http://versiontracker.com and many others. 10/20/06
821 /(.*/)?__utm.gif\?
822 #MASTER# REMARKS: Below Moved here from -handle-as-image 10/16/06 ##########
823 #MASTER# BLOCK-REFERRER: http://forums2.gardenweb.com/forums/orchids/ 09/25/06
824 #MASTER# REMARKS: Mostly JS and plain text stuff
825 .overture.
826 #MASTER# PROBLEM-URL: http://www.linuxtoday.com/
827 #MASTER# REMARKS: /adi has HTML snipplets for use in IFRAMEs 10/15/06
828 .doubleclick.net/adi
829 .doubleclick.net/(.*/)?adj/
830 #MASTER# PROBLEM-URL: http://maps.yahoo.com/
831 #MASTER# REMARKS: /AVE/iview has HTML snipplets for use in IFRAMEs 10/15/06
832 view.atdmt.com/(.*/)?iview/
833 #MASTER# REMARKS: Above Moved here from -handle-as-image 10/16/06 ##########
834 #MASTER# REMARKS: Generic, re: tracking.foxnews.com/HG? 10/01/06
835 tracking.
836 #MASTER# BLOCK-REFERRER: http://netcraft.com and many others 10/22/06
837 /(.*/)?adjs\.php\?
838 #MASTER# BLOCK-REFERRER: http://washingpost.com and others 10/25/06
839 /.*\.gif\?D=DM
840 #MASTER# BLOCK-REFERRER: http://www.washingtonpost.com/
841 #stats.surfaid.ihost.com/(crc/)?images/(bounce/)?uc.GIF
842 #MASTER# BLOCK-REFERRER: http://www.ibm.com 10/09/06
843 #MASTER# REMARKS: Similar hostname and paths appear in multiple locations.
844 stats./c?rc/.*/uc.gif
845 #MASTER# BLOCK-REFERRER: http://priceline.com 10/20/06
846 #MASTER# REMARKS: User tracking, webbug stuff
847 /(.*/)?dcs.gif\?&?dcs
848 #MASTER# BLOCK-REFERRER: http://www.msnbc.com 10/07/06
849 #MASTER# REMARKS: And MANY others. Webbug stuff.
850 /(.*/)?c(lear)?\.gif\?.
851 #MASTER# BLOCK-REFERRER: http://www.investorguide.com 10/08/06
852 #MASTER# BLOCK-REFERRER: http://foodnetwork.com, http://gardenweb.com 10/20/06
853 #MASTER# REMARK: webbug type gif used in MANY places.
854 #MASTER# REMARK: Too many false positives
855 #/(.*/)?(clear|(trans_?1x|blank)?1).gif
856 #MASTER# REMARK: Let's try this way.
857 /(.*/)?(clear|blank|(trans_?|1x)?1).gif\?.
858 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/epdf/ 10/08/06
859 .bc.yahoo.com/b\?P=
860 #MASTER# BLOCK-REFERRER: http://www.motherboard.cz 10/30/06
861 x*.alexa.com
862 #MASTER# BLOCK-REFERRER: http://actorstheatre.org 11/02/06
863 stats./.*\.gif\?
864 #MASTER# BLOCK-REFERRER: http://mplayernetwork.com 11/07/06
865 #MASTER# BLOCK-REFERRER: http://eetimes.com 09/26/06
866 /event.ng/
867 #MASTER# BLOCK-REFERRER: http://www.homedepot.com/ 11/08/06
868 #MASTER# BLOCK-REFERRER: http://www.williams-sonoma.com/ 11/08/06
869 /cm\?[tc]
870 #MASTER# BLOCK-REFERRER: http://www.snapfiles.com/feedback/ 12/13/06 SF tracker
871 .snapfiles.net/rotation/.*\.asp
872 #MASTER# BLOCK-REFERRER: not provided. SF tracker #1616034 12/16/06
873 #MASTER# COMMENT: JS pop-ups
874 spa.snap.com/
875 #MASTER# BLOCK-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html 12/18/06
876 #MASTER# COMMENT: user tracking, and run-away assorted 'junk'
877 #MASTER# BLOCK-REFERRER: http://formwood.com 2007-11-12
878 .insitemetrics.com/
879 #MASTER# COMMENT: user tracking, and assorted 'junk'
880 #MASTER# BLOCK-REFERRER: http://blogblog.com 2007-11-12
881 .extreme-dm.com/
882 #MASTER# COMMENT: user tracking, and assorted 'junk'
883 #MASTER# BLOCK-REFERRER: http://www.schillmania.com 2007-11-12
884 stats.reinvigorate.net/
885 #MASTER# COMMENT: user tracking, and assorted 'junk'
886 #MASTER# BLOCK-REFERRER: http://wordpress.com 2007-11-12
887 .getclicky.com/
888 #MASTER# COMMENT: user tracking, and assorted 'junk'
889 #MASTER# BLOCK-REFERRER: http://infoworld.com 2007-11-12
890 .quantserve.com
891
892 #----------------------------------------------------------------------------
893 # JavaScripts and Texts for ad and popup generation
894 #----------------------------------------------------------------------------
895 #MASTER# BLOCK-REFERRER: http://www.chip.de/artikel/c_artikelunterseite_10423683.html
896 pagead*.googlesyndication./.*\.js
897 #MASTER# REMARKS: broadening scope from a.tfag.de/js.ng/ 10/23/06
898 /js\.ng/
899 #MASTER# BLOCK-REFERRER: http://www.britannica.com/ 10/23/06
900 /popunder
901 #MASTER# BLOCK-REFERRER: http://www.pcmag.com/ 11/22/06 per SF Tracker # 1601148
902 /js/slider\.js
903 #MASTER# BLOCK-REFERRER: http://www.earthcore.com/ feedback item #1605385 12/14/06
904 /t\.php\?cat=.*&kw=.*&sc=
905 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 SF tracker
906 scripts.chitika.net/.*\.js
907 #MASTER# REMARKS: Actionsfile tracker #1674363 2007-03-05, text ads
908 #MASTER# BLOCK-REFERRER: http://www.securityfocus.com/archive/1/461489/30/0/threaded
909 jlinks.industrybrains.com/
910 #MASTER# BLOCK-REFERRER: via Yahoo groups
911 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
912 .adinterax.com/.*\.js
913 #MASTER# BLOCK-REFERRER: http://dictionary.reference.com/search?q=privacy&db=*
914 #MASTER# REMARKS: Actionsfile tracker 1650798 2007-02-02
915 .googleadservices.com/gampad/.*\.js
916 #MASTER# BLOCK-REFERRER: http://www.linuxworld.com/news/2007/061307-brian-aker-interview.html
917 #MASTER# REMARKS: Actionsfile feedback item #1736794 2007-06-13
918 js.adsonar.
919 #MASTER# BLOCK-REFERRER: http://news.zdnet.co.uk/software/0,1000000121,39209666,00.htm
920 #MASTER# REMARKS: Actionsfile feedback item #1736879 2007-06-13, sponsored
921 links. 2007-08-02, more hosts using this scheme, broadening scope.
922 #bwp.zdnet.
923 bwp.
924
925 #############################################################################
926 # Generic block-as-image patterns:
927 #############################################################################
928 {+block-as-image}
929 #MASTER# BLOCK-REFERRER: http://experts-exchange.com/os2gen/
930 /.*ad_?image\.(php|cgi)
931 #MASTER# BLOCK-REFERRER: http://flashhentai.com/Tgp/28-09-2002/index4.html
932 #MASTER# BLOCK-REFERRER: http://www.thughosting.com/www/ixix/a912/912s2.html
933 #MASTER# BLOCK-REFERRER: http://www.fantasiegirl.com/cumshots/3/spunkpatrolgirl302.htm
934 #MASTER# BLOCK-REFERRER: http://www.asianuncut.com/asian2/sep5628.html
935 #MASTER# BLOCK-REFERRER: http://www.tatgirls.com/gals/redhot-2/kitty-carl/lb10.html
936 #MASTER# BLOCK-REFERRER: http://www.cream-porn.com/1/hard/29/02.html
937 /.*recips?/
938 #MASTER# BLOCK-REFERRER: http://www.paroles.net/texte/10818
939 /bandeaux/
940 #MASTER# COMMENT: SF tracker 09/15/06
941 /.*client_?ad\.(php|cgi)
942 #MASTER# COMMENT: SF tracker 09/15/06
943 /.*AIM_UAC.adp
944 #MASTER# BLOCK-REFERRER: http://www.wunderground.com/ 2007-01-20
945 #MASTER# COMMENT: banner at top of page http://server2.as5000.com/AS5000/adserver/click?ID=ADST-00015&C=0&T=1169332403
946 /(.*/)?adserver/image
947 #MASTER# COMMENT: Also from wunderground.com: http://icons-aa.wunderground.com/ads/images/TripAdvisor-Blinky.gif 2007-01-20
948 /(.*/)?ads/images/
949
950 #############################################################################
951 # Site-specific block-as-image patterns:
952 #############################################################################
953 #----------------------------------------------------------------------------
954 # Banner farms:
955 #----------------------------------------------------------------------------
956 #MASTER# BLOCK-REFERRER: http://www.cnn.com/
957 #MASTER# BLOCK-REFERRER: http://www.aol.com/
958 #MASTER# COMMENT: There are at least ar.atwola and pr.atwola. 10/01/06
959 ?r.atwola.com 
960 #MASTER# BLOCK-REFERRER: http://www.altavista.com/
961 #MASTER# BLOCK-REFERRER: http://www.tecchannel.de/
962 #MASTER# BLOCK-REFERRER: http://www.whowhere.lycos.com/
963 #MASTER# REMARKS: Do NOT block /adj or /adi here since these are typically JS
964 .[a-vx-z]*.doubleclick.net/(?!(.*/)?ad[ji])
965 #MASTER# BLOCK-REFERRER: http://www.joecartoon.com/  10/17/06
966 .*servedby.advertising.com
967 #MASTER# BLOCK-REFERRER: http://www.yahoo.com/
968 #.a.yimg.com/(?:(?!/i/).)*$
969 #.a[0-9].yimg.com/(?:(?!/i/).)*$
970 #.yimg.com/(.*/)?a/
971 #.yimg.com/.*/(flash|java)/promotions
972 #.yimg.com/a/.*/flash/
973 #MASTER# REMARKS: The above replaced with below. Actions file tracker #1645616 2007-01-27
974 .yimg.com/.*\.yimg\.com/a/
975 #MASTER# DONT-VERIFY
976 bs*.gsanet.com
977 bs*.einets.com
978 #MASTER# DONT-VERIFY 
979 .qkimg.net
980 #MASTER# BLOCK-REFERRER: http://salon.com/ 10/19/06
981 #MASTER# BLOCK-REFERRER: http://maps.yahoo.com/
982 #MASTER# REMARKS: Banner farms; just exclude their corp. info
983 [a-vx-z]*.atdmt.com/
984 #MASTER# BLOCK-REFERRER: http://www.exactaudiocopy.de/ 09/11/06
985 #MASTER# BLOCK-REFERRER: http://stanford.facebook.com/home.php 
986 .fastclick.net
987 #MASTER# BLOCK-REFERRER: http://www.math.com/school/subject2/lessons/S2U3L6DP.html 09/11/06
988 .casalemedia.com
989 #MASTER# BLOCK-REFERRER: http://www.macnn.com/ 10/09/06
990 kermit.macnn.com/
991 #MASTER# BLOCK-REFERRER: http://www.globalseeker.com/freesamples/ 10/09/06
992 quinst.com/images
993 valuepage.com/images
994 #MASTER# BLOCK-REFERRER: http://www.imdb.com/
995 ia.imdb.com/.*\.swf
996 #MASTER# BLOCK-REFERRER: http://www.dietngo.com/ 10/09/06
997 .reactivpub.
998 #MASTER# BLOCK-REFERRER: http://freemail.web.de/  10/17/06
999 #MASTER# BLOCK-REFERRER: http://www.nytimes.com/2003/11/19/politics/19DEAN.html?ex=1069822800&en=dc82dfff0502faeb&ei=5062&partner=GOOGLE
1000 .as*.falkag.
1001 #MASTER# BLOCK-REFERRER: http://www.macnn.com/news/18944 10/17/06
1002 a.tribalfusion.com/
1003 #MASTER# BLOCK-REFERRER: http://reviews.infosyncworld.com/palmos/featured/index.html?start=1&offset=10 10/19/06
1004 .adserver.com/
1005 #MASTER# BLOCK-REFERRER: http://computers.cnet.com/hardware/0-1027-404-20857400.html?tag=rev
1006 #MASTER# REMARKS: Pointdexter
1007 .ru4.com/
1008 #MASTER# BLOCK-REFERRER: http://www.boursorama.com/infos/actualites/detail_actu_marches.phtml?news=1510287
1009 www.smartadserver.com/
1010 #MASTER# BLOCK-REFERRER: http://www.chez.tiscali.fr/ 10/07/06
1011 admedia.
1012 #MASTER# DONT-VERIFY
1013 #MASTER# REMARKS: Bannerfarm used by Morpheus file sharing software
1014 jmcms.cydoor.com/
1015 #MASTER# BLOCK-REFERRER: http://www.tech-report.com/etc/2003q2/3dmurk03/index.x?pg=7
1016 #MASTER# REMARKS: Netshelter.com farm
1017 #MASTER# REMARKS: Not found but leaving 10/07/06
1018 .adtrix.com
1019 #MASTER# BLOCK-REFERRER: http://discussion.brighthand.com/forumdisplay.php?s=fee44a5b2a6fc2e9e79d6472bc8fbe94&forumid=197 10/19/06
1020 *[0-9].tribalfusion.com/
1021 #MASTER# REMARKS: Actions file tracker 1547656 09/02/06
1022 #MASTER# REMARKS: Update pattern: Actionsfile feedback item #1698822, was opened at 2007-04-11 to catch https://secure.img-cdn.mediaplex.com/0....
1023 img*.mediaplex.com
1024 #MASTER# BLOCK-REFERRER: http://www.tomshardware.com/ 09/28/06
1025 #MASTER# REMARKS: There is adfarm and altfarm.mediaplex
1026 #MASTER# REMARKS: 20070711 Actionsfile feedback #1749013 /ad/fm/ appended, as click-throughs were being blocked. Could only find adverts being served from /ad/fm/
1027 a*farm.mediaplex.com/ad/fm/
1028 #MASTER# REMARKS: Support request 1312362 09/08/06
1029 #MASTER# DUPLICATED: adserver.itsfogo.com
1030 #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
1031 #MASTER# BLOCK-REFERRER: http://www.heise.de/newsticker/meldung/61067
1032 matrix.mediavantage.
1033 #MASTER# REMARKS Ad generator, SF user tracker 09/11/06
1034 .cibleclick.com
1035 #MASTER# REMARKS: Ad generator 09/11/06  http://c1.netshelter.net/campaigns/ITTTech/itttech09_728x90.gif
1036 #MASTER# BLOCK-REFERRER: http://www.osnews.com/ 09/11/06
1037 .netracker.net
1038 #MASTER# REMARKS: ad generator domain per SF tracker 09/11/06
1039 .interclick.com
1040 #MASTER# REMARKS: Ad generator http://c4.maxserving.com/iserver/site=5314/area=ad728x90/aamfmt=normal/aamsz=banner/PageID=
1041 #MASTER# BLOCK-REFERRER: http://www.imdb.com/name/nm0000168/bio 09/12/06
1042 .maxserving.com
1043 #MASTER# REMARKS: Ad generator http://partner.gonamic.de/Affiliate/ViewCounter/index.cfm?trackingID=368232&bIsAffiliate=0
1044 #MASTER# BLOCK-REFERRER:  http://torrent.to/torrent/ 09/12/06
1045 .gonamic.de
1046 #MASTER# REMARKS: 09/11/06 example: img.webads.nl
1047 .webads.
1048 #MASTER# REMARKS: Ad generator http://media.adlegend.com/centrport/20060/511290/GM_emplyee_300x250.gif
1049 #MASTER# BLOCK-REFERRER:  http://news.yahoo.com/news?tmpl=story&cid=534&e=1&u=/ap/20050613/ap_on_he_me/cancer_research
1050 .adlegend.com
1051 #MASTER# REMARKS: Ad generator 09/12/06 http://dist.belnk.com//4/placement/1738/alt_offer/static.jpg
1052 #MASTER# BLOCK-REFERRER: http://groups.yahoo.com/group/louisianaandmardigra/messages/1?viscount=100
1053 .belnk.com
1054 .euros4click.
1055 #MASTER# BLOCK-REFERRER: http://www.planet3dnow.de/cgi-bin/newspub/viewnews.cgi?id=1129904195 
1056 ads-*.quarterserver.
1057 #MASTER# BLOCK-REFERRER: http://adrian.adrian.org/ 10/07/06
1058 searchportal.information.com/
1059 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/17/06
1060 images.ibsys.com/
1061 #MASTER# BLOCK-REFERRER: http://www.rentalhouses.com/search_results.php?searchnew=1&citys_city=&citys_county=&citys_state=&ssubmit=Search&Szip=40205&keyword=&listingid=&strs_state=&strs_city=&strs_street= 11/05/06
1062 .lduhtrp.net/image
1063 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 SF tracker
1064 scripts.chitika.net/.*\.(gif|png|jpg)
1065 #MASTER# REMARKS: Actionsfile feedback item #1648478 2007-01-30
1066 .projectwonderful.com/gen.php
1067 #MASTER# BLOCK-REFERRER: http://www.multimap.com/ (sporadic)
1068 #MASTER# REMARKS: Actionsfile feedback item #1665682 2007-02-21
1069 .akamai.net/.*\.adtech\.de/.*\.(gif|png)
1070 #MASTER# BLOCK-REFERRER: via Yahoo groups
1071 #MASTER# REMARKS: Actionsfile tracker 1645513 2007-01-26
1072 .adinterax.com/.*\.(gif|jpg)
1073 #MASTER# BLOCK-REFERRER: http://www.wotzon.com/profilepage.html?comp_id=1002310&CatID=2
1074 #MASTER# REMARKS: Ad generator per Actionsfile feedback item #1749870 2007-07-08
1075 img.directtrack.com
1076
1077 #----------------------------------------------------------------------------
1078 # Cross-site user tracking
1079 #----------------------------------------------------------------------------
1080 #MASTER# REMARKS: +block-as-image here
1081 #MASTER# BLOCK-REFERRER: http://os2.ru/ 10/07/06
1082 .*.*.spylog.com/
1083 #MASTER# BLOCK-REFERRER: http://www.dhtmlplanet.com/ 10/07/06
1084 statse.webtrendslive.com
1085 #MASTER# BLOCK-REFERRER: http://www.versiontracker.com/
1086 #MASTER# REMARKS: 1) Used on many sites 2) URLs don't _end_ in .gif, hence +imageblock
1087 spinbox.versiontracker.com/.*\.(gif|jpg)
1088 #MASTER# BLOCK-REFERRER: http://mycroft.mozdev.org/ 10/07/06
1089 stat.onestat.com
1090 #MASTER# BLOCK-REFERRER: http://www.meparecebien.com/noticias/discograficas/sinnamon-records/sinnamon-records-libera-a-sus-artistas-nacionales-para-el-mercado-digital-401/
1091 #MASTER# REMARKS: Actionsfile feedback item #1644583 2007-03-05
1092 imp*.tradedoubler.com
1093 #MASTER# BLOCK-REFERRER: http://www.sharepoint.boo.pl/
1094 #MASTER# REMARKS: Not found, but left 10/07/06
1095 stat.webmedia.
1096 #MASTER# BLOCK-REFERRER: http://www.asp-php.net/index.php 10/07/06
1097 log*.xiti.com/
1098 log*.hit-parade.com/
1099 #MASTER# BLOCK-REFERRER: http://www.msnbc.com/news/884810.asp?0si=-&cp1=1
1100 www.xml.eshop.msn.com/tracksponsorimpression.asp
1101 #MASTER# BLOCK-REFERRER: http://www.planetgamecube.com/ 10/07/06
1102 .imrworldwide.com
1103 #MASTER# REMARKS: Actionsfile feedback 1555719 09/10/06, and Debian Bug report 
1104 #MASTER# BLOCK-REFERRER: http://www.nrc.nl/ 09/12/06
1105 .clicktracks.com
1106 #MASTER# REMARK: Actionsfile tracker 1159072 09/12/06
1107 .etracker.
1108 #MASTER# REMARK: Actionsfile tracker 1243494 09/12/06
1109 #MASTER# BLOCK-REFERRER: http://www.spanked-slaves.com/movies14/bdsm14c.html
1110 .x-traceur.com
1111 #MASTER# BLOCK-REFERRER: http://www.aintitcool.com/ 10/05/06
1112 content.ipro.com
1113 #MASTER# BLOCK-REFERRER: http://www.weatherbug.com/default.asp 10/05/06
1114 .247realmedia.com
1115 #MASTER# BLOCK-REFERRER: http://www.samachar.com/ 10/05/06
1116 .sify.com
1117 #MASTER# BLOCK-REFERRER: http://www.nbc4.com/news/2672416/detail.html 10/06/06
1118 .searchignite.com
1119 #MASTER# BLOCK-REFERRER: http://www.sdtimes.com/ 10/07/06
1120 .statcounter.com
1121 #MASTER# BLOCK-REFERRER: http://www.dn.se/ 10/07/06
1122 .research-int.se/data
1123 #MASTER# BLOCK-REFERRER: http://www.chez.aliceadsl.fr/ 10/07/06
1124 .cybermonitor.com
1125 #MASTER# BLOCK-REFERRER: http://disney.go.com
1126 #MASTER# BLOCK-REFERRER: http://abcnews.com  10/15/06
1127 log.go.com/log
1128 #MASTER# BLOCK-REFERRER: http://www.care2.com 10/18/06
1129 stats.indextools.com
1130 #MASTER# BLOCK-REFERRER: http://www.techcrunch.com/ 12/16/06 #1616497 3 urls.
1131 tra*.measuremap.com
1132 .eurekster.com/sidebar
1133 tra*.mybloglog.com
1134 #MASTER# BLOCK-REFERRER:  http://www.polymervision.com/ 
1135 #MASTER# REMARKS: Actionsfile feedback item #1629370 01/16/07
1136 .guesttrace.
1137 #MASTER# BLOCK-REFERRER: http://dictionary.com
1138 #MASTER# REMARKS: Actionsfile feedback item #165078 2007-02-05
1139 insightxe./data/
1140 #MASTER# BLOCK-REFERRER:  http://www.unitedairlines.com
1141 #MASTER# REMARKS: Actionsfile feedback item #1650797 2007-02-05
1142 .insightfirst.com
1143 #MASTER# BLOCK-REFERRER: http://rss.slashdot.org/Slashdot/slashdot
1144 #MASTER# PROBLEM URL: rss.slashdot.org/~a/Slashdot/slashdot?i=ofbWqX
1145 rss.slashdot.org/~a/Slashdot/slashdot\?
1146 #MASTER# PROBLEM URL: rss.slashdot.org/~r/Slashdot/slashdot/~4/102113044
1147 rss.slashdot.org/~r/Slashdot/slashdot/~4/
1148 #MASTER# BLOCK-REFERRER: http://www.isys.ucl.ac.be/bchi/research/Kwaresmi.htm
1149 #MASTER# REMAKRKS: Actionsfile feedback item #1849627 2007-12-12
1150 [a-z][0-9].nedstatbasic.net/
1151
1152 #----------------------------------------------------------------------------
1153 # Specific counters (see above for generic patterns)
1154 #----------------------------------------------------------------------------
1155 #MASTER# BLOCK-REFERRER: http://www.distrowatch.com/table.php?distribution=linex 10/19/06
1156 #MASTER# BLOCK-REFERRER: http://floodle.net 2007-01-21 tracker  #1641102
1157 s*.sitemeter.com/(meter|js/counter.js)
1158 #MASTER# BLOCK-REFERRER: http://personales.mundivia.es/lbouza/ 10/19/06
1159 fastcounter.bcentral.com/
1160 #MASTER# BLOCK-REFERRER: http://osnews.com/ 10/19/06
1161 bilbo.counted.com/
1162
1163 #----------------------------------------------------------------------------
1164 # On-site ads and other single sources:
1165 #----------------------------------------------------------------------------
1166 #MASTER# BLOCK-REFERRER: http://www.travelocity.com/Vacations/0,,TRAVELOCITY||Y,00.html?HPTRACK=mpc_vac
1167 #MASTER# BLOCK-REFERRER: http://dest.travelocity.com/DestGuides/geo_frontdoor/0,,TRAVELOCITY,00.html?HPTRACK=icon_dest 10/07/06
1168 .travelocity./Sponsor_gifs/
1169 #MASTER# DONT-VERIFY
1170 #MASTER# REMARKS: Referenced from HTML-Emails (not checked 10/08/06)
1171 .weather.com/creatives/
1172 .weather.com/web/services/email/
1173 #MASTER# BLOCK-REFERRER: http://gamespot.com/gamespot/filters/0,10850,6013548,00.html 10/08/06
1174 /.*/topslots/topslot
1175 .contextweb.com/
1176 .offermatica.com/
1177 #MASTER# BLOCK-REFERRER: http://www.jpost.com/ 10/08/06
1178 .adbrite.com
1179 #MASTER# BLOCK-REFERRER: http://www.jpost.com/servlet/Satellite?pagename=JPost/A/JPArticle/ShowFull&cid=1038889003183
1180 .jpost.com/images/\d+/promos/
1181 #MASTER# BLOCK-REFERRER: http://www.infoempleo.com/ 10/08/06
1182 .infoempleo.com/(pop-up|images(/Nueva/|/motor))
1183 #MASTER# BLOCK-REFERRER: http://www.hardocp.com/ 10/08/06
1184 hera.hardocp.com/
1185 #MASTER# BLOCK-REFERRER: http://people.aol.com/ 10/08/06
1186 leadback.advertising.
1187 #MASTER# BLOCK-REFERRER: http://astalavista.box.sk/ 10/08/06
1188 .yieldmanager.com/
1189 .displayadsmedia.com
1190 astalavista.box.sk/adult.*\.jpg
1191 #MASTER# BLOCK-REFERRER: http://www.bol.com.br/
1192 smartad.*.*.*
1193 #MASTER# BLOCK-REFERRER: http://www.dinside.no/ 10/08/06
1194 .dinside.no/annonsorer/
1195 #MASTER# BLOCK-REFERRER: http://www.heise.de/ 10/08/06
1196 #MASTER# BLOCK-REFERRER: http://www.spiegel.de/
1197 /RealMedia/ads/
1198 #MASTER# REMARKS: Variation 2007-11-12
1199 /RealMediaAds/
1200 #MASTER# BLOCK-REFERRER: http://www.powerdvd.com 12/28/06 per SF tracker
1201 /top\.php\?d=.*\.[a-z]{2,5}
1202 #MASTER# REMARKS: Actionsfile feedback item #1764161 2007-07-31
1203 #MASTER# BLOCK-REFERRER: http://www.webster.com/dictionary/revering
1204 .google.com/afsonline
1205   
1206 #############################################################################
1207 # Site-specific unblockers:
1208 #############################################################################
1209 {-block}
1210 #MASTER# UNBLOCK-REFERRER: http://www.faqs.org/
1211 .faqs.org/banner\.html
1212 #MASTER# UNBLOCK-REFERRER: http://bannerblind.mozdev.org/
1213 bannerblind.mozdev.org
1214 #MASTER# UNBLOCK-REFERRER: http://advogato.org/
1215 advogato.org
1216 #MASTER# UNBLOCK-REFERRER: http://www.handelsblatt.com/
1217 ad*.vhb.de
1218 #MASTER# UNBLOCK-REFERRER: http://www.globalintersec.com/adv/sendtemp-2001021302.txt
1219 .globalintersec.com/adv
1220 #MASTER# UNBLOCK-REFERRER: http://www.wunderground.com/geo/BannerPromo/US/NY/New_York.html 10/08/06
1221 banners.wunderground.com/
1222 #MASTER# UNBLOCK-REFERRER: http://www.openoffice.org/ 10/09/06
1223 .openoffice.org/banners/
1224 #MASTER# UNBLOCK-REFERRER: http://www.amazon.com/exec/obidos/tg/browse/-/130/ref=gw_br_dvd/102-9730978-3540926 10/09/06
1225 #MASTER# REMARKS: Part of site decoration
1226 .amazon.com/.*/banners/
1227 #MASTER# UNBLOCK-REFERRER: http://www.washingtonpost.com/wp-dyn/articles/A43890-2002Aug4.html
1228 #MASTER# REMARKS: Javascripts whose absence messes the page
1229 .washingtonpost.com/wp-srv/
1230 #MASTER# UNBLOCK-REFERRER: http://www.gnome.org/images/banner-gnomeis 10/09/06
1231 .gnome.org
1232 #MASTER# UNBLOCK-REFERRER: http://www.nycsubway.org/ 10/09/06
1233 .nycsubway.org/img/banner
1234 #MASTER# UNBLOCK-REFERRER: http://www.forgotten-ny.com/ADS/manhattanads/moremahnattan.html
1235 .forgotten-ny.com/ADS/
1236 #MASTER# UNBLOCK-REFERRER: http://counter.li.org 10/09/06
1237 counter.li.org
1238 #MASTER# UNBLOCK-REFERRER: http://adrian.adrian.org/ 10/09/06
1239 adrian.adrian.org
1240 #MASTER# UNBLOCK-REFERRER: http://adela.karlin.mff.cuni.cz/ 10/09/06
1241 adela.karlin.mff.cuni.cz
1242 #MASTER# UNBLOCK-REFERRER: http://www.swcp.com/rtoads/printmag/issue3/neg_data.html 10/09/06
1243 .swcp.com/rtoads/
1244 #MASTER# UNBLOCK-REFERRER: http://www.privoxy.org/actions/index.php
1245 #MASTER# REMARKS: Don't block our own feedback process, even if the
1246 #MASTER# REMARKS: parameters contain block patterns
1247 .privoxy.org
1248 #MASTER# UNBLOCK-REFERRER: http://sourceforge.net/help/tracker.php
1249 sourceforge.net/.*tracker
1250 #MASTER# UNBLOCK-REFERRER: http://www.brawnylads.com/
1251 .brawnylads.com
1252 #MASTER# UNBLOCK-REFERRER: http://adzapper.sourceforge.net/
1253 adzapper.
1254 #MASTER# UNBLOCK-REFERRER: http://de.altavista.com/web/adv
1255 .altavista.com/web/adv
1256 #MASTER# UNBLOCK-REFERRER: http://rads.mcafee.com/rads/scripts/RADS.dll?QueryProduct2
1257 rads.mcafee.com/
1258 #MASTER# UNBLOCK-REFERRER: http://linuxfromscratch.org/cgi-bin/lfscounter.cgi
1259 linuxfromscratch.org/
1260 #MASTER# UNBLOCK-REFERRER: http://dv411.com/advc50.html
1261 dv411.com/.*advc50
1262 #MASTER# UNBLOCK-REFERRER: http://www.freeswan.org/freeswan_trees/freeswan-1.98b/doc/adv_config.html
1263 .freeswan.org/
1264 #MASTER# UNBLOCK-REFERRER: http://www.arm.com/support/ads_faq?OpenDocument&ExpandSection=11 10/09/06
1265 www.arm.com/.*ads
1266 #MASTER# UNBLOCK-REFERRER: http://www.anybrowser.org/campaign/ 10/09/06
1267 www.anybrowser.org/
1268 #MASTER# UNBLOCK-REFERRER: http://www.tads.org/ 10/09/06
1269 www.tads.org/
1270 #MASTER# UNBLOCK-REFERRER: http://www.mbe.com/redir/packtrack.asp 10/10/06
1271 .mbe.com/redir/packtrack.asp
1272 .iship.com/trackit/
1273 #MASTER# UNBLOCK-REFERRER: http://www.esis.com.au/AdvSerialCards/Firewire.htm 10/11/06
1274 .esis.com.au/AdvSerialCards
1275 #MASTER# UNBLOCK-REFERRER: http://www.familysearch.org/ 10/11/06
1276 .familysearch.org/.*banner
1277 #MASTER# UNBLOCK-REFERRER: http://coder.com/ 10/11/06
1278 coder.com/creations/banner/
1279 #MASTER# UNBLOCK-REFERRER: http://arnolds.dhs.org/static/adv_tools.html 10/11/06
1280 arnolds.dhs.org/static/adv_tools.html
1281 #MASTER# UNBLOCK-REFERRER: http://www.gpl.org/
1282 .gpl.org/
1283 #MASTER# UNBLOCK-REFERRER: http://europa.eu.int/yourvoice/ 10/11/06
1284 .europa.eu.
1285 #MASTER# UNBLOCK-REFERRER: http://www.schooner.com/~loverso/no-ads/ 10/11/06
1286 .schooner.com/~loverso/no-ads/
1287 #MASTER# UNBLOCK-REFERRER: http://source.bungie.org/ 10/11/06
1288 source.bungie.org/
1289 #MASTER# UNBLOCK-REFERRER: http://adonthell.linuxgames.com/ 10/11/06
1290 adonthell.linuxgames.com/
1291 #MASTER# UNBLOCK-REFERRER: http://news.bbc.co.uk/furniture/chinese/banner/bbccantonese_600.gif
1292 #MASTER# REMARKS: Banner-free site(s).
1293 .bbc.co.uk/
1294 #MASTER# UNBLOCK-REFERRER: http://adc.netlabs.org/ 10/11/06
1295 adc.netlabs.org/
1296 #MASTER# UNBLOCK-REFERRER: http://www.tela.bc.ca/tads/authoring/multimedia-tads-docs/latin2.htm 10/11/06
1297 .tela.bc.ca/tads/
1298 #MASTER# UNBLOCK-REFERRER: http://adbusters.org/information/ 10/19/06
1299 adbusters.org/
1300 #MASTER# UNBLOCK-REFERRER: http://www.eads.com/ 10/11/06
1301 #MASTER# UNBLOCK-REFERRER: http://www.eads.net/
1302 #MASTER# UNBLOCK-REFERRER: http://www.eads.de/
1303 .eads.*/
1304 #MASTER# UNBLOCK-REFERRER: http://brew.qualcomm.com/brew/en/developer/resources/ad/documentation.html 10/11/06 
1305 .qualcomm.com/brew/developer/resources/ad/
1306 #MASTER# UNBLOCK-REFERRER: http://upgrade.bitdefender.com/update71/avx/Plugins/adsntfs.xmd.gzip 09/04/06
1307 /update/.*adsnt.*
1308 #MASTER# UNBLOCK-REFERRER: http://msdn.microsoft.com/ 09/11/06
1309 .microsoft.com/.*masthead
1310 #MASTER# UNBLOCK-REFERRER: http://indymedia.org adfree site 09/11/06
1311 .indymedia.org
1312 #MASTER# UNBLOCK-REFERRER: http://www.seanbaby.com/stupid/comicads05.shtml 09/11/06
1313 .seanbaby.com
1314 #MASTER# UNBLOCK-REFERRER:  http://www.cels.org/db/keep-track.pl?cat:1 09/11/06
1315 cels.org/.*track
1316 #MASTER# UNBLOCK-REFERRER: http://www.nic.ad.jp/ See http://jprs.co.jp/en/jpdomain.html 09/11/06
1317 #MASTER# REMARKS: 2007-10-04, increase scope per Actionsfile feedback item #1807613
1318 #.nic.ad.jp
1319 #MASTER# REMARKS removed .ad.jp per Actionsfile feedback item #1807613
1320 #MASTER# UNBLOCK-REFERRER: http://www.flickr.com/photo_zoom.gne?id=32594118&size=l 09/11/06
1321 #MASTER# REMARKS: creativecommons.org worthwhile organization 09/11/06
1322 /(.*/)?somerights20.gif
1323 .creativecommons.org
1324 #MASTER# UNBLOCK-REFERRER: http://www.ups.com/WebTracking/track?loc=en_US 09/11/06
1325 .ups.com/.*/track
1326 #MASTER# UNBLOCK-REFERRER: http://adju.st 09/12/06
1327 .adju.
1328 #MASTER# REMARKS: Ad-free art site 09/12/06
1329 .rubberslug.com
1330 .freebsd.org
1331 .fsf.org
1332 .gnu.org
1333 #MASTER# REMARKS: SF tracker 09/15/06, and #1750779 2007-07-09
1334 #MASTER# REMARKS: New home? http://adiumx.cachefly.net/Adium_1.0.5.dmg
1335 adium*.*.
1336 #MASTER# UNBLOCK-REFERRER: http://google.com 10/01/06
1337 #MASTER# REMARKS: This allows many (but not all) Google "Sponsored Links" to function. 
1338 #MASTER# REMARKS: Presumably if someone clicks these they want to go there.
1339 .googleadservices./pagead/adclick
1340 #MASTER# UNBLOCK-REFERRER: http://www.garaget.org
1341 #MASTER# REMARKS: These are "ads" from individuals selling cars per tracker. 10/06/06 
1342 .garaget.org/annonser/
1343 #MASTER# UNBLOCK-REFERRER: http://www.macworld.com/ 10/07/06
1344 #MASTER# REMARKS: Without the unblock, the page layout is horribly broken 10/08/06
1345 edge.macworld.com
1346 #MASTER# UNBLOCK-REFERRER: http:// www.discovery.de  10/19/06
1347 #MASTER# REMARKS: These are promos relevant to the page content.
1348 .discovery./.*/topads/
1349 #MASTER# UNBLOCK-REFERRER: http://dawn.com
1350 #MASTER# REMARKS: SF Actionsfile tracker 10/19/06. These images are not ads.
1351 .dawn.com/.*/(9690dina|aurora_award)\.
1352 #MASTER# UNBLOCK-REFERRER: http://google.com/reader/ 
1353 #MASTER# REMARKS: Initial page does not load, per Support request 10/27/06
1354 .google.com/reader/
1355 #MASTER# REMARKS: Actionsfile Tracker 1587079 10/30/06
1356 .parcel2go.com/track
1357 #MASTER# REMARKS: Actionsfile Tracker #1612950 12/11/06
1358 .amazon.com/gp/gift-central/.*recip/
1359 #MASTER# UNBLOCK-REFERRER: http://yahoo.com 2007-01-27
1360 #MASTER# REMARKS: Actionsfile Tracker #1645501, this is a UI page element.
1361 .yimg.com/.*/themes/ad/
1362 #MASTER# UNBLOCK-REFERRER: http://mozilla.hongo.wide.ad.jp/pub/mozilla.org//thunderbird/releases/
1363 #MASTER# REMARKS: Actionsfile feedback item #1672918 2007-03-03
1364 .ad.*/pub/mozilla.org/
1365 #MASTER# UNBLOCK-REFERRER: http://lads.myspace.com/mini/mini.swf?b=NDgwNzU1ODE=&o=NjQwNzIzMA==&d=MTE3NDI4ODcwNg==&i=MA==&a=VHJ1ZQ==
1366 #MASTER# UNBLOCK-REFERRER: http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=5282733
1367 #MASTER# UNBLOCK-REFERRER: http://lads.myspace.com/videos/vplayer.swf
1368 #MASTER# REMARKS: MySpace videos caught by .*ads. The above profile.myspace.com link grabs the vplayer.swf file (which does not work when directly fetched)
1369 lads.myspace.com
1370 #MASTER# REMARKS: 20070402 Adam Piggott first-party tracking. 20070411 Moved from generic unblockers by path to site-specific unblockers.
1371 #MASTER# UNBLOCK-REFERRER: http://www.shockwave.com/servlet/DownloadEcommTracker?sku=fizzball-pc&promoCode=SiteShockwaveLandingPage
1372 .shockwave.com/servlet/DownloadEcommTracker
1373 #MASTER# UNBLOCK-REFERRER: http://www.fish4.co.uk/iad/lettings/advert?adId=12389712&src=nestoria
1374 #MASTER# REMARKS: 20070411 Adam Piggott fish4.co.uk is a popular UK advertising site for cars, properties and jobs and uses ad/advert all over the place, understandably.
1375 .fish4.co.uk/.*ad
1376 #MASTER# REMARKS: Actionsfile feedback item #1700037 2007-04-13 HB
1377 #MASTER# UNBLOCK-REFERRER: http://www.mp3.com.au/popup/popup.asp?id=110433
1378 .mp3.com.au/.*popup
1379 #MASTER# REMARKS Actionsfile feedback #1700915 2007-04-15
1380 #MASTER# UNBLOCK-REFERRER: http://www.svd.se/ego/339/http://www.e24.se/dynamiskt/reklam_media/did_15092793.asp
1381 #MASTER# UNBLOCK-REFERRER: http://www.e24.se/dynamiskt/reklam_media/did_15092793.asp
1382 /(.*/)?dynamiskt/reklam_media/did_
1383 #MASTER# REMARKS 20070710 Actionsfile feedback #1751020
1384 switch.atdmt.com/action/
1385 #MASTER# UNBLOCK-REFERRER: http://www.parcelforce.com/portal/pw/track?catId=7500082
1386 .parcelforce.com/.*track
1387 #MASTER# UNBLOCK-REFERRER: redirect from http://go.microsoft.com/fwlink?linkid=51093
1388 #MASTER# REMARKS: Actionsfile feedback item #1757121 2007-07-19
1389 .microsoft.com/.*/adschema/
1390 #MASTER# UNBLOCK-REFERRER: http://upload.wikimedia.org/wikipedia/en/a/ad/Picturecarnegie.jpg
1391 .wikimedia.org/
1392 #MASTER# UNBLOCK-REFERRER: http://en.wikipedia.org/wiki/Advertisement
1393 .wikipedia.org/
1394
1395 #############################################################################
1396 # Site-specific special rules:
1397 #############################################################################
1398
1399 #----------------------------------------------------------------------------
1400 # These sites are very complex (read: keen on your identity) and require
1401 # minimal interference.
1402 #----------------------------------------------------------------------------
1403 {fragile}
1404 .office.microsoft.com
1405 .windowsupdate.microsoft.com
1406 #MASTER# PROBLEM URL: http://metrics.apple.com 10/11/06
1407 # too broad: .apple.com
1408 www.apple.com
1409 store.apple.com
1410 images.apple.com
1411 #MASTER# REMARKS: Actions Tracker 1293057 09/02/06
1412 .update.microsoft.com
1413 #MASTER# REMARKS: Various reports 09/16/06. This site also requires pop-ups.
1414 mail.google.
1415
1416 #----------------------------------------------------------------------------
1417 # Semi-fragile, allow for blocks.
1418 #----------------------------------------------------------------------------
1419 { -crunch-all-cookies -filter -fast-redirects -hide-referer -kill-popups -prevent-compression }
1420 #MASTER# REMARKS: Problem URL: adserver.yahoo.com 10/01/06
1421 #MASTER# REMARKS: This is much too broad for my taste. It forces me to add
1422 #MASTER# REMARKS: a special yahoo section in my user.action file, just to
1423 #MASTER# REMARKS: confirm my defaults in default.action. fk 2007-01-19
1424 .yahoo.com
1425
1426 #----------------------------------------------------------------------------
1427 # Shopping and banking sites - allow cookies and pop-ups
1428 #----------------------------------------------------------------------------
1429 #MASTER# REMARKS: This section not checked 10/11/06 HB
1430 {shop}
1431 .quietpc.com
1432 .worldpay.com   # for quietpc.com
1433 .jungle.com
1434 .dabs.com
1435 .overclockers.co.uk
1436 .db24.de
1437 .ebay.
1438 .mobile.de
1439 www.fondationlejeu.com
1440 www.techtv.com
1441 .mywebgrocer.com
1442
1443 #----------------------------------------------------------------------------
1444 # Subscription sites (with credible privacy policy) - allow permanent cookies
1445 #----------------------------------------------------------------------------
1446 {-session-cookies-only}
1447 #MASTER# PROBLEM-URL: http://www.nytimes.com/auth/login
1448 .nytimes.com/
1449 #MASTER# PROBLEM-URL: http://www.volkskrant.nl/
1450 .volkskrant.nl/
1451
1452 #----------------------------------------------------------------------------
1453 # These sites require pop-ups, so don't use the unconditional filters.
1454 #----------------------------------------------------------------------------
1455 {allow-popups}
1456 #MASTER# PROBLEM-URL: http://www.aprilbarrows.com/discography.html
1457 www.aprilbarrows.com/discography\.html$
1458 #MASTER# PROBLEM-URL: http://www.nvidia.com/view.asp?PAGE=windows2000
1459 .nvidia.com
1460 #MASTER# PROBLEM-URL: http://www15.chathouse.com/games/
1461 www*.chathouse.com/games/
1462 #MASTER# PROBLEM-URL: http://www.bild.de/
1463 .bild.t-online.de
1464 #MASTER# PROBLEM-URL: http://www.netflix.com/
1465 .netflix.com
1466 #MASTER# PROBLEM-URL: http://my.aol.com/
1467 my.aol.com
1468 #MASTER# PROBLEM-URL: http://www.cnn.com/
1469 #MASTER# REMARKS: Re-enable "Story Tools" i.e. printing, emailing etc.
1470 i.cnn.net/cnn/.*/clickability/button
1471 #MASTER# PROBLEM-URL: http://www.rosettaproject.org:8080/live/search/contribute/swadesh/view?ethnocode=SPN
1472 .rosettaproject.org
1473 #MASTER# PROBLEM-URL: http://www.quantum.com requires popups for downloads, etc. 09/11/06
1474 .quantum.com
1475 #MASTER# PROBLEM-URL: http://www.liberation.fr 11/23/06 Actions tracker
1476 .liberation.fr
1477
1478 #----------------------------------------------------------------------------
1479 # Sometimes (i.e. often!) fast-redirects catches things by mistake
1480 #----------------------------------------------------------------------------
1481 #MASTER# REMARKS: This section NOT checked 10/13/06 HB
1482 {-fast-redirects}
1483 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
1484 #MASTER# PROBLEM-URL: http://www.google.com/search?q=foo
1485 .google.
1486 #MASTER# PROBLEM-URL: http://de.altavista.com/q?pg=q&q=foo&kl=XX&search.x=28&search.y=8&what=web
1487 .altavista.com/(.*(like|url|link):|trans.*urltext=)http
1488 #MASTER# PROBLEM-URL: http://www.speedfind.de/cgi-bin/search?q=foo&t=STANDARD
1489 .speedfind.de
1490 #MASTER# PROBLEM-URL: http://www.nytimes.com/
1491 .nytimes.com
1492 #MASTER# PROBLEM-URL: http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
1493 #MASTER# REMARKS: Yahoo logout URL after first redirect. fk 2007-01-19
1494 #MASTER# REMARKS: Logout fails if we fast-redirect to the URL after "done=".
1495 #MASTER# REMARKS: Reported in support request #1635354.
1496 .yahoo.com/.*done=http
1497 #MASTER# PROBLEM-URL: http://us.rd.yahoo.com/reg/login1/lisu/login/uk/ym/*http://edit.europe.yahoo.com/c onfig/login?.tries=1&.src=ym&.md5=&.hash=&.js=1&.last=&...kP=Y&.done=http://mail .yahoo.com&.pd=ym_ver=0&c=&login=XXX&passwd=XXX&.persistent =&.hash=1&.md5=1
1498 #MASTER# REMARKS: Reported in support request #1802365.
1499 .rd.yahoo.com/reg/login1/
1500 #MASTER# PROBLEM-URL: http://validator.w3.org/check
1501 .w3.org
1502 #MASTER# PROBLEM-URL: http://www.ask.com/
1503 .directhit.com
1504 #MASTER# PROBLEM-URL: http://www.zagats.com/
1505 .zagats.com
1506 #MASTER# PROBLEM-URL: http://www.passport.com/Consumer/default.asp?lc=1033
1507 #MASTER# PROBLEM-URL: http://www.msn.com/
1508 my.msn.com/passport/pp(consent|set)\.ashx\?msnru=
1509 www.passport.com/Consumer/default\.asp\?lc=[0-9]+&msppchlg=[01]&mspplogin=
1510 login.passport.com/logout\.(asp|srf)\?
1511 #MASTER# PROBLEM-URL: http://www.fileplanet.com
1512 download.com.com/redir\?
1513 www.fileplanet.com/redir\.asp\?
1514 #MASTER# PROBLEM-URL: http://cyber.law.harvard.edu/filtering/china/test/
1515 .edu
1516 #MASTER# PROBLEM-URL: http://web.archive.org
1517 #MASTER# PROBLEM-URL: http://web.archive.org/web/19970715180251/http://www.gmd.de/
1518 .archive.org
1519 #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
1520 www.guenstiger.de
1521 #MASTER# PROBLEM-URL: http://anon.free.anonymizer.com/http://www.privoxy.org/
1522 .anonymizer.com
1523 #MASTER# PROBLEM-URL: http://www.mailtothefuture.com/public/logon?http://www.mailtothefuture.com/
1524 www.mailtothefuture.com
1525 #MASTER# PROBLEM-URL: http://support.microsoft.com/default.aspx?scid=KB;en-us;q219110
1526 support.microsoft.com/
1527 #MASTER# PROBLEM-URL: http://www.alexa.com/data/details/traffic_details?q=blogspot&url=http://www.blogalia.com
1528 .alexa.com
1529 #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
1530 www.translate.ru/url/
1531 #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
1532 schneegans.de/
1533 #MASTER# PROBLEM-URL: http://config.privoxy.org/edit-actions-submit?f=user ... &redirect_mode=http%3A%2F%2Fwww.privoxy.org%2F
1534 config.privoxy.org/
1535 #MASTER# PROBLEM-URL: http://users.wsj.com/lmda/do/checkLogin?mg=evo-wsj&url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB117313867582027623.html
1536 .wsj.com/lmda/do/checkLogin
1537 #MASTER# PROBLEM-URL: http://del.icio.us/url/check\?url=http%3A%2F%2Fwww.privoxy.org
1538 #MASTER# REMARKS: As we already have five other PROBLEM-URLs that contain '?url=',
1539 #MASTER# REMARKS: it might make sense to allow '/.*?url=' in general
1540 del.icio.us/
1541 #MASTER# PROBLEM-URL: http://calgary.ctv.ca/servlet/RTGAMArticleHTMLTemplate/B/20070615/goexpo?brand=generic&hub=&tf=CFCNPlus/generic/hubs/frontpage.html&cf=CFCNPlus/generic/hubs/frontpage.cfg&slug=goexpo&date=20070615&archive=CFCNPlus&ad_page_name=&nav=home&subnav=fullstory&site_cfcn=http://calgary.ctv.ca
1542 .ctv.ca/.*&site_cfcn=http://
1543 #MASTER# PROBLEM-URL: http://memberservices.informit.com/checkLogin.ashx?partner=8&r=http%3a%2f%2fwww.informit.com%2farticles%2farticle.asp%3fp%3d766375%26seqNum%3d1
1544 .informit.com/.*&r=http%3a%2f%2f
1545 #MASTER# PROBLEM-URL: http://access.adobe.com/access/getStatus.do?jobid=&srcPdfUrl=http://cups.cs.cmu.edu/soups/2007/proceedings/p41_clark.pdf&convertTo=html&visuallyImpaired=preferhtml&preferHTMLReason=&platform=&comments=&starttime=1187362172109 
1546 access.adobe.com/access/getStatus.do\?jobid=&srcPdfUrl=
1547 #MASTER# PROBLEM-URL: http://view.samurajdata.se/ps.php?url=http%3A%2F%2Fcups.cs.cmu.edu%2Fsoups%2F2007%2Fproceedings%2Fp41_clark.pdf&submit=View%21
1548 view.samurajdata.se/ps\.php\?url=
1549 #MASTER# PROBLEM-URL: http://www.blogger.com/navbar.g?targetBlogID=8919860543765866292&blogName=Kickin%27+the+Darkness&publishMode=PUBLISH_MODE_HOSTED&navbarType=BLUE&layoutType=LAYOUTS&homepageUrl=http%3A%2F%2Fblog.kickin-the-darkness.com%2F&searchRoot=http%3A%2F%2Fblog.kickin-the-darkness.com%2Fsearch
1550 .blogger.com/navbar\.g
1551
1552 #----------------------------------------------------------------------------
1553 # No filtering for sourcecode or other automatically parsed content
1554 #----------------------------------------------------------------------------
1555 {-filter -prevent-compression}
1556 #MASTER# PROBLEM-URL: http://ijbswa.cvs.sourceforge.net/ijbswa/current/
1557 .cvs.
1558 /.*(cvs(view|web)|viewcvs)
1559 #MASTER# REMARKS: The same for Subversion
1560 #MASTER# PROBLEM-URL: http://svn.sourceforge.net/
1561 .svn.
1562 .websvn.
1563 /(.*/)?svn/
1564 #MASTER# PROBLEM-URL: http://liveupdate.symantec.com/ennlu.x86
1565 #MASTER# REMARKS: Jeez, could you please stay with one of them?
1566 liveupdate.symantec.com
1567 liveupdate.liveupdatesymantec.com
1568 liveupdate.symantecliveupdate.com
1569 #MASTER# PROBLEM-URL: http://www.bookmarklets.com/
1570 .bookmarklets.com
1571 #MASTER# PROBLEM-URL: http://www.squarefree.com/bookmarklets/
1572 .squarefree.com/bookmarklets/
1573 #MASTER# DONT-VERIFY
1574 #MASTER# REMARKS: Used by Mac OSX's automatic software update feature
1575 swquery.apple.com
1576 swscan.apple.com
1577 #MASTER# PROBLEM-URL: http://atl.speakeasy.net/300k
1578 #MASTER# REMARKS: These are various US DSL speed tests sites, where MIME is wrong
1579 .speakeasy.net/\d+k
1580 #MASTER# PROBLEM-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=185033
1581 .debian.org
1582 #MASTER# DONT-VERIFY
1583 #MASTER# REMARKS: Popular bug-tracking system - likely to contain code
1584 bugzilla.
1585 .tldp.org
1586 #MASTER# REMARKS: mail should not be filtered 09/18/06
1587 webmail.
1588 #MASTER# REMARKS: all the world is wikified 09/02/06. Generic wiki un-filterers.
1589 .wiki*.
1590 .*wiki.
1591 /.*wiki/
1592 #MASTER# REMARKS: protect some google projects from accidental JS/HTML tampering, etc
1593 maps.google.
1594 .google.com/(calendar|reader)
1595 #MASTER# REMARKS: A lot of code and docs on these sites:
1596 code.
1597 developer.
1598 .mozdev.org
1599 .mozilla.org
1600 .perl.org
1601 .cpan.org
1602 .webdeveloper.com
1603 .ibm.com/developerworks
1604 .apache.org/docs
1605 .comptechdoc.org
1606 .webmonkey.com
1607 .webreference.com
1608 docs.sun.com
1609 java.sun.com
1610 .thescripts.com
1611 .php.net
1612 .phpdeveloper.org
1613 .oreillynet.com/pub
1614 .devshed.com
1615 .htmlgoodies.com
1616 .javascript.com
1617 javascript.internet.com
1618 .w3schools.com
1619 .devguru.com
1620 javascriptkit.com
1621 .xulplanet.com
1622 .perl.com/language/newdocs
1623 .freebsd.org
1624 .watson.org
1625 .netbsd.org
1626 .openbsd.org
1627 .dragonflybsd.org
1628 .freedesktop.org
1629 .gnu.org
1630 .fedoraproject.org
1631 .userscripts.org
1632 #MASTER# REMARKS: Bug trackers like Flyspray and Mailinglist interfaces like Mailman:
1633 /(.*/)?flyspray/
1634 /(.*/)?mail(man|archive|inglists?)/
1635 bugs.
1636 #MASTER# REMARKS: Actionsfile tracker 1555909 09/17/06, various problems with cpu and logging in.
1637 quoka.de
1638
1639 #----------------------------------------------------------------------------
1640 # These sites suffer from a bug in PHP < 4.2.3 (ob_gzhandler broken;
1641 # workaround is to use zlib.output_compression):
1642 # (Section obsolete as of Privoxy 3.0.3, which has workaround)
1643 #----------------------------------------------------------------------------
1644 #{-prevent-compression}
1645 # Surely this is rectified by now 09/16/06 ???
1646 #MASTER# PROBLEM-URL: http://www.powie.de/
1647 #www.powie.de
1648 #MASTER# PROBLEM-URL: http://www.phpcenter.de/
1649 #www.phpcenter.de
1650 #MASTER# PROBLEM-URL: http://www.timeanddate.com
1651 #www.timeanddate.com
1652 #MASTER# PROBLEM-URL: http://www.pclinuxonline.com/
1653 #MASTER# PROBLEM-URL: http://pclinuxonline.com/
1654 #.pclinuxonline.com
1655 #MASTER# PROBLEM-URL: http://www.dungeoncrawl.org/
1656 #.dungeoncrawl.org
1657 #MASTER# PROBLEM-URL: http://www.digitalspy.co.uk/
1658 #www.digitalspy.co.uk
1659 #MASTER# PROBLEM-URL: http://www.audio-illumination.org/forums/
1660 #www.audio-illumination.org/forums/
1661 #MASTER# PROBLEM-URL: http://www.catchword.com/
1662 #www.catchword.com
1663 #MASTER# PROBLEM-URL: http://www.ubernet.org
1664 #www.ubernet.org
1665 #MASTER# PROBLEM-URL: http://www.ooodocs.org/
1666 #www.ooodocs.org
1667 #MASTER# PROBLEM-URL: http://www.ntcompatible.com/
1668 #www.ntcompatible.com
1669 #MASTER# PROBLEM-URL: http://www.winehq.com/
1670 #.winehq.com
1671 #MASTER# PROBLEM-URL: http://www.dotcomtod.de/
1672 #.dotcomtod.de/
1673 #MASTER# PROBLEM-URL: http://www.tweakers.net
1674 #.tweakers.net
1675 #MASTER# PROBLEM-URL: http://www.troublesathome.nl
1676 #.troublesathome.nl
1677 #MASTER# PROBLEM-URL: http://www.art.softshape.com
1678 #.art.softshape.com
1679
1680 #----------------------------------------------------------------------------
1681 # Innocent images in standard banner sizes found here:
1682 #----------------------------------------------------------------------------
1683 {-filter{banners-by-size}}
1684 #MASTER# PROBLEM-URL: http://www.pricegrabber.com/search_getprod.php?masterid=580330&zip_code=92840&found=1&ut=40a6c41f2c9d1244 10/14/06
1685 .pricegrabber.com/search_getprod.php
1686 #MASTER# PROBLEM-URL: http://www.cnn.com/WORLD/
1687 #MASTER# REMARKS: URL-based filtering is enough here. 120x90 content images
1688 .cnn.com
1689 #MASTER# PROBLEM-URL: http://gamespot.com/gamespot/filters/0,10850,6013054,00.html
1690 #MASTER# REMARKS: 120x90 content images
1691 .gamespot.com/gamespot
1692 #MASTER# PROBLEM-URL: http://www.wral.com/ 10/14/06
1693 www.wral.com
1694 #MASTER# PROBLEM-URL: http://www.cartoonnetwork.com/ 10/15/06
1695 .cartoonnetwork.com/
1696 #MASTER# PROBLEM-URL: http://www.anybrowser.org/campaign/  10/15/06
1697 .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.pbs.org/wgbh/pages/roadshow/series/highlights/2003/albuquerque/index.html 10/15/06
1701 .pbs.org/.*/roadshow/
1702 #MASTER# PROBLEM-URL: http://objects.povworld.org/cat/Food/ 10/15/06
1703 objects.povworld.org/cat/
1704 #MASTER# PROBLEM-URL: http://www.xach.com/gimp/tutorials/tiles.html 10/15/06
1705 www.xach.com/gimp/
1706 #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
1707 #MASTER# REMARKS: The destination map at the bottom of the page.
1708 .mapquest.com/directions/
1709 #MASTER# PROBLEM-URL: http://www.theonion.com/ 10/15/06
1710 #MASTER# REMARKS: A nasty "premercial" ad is required to enter this site.
1711 .theonion.com/content/
1712 #MASTER# PROBLEM-URL: http://www.pattilupone.net/gallery.html 10/15/06
1713 .pattilupone.net/gallery.html
1714 #MASTER# PROBLEM-URL: http://www.ambrosiasw.com/games/evn/desktops.html 10/15/06
1715 .ambrosiasw.com/
1716 #MASTER# PROBLEM-URL: http://oca.microsoft.com/en/Welcome.asp 10/14/06
1717 .microsoft.com
1718 #MASTER# PROBLEM-URL: http://javabog.dk/ijk/ 10/15/06
1719 javabog.dk/ijk/
1720 #MASTER# REMARK: Per Debian bug report #319025 09/09/06
1721 .w3.org
1722
1723 #----------------------------------------------------------------------------
1724 # These don't work without the referrer information:
1725 #----------------------------------------------------------------------------
1726 {-hide-referrer}
1727 #MASTER# REMARKS: This section NOT checked 10/18/06 HB
1728 #MASTER# REMARKS: These are movie clips, linked from http://us.imdb.com
1729 .totaleclips.com
1730 #MASTER# PROBLEM-URL: http://www.mandrakelinux.com/en/ftp.php3
1731 #MASTER# REMARKS: Link to download page breaks
1732 .mandrakelinux.com/en/ftp.php3
1733 #MASTER# REMARKS: Actions Tracker 1313157
1734 validator.w3.org/check\?uri=referer
1735 #MASTER# REMARKS: Fixes Debian Bug #250407
1736 .petitiononline.com/mod_perl/signed.cgi
1737 #MASTER# REMARKS: Tracker bug report 1107806 09/26/06
1738 .telia.se
1739 #MASTER# REMARKS: XML validator that actually works.
1740 schneegans.de/sv/\?url=referer
1741
1742 #----------------------------------------------------------------------------
1743 # These animated gifs are either useful or nice:
1744 #----------------------------------------------------------------------------
1745 {-deanimate-gifs}
1746 #MASTER# PROBLEM-URL: http://www.care2.com/
1747 #MASTER# REMARKS: Wanted animations on ecards
1748 #MASTER# REMARKS: Leaving 10/18/06 though most animated seem flash now.
1749 .care2.com
1750 .care-mail.com
1751 #MASTER# PROBLEM-URL: http://weather.chicagotribune.com/radar/station.asp?ID=LOT19&type=loop
1752 #MASTER# REMARKS: These are weather radar images. 10/18/06
1753 .wunderground.com
1754 #MASTER# PROBLEM-URL: http://www.wunderground.com/radar/station.asp?ID=MPX19&type=loop&clutter=1 10/18/06
1755 66.28.250.180/data/
1756 #MASTER# PROBLEM-URL: http://www.teamquest.com/html/gunther/laquiz.shtml
1757 .teamquest.com/gifs/gunther/
1758 #MASTER# REMARKS: 09/12/06 Art site, and ad-free
1759 .rubberslug.com
1760
1761 #----------------------------------------------------------------------------
1762 # The "site-specifics" filter has special cures for problems found here:
1763 #----------------------------------------------------------------------------
1764 #MASTER# REMARKS: This section NOT checked 10/15/06 HB.
1765 {+filter{site-specifics}}
1766 #MASTER# PROBLEM-URL: http://www.spiegel.de/static/js/flash-plugin.js
1767 .spiegel.de/static/js/flash-plugin\.js
1768 #MASTER# PROBLEM-URL: http://www.quelle-bausparkasse.de/
1769 .quelle-bausparkasse.de/$
1770 #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
1771 .groups.yahoo.com/group/
1772 #MASTER PROBLEM-URL: http://www.nytimes.com/
1773 .nytimes.com/
1774
1775 #----------------------------------------------------------------------------
1776 # Content under these TLDs is most probably in character sets which the
1777 # demoronizer filter would mess up
1778 #----------------------------------------------------------------------------
1779 {-filter{demoronizer}}
1780 .jp
1781 .cn
1782 .tw
1783 .ru
1784 .kr
1785
1786 #----------------------------------------------------------------------------
1787 # Misc special rules:
1788 #----------------------------------------------------------------------------
1789 {-filter{content-cookies} -filter{webbugs}}
1790 #MASTER# PROBLEM-URL: http://www.friendscout24.de/
1791 #MASTER# REMARKS: Needs content-cookies for cookie test on index page; needs webbugs for storing profile(!)
1792 .friendscout24.de
1793 #MASTER# PROBLEM-URL:  http://www.webreference.com/js/column8/property.html 10/15/06
1794 #MASTER# REMARKS: Explains how content cookies work
1795 .webreference.com/js/column8/property.html
1796
1797 {-filter{fun}}
1798 #MASTER# PROBLEM-URL: http://www.privoxy.org/user-manual/filter-file.html
1799 #MASTER# REMARKS: Don't change the filter code with itself ;-)
1800 /(.*/)?user-manual/filter-file.html
1801
1802 #{+filter{img-reorder} +filter{banners-by-link}}
1803 #MASTER# REMARKS: Temporarily decommissioning 10/15/06. Violates Cautious no filter policy. HB
1804 ##MASTER# PROBLEM-URL: http://www.dn.se/
1805 ##MASTER# REMARKS: Can't catch by size or location
1806 #www.dn.se
1807
1808 {-filter{img-reorder}}
1809 #MASTER# PROBLEM-URL: http://images.google.com
1810 #MASTER# REMARKS: Google images don't show up with img-reorder on
1811 #MASTER# REMARKS: Also images on finance.google.com 09/25/06
1812 .google.
1813 #MASTER# PROBLEM-URL: http://wired.com 09/23/06
1814 /.*wired(\.com)?/
1815 .wired.com/
1816
1817 {-filter{js-annoyances}}
1818 #MASTER# PROBLEM-URL: http://www.nasa.gov 10/16/06, still breaks.
1819 #MASTER# REMARKS: No progress past main page without js-annoyances
1820 .nasa.gov
1821 #MASTER# REMARKS: Exclude per Debian bug report #377843
1822 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1823 .cnrs.fr 
1824 #MASTER# REMARKS: Exclude per Debian bug report #377843
1825 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1826 blogs.msdn.com
1827
1828 {-filter{unsolicited-popups}}
1829 #MASTER# DONT-VERIFY
1830 #MASTER# REMARKS: Breaks Movable Type's admin interface (http://www.movabletype.org/)
1831 /.*mt.cgi$
1832 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
1833 #MASTER# PROBLEM-URL: http://www2.cnrs.fr/presse/communique/900.htm
1834 .cnrs.fr 
1835 #MASTER# REMARKS: Exclude per Debian bug report #377843 09/17/06
1836 #MASTER# PROBLEM-URL: http://blogs.msdn.com/wga/archive/2006/07/16/667063.aspx
1837 blogs.msdn.com
1838
1839 {+fast-redirects{check-decoded-url} -block}
1840 #MASTER# REMARKS: Yahoo search results. Added 2007-01-19 fk
1841 #MASTER# REDIRECT-REFERRER: http://search.yahoo.com/search?p=privoxy
1842 #MASTER# PROBLEM-URL: http://rds.yahoo.com/_ylt=A0geuryczbBF._YAEmxXNyoA;_ylu=X3oDMTB2b2gzdDdtBGNvbG8DZQRsA1dTMQRwb3MDMQRzZWMDc3IEdnRpZAM-/SIG=11b3qg40n/EXP=1169301276/**http%3a//www.privoxy.org/
1843 rds.yahoo.com/
1844 #MASTER# COMMENTS: Verified 2007-01-19 fk
1845 #MASTER# REDIRECT-REFERRER: http://www.gamefaqs.com/computer/doswin/game/914819.html
1846 #MASTER# PROBLEM-URL: http://dw.com.com/redir?asid=0&astid=8&siteid=19&edid=107&destCat=33862&destURL=http%3A%2F%2Fdb.gamefaqs.com%2Fcomputer%2Fdoswin%2Ffile%2Fvampire_tmb_b.txt
1847 dw.com.com/
1848 #MASTER# REMARKS: Action tracker 1593393. Added 2007-01-20.
1849 #MASTER# PROBLEM-URL: http://wzus.bloglines.com/r?t=a&d=us&s=bl&c=blen&ti=1&ai=51060&l=dir&o=0&sv=z6f537f5b&ip=971AC44B&u=http%3A%2F%2Fwww.skweezer.net%2Fbloglines%2Fskweeze.aspx%3F%26i%3Dd%26l%3Den%26r%3Dhttp%253A%252F%252Fwww.bloglines.com%252Fmyblogs_display%253Fsub%253D29302699%2526site%253D5382440%26url%3Dhttp%253A%252F%252Fpermalink.gmane.org%252Fgmane.linux.debian.devel.changes.unstable%252F97340
1850 .bloglines.com/r\?
1851 www.skweezer.net/bloglines
1852
1853 {+block}
1854 #MASTER# COMMENTS: This section not checked 10/17/06 HB. Still out there?
1855 #MASTER# PROBLEM-URL: http://www.anti-leech.com/theft_example.html
1856 #MASTER# REMARKS: Lame attempt at banning ad-blockers. Used by other websites as well.
1857 /antitheft\.php
1858
1859 { +prevent-compression }
1860 .compusa.com/
1861
1862 {+filter{tiny-textforms}}
1863 .sourceforge.net/tracker
1864
1865 {+downgrade-http-version}
1866 #MASTER# COMMENTS: This section not checked 10/17/06 HB
1867 #MASTER# REMARKS: This is work-around for CUPS http configuration.
1868 :631
1869
1870 #MASTER# REMARKS: If Privoxy is disabled, requests for config.privoxy.org/
1871 #MASTER# REMARKS: reach privoxy.org and are redirected to privoxy.org/config.
1872 #MASTER# REMARKS: The instructions tell the user to reload the page with
1873 #MASTER# REMARKS: Privoxy enabled to reach the configuration webinterface,
1874 #MASTER# REMARKS: to make this work we have to intercept the request and revert
1875 #MASTER# REMARKS: the redirection.
1876 {+redirect{http://config.privoxy.org/}}
1877 .privoxy.org/config
1878
1879 #MASTER# REMARKS: Privoxy's "unsafe" CGI pages check the referrer 
1880 #MASTER# REMARKS: to make sure the user reached them intentionally.
1881 #MASTER# REMARKS: Disabling hide-referrer so there's a referrer left to check.
1882 #MASTER# REMARKS: Disabling fast-redirects because if CGI crunching gets
1883 #MASTER# REMARKS: enabled it could be leveraged to fool the referrer check.
1884 {-hide-referrer -fast-redirects}
1885 p.p/
1886 config.privoxy.org/
1887
1888 #MASTER# REMARKS: Yahoo logout URLs need special treatment,
1889 #MASTER# REMARKS: the URL after "done=" is no fast-redirect. 2007-01-19 fk
1890 #MASTER# REMARKS: Reported in support request #1635354.
1891 #MASTER# PROBLEM-URL: http://us.ard.yahoo.com/SIG=AAAAAAAAA/M=NNNNNN.NNNNNNN.NNNNNNN.NNNNNNN/D=mail/S=NNNNNNNNN:HEADR/Y=YAHOO/EXP=NNNNNNNNNN/A=NNNNNNN/R=N/SIG=AAAAAAAAA/*http://login.yahoo.com/config/login?logout=1&.done=http://mail.yahoo.com&.src=ym&.intl=us
1892 {-fast-redirects +redirect{s@^.*\*(http://login\.yahoo\.com/.*)$@$1@i}}
1893 .yahoo./.*http://login.yahoo.com/config/login.*http://
1894
1895 #MASTER# set vi:nowrap
1896
1897 #----------------------------------------------------------------------------
1898 # Sections that modify the action settings based on tags.
1899 #----------------------------------------------------------------------------
1900
1901 #############################################################################
1902 # Depends on +client-header-tagger{image-requests}
1903 #############################################################################
1904 {-handle-as-empty-document \
1905  +handle-as-image \
1906 }
1907 TAG:^IMAGE-REQUEST$
1908
1909 #############################################################################
1910 # Depends on +client-header-tagger{css-requests}
1911 #############################################################################
1912 {+handle-as-empty-document \
1913  -handle-as-image \
1914 }
1915 TAG:^CSS-REQUEST$
1916