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