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