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