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