Thursday, October 12, 2006
Internet Explorer is one of many examples of insecure software. Some call Internet Explorer the browser that made the Internet accessible to the masses. Others call it an accident waiting to happen (again and again). Let's think about where IE grew up. Started as a skunk works project alongside Windows 95, Internet Explorer was first released in 1995 as part of the Internet Jumpstart Kit found in Microsoft Plus! For Windows 95. While it was well integrated with the new operating system, few users adopted it, as much more mature and feature rich applications already existed. With the release of IE 2.0 in 1996 it was obvious that MS was not abandoning this software. Cross platform support was added for Macintosh users, and several emerging technologies such as cookies, VRML and RealAudio were now supported. Later that year IE 3.0 was released, and the browser wars truly began. Finally MS had released a product that was capable of competing with Netscape on even ground. Internet Explorer was no longer merely a Web browser, it was the launch point for most of the users Internet needs. Users could read your e-mail, check newsgroups, view videos, listen to music, and (believe it or not) browse the Web too.

Within nine days of its release the very first exploit for IE 3.0 was discovered and released to the public. The rest, as they say, is history.

So how could a company with the resources of Microsoft develop and release a product that is so obviously flawed? The Microsoft campus contains some of the most brilliant designers and programmers the world has to offer. Many of the development practices present at MS are used throughout the industry (which many would say contributes to the problem, but that is a different topic altogether). Why, then, can't even the imposing minds at Microsoft seem to be capable of writing software that can be trusted?

First of all, we should note that there is more than one way for software to be insecure. Methods for exploiting and circumventing security in programs are as varied as the applications they are attacking. Perhaps the fundamental problem is that software is not necessarily designed and constructed with security in mind. Until recently, security has been something of an afterthought in the computer industry, both amongst vendors and among customers/users. Apart from the obvious problem that security has not been a fundamental part of the development process, there are other fundamental problems with software that add to insecurity.

Complexity and Integration of Programs

Today when a program is written, it cannot be assumed that only it and the operating system will be running at any given time. The terms integration and interconnectivity have been chanted like a mantra for several years now. For those old enough to recall, applications used to be relatively single purpose. WordPerfect 5.1, arguably one of the best word processors in existence, was only a word processor. It didn't have any notion of programs other than itself and the operating system. It performed a specific task, and performed it well. However, when Microsoft released their Office suite the world was forever changed. Now not only could you create documents, spreadsheets, and presentations using one application suite, you could actually use these tools together. For example, if you had a spreadsheet in Excel that you wanted to include in your report, all you had to do was copy and paste it into your report document.

As time moves on, more and more components have been either integrated with one another, or are at least able to talk amongst themselves. Soon certain options and functions were only available if other, sometimes unrelated services were enabled. If you wanted to share files across a network, you had to enable the Microsoft file-sharing protocol. Along with this protocol, usually unbeknownst to the user, several other features such as printer sharing and remote registry management were also enabled. To put it another way, the "package deal" was delivering more than the user expected and possibly wanted. This makes the job of securing the system even more difficult as the user may not have an accurate picture of what is and is not setup on the computer.

The code required to construct and run such sophisticated multi-application software is not only highly complex, it is also huge. The code for a single program, like Microsoft Word, consists of millions of lines of code. It is almost beyond the scope of human possibility to ask the software developers to perform the comprehensive quality assessment necessary to ensure optimal security. Even if it were possible, it would be very easy to overlook one or two bugs; after all, even if considerable resources are made available for quality assessment, there is still a finite time in which to conduct it. Hackers, on the other hand, have endless hours to prod and probe for a single vulnerability to exploit.

Need to Rush Software Out Without Adequate Testing

Part of the problem may be the “necessity” to role out commercial software by deadlines imposed by finance and marketing needs. Ask any software developer what it's like to code during a crunch and you'll probably get an earful of complaints. "They want us to do too much in too little time" or "I hope no one ever looks at this code again!” and “It's terrible, but it works" are oft repeated phrases. The Almighty "hack" -- a so-called elegant solution to a programming problem -- or more usually a short-sighted but "clever" way of covering up flaws in the system becomes the required method of development. Suddenly design and coding style are thrown out the window in favor of down and dirty "do what works, we'll fix it later" coding. Initially some of the more idealistic (and typically youthful) coders feel that this sort of programming is wrong; this feeling usually passes quickly under the tutelage of the more experienced team members.

Under these time pressures, errors that may normally be obvious and easy to catch slip through because inadequate attention is given to reviewing and testing the code. This is not to say that flaws are not introduced into the system at earlier stages in the development cycle, but I suspect that most of the big errors are made during this time of accelerated development. Poor program or feature specifications are compounded by designers who can only assume that the specification is complete, and then further by programmers who each have their own unique idea of what the design is really calling for.

With added features comes the added responsibility of ensuring that each of those features works both by itself and with the other components of the system. If you have a subsystem of 15 components, each of which relies on the other at some point, adding another component causes you to not only test the newest piece, but all of the other connected pieces. This can be a very expensive and time consuming process; it is a process that is often cut short, or is poorly done in the interests of shipping on time or reducing costs.

Closed Source Patches

An argument that you hear all the time from the Open Source community is: How can we trust your software if we cannot see what the code is doing? Closed source software is often patched by closed source patches -- essentially you are adding even more unknowns to the security puzzle every time you patch something. When Windows 2000 Service Pack 2 was released, one of the biggest concerns was that suddenly MS Exchange 2000 Server would not longer run. This was not documented, and it was a flaw discovered time and time again by hapless users who, perhaps naively, assumed that the bug fixes in Service Pack 2 would not adversely affect the way that other applications on their systems ran. In fact, even after taking a look at the full list of documented changes found in SP2, one would not be able to guess or deduce that any problems would occur with MS Exchange 2000.

Poor Training

Many software developers do not understand the risks that they are exposing their users to by creating poorly written code. While many explanations are possible, at the root of the problem we can usually find that poor training is the culprit. Either as students the young software developers were not adequately inundated with good coding styles and practices or they simply chose to ignore what advice was given to them. For those fledgling software developers who actually attended some post-secondary education in a relevant field, many of the assignments and problems that they were asked to solve were one-shot standalone entities, meaning that once a problem was solved by whatever code they had written, they would “throw away” their work and never look at it again. Why spend extra effort on making your code clean and safe when the quick and dirty solution still got you full marks?

The write – debug - rewrite cycle is common practice among students and junior coders; that is to say that rather than spending time on design, they will code as much as they can, debug the software when it doesn’t work, and continue rewriting and debugging until such time as the code does what they want it to. Once the goal has been accomplished, it is left alone and the next problem is attacked. Audits for proper memory management, coding style, or compatibility with other code are not adequately conducted. If this trend is not stopped early on, it will grow into a much larger problem until it becomes standard operating practice.

Conclusion

Underlying all the causes of insecure software is a simple philosophical flaw: software is not designed with security in mind. However, there may be a light at the end of the tunnel. Recently, Bill Gates issued a company-wide memo to all Microsoft employees dictating that from this moment forward, security will be a programming priority. In the memo, entitled “Trustworthy Computing”, Gates states: “Trustworthy Computing is the highest priority for all the work we are doing. We must lead the industry to a whole new level of Trustworthiness [sic] in computing...Eventually, our software should be so fundamentally secure that customers never even worry about it...So now, when we face a choice between adding features and resolving security issues, we need to choose security". Whether or not this resolution will be realized is impossible to tell. However, the fact that the memo was issued indicates the growing awareness that software developers must place a much higher priority on secure coding. Whether or not they do so remains to be seen. Until they do, organizations that base their operations on bug-weakened software will continue to be castles built on sand.



10/12/2006 7:45:36 AM (GMT Daylight Time, UTC+01:00)  #    Comments [0]  |  Trackback
Tracked by:
http://freewebs.com/aspxfaq/14/sitemap18.html [Pingback]
http://freewebs.com/toltom/13/sitemap11.html [Pingback]
http://freewebs.com/toltom/16/california-secretary-of-state.html [Pingback]
http://freewebs.com/toltom/08/sitemap19.html [Pingback]
http://freewebs.com/toltom/16/kathy-ireland-furniture.html [Pingback]
http://fartooblog.tripod.com/114.html [Pingback]
http://kevruublog.tripod.com/143.html [Pingback]
http://zoedfw.org/sitemap39.html [Pingback]
http://clxgxe.org/free-xxx-comics.html [Pingback]
http://topslots.nl.eu.org/16/sitemap17.html [Pingback]
http://freewebs.com/amexa/35/aol-dialer.html [Pingback]
http://freewebs.com/amexa/22/index.html [Pingback]
http://freewebs.com/amexa/49/traffic-school-com.html [Pingback]
http://pinofranc.homestead.com/00/sen--kay-bailey-hutchison-home-page.html [Pingback]
http://pinofranc.homestead.com/00/soaring-eagle-casino-resort.html [Pingback]
http://pinofranc.homestead.com/03/used-chain-saws-on-ebay.html [Pingback]
http://polxl-xxx.com/ass-closeup.html [Pingback]
http://qkzei-www.com/sex-male.html [Pingback]
http://zunvoonews.angelfire.com/98.html [Pingback]
http://zelkuunews.tripod.com/47.html [Pingback]
http://tadviinews.angelfire.com/98.html [Pingback]
http://lkhhy-ooo.com/sexual-fantasy.html [Pingback]
http://lasduunews.angelfire.com/128.html [Pingback]
http://wepyv-hhh.com/banned-porn.html [Pingback]
http://adtih-xxx.biz/sexxx.html [Pingback]
http://metnm-www.biz/real-milf.html [Pingback]
http://pmrcn-eee.com/sexy-fujiko.html [Pingback]
http://freewebs.com/fregat/05/omnicef.html [Pingback]
http://freewebs.com/tiltak/05/hagerstown.html [Pingback]
http://freewebs.com/tiltak/07/malcolm.html [Pingback]
http://freewebs.com/niret/12/morgage-com.html [Pingback]
http://freewebs.com/amexa/19/park-city-utah.html [Pingback]
http://unistarkom.mycv.tv/00579-blog.html [Pingback]
http://ramambo.nl.eu.org/11/industrialgothic.html [Pingback]
http://ramambo.nl.eu.org/www-theborgata-com.html [Pingback]
http://ramambo.nl.eu.org/shih-tzu-puppies.html [Pingback]
http://zx7vqtq.biz/newjersey-com.html [Pingback]
http://mordor.nl.eu.org/maria-sharapova-naked.html [Pingback]
http://krpefgb.com/msnbc-wbpreview.html [Pingback]
http://shadokom.nl.eu.org/armenian-club-am.html [Pingback]
http://srykwzw.biz/wendy-williams.html [Pingback]
http://nasferablog.netfirms.com/120.html [Pingback]
http://yifpmuu.com/yaoi-sex.html [Pingback]
http://zotd7rb.biz/www-nj101-5-com.html [Pingback]
http://reto--blog.nl.eu.org/horse-sex-teens.html [Pingback]
http://zbbhywa.biz/free-cyber-sex-chat.html [Pingback]
http://nasferablog.netfirms.com/13.html [Pingback]
http://nk7g6ir.biz/hot-blow-job.html [Pingback]
http://nasferablog.netfirms.com/469.html [Pingback]
http://bvdwkri.biz/gay-cowboy-love.html [Pingback]
http://twbskbb.biz/sexy-babysitters.html [Pingback]
http://www.nonedotweb.org/st88.html [Pingback]
http://gada--mene.nl.eu.org/fisting-sex.html [Pingback]
http://radafe--loto.nl.eu.org/bulldog.html [Pingback]
http://nasferablog.netfirms.com/467.html [Pingback]
http://mromaner.tripod.com/31.html [Pingback]
http://mumareg.tripod.com/190.html [Pingback]
http://jmqp7tr.biz/firstcitizensbnak.html [Pingback]
http://wwad6lf.biz/usbamk.com.html [Pingback]
http://chiy9bh.com/shane-diesel.html [Pingback]
http://www.300free.com/423.html [Pingback]
http://freewebs.com/fremapblog/sitemap5.html [Pingback]
http://freewebs.com/sruone/home-depoe.html [Pingback]
http://freewebs.com/sruone/sitemap177.html [Pingback]
http://lopbafrea.homestead.com/132.html [Pingback]
http://pk3p6fu.info/www-harvesterfcu-com.html [Pingback]
http://pharmacy.dutyweb.org/ [Pingback]
http://petmeds.hooyack.com/830.html [Pingback]
http://kubaluin.ifrance.com/519.html [Pingback]
http://halloweenus.net/644.html [Pingback]
http://acomplia-it.seek-drugs.com/ordinare-rimonabant-il-giorno-seguente-consegn... [Pingback]
http://jobathome.freehostia.com/231.html [Pingback]
http://viagradreams.blogspot.com/ [Pingback]
http://euter.homestead.com/01/city-of-crystal-lake.html [Pingback]
http://cuter.homestead.com/00/sitemap4.html [Pingback]
http://freewebs.com/vuter/15/hotels-in-manhattan-new-york.html [Pingback]
http://euter.homestead.com/01/cyfair-federal-credit-union.html [Pingback]
http://freewebs.com/datingblogger/386.html [Pingback]
http://freewebs.com/datingblogger/251.html [Pingback]
http://bodaltega.ifrance.com/450.html [Pingback]
http://2909071.ifrance.com/166.html [Pingback]
http://0210071.ifrance.com/192.html [Pingback]
http://03100711.ifrance.com/96.html [Pingback]
http://fasxen.netfirms.com/24.html [Pingback]
http://rxarea.freehostia.com/remeron/8.html [Pingback]
http://maribuli.tripod.com/228.html [Pingback]
http://mambubuli.tripod.com/1007.html [Pingback]
http://zavernuli.0catch.com/218.html [Pingback]
http://narubili.freehostia.com/446.html [Pingback]
http://www8.donden.biz/408.html [Pingback]
http://homejob.freehostia.com/--/73.html [Pingback]
http://karlopupik.tripod.com/68.html [Pingback]
http://krumlopol.tripod.com/108.html [Pingback]
http://antix.12gbfree.com/-----/0.html [Pingback]
http://freewebs.com/awmpire/0.html [Pingback]
http://kurochkin.ifrance.com/175.html [Pingback]
http://leevejasmin.com/ [Pingback]
http://sommerjump.phpnet.us [Pingback]
http://hittrou.extra.hu [Pingback]
http://zorino.rahost.org [Pingback]
http://dafon.greatnow.com [Pingback]
http://freewebs.com/bureto/13/sitemap1.html [Pingback]
http://gy586161.gyqv2uz.info/sitemap18.html [Pingback]
http://kh9qeci.net/03/sitemap28.html [Pingback]
http://viezbaq.net/bedroom/index.html [Pingback]
http://vy3i7wz.net/sofa/index.html [Pingback]
http://weujmru.net/storage/sitemap1.html [Pingback]
http://ptmy0sx.net/alaska/sitemap1.html [Pingback]
http://eofw1lk.net/colorado/sitemap1.html [Pingback]
http://blastpr.com/wiki/js/pages/nexium/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/accutane/index.html [Pingback]
http://blastpr.com/wiki/js/pages/claritin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/paxil/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/clomid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celebrex/index.html [Pingback]
http://blastpr.com/wiki/js/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/rainbow-brite/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/ultram/index.html [Pingback]
http://blastpr.com/wiki/js/pages/hoodia/index.html [Pingback]
http://blastpr.com/wiki/js/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lipitor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/rainbow-brite/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celebrex/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/clomid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/soma/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lipitor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/melatonin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/zoloft/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/paxil/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/claritin/index.html [Pingback]
http://legambitdufou.org/Library/docs/64933533/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/06712704/index.ht... [Pingback]
http://plantmol.com/docs/99021843/index.html [Pingback]
http://legambitdufou.org/Library/docs/04618667/index.html [Pingback]
http://martinrozon.com/images/photos/docs/61904307/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/73486930/index.html [Pingback]
http://temerav.com/images/menu/91084644/index.html [Pingback]
http://martinrozon.com/images/photos/docs/75270452/index.html [Pingback]
http://lecouac.org/ecrire/lang/docs/30125734/index.html [Pingback]
http://thebix.com/includes/compat/docs/15870923/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/04726190/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/87090382/index.ht... [Pingback]
http://allfreefilms.com/wp-includes/js/25891222/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/84238305/index.html [Pingback]
http://temerav.com/images/menu/46200403/index.html [Pingback]
http://discussgod.com/cpstyles/docs/43932298/index.html [Pingback]
http://martinrozon.com/images/photos/docs/56637999/index.html [Pingback]
http://thebix.com/includes/compat/docs/29852280/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/04061117/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/36483653/index.html [Pingback]
http://slaterjohn.com/downloads/2col/28436634/index.html [Pingback]
http://swellhead.netswellhead.net/docs/92808772/index.html [Pingback]
http://plantmol.com/docs/24471383/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/25746442/index.html [Pingback]
http://witze-humor.de/templates/images/docs/83157240/index.html [Pingback]
http://coolioness.com/attachments/docs/83777724/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/42082955/index.html [Pingback]
http://jivest2006.com/docs/76826750/index.html [Pingback]
http://add2rss.com/img/design/docs/45658867/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/37348396/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/70471394/index.html [Pingback]
http://coolioness.com/attachments/docs/75395149/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/34320152/index.html [Pingback]
http://entartistes.ca/images/images/docs/65934120/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/86309858/index.html [Pingback]
http://realestate.hr/templates/css/docs/71546796/index.html [Pingback]
http://thebix.com/includes/compat/docs/10152421/index.html [Pingback]
http://plantmol.com/docs/60217277/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/56008043/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/18769945/index.html [Pingback]
http://ncdtnanotechportal.info/generator/docs/13227634/index.html [Pingback]
http://sevainc.com/bad_denise/img/9/rainbow-brite/ [Pingback]
http://easytravelcanada.info/js/pages/11/tramadol/ [Pingback]
http://easytravelcanada.info/js/pages/7/nexium/ [Pingback]
http://easytravelcanada.info/js/pages/7/melatonin/ [Pingback]
http://sevainc.com/bad_denise/img/8/paxil/ [Pingback]
http://sevainc.com/bad_denise/img/12/wellbutrin/ [Pingback]
http://adventure-traveling.com/images/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/10/soma/ [Pingback]
http://easytravelcanada.info/js/pages/3/claritin/ [Pingback]
http://easytravelcanada.info/js/pages/12/zoloft/ [Pingback]
http://sevainc.com/bad_denise/img/2/celexa/ [Pingback]
http://sevainc.com/bad_denise/img/1/accutane/ [Pingback]
http://sevainc.com/bad_denise/img/7/nexium/ [Pingback]
http://sevainc.com/bad_denise/img/1/celebrex/ [Pingback]
http://easytravelcanada.info/js/pages/10/synthroid/ [Pingback]
http://easycanada.info/js/pages/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/1/celebrex/ [Pingback]
http://sevainc.com/bad_denise/img/9/prozac/ [Pingback]
http://sevainc.com/bad_denise/img/10/synthroid/ [Pingback]
http://easycanada.info/js/pages/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/6/lipitor/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://inatelevizia.sk/ad/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/5/effexor/ [Pingback]
http://sevainc.com/bad_denise/img/5/effexor/ [Pingback]
http://ina-tv.sk/img/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/11/ultram/ [Pingback]
abaffy.org/la/img/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/10/soma/ [Pingback]
http://easytravelcanada.info/js/pages/6/lexapro/ [Pingback]
http://kiva.startlogic.com/sitemap1.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/index.html [Pingback]
http://odin.net/images/pages/52807681/drug-test-shop-penis.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/spanish-escorts-es.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/how-do-teen-girls-masturba... [Pingback]
http://odin.net/images/pages/52807681/free-unlimited-ipod-porn.html [Pingback]
http://odin.net/images/pages/35694472/danni-hunt-in-nude.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/index.html [Pingback]
http://odin.net/images/pages/35694472/candace-von-fuck.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/porn-star-brooke-banner.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/xxx-hardcore-she-males.htm... [Pingback]
http://odin.net/images/pages/52807681/erotic-slavery-stories.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/aunt-judy-porn-site.html [Pingback]
http://odin.net/images/pages/52807681/female-piercing-pics.html [Pingback]
http://odin.net/images/pages/35694472/hottest-movie-sex-scenes.html [Pingback]
http://odin.net/images/pages/52807681/bollywood-actress-in-bikini-bra.html [Pingback]
http://odin.net/images/pages/35694472/romance-stories-novels-or-reads.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/asian-massage-ct.html [Pingback]
http://odin.net/images/pages/52807681/free-online-porn-samples.html [Pingback]
http://odin.net/images/pages/35694472/art-bdsm.html [Pingback]
http://odin.net/images/pages/35694472/pussy-shit.html [Pingback]
http://odin.net/images/pages/35694472/should-teens-date-seriously.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/image-uploading-adult.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/porn-pictures-of-girls.htm... [Pingback]
http://odin.net/images/pages/35694472/baby-boy-s-name.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pictures-of-black-girls.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/adult-film-star-listings.h... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/teen-gay-sex-totaly-free-s... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/mother-and-daugther-sex-st... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/granny-movie-thumbs.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/free-little-amateur-thumbs.... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/nude-scene-database.html [Pingback]
http://odin.net/images/pages/35694472/sexy-native-american-costumes.html [Pingback]
http://odin.net/images/pages/35694472/mature-chat.html [Pingback]
http://odin.net/images/pages/52807681/fofrbidden-pussy.html [Pingback]
http://odin.net/images/pages/52807681/index.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/undergroung-teen.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/gay-zoo.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/erotic-comic-archives.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/statistics-on-teens-allowan... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/dylan-scott-xxx.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/adult-synchronized-skate-n... [Pingback]
http://odin.net/images/pages/35694472/lesbian-simpsons.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/preview-girls-gone-wild-cli... [Pingback]
http://odin.net/images/pages/35694472/babe-tv.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/free-sexualy-graphic-love-s... [Pingback]
http://odin.net/images/pages/52807681/costume-drama-porn.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/college-girls-escorts.html [Pingback]
http://odin.net/images/pages/35694472/blondes-and-blacks-xxx.html [Pingback]
http://odin.net/images/pages/52807681/aurora-snow-xxx.html [Pingback]
http://odin.net/images/pages/35694472/index.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/adult-porn-comic.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/all-pure-nude-teens-photos... [Pingback]
http://restablog.dreamhosters.com/lessons/sitemap1.html [Pingback]
http://host239.hostmonster.com/~blogford/sitemap2.html [Pingback]
http://gator413.hostgator.com/~digital/office/sitemap1.html [Pingback]
http://mh7nitp.net/bedroom/index.html [Pingback]
http://bbgicfz.net/sitemap1.html [Pingback]
http://uz7fdb5.net/video/sitemap1.html [Pingback]
http://nbozwqs.net/espn/sitemap1.php [Pingback]
http://d579737.u108.floridaserver.com/sitemap2.html [Pingback]
http://gator442.hostgator.com/~hockteam/alaska/sitemap1.html [Pingback]
http://host256.hostmonster.com/~alldomai/sitemap1.html [Pingback]
http://zg1hvbi.net/sofa/index.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-cialis-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-phentermine-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-hydrocodone-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-ambien-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-vicodin-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-soma-online.html [Pingback]
http://nega.startlogic.com/sitemap1.html [Pingback]
http://negator.startlogic.com/sitemap1.html [Pingback]
http://khcrlyw.net/youtube/sitemap1.html [Pingback]
http://kr6clw2.net/sitemap1.html [Pingback]
http://box405.bluehost.com/~dugablog/sitemap1.html [Pingback]
http://ndsy0ch.net/toys/sitemap1.html [Pingback]
http://freewebs.com/sinkopa/00/sitemap3.html [Pingback]
http://sinkopa.webs.com/00/sitemap3.html [Pingback]


Related Posts:
Ten free security utilities you should already be using
New Remote Desktop Client release by Microsoft
How can I disable the Shutdown Event Tracker on a Windows Server 2003 machine?
The Death of BlueFrog
Im continuing the fight against the spammers
IFRAME without src attribute on HTTPS in Internet Explorer


Referred by:
software development (search.blogger.com) [Referral]
software testing bug (blogsearch.google.com) [Referral]
http://www.example.com/ [Referral]
http://ms141.mysearch.com/search/AJmain.jhtml?searchfor=www%... [Referral]
xxx closeup (syndication.ask.com) [Referral]
www.sex of the year.ie (www.google.ie) [Referral]