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