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