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