More compiler warning message maintenance
[privoxy.git] / default.action
1 #############################################################################
2 # Sample actions file for Privoxy
3 #
4 # For information, see http://www.privoxy.org/
5 #
6 # $Id: default.action,v 1.3 2002/03/24 16:24:02 jongfoster Exp $
7 #
8 #  Purpose     :  Default actions file, see
9 #                 http://www.privoxy.org/faq/questions.html#CONFIGFILES
10
11 # We value your feedback. However, to provide you with the best support,
12 # please note:
13 #  
14 #  * Use the support forum to get help:
15 #    http://sourceforge.net/tracker/?group_id=11118&atid=211118
16 #  * Submit bugs only thru our bug forum:
17 #    http://sourceforge.net/tracker/?group_id=11118&atid=111118 
18 #    Make sure that the bug has not already been submitted. Please try
19 #    to verify that it is a Junkbuster bug, and not a browser or site
20 #    bug first. If you are using your own custom configuration, please
21 #    try the stock configs to see if the problem is a configuration
22 #    related bug. And if not using the latest development snapshot,
23 #    please try the latest one. Or even better, CVS sources.
24 #  * Submit feature requests only thru our feature request forum:
25 #    http://sourceforge.net/tracker/?atid=361118&group_id=11118&func=browse
26 #      
27 # For any other issues, feel free to use the mailing lists:
28 # http://sourceforge.net/mail/?group_id=11118
29 #    
30 # Anyone interested in actively participating in development and related
31 # discussions can join the appropriate mailing list here:
32 # http://sourceforge.net/mail/?group_id=11118. Archives are available
33 # here too.
34
35 #############################################################################
36 # Syntax
37 #############################################################################
38
39 # To determine which actions apply to a request, the URL of the request is
40 # compared to all patterns in this file. Every time it matches, the list of
41 # applicable actions for this URL is incrementally updated. You can trace
42 # this process by visiting http://i.j.b/show-url-info
43 #
44 # There are 4 types of lines in this file: comments (like this line),
45 # actions, aliases and patterns, all of which are explained below.
46 #
47 #############################################################################
48 # Pattern Syntax
49 #############################################################################
50
51 # 1. On Domains and Paths
52 # -----------------------
53 #
54 # Generally, a pattern has the form <domain>/<path>, where both the <domain>
55 # and <path> part are optional. If you only specify a domain part, the "/"
56 # can be left out:
57
58 # www.example.com 
59 #   is a domain-only pattern and will match any request to www.yahoo.com
60
61 # www.example.com/
62 #   means exactly the same (but is slightly less efficient)
63
64 # www.example.com/index.html
65 #   matches only the document /index.html on www.example.com
66
67 # /index.html
68 #   matches the document /index.html, regardless of the domain
69
70 # index.html
71 #   matches nothing, since it would be interpreted as a domain name and
72 #   there is no top-level domain called ".html".
73
74 # 2. Domain Syntax
75 # ----------------
76
77 # The matching of the domain part offers some flexible options: If the
78 # domain starts or ends with a dot, it becomes unanchored at that end:
79
80 # www.example.com
81 #   matches only www.example.com
82
83 # .example.com
84 #   matches any domain that ENDS in .example.com
85
86 # www.
87 #   matches any domain that STARTS with www.
88
89 # Additionally, there are wildcards that you can use in the domain names
90 # themselves. They work pretty similar to shell wildcards: "*" stands for
91 # zero or more arbitrary characters, "?" stands for one, and you can define
92 # charachter classes in square brackets and they can be freely mixed:
93
94 # ad*.example.com
95 #   matches adserver.example.com, ads.example.com, etc but not sfads.example.com
96
97 # *ad*.example.com
98 #   matches all of the above
99
100 # .?pix.com
101 #   matches www.ipix.com, pictures.epix.com, a.b.c.d.e.upix.com etc
102
103 # www[1-9a-ez].example.com
104 #   matches www1.example.com, www4.example.com, wwwd.example.com, 
105 #   wwwz.example.com etc, but not wwww.example.com
106
107 # You get the idea?
108
109 # 2. Path Syntax
110 # --------------
111
112 # Paths are specified as regular expressions. A comprehensive discussion of
113 # regular expressions wouldn't fit here, but (FIXME) someone should paste
114 # a concise intro to the regex language here.
115
116 # If Junkbuster was compiled with pcre support (default), Perl compatible
117 # regular expressions are used. See the pcre/docs/ direcory or man perlre
118 # (also available on http://www.perldoc.com/perl5.6/pod/perlre.html) for
119 # details.
120
121 # Please note that matching in the path is CASE INSENSITIVE by default, but
122 # you can switch to case sensitive by starting the pattern with the "(?-i)"
123 # switch:
124
125 # www.example.com/(?-i)PaTtErN.*
126 #   will match only documents whose path starts with PaTtErN in exactly this
127 #   capitalization.
128 #
129 # Partially case-sensetive and partially case-insensitive patterns are
130 # possible, but the rules about splitting them up are extremely complex
131 # - see the PCRE documentation for more information.
132
133 #############################################################################
134 # Action Syntax
135 #############################################################################
136 #
137 # There are 3 kinds of action:
138 #
139 # Boolean (e.g. "block"):
140 #   +name  # enable
141 #   -name  # disable
142 #
143 # Parameterized (e.g. "hide-user-agent"):
144 #   +name{param}  # enable and set parameter to "param"
145 #   -name         # disable
146 #
147 # Multi-value (e.g. "add-header", "wafer"):
148 #   +name{param}  # enable and add parameter "param"
149 #   -name{param}  # remove the parameter "param"
150 #   -name         # disable totally
151 #
152 # The default (if you don't specify anything in this file) is not to take
153 # any actions - i.e completely disabled, so JunkBuster will just be a
154 # normal, non-blocking, non-anonymizing proxy.  You must specifically
155 # enable the privacy and blocking features you need (although the 
156 # provided default actions file will do that for you).
157 #
158 # Later actions always override earlier ones.  For multi-valued actions,
159 # the actions are applied in the order they are specified.
160 #
161 #############################################################################
162 # Valid actions are:
163 #############################################################################
164 #
165 # +add-header{Name: value}
166 #    Adds the specified HTTP header, which is not checked for validity.
167 #    You may specify this many times to specify many headers.
168 #
169 # +block
170 #    Block this URL
171 #
172 # +deanimate-gifs{last}
173 # +deanimate-gifs{first}
174 #    Deanimate all animated GIF images, i.e. reduce them to their last
175 #    frame. This will also shrink the images considerably. (In bytes,
176 #    not pixels!) 
177 #    If the option "first" is given, the first frame of the animation
178 #    is used as the replacement. If "last" is given, the last frame of
179 #    the animation is used instead, which propably makes more sense for
180 #    most banner animations, but also has the risk of not showing the
181 #    entire last frame (if it is only a delta to an earlier frame).
182 #
183 # +downgrade
184 #    Downgrade HTTP/1.1 client requests to HTTP/1.0 and downgrade the
185 #    responses as well. Use this action for servers that use HTTP/1.1
186 #    protocol features that Junkbuster currently can't handle yet.
187 #
188 # +fast-redirects
189 #    Many sites, like yahoo.com, don't just link to other sites.
190 #    Instead, they will link to some script on their own server,
191 #    giving the destination as a parameter, which will then redirect
192 #    you to the final target. 
193 #
194 #    URLs resulting from this scheme typically look like:
195 #    http://some.place/some_script?http://some.where-else
196 #
197 #    Sometimes, there are even multiple consecutive redirects encoded
198 #    in the URL. These redirections via scripts make your web browing
199 #    more traceable, since the server from which you follow such a link
200 #    can see where you go to. Apart from that, valuable bandwidth and
201 #    time is wasted, while your browser aks the server for one redirect
202 #    after the other. Plus, it feeds the advertisers.
203 #
204 #    The +fast-redirects option enables interception of these requests
205 #    by junkbuster, who will cut off all but the last valid URL in the
206 #    request and send a local redirect back to your browser without
207 #    contacting the remote site.
208 #
209 # +filter{name}
210 #    Filter the website through one or more regular expression filters.
211 #    Repeat for multiple filters.
212 #   
213 #    Filters predefined in the supplied re_filterfile include:
214 #
215 #     html-annoyances:  Get rid of particularly annoying HTML abuse
216 #     js-annoyances:    Get rid of particularly annoying JavaScript abuse
217 #     no-poups:         Kill all popups in JS and HTML
218 #     frameset-borders: Give frames a border
219 #     webbugs:          Squish WebBugs (1x1 invisible GIFs used for user tracking)
220 #     no-refresh:       Automatic refresh sucks on auto-dialup lines
221 #     fun:              Text replacements  for subversive browsing fun!
222 #     nimda:            Remove (virus) Nimda code.
223 #     banners-by-size:  Kill banners by size
224 #     crude-parental:   Kill all web pages that contain the words "sex" or "warez"
225 #
226 #
227 # +hide-forwarded
228 #    Block any existing X-Forwarded-for header, and do not add a new one.
229 #
230 # +hide-from{block}
231 # +hide-from{spam@sittingduck.xqq}
232 #    If the browser sends a "From:" header containing your e-mail address, 
233 #    either completely removes the header ("block"), or change it to the
234 #    specified e-mail address.
235 #
236 # +hide-referer{block}
237 # +hide-referer{forge}
238 # +hide-referer{http://nowhere.com}
239 #    Don't send the "Referer:" (sic) header to the web site.  You can
240 #    block it, forge a URL to the same server as the request (which is
241 #    preferred because some sites will not send images otherwise) or
242 #    set it to a constant string.
243 #
244 # +hide-referrer{...}
245 #    Alternative spelling of +hide-referer.  Has the same parameters,
246 #    and can be freely mixed with, "+hide-referer".  ("referrer" is the 
247 #    correct English spelling, however the HTTP specification has a 
248 #    bug - it requires it to be spelt "referer").
249 #
250 # +hide-user-agent{browser-type}
251 #    Change the "User-Agent:" header so web servers can't tell your
252 #    browser type.  (Breaks many web sites).  Specify the user-agent
253 #    value you want - e.g., to pretend to be using Netscape on Linux:
254 #      +hide-user-agent{Mozilla (X11; I; Linux 2.0.32 i586)}
255 #    Or to identify yourself explicitly as a JunkBuster user:
256 #      +hide-user-agent{JunkBuster/1.0}
257 #    (Don't change the version number from 1.0 - after all, why tell them?)
258 #
259 # +image
260 #    Treat this URL as an image.  This only matters if it's also "+block"ed,
261 #    in which case a "blocked" image can be sent rather than a HTML page.
262 #    See +image-blocker{} for the control over what is actually sent.
263 #
264 # +image-blocker{blank}
265 # +image-blocker{pattern}
266 # +image-blocker{<URL>} with <url> being any valid image URL
267 #    Decides what to do with URLs that end up tagged with {+block +image}.
268 #    There are 4 options:
269 #      * "-image-blocker" will send a HTML "blocked" page, usually
270 #        resulting in a "broken image" icon.
271 #      * "+image-blocker{blank}" will send a 1x1 transparent image
272 #      * "+image-blocker{pattern}" will send a 4x4 grey/white pattern
273 #        which is less intrusive than the logo but easier to recognize
274 #        than the transparent one.
275 #      * "+image-blocker{<URL>}" will send a HTTP temporary redirect
276 #        to the specified image URL.
277 #
278 #
279 # +limit-connect{portlist}
280 #   The CONNECT methods exists in HTTP to allow access to secure websites
281 #   (https:// URLs) through proxies. It works very simply: The proxy
282 #   connects to the server on the specified port, and then short-circuits
283 #   its connections to the cliant and to the remote proxy.
284 #   This can be a big security hole, since CONNECT-enabled proxies can
285 #   be abused as TCP relays very easily.
286 #   By default, i.e. in the absence of a +limit-connect action, Junkbuster
287 #   will only allow CONNECT requests to port 443, which is the standard port
288 #   for https.
289 #   If you want to allow CONNECT for more ports than that, or want to forbid
290 #   CONNECT altogether, you can specify a comma separated list of ports and port
291 #   ranges (the latter using dashes, with the minimum defaulting to 0 and max to 65K):
292 #
293 #   +limit-connect{443} # This is the default and need no be specified.
294 #   +limit-connect{80,443} # Ports 80 and 443 are OK.
295 #   +limit-connect{-3, 7, 20-100, 500-} # Port less than 3, 7, 20 to 100, and above 500 are OK.
296 #
297 # +no-compression
298 #    Prevent the website from compressing the data. Some websites do
299 #    that, which is a problem for junkbuster, since +filter, +no-popup
300 #    and +gif-deanimate will not work on compressed data. Will slow down
301 #    connections to those websites, though.
302 #
303 # +no-cookies-keep
304 #    If the website sets cookies, make sure they are erased when you exit
305 #    and restart your web browser.  This makes profiling cookies useless,
306 #    but won't break sites which require cookies so that you can log in
307 #    or for transactions.
308 #
309 # +no-cookies-read
310 #    Prevent the website from reading cookies
311 #
312 # +no-cookies-set
313 #    Prevent the website from setting cookies
314 #
315 # +no-popup
316 # +no-popups
317 #    Filter the website through a built-in filter to disable
318 #    window.open() etc.  The two alternative spellings are
319 #    equivalent.
320 #
321 # +vanilla-wafer
322 #    This action only applies if you are using a jarfile.  It sends a
323 #    cookie to every site stating that you do not accept any copyright
324 #    on cookies sent to you, and asking them not to track you.  Of
325 #    course, this is a (relatively) unique header they could use to 
326 #    track you.
327 #
328 # +wafer{name=value}
329 #    This allows you to add an arbitrary cookie.  Specify it multiple
330 #    times in order to add several cookies.
331 #
332 #############################################################################
333
334
335 #############################################################################
336 # Aliases
337 #############################################################################
338 {{alias}}
339 #############################################################################
340 #
341 # You can define a short form for a list of permissions - e.g., instead
342 # of "-no-cookies-set -no-cookies-read -filter -fast-redirects", you can
343 # just write "shop".  This is called an alias.
344 #
345 # Currently, an alias can contain any character except space, tab, '=', '{'
346 # or '}'.
347 # But please use only 'a'-'z', '0'-'9', '+', and '-'.
348 #
349 # Alias names are not case sensitive.
350 #
351 # Aliases beginning with '+' or '-' may be used for system permission names 
352 # in future releases - so try to avoid alias names like this.  (e.g. 
353 # "+no-cookies" below is not a good name)
354 #
355 # Aliases must be defined before they are used.
356
357
358 # Useful aliases
359 +no-cookies = +no-cookies-set +no-cookies-read
360 -no-cookies = -no-cookies-set -no-cookies-read
361 +imageblock = +block +image
362
363 # Fragile sites should have the minimum changes
364 fragile     = -block -deanimate-gifs -fast-redirects -filter -hide-referer -no-cookies -no-popups
365
366 # Shops should be allowed to set persistent cookies
367 shop        = -filter -no-cookies -no-cookies-keep
368
369 # Your favourite blend of filters:
370 #
371 myfilters   = +filter{html-annoyances} +filter{js-annoyances} +filter{no-popups}\
372               +filter{webbugs} +filter{nimda} +filter{banners-by-size}
373
374 #... etc.  Customize to your heart's content.
375
376 #############################################################################
377 # Defaults
378 #############################################################################
379 {\
380 -add-header \
381 -block \
382 -deanimate-gifs \
383 -downgrade \
384 +fast-redirects \
385 myfilters \
386 +no-compression \
387 +no-cookies-keep \
388 +hide-forwarded \
389 +hide-from{block} \
390 +hide-referer{forge} \
391 -hide-user-agent \
392 -image \
393 +image-blocker{http://config.privoxy.org/send-banner} \
394 +no-cookies-keep \
395 -no-cookies-read \
396 -no-cookies-set \
397 +no-popups \
398 -vanilla-wafer \
399 -wafer \
400 }
401 / # Match all URLs
402
403
404 #############################################################################
405 # A useful site for testing - shows all headers:
406 # http://privacy.net/analyze/
407 #############################################################################
408 {+add-header{X-Privacy: Yes please} \
409 +add-header{X-User-Tracking: No thanks!} -filter}
410 privacy.net
411
412
413 #############################################################################
414 # Test for new GIF deanimation feature.
415 # Just try http://www.oesterhelt.org/deanimate-demo with and without it.
416 #############################################################################
417 {+deanimate-gifs{last}}
418 www.oesterhelt.org/deanimate-demo
419
420
421 #############################################################################
422 # Sites that need cookies
423 #
424 # FIXME: Now cookies are allowed by default, do any of these sites
425 # need persistent cookies?
426 #############################################################################
427
428 #{-no-cookies}
429 #.javasoft.com
430 #.sun.com
431 #.yahoo.com
432 #.msdn.microsoft.com
433 #.sourceforge.net
434 #.sf.net
435 #www.nexgo.de
436 #.myrealbox.com
437 #mail.uni.de
438 #e-tools.freenet.de
439 #office.freenet.de
440
441 #############################################################################
442 # These sites are very complex and require
443 # minimal interference.
444 #############################################################################
445 {fragile}
446 .office.microsoft.com
447 .windowsupdate.microsoft.com
448 .deutsche-bank-24.de
449
450 #############################################################################
451 # Shopping sites - still want to block ads.
452 #############################################################################
453 {shop}
454 .quietpc.com
455 .worldpay.com   # for quietpc.com
456 .jungle.com
457 .scan.co.uk
458
459 #############################################################################
460 # These shops require pop-ups
461 #############################################################################
462 {shop -no-popups}
463 .dabs.com
464 .overclockers.co.uk
465
466 #############################################################################
467 # Sometimes fast-redirects catches things by mistake
468 #############################################################################
469 {-fast-redirects}
470 www.ukc.ac.uk/cgi-bin/wac\.cgi\?
471 login.yahoo.com
472 edit.europe.yahoo.com
473 .google.com
474 .altavista.com/.*(like|url|link):http
475 .altavista.com/trans.*urltext=http
476 .speedfind.de
477 .nytimes.com
478
479 #############################################################################
480 # Please don't re_filter code!
481 #############################################################################
482 {-filter}
483 .sourceforge.net
484
485
486 #############################################################################
487 # Imagelist:
488 #############################################################################
489 {+image}
490 #############################################################################
491 /.*\.gif
492 /.*\.jpe?g
493 /.*\.png
494
495 #############################################################################
496 {+imageblock}
497 #############################################################################
498 .adforce.imgis.com
499 .ad.preferences.com/image.*
500 .ads.web.aol.com
501 .focalink.com
502 .ad-adex3.flycast.com
503 .ad.doubleclick.net
504 .connect.247media.ads.link4ads.com
505 .ln.doubleclick.net
506 .mojofarm.mediaplex.com/ad/
507 www.carbuyer.com/cgi-carbuyer/getimage.cgi
508 /phpAds(New)?/viewbanner\.php
509 .ad.de.doubleclick.net
510 /.*/count\.cgi\?.*df=
511 *.fxweb.com/v2-trackrun\.cgi
512 195.63.104.61
513 195.63.104.222
514 213.165.64.3[4-9]
515 213.165.64.4[0-4]
516 194.221.183.22[1-7]
517 a196.g.akamai.net/7/196/2670/000[1-3]/images\.gmx\.net/.*images/.*/.*/
518 /cgi-bin/ivw/CP/
519 151.189.8.213/Adimg
520 151.189.8.193/Media
521 .smartclicks.com/.*/smart(img|banner|host|bar|site)
522 .linkexchange.com/.*/showl(ogo|e)
523 MoneyBanner.de
524 pixel.intares.net/cgi-bin/janus
525 ar.atwola.com # This serves all ads for CNN and AOL
526
527 #############################################################################
528 # Blocklist:
529 #############################################################################
530 {+block}
531 #############################################################################
532 /.*/(.*[-_.])?ads?[0-9]?(/|[-_.].*|\.(gif|jpe?g))
533 /.*/(.*[-_.])?count(er)?(\.cgi|\.dll|\.exe|[?/])
534 /.*/(ng)?adclient\.cgi
535 /.*/(plain|live|rotate)[-_.]?ads?/
536
537 /.*/(sponsor)s?[0-9]?/
538 ###/*.*/(sponsor|banner)s?[0-9]?/
539 ###/*.*/.*banner([-_]?[a-z0-9]+)?\.(gif|jpg)
540
541 /?.*/_?(plain|live)?ads?(-banners)?/
542 /?.*/abanners/
543 /?.*/ad(sdna_image|gifs?)/
544 /?.*/ad(server|stream|juggler)\.(cgi|pl|dll|exe)
545 /?.*/adbanners/
546 /?.*/ad_banner/
547 /?.*/adserver
548 /?.*/adstream\.cgi
549 /?.*/adv((er)?ts?|ertis(ing|ements?))?/
550 /?.*/anzei(gen)?/?
551 /?.*/ban[-_]cgi/
552 /?.*/banner_?ads/
553 /?.*/banner_?anzeigen
554 /?.*/bannerimage/
555 /?.*/banners?/
556 /?.*/banners?\.cgi/
557 /?.*/cgi-bin/centralad/getimage
558 /?.*/images/addver\.gif
559 /?.*/images/advert\.gif
560 /?.*/images/marketing/.*\.(gif|jpe?g)
561 /?.*/place-ads
562 /?.*/popupads/
563 /?.*/promobar.*
564 /?.*/publicite/
565 /?.*/randomads/.*\.(gif|jpe?g)
566 /?.*/rekla(ma|me|am)/.*\.(gif|jpe?g)
567 /?.*/siteads/
568 /?.*/sponsor.*\.gif
569 /?.*/sponsors?[0-9]?/
570 /?.*/ucbandeimg/
571 /?.*/werb\..*
572 /?.*/werbebanner/
573 /?.*/werbung/.*\.(gif|jpe?g)
574 /?.*/adv\.   # www.telegraaf.nl
575 /?.*/advert[0-9]+\.jpg
576 /?.*bann\.gif
577 /?.*/ads/
578 /Media/Images/Adds/
579 /_banner/
580 /ad_images/
581 /adgenius/
582 /adimages/
583 /viewad/
584 /adserve/
585 /adverts/
586 /annonser?/
587 /bando/
588 /bannerad/
589 /bannerfarm/
590 /bin/getimage.cgi/...\?AD
591 /bin/nph-oma.count/ct/default.shtml
592 /bin/nph-oma.count/ix/default.html
593 /cgi-bin/getimage.cgi/....\?GROUP=
594 /cgi-bin/nph-load
595 /cgi-bin/webad.dll/ad
596 /cwmail/acc\.gif
597 /cwmail/amzn-bm1\.gif
598 /db_area/banrgifs/
599 /gif/teasere/
600 /grafikk/annonse/
601 /graphics/defaultAd/
602 /grf/annonif
603 /htmlad/
604 /image\.ng/AdType
605 /image\.ng/transactionID
606 /images/.*/.*_anim\.gif # alvin brattli
607 /ip_img/.*\.(gif|jpe?g)
608 /marketpl*/
609 /minibanners/
610 /netscapeworld/nw-ad/
611 /promotions/houseads/
612 /rotads/ 
613 /rotateads/
614 /rotations/ 
615 /torget/jobline/.*\.gif
616 /viewad/
617 /werbung/
618 /worldnet/ad\.cgi
619 /zhp/auktion/img/
620 /cgi-bin/nph-adclick.exe/
621 /?.*/Image/BannerAdvertising/
622 /?.*/ad-bin/
623 /?.*/adlib/server\.cgi
624 /?.*/gsa_bs/gsa_bs.cmdl
625 /autoads/
626 /anz/pics/
627
628 # for our finnish friends, by Kai Puolamaki <Kai.Puolamaki@iki.fi>
629 /?.*/mainos/*.*/.*\.gif
630 /?.*/mainos/*.*/.*\.jpe?g
631
632 # more from a finnish friend Petri Haapio <pha@iki.fi>
633 cgi.tietovalta.fi
634 .keltaisetsivut.fi/web/img/\.*gif
635 .haku.net/pics/pana\.*gif
636 .www.fi/guvat/\.*gif
637 /?.*/(.*[-_.].*)?maino(kset|nta|s).*(/|\.(gif|html?|jpe?g|png))
638 /?.*/(ilm(oitus)?|kampanja)(hallinta|kuvat?)(/|\.(gif|html?|jpe?g|png))
639
640 # and even more from a finnish friend Hannu Napari <Hannu.Napari@hut.fi>
641 194.251.243.50/cgi-bin/banner
642
643 www.dime.net/ad
644 www.iltalehti.fi/ad
645 www.iltalehti.fi/ilmkuvat
646 www.mtv3.fi/mainoskuvat
647
648 # <jwz@jwz.org>
649 /?.*/adfinity
650 /?.*/[?]adserv
651 /?.*/bizgrphx/
652 /?.*/smallad2\.gif
653 /?.*/ana2ad\.gif
654 /?.*/adimg/
655 /?.*/.*counter\.pl
656 /?.*/spin_html/
657 /?.*/images/topics/topicgimp\.gif
658 .discovery.com/.*banner_id
659 /?.*/.*bannr\.gif
660 .cruel.com/images/
661 .idrink.com/frm_bottom.htm
662 /?.*/.*pb_ihtml\.gif
663 /?.*/ph-ad.*\.focalink\.com
664 /cgi-bin/adjuggler
665
666 /we_ba/ # hausfrauenseite.de *bwhahahaaaaa*
667
668 # ms sucks !
669 /.*(ms)?backoff(ice)?.*\.(gif|jpe?g)
670 /.*(/ie4|/ie3|msie|sqlbans|powrbybo|activex|backoffice|explorer|netnow|getpoint|ntbutton|hmlink).*\.(gif|jpe?g)
671 /.*activex.*(gif|jpe?g)
672 /.*explorer?.(gif|jpe?g)
673 /.*freeie\.(gif|jpe?g)
674 /.*/ie_?(buttonlogo|static?|anim.*)?\.(gif|jpe?g)
675 /.*ie_sm\.(gif|jpe?g)
676 /.*msie(30)?\.(gif|jpe?g)
677 /.*msnlogo\.(gif|jpe?g)
678 /.*office97_ad1\.(gif|jpe?g)
679 /.*pbbobansm\.(gif|jpe?g)
680 /.*powrbybo\.(gif|jpe?g)
681 /.*sqlbans\.(gif|jpe?g)
682 /.*exc_ms\.gif
683 /.*ie4get_animated\.gif
684 /.*ie4_animated\.gif
685 /.*n_iemap\.gif
686 /.*ieget\.gif
687 /.*logo_msnhm_*
688 /.*mcsp2\.gif
689 /.*msn2\.gif
690 /.*add_active\.gif
691 /.*n_msnmap\.gif
692 /.*Ad00\.gif
693 /.*s_msn\.gif
694 /.*addchannel\.gif
695 /.*adddesktop\.gif
696 /?.*/ns4\.gif
697 /?.*/v3sban\.gif
698 /?.*/?FPCreated\.gif
699 /?.*/opera35\.gif
700 /?.*/opera13\.gif
701 /?.*/opera_b\.gif
702 /?.*/ie_horiz\.gif
703 /?.*/ie_logo\.gif
704
705 # ... and even more!
706 /?.*/favicon\.ico
707
708 # generally useless information and promo stuff (commented out)
709 #/.*/(counter|getpcbutton|BuiltByNOF|netscape|hotmail|vcr(rated)?|rsaci(rated)?|freeloader|cache_now(_anim)?|apache_pb|now_(anim_)?button|ie_?(buttonlogo|static?|.*ani.*)?)\.(gif|jpe?g)
710
711 /?.*/images/na/us/brand/
712 /?.*/advantage\.(gif|jpg)
713 /?.*/advanbar\.(gif|jpg)
714 /?.*/advanbtn\.(gif|jpg)
715 /?.*/biznetsmall\.(gif|jpg)
716 /?.*/utopiad\.(gif|jpg)
717 /?.*/epipo\.(gif|jpg)
718 /?.*/amazon([a-zA-Z0-9]+)\.(gif|jpg)
719 /?.*/bnlogo.(gif|jpg)
720 /?.*/buynow([a-zA-Z0-9]+)\.(gif|jpg)
721
722 /p/d/publicid
723
724
725 # for the dutch folks by a dutch friend gertjan@west.nl
726 /?.*/Advertenties/
727 /?.*/Adverteerders/
728 .netdirect.nl/nd_servlet/___
729
730 # --------------------------------------------------------------------------
731 #
732 # specific servers
733 #
734 # --------------------------------------------------------------------------
735
736 # the next two lines work 
737 12.16.1.10/web_GIF
738 12.16.1.10/~web_ani
739 193.158.37.3/cgi-bin/impact
740 193.210.156.114
741 193.98.1.160/img
742 194.231.79.38
743 195.124.124.56
744 195.27.70.69
745 195.30.94.21
746 195.63.104.*/(inbox|log|meld|folderlu|folderru|log(in|out)[lmr]u|)
747 199.78.52.10
748 .1st-fuss.com
749 204.253.46.71:1977
750 204.94.67.40/wc/
751 205.153.208.93
752 205.216.163.62
753 205.217.103.58:1977
754 206.165.5.162/images/gcanim\.gif
755 206.221.254.181:80
756 206.50.219.33
757 207.137.96.35
758 207.159.129.131/abacus
759 207.159.135.72
760 207.82.250.9
761 207.87.15.234
762 207.87.27.10/tool/includes/gifs/
763 208.156.39.14[24]
764 208.156.60.23[045]
765 209.1.112.252/adgraph/
766 209.1.135.14[24]:1971
767 209.132.97.164/IMG/
768 209.185.222.45
769 209.185.222.60
770 209.185.253.199
771 209.207.224.22[02]/servfu.pl 
772 209.239.37.214/cgi-pilotfaq/getimage\.cgi
773 209.297.224.220
774 209.75.21.6
775 209.85.89.183/cgi-bin/cycle\?host
776 212.63.155.122/(banner|concret|softwareclub)
777 216.15.157.34
778 216.27.61.150
779 216.49.10.236/web1000/
780 .247media.com
781 62.144.115.12/dk/
782 .ICDirect.com/cgi-bin
783 .Shannon.Austria.Eu.net/\.cgi/
784 .WebSiteSponsor.de
785 207.181.220.145
786
787 #
788 # generic hosts (probably most effective)
789 #
790 ad*.
791 .*ads.
792 banner.
793
794 .admaximize.com
795 .imgis.com
796 #/.*/*preferences.com*
797 1ad.prolinks.de
798 .adwisdom.com
799 .akamaitech.net/.*/Banners/
800 .altavista.telia.com/av/pix/sponsors/
801 .amazon.com/g/associates/logos/
802 .annonce.insite.dk
803 .asinglesplace.com/asplink\.gif
804 .athand.com/rotation
805 .automatiseringgids.nl/gfx/advertenties/
806 #avenuea.com/Banners/
807 .avenuea.com/view/
808 .badservant.guj.de
809 .befriends.net/personals/matchmaking\.jpg
810 .bizad.nikkeibp.co.jp
811 .bs.gsanet.com/gsa_bs/
812 .cash-for-clicks.de
813 .cda.at/customer/
814 .cgicounter.puretec.de/cgi-bin/
815 .ciec.org/images/countdown\.gif
816 .classic.adlink.de/cgi-bin/accipiter/adserver.exe
817 .click.wisewire.com
818 #.clickhere.egroups.com/img/
819 .imagine-inc.com
820 .commonwealth.riddler.com/Commonwealth/bin/statdeploy\?[0-9]+
821 .customad.cnn.com
822 .dagbladet.no/ann-gif
823 .digits.com/wc/
824 dino.mainz.ibm.de
825 .dn.adzerver.com/image.ad
826 .ds.austriaonline.at
827 .emap.admedia.net
828 .etrade.com/promo/
829 .eur.yimg.com/a/
830 .eur.a1.yimg.com/eur.yimg.com/a/
831 .us.a1.yimg.com/us.yimg.com/a/
832 .eurosponsor.de
833 #fastcounter.linkexchange.com
834 .flycast.com
835 .focalink.com/SmartBanner
836 .freepage.de/cgi-bin/feets/freepage_ext/.*/rw_banner
837 .freespace.virgin.net/andy.drake
838 .futurecard.com/images/
839 .gaia.occ.com/click
840 .globaltrack.com
841 .globaltrak.net
842 .go.com/cimages\?SEEK_
843 .hitbox.com 
844 .home.miningco.com/event.ng/.*AdID
845 .hurra.de
846 .hyperbanner.net
847 .icount.com/.*count
848 image*.narrative.com/news/.*\.(gif|jpe?g)
849 .image.click2net.com
850 #image.linkexchange.com
851 .images.nytimes.com
852 .images.yahoo.com/adv/
853 .images.yahoo.com/promotions/
854 .imageserv.adtech.de
855 .img.web.de
856 .impartner.de/cgi-bin
857 informer2.comdirect.de:6004/cd/banner2
858 .infoseek.go.com/cimages
859 .ins.at/asp/images/
860 .kaufwas.com/cgi-bin/zentralbanner\.cgi
861 #leader.linkexchange.com
862 .link4ads.com
863 .link4link.com
864 .linktrader.com/cgi-bin/
865 .logiclink.nl/cgi-bin/
866 lucky.theonion.com/cgi-bin/oniondirectin\.cgi
867 lucky.theonion.com/cgi-bin/onionimp\.cgi
868 lucky.theonion.com/cgi-bin/onionimpin\.cgi
869 #m.doubleclick.net
870 .mailorderbrides.com/mlbrd2\.gif
871 .media.priceline.com
872 .mediaplex.com
873 .members.sexroulette.com
874 .messenger.netscape.com
875 .miningco.com/zadz/
876 # movielink became moviefone
877 .moviefone.com/.*(banner|newbutton|(ad|poster).*?\.gif|mmail|bytb|h_(guy|showtick|aML)|m_|icon_|NF_.*?back|h_.*?gif|media/(art|imagelinks(/MF.(ad|sponsor))))
878 mqgraphics.mapquest.com/graphics/Advertisements/
879 .netgravity.
880 .newads.cmpnet.com
881 .news.com/cgi-bin/acc_clickthru
882 .ngadcenter.net
883 .ngserve.pcworld.com/adgifs/
884 .nol.at:81
885 .nrsite.com
886 .nytsyn.com/gifs
887 .offers.egroups.com
888 .pagecount.com
889 .ph-ad*.focalink.com
890 .preferences.com
891 .promotions.yahoo.com
892 .pub.nomade.fr
893 .qsound.com/tracker/tracker.exe
894 .resource-marketing.com/tb/
895 .revenue.infi.net
896 .rtl.de/homepage/wb/images/
897 .schnellsuche.de/images/*
898 .shout-ads.com/cgibin/shout.php3
899 .sjmercury.com/advert/
900 .smartclicks.com/.*/smart(img|banner|host|bar|site)
901 .smh.com.au/adproof/
902 .spinbox1.filez.com
903 .static.wired.com/advertising/
904 .swiftad.com
905 .sysdoc.pair.com/cgi-sys/cgiwrap/sysdoc/sponsor\.gif
906 .t-online.de/home/040255162-001/*
907 .taz.de/taz/anz/
908 .tcsads.tcs.co.at
909 .teleauskunft.de/commercial/
910 .thecounter.com/id
911 .tm.intervu.net
912 .tvguide.com/rbitmaps/
913 .ubl.com/graphics/
914 .ubl.com/images/
915 .ultra.multimania.com
916 .ultra1.socomm.net
917 .uproar.com
918 .us.yimg.com/a/
919 .us.yimg.com/promotions/
920 .valueclick.com
921 .valueclick.net
922 .victory.cnn.com
923 .videoserver.kpix.com
924 .washingtonpost.com/wp-adv/
925 .webconnect.net/cgi-bin/webconnect.dll
926 .webcounter.goweb.de
927 .webserv.vnunet.com/ip_img/.*ban
928 .werbung.pro-sieben.de/cgi-bin
929 .whatis.com/cgi-bin/getimage.exe/
930 www..bigyellow.com/......mat.*
931 www.adclub.net
932 www.addme.com/link8\.gif
933 www.aftonbladet.se/annons
934 www.americanpassage.com/
935 www.angelfire.com/in/twistriot/images/wish4\.gif
936 www.bizlink.ru/cgi-bin/irads\.cgi
937 www.blacklightmedia.com/adlemur
938 www.bluesnews.com/flameq\.gif
939 www.bluesnews.com/images/ad[0-9]+\.gif
940 www.bluesnews.com/images/gcanim3\.gif
941 www.bluesnews.com/images/throbber2\.gif
942 www.bluesnews.com/miscimages/fragbutton\.gif
943 www.businessweek.com/sponsors/
944 www.canoe.ca/AdsCanoe/
945 www.cdnow.com/MN/client.banners
946 www.clickagents.com
947 www.clickthrough.ca
948 www.clicmoi.com/cgi-bin/pub\.exe
949 www.dailycal.org/graphics/adbanner-ab\.gif
950 www.detelefoongids.com/pic/[0-9]*
951 www.dhd.de/CGI/werbepic
952 www.dsf.de/cgi-bin/site_newiac.adpos
953 www.firsttarget.com/cgi-bin/klicklog.cgi
954 www.forbes.com/forbes/gifs/ads
955 www.forbes.com/tool/includes/gifs/
956 www.fxweb.holowww.com/.*\.cgi
957 www.geocities.com/TimesSquare/Zone/5267/
958 www.goto.com/images-promoters/
959 www.handelsblatt.de/hbad
960 www.hotlinks.de/cgi-bin/barimage\.cgi
961 www.infoseek.com/cimages
962 www.infoworld.com/pageone/gif
963 www.isys.net/customer/images
964 www.javaworld.com/javaworld/jw-ad
965 www.kron.com/place-ads/
966 www.leo.org/leoclick/
967 #www.linkexchange.ru/cgi-bin/erle\.cgi
968 www.linkstation.de/cgi-bin/zeige
969 www.linux.org/graphic/miniature/
970 www.linux.org/graphic/square/
971 www.linux.org/graphic/standard/
972 www.luncha.se/annonsering
973 www.mediashower.com
974 www.ml.org/gfx/spon/icom/
975 www.ml.org/gfx/spon/wmv
976 www.musicblvd.com/mb2/graphics/netgravity/
977 .nedstat.nl/cgi-bin/
978 www.news.com/Midas/Images/
979 www.newscientist.com/houseads
980 www.nextcard.com/affiliates/
981 www.nikkeibp.asiabiztech.com/image/NAIS4\.gif
982 www.nordlys.no/imaker/.*/.*/.*/.....\.gif   # alvin brattli
983 www.nordlys.no/imaker/.*/.*/.*/..003    # alvin brattli
984 www.oanda.com/server/banner
985 .omdispatch.co.uk
986 www.oneandonlynetwork.com
987 www.page2page.de/cgi-bin/
988 www.prnet.de/.*/bannerschnippel/.*\.(gif|jpe?g)
989 www.promptsoftware.com/marketing/
990 #www.reklama.ru/cgi-bin/banners/
991 www.riddler.com/sponsors/
992 www.rle.ru/cgi-bin/erle\.cgi
993 www.rock.com/images/affiliates/search_black\.gif
994 www.rtl.de/search/.*kunde
995 #www.search.com/Banners
996 www.sfgate.com/place-ads/
997 www.shareware.com/midas/images/borders-btn\.gif
998 #www.sjmercury.com/products/marcom/banners/
999 www.smartclicks.com:81
1000 www.sol.dk/graphics/portalmenu
1001 www.sponsornetz.de/jump/show.exe
1002 www.sponsorpool.net
1003 www.sunworld.com/sunworldonline/icons/adinfo.sm\.gif
1004 www.swwwap.com/cgi-bin/
1005 www.taz.de/~taz/anz/
1006 www.telecom.at/icons/.*film\.(gif|jpe?g)
1007 www.theonion.com/bin/
1008 www.topsponsor.de/cgi-bin/show.exe
1009 www.ugo.net
1010 www.ugu.com/images/EJ\.gif
1011 www.warzone.com/pics/banner/
1012 www.warzone.com/wzfb/ads.cgi
1013 www.webpeep.com
1014 www.websitepromote.com/partner/img/
1015 www.winjey.com/onlinewerbung/*\.gif
1016 www.wishing.com/webaudit
1017 www.www-pool.de/cgi-bin/banner-pool
1018 www2.blol.com/agrJRU\.gif
1019 www3.exn.net:80
1020 .yahoo.com/CategoryID=0
1021 .yahoo.de/adv/images
1022
1023 #swa
1024 www.bannerland.de/click.exe
1025 .cyberclick.net
1026 .eu-adcenter.net
1027 www.web-stat.com
1028 www.slate.com/snav/
1029 www.slate.com/redirect/
1030 www.slate.com/articleimages/
1031 .usads.imdb.com
1032 www.forbes.com/tool/images/frontend/
1033 www.zserver.com
1034 www.spinbox.com
1035 .pathfinder.com/shopping/marketplace/images/
1036 /?.*/adbanner*
1037 /?.*/adgraphic*
1038 static.wired.com/images
1039 .perso.estat.com/cgi-bin/perso/
1040 #dinoadserver1.roka.net
1041 .fooladclient*.fool.com
1042 .affiliate.aol.com/static/
1043 .cybereps.com:8000
1044 .iadnet.com
1045 .orientserve.com
1046 .wvolante.com
1047 .findcommerce.com
1048 .smartage.com
1049
1050 # www.sunday-times.co.uk
1051 www.sunday-times.co.uk/standing/newsint/ticker
1052
1053 #NeXgo (ex Germany.Net)
1054 151.189.8.193
1055 151.189.8.213
1056
1057 # Block as much of GeoCities as possible
1058 # All geocities-owned images
1059 www.geocities.com/images
1060 www.geocities.com/MemberBanners/live/
1061 pic.geocities.com/images
1062 # And the popup (it still pops up, but does not eat up precious bandwidth)
1063 #www.geocities.com/ad_container/pop.html # already fixed by other regexp
1064
1065 # from corion@informatik.uni-frankfurt.de
1066 .sam.songline.com/@
1067 .img.getstats.com/
1068 #ads.xmonitor.net/xadengine.cgi # fixed by above regexp
1069 # Also block the japanese geocities popups
1070 www.geocities.co.jp/images
1071 # Also block the come.to, surf.to etc. popups
1072 .v3.come.to/pop.asp
1073
1074 # Also block the xoom stuff.
1075 .xb.xoom.com
1076 home.talkcity.com/homepopup.html.*
1077
1078 # Max Maischein <max.maischein@econsult.de> again ...
1079 # Halflife.net uses WON banners
1080 # Banners from Freeserve
1081 #banner.freeservers.com/cgi-bin/fs_adbar # fixed by above regexp
1082 # And those nasty va-popups !
1083 /?.*/?va_banner.html
1084 # And an all-around hit against advert*.jpg
1085 /?.*/advert[0-9]+\.jpg
1086 # And yet another Internet Explorer gif ...
1087 /?.*/ie_horiz\.gif
1088 # Some uninteresting buttons I think...
1089 .mircx.com/images/buttons/
1090 services.mircx.com/.*\.gif
1091 # Easyspace - yet another "free disk space" provider with <yuck> banner popups
1092 www.easyspace.com/(fpub)?banner.html
1093 www.easyspace.com/100\.gif
1094 # Some russian banner exchanges
1095 .banner.ricor.ru/cgi-bin/banner.pl
1096 #www.bizlink.ru/cgi-bin/irads.cgi # already fixed by other regexp
1097 stx9.sextracker.com/stx/send/
1098 # And even more of geocities :
1099 www.geocities.com/pictures/
1100 # Gaah - www.angelfire.com - another webspace provider with popups
1101 .angelfire.com/sys/download.html
1102 # Gamasutra.com uses this ad provider
1103 sally.songline.com/@
1104
1105 # Eule.de (search engine)
1106 # maybe images.eule.de as a whole...
1107 www.eule.de/cgi-bin/
1108 images.eule.de/comdirect\.gif 
1109 images.eule.de/wp\.gif
1110 .aladin.de/125_1\.gif
1111 images.eule.de/neu/books\.gif
1112
1113 # --------------------------------------------------------------------------
1114 #
1115 # some images
1116 #
1117 # --------------------------------------------------------------------------
1118
1119 # some images on cnn's website just suck!
1120 /.*cnnstore\.gif
1121 /.*book.search\.gif
1122 /.*cnnpostopinionhome.\.gif
1123 /.*custom_feature\.gif
1124 /.*explore.anim.*gif
1125 /.*infoseek\.gif
1126 /.*pathnet.warner\.gif
1127 /.*images/cnnfn_infoseek\.gif
1128 /.*images/pathfinder_btn2\.gif
1129 /.*img/gen/fosz_front_em_abc\.gif
1130 /.*img/promos/bnsearch\.gif
1131 /.*navbars/nav_partner_logos\.gif
1132 /BarnesandNoble/images/bn.recommend.box.*
1133 /digitaljam/images/digital_ban\.gif
1134 /hotstories/companies/images/companies_banner\.gif
1135 /markets/images/markets_banner\.gif
1136 /ows-img/bnoble\.gif
1137 /ows-img/nb_Infoseek\.gif
1138 .cnn.com/images/custom/totale\.gif
1139 .cnn.com/images/lotd/custom.wheels\.gif
1140 .cnn.com/images/.*/by/main.12\.gif
1141 .cnn.com/images/.*/find115\.gif
1142 .cnn.com/.*/free.email.120\.gif
1143 .cnnfn.com/images/left_banner\.gif
1144 .focus.de/A/AF/AFL/
1145 www.cnn.com/images/.*/bn/books\.gif
1146 www.cnn.com/images/.*/pointcast\.gif
1147 www.cnn.com/images/.*/fusa\.gif
1148 .cnn.com/images/.*/start120\.gif
1149 images.cnn.com/SHOP/
1150 /.*by/main\.gif
1151 /.*gutter117\.gif
1152 /.*barnes_logo\.gif
1153 # the / indicates the beginning of the path (and no longer the FQDN)
1154 /.*nbclogo\.gif
1155 /.*microdell\.gif
1156 /.*secureit\.gif
1157
1158 #
1159 /gif/buttons/banner_
1160 /gif/buttons/cd_shop_
1161 /gif/cd_shop/cd_shop_ani_
1162
1163 #altavista
1164 /av/gifs/av_map\.gif
1165 /av/gifs/av_logo\.gif
1166 /av/gifs/new/ns\.gif
1167 altavista.com/i/valsdc3\.gif
1168 jump.altavista.com/gn_sf
1169
1170 # tucows
1171 tucows./images/locallogo\.gif
1172
1173 #
1174 #mt_freshmeat\.jpg
1175
1176 # simpliemu.hypermart.net/frames.html
1177 .go2net.com/mgic/adpopup
1178 .go2net.com/metaspy/images/exposed\.gif
1179 .go2net.com/metaspy/images/ms_un\.gif
1180
1181 #
1182 www.cebu-usa.com/cwbanim1\.gif
1183 www.cebu-usa.com/Connection\.jpg
1184 www.cebu-usa.com/phonead\.gif
1185 www.cebu-usa.com/ban3\.jpg
1186 www.cebu-usa.com/tlban\.gif
1187 www.cebu-usa.com/apwlogo1\.gif
1188 www.cebu-usa.com/rose\.gif
1189
1190 # fnet
1191 www.fnet.de/img/geldboerselogo\.jpg
1192
1193 # hirsch@mathcs.emory.edu
1194 /images/getareal2\.gif
1195
1196 www.assalom.com/aziza/logos/cniaffil\.gif
1197 www.assalom.com/aziza/logos/4starrl1\.gif
1198 www.phantomstar.com/images/media/m1\.gif
1199
1200 #
1201 .wahlstreet.de/MediaW\$/tsponline\.gif
1202 .wahlstreet.de/MediaW\$/dzii156x60\.gif
1203 .wahlstreet.de/MediaW\$/etban156x60_2_opt2\.gif
1204
1205 # linuxtoday.com
1206 /pics/gotlx1\.gif
1207 /pics/getareal1\.gif
1208 /pics/amzn-b5\.gif
1209 /ltbs/cgi-bin/click.cgi
1210 .linuxtoday.com/ltbs/pics/
1211
1212 # Geocities popups
1213 /ad[-_]container/
1214 /include/watermark/v2/
1215
1216 # Reinier Bikker <R.P.Bikker@phys.uu.nl>
1217 # Banner.xxLINK.nl/
1218
1219 # Mark Lutz <luma@nikocity.de>
1220 /.*/*werb.*\.(gif|jpe?g) # hope that's not to restrictive
1221
1222 #Free Yellow thing at bottom of pages (HereticPC)
1223 www.freeyellow.com/images/powerlink5a\.gif
1224 www.freeyellow.com/images/powerlink5b\.gif
1225 www.freeyellow.com/images/powerlink5c\.gif
1226 www.freeyellow.com/images/powerlink5d\.gif
1227 www.freeyellow.com/images/powerlink5e\.gif
1228
1229 #HereticPC
1230 www.eads.com/images/refbutton\.gif
1231 www.fortunecity.com/console2/newnav/*
1232 www.goldetc.net/search\.gif
1233 www.cris.com/~Lzrdking/carpix/cars3-le\.gif
1234 www.justfreestuff.com/scott\.gif
1235 www.cyberthrill.com/entrance\.gif
1236 secure.pec.net/images/pec69ani\.gif
1237 www.new-direction.com/avviva\.gif
1238 /.*internetmarketingcenter\.gif
1239 www.new-direction.com/wp-linkexchange-loop\.gif
1240 www.new-direction.com/windough\.gif
1241 www.digitalwork.com/universal_images/affiliate/dw_le_3\.gif
1242 service.bfast.com/bfast/click/*
1243 www.new-direction.com/magiclearning\.gif
1244 www.new-direction.com/mailloop\.gif
1245
1246 www.free-banners.com/images/hitslogo\.gif
1247 rob.simplenet.com/dyndns/fortune5\.gif
1248 .nasdaq-amex.com/images/bn_ticker\.gif
1249
1250 #
1251 # navilor@hotmail.com
1252 #
1253 #
1254 # wayne@staff.msen.com
1255 #
1256 a*.*.*.yimg.com/([0-9]*|\/)*us.yimg.com/*
1257 #ad.doubleclick.net
1258 www.dnps.com/ads
1259 www.realtop50.com/cgi-bin/ad
1260
1261
1262 #
1263 www.yacht.de/images/(my_ani|eissingani|chartertrans|fum|schnupper|fysshop|garmin)\.gif
1264 www.sponsorweb.de/web-sponsor/nt-bin/show.exe
1265
1266 #
1267 # Club-internet pops up a complain if you refuse cookie (still pops up...)
1268 perso.club-internet.fr/html/Popup/popup_frame_nocookie.html
1269 perso.club-internet.fr/pagesperso/popup_nocookie.html
1270
1271 .gmx.net/images/newsbanner/
1272 .cash4banner.de
1273
1274 .quicken.lexware.de/images/us7-468x60.gif
1275 /img/special/chatpromo\.gif
1276 www.travelocity.com/images/promos/
1277
1278 # wonder that that does...
1279 .p01.com/1x1.dyn
1280
1281 #/*.*/phpAds/viewbanner.php
1282 #/*.*/phpAds/phpads.php
1283
1284 www.linux-magazin.de/banner    
1285 .comtrack.comclick.com
1286 .click-fr.com
1287 .iac-online.de/filler
1288
1289 .media.interadnet.com
1290 .stat.www.fi/cgi-bin
1291 /cgi/banners.cgi
1292 .ads-digi.sol.no
1293 .fp.buy.com
1294 .disneystoreaffiliates.com
1295
1296 .powerwork.mobile.de/cgi-bin/getimage\.cgi
1297
1298
1299
1300 ####################################################
1301 # Jon's addition:
1302 #
1303 # The Register ads - oh, and all images in Register stories (sigh).
1304 www.theregister.co.uk/media/
1305
1306 # Used on http://www.theregister.co.uk/
1307 # Sample advert URL:
1308 # http://secure.webconnect.net/cgi-bin/webconnecthome.dll?F467
1309 .webconnect.net
1310
1311 # Dilbert:
1312 www.dilbert.com/comics/dilbert/images/.*_140x800.*\.gif
1313
1314 # stattrack.com
1315 # Uses URL: http://www.stattrack.com/cgi-bin/stats/image.cgi
1316 /cgi-bin/stats/
1317 # And loads JavaScript from http://www.stattrack.com/stats/code
1318 www.stattrack.com/stats/
1319
1320 #Now they're Yahoo GeoCities, their junk is in a different place.
1321 ##geo.yahoo.com/serv
1322 ##visit.geocities.com/visit.gif
1323 .yimg.com/?.*/www.geocities.com/js_source
1324 #http://us.toto.geo.yahoo.com/toto?s=76001086
1325 .geo.yahoo.com
1326 .visit.geocities.com
1327 .yimg.com/?.*/www.geocities.com/
1328
1329 #http://counter16.bravenet.com/counter.php
1330 counter*.
1331
1332 #http://stat.cybermonitor.com/7emezone_p?1707_USdvd
1333 stat*.
1334
1335 #http://members.tripod.com/adm/popup/.....
1336 members.tripod.com/adm/popup/
1337
1338 #This is the worst ad idea ever!
1339 #count.exitexchange.com/exit/1100661
1340 #count.exitexchange.com/clients/navbar.html
1341 #(used in http://skyhivisuals.tripod.com/malfunctions_.htm)
1342 .exitexchange.com
1343
1344 #SourceForge ads.
1345 sfads.osdn.com
1346
1347 #This site traps the browser
1348 .webhideout.com
1349
1350 #privacy.net runs ads
1351 .a.consumer.net
1352
1353 #Lindsay.Marshall@newcastle.ac.uk suggested these, to kill Opera adverts:
1354 www.qksrv.net
1355 mirror.qkimg.net
1356
1357 #js
1358 dinoadserver*.roka.net
1359 logout.gmx.net
1360 logout.tvspielfilm.de
1361 gmx.tvspielfilm.de
1362 www.freenet.de/customerindex\.html
1363 /?.*/phpAds
1364 .fxweb.com/v2-trackrun\.cgi
1365 rtldating.peopleunited.de
1366 .advertising.com
1367 www.zdnet.com/fcgi-bin/
1368 service.bfast.com/bfast/serve
1369 199.172.144.25
1370 fourohfour.nbci.com/Members404Error.php3
1371 .adtech.de
1372 .adlink.de
1373 www.fair-ist-mehr.de/cgi-bin/bt.pl
1374 .linkexchange.
1375 /?.*/adpage.asp
1376 /ADS
1377 .net-on.net
1378 rstrip.namezero.com
1379 62.26.220.2
1380 .doubleclick.net
1381 .adserver.yahoo.com
1382
1383 #############################################################################
1384 {-block}
1385 #############################################################################
1386 include.ebay.com
1387 cpan.valueclick.com
1388 www.userfriendly.org/images/banners/banner_dp_heart\.gif
1389 advogato.org
1390
1391 #Why were these in the Waldherr blockfile?
1392 #www.hitbox.com
1393 #a*.*.*.yimg.com/([0-9]|\/)*us.yimg.com/i/*
1394
1395 # some regexps are simply too aggressive ...
1396 #
1397 # equalizer to /*.*(.*[-_.])?ads?[0-9]?(/|[-_.].*|.(gif|jpe?g)) 
1398 # or other regexps
1399 #
1400 #
1401 .adamwhone.co.uk
1402 #adsl.tin.it
1403 .stsci.edu
1404 .tgs.com
1405 .sun.com
1406 .povray.org
1407 .admin.
1408 .ad.siemens.de             # SIEMENS Automation & Drives
1409 #add-url.altavista.com
1410 .adis.on.ca
1411 #address*.*.*
1412 #address*.*.*.*
1413 ad[ud]*.
1414 advice.
1415
1416 # univ. don't advertise, do they :-)
1417 .edu
1418 .ac.uk    # English Universities too! - Jon
1419 .uni-*.de # What about Germany? --oes
1420 www.ugu.com/sui/ugu/adv
1421 adfa.edu.au
1422 adsl*.
1423
1424 clubs.yahoo.com/clubs
1425 edit.my.yahoo.com/config/show_identity
1426 www.ix.de/newsticker/data/ad
1427 www.heise.de/newsticker/data/ad
1428 www.careernet.de/anzeige
1429 www.careernet.de/bewerber/stellenanzeigen
1430 www.baumgartner.de/stellenmarkt/anzeigen
1431 www.dspartner.de/Anzeigen
1432 www.aws-jobs.de/Anzeigen
1433 www.jobware.de/.*/anzeigen/
1434 www.jobworld.de/bilder/
1435 www.cnn.com/TECH/computing/.*/internet.ads/
1436 www.financial.de/shop/
1437 .gnn.de/.*\.html
1438 www.auktionen.de
1439
1440 194.221.152.2/phptelefontmp
1441 .harvard.edu/images/banner/
1442
1443 .adswww.harvard.edu
1444 www.dhd.de/CGI/anzeigen/
1445
1446 .ads.web.de/web/
1447 .img.web.de/web/img/
1448
1449 www.segel.de/menu/bilder/anzeigen\.gif
1450 www.corel.com/graphics/banners/
1451 www.software.ibm.com/ad/
1452 www.omg.org/docs/ad/
1453
1454 .sperrmuell.de/scripts/anzeigen
1455 www.freenet.de/index.html
1456 www.01019freenet.de/index.html
1457 www.freenet.de/freenet/
1458 www.01019freenet.de/freenet/
1459 webfactory.de/anzeigen.php
1460 www.cdmag.com
1461 www.internatif.org/bortzmeyer/debian/sponsor/
1462 .hp.com
1463
1464 www.software.hosting.ibm.com/ad/
1465 www.ibm.com/software/ad/
1466 .brickshelf.com
1467
1468 www.debian.org/Pics/banner-blue\.gif
1469 www.linux.de/pics/Nachrichten_banner\.gif
1470 www.werbekurier.de
1471
1472 finder.shopping.yahoo.com/shop/
1473 .national.com/pf
1474 .mozilla.org
1475 .eidos.de
1476 .e-sheep.com
1477 .punkassgear.com
1478 .mozilla.org
1479 .mozillazine.org
1480 .adbusters.org
1481 .annoy.com
1482 .consumer-direct.com
1483 www.iez-auktion.de
1484 .ibm.com
1485 .sgi.com
1486
1487 # my banking stuff => no ads.
1488 .comdirekt.de
1489 .comdirect.de
1490 .teledata.de
1491
1492
1493 # Jon's addition: MSDN
1494 .msdn.microsoft.com
1495
1496 #js
1497 .adbusters.com
1498 .freemail*.web.de/online/ordner/anzeigen
1499 foggy.sda.t-online.de
1500 .us.i1.yimg.com/us.yimg.com/i/pim/ad2.gif
1501 www.nexgo.de/.*/bg_banner.jpg
1502
1503 # .*ads. matches prdownloads.sourceforge.net and many other download sites
1504 # The fix is:
1505 .*downloads.
1506
1507 # End of file