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