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