Slashdot Mirror


Gates: 'You don't need perfect code' for Security

securitas writes "ITBusiness has an interview from the Microsoft Professional Developers Conference where Bill Gates says 'You don't need perfect code to avoid security problems.' Instead he suggests that users acquire and properly configure firewalls and make sure that they keep their software patches up-to-date. Considering that Microsoft says it is focused on security, the comments from the Chief Software Architect aren't inspiring, especially beacuse the underlying attitude seems to contradict the idea of well-written, secure code. What kind of message does that send to the developers who work for Gates?"

101 of 593 comments (clear)

  1. Since when is Bill Gates a security expert? by dtolton · · Score: 5, Insightful

    This is a typical problem, that was discussed a few days ago. People
    are confusing microsoft's success in general with Technological
    superiority.

    I find it interesting that *anyone* would care what Bill Gate's
    opinion is on security. The volume of critical problems reported, and
    of actual viruses and worms that have spread across the internet
    lately should've been enough to indicate that microsoft doesn't have a
    good understanding of security in general.

    His argument is an interesting point of view though. It sounds to me
    like he's saying microsoft doesn't need perfect code because people
    can just install firewalls. What if the code in the firewalls in turn
    isn't perfect though? Doesn't that leave us in an insecure position
    again? What about the e-mail scanning software? What if it misses a
    virus? Shouldn't you have layers of protection, instead of an outer
    layer of protection and a soft underbelly?

    Of course he is shifting the burden back to the users of the software
    again. If only they had our firewall product and a good e-mail
    scanning software package, and if they kept their software up to date
    none of this would've happened.

    Of course if they didn't ship their software with nearly every service
    turned on by default, and everyone running as root this wouldn't have
    happened either, but let's not trifle with details.

    I really liked the part at the end where he comments that all the
    viruses and attacks on microsoft's os are really a compliment.

    You keep telling yourself that Bill.

    --

    Doug Tolton

    "The destruction of a value which is, will not bring value to that which isn't." -John Galt
    1. Re:Since when is Bill Gates a security expert? by mcspock · · Score: 5, Insightful

      I dont even see why this is news. No code is perfect, especially at the OS level. If you think about it abstractly, what gates is saying is that security should be layered, so you have multiple filters protecting you.

      The part about it "being a complement", which i dont really agree with, is based on the fact that windows is high visibility, so it gets the most attention from virus writers.

      The whole argument is silly though - windows is what happens when you have a desktop only operating system and transition it into a network enabled system. You end up with design flaws (everyone runs as "root") and security holes.

      --
      -- Patience is a virtue, but impatience is an art.
    2. Re:Since when is Bill Gates a security expert? by Rhys · · Score: 5, Informative

      The really great thing is we just had a Microsoft security speaker at the ACM Reflections|Projections conference at UIUC.

      He was talking about how important it is to have secure code, and all the initiatives they have to fix security holes.

      He also talked about how fast worms are spreading these days. Patching is not going to be sufficient - a bug discovered and posted will turn into a worm hours or days before Microsoft will respond with a patch. By then it'll be too late.

      --
      Slashdot Patriotism: We Support our Dupes!
    3. Re:Since when is Bill Gates a security expert? by retinaburn · · Score: 5, Insightful
      microsoft doesn't have a
      good understanding of security in general.

      Just because their code is bad doesn't mean they don't understand security, it may just mean it is not profitable to write perfectly secure code.....and they get money from upgrades :)

    4. Re:Since when is Bill Gates a security expert? by 4of12 · · Score: 4, Insightful

      Three parties are responsible for providing a secure computing environment:

      1. The software creator or vendor: needs to code carefully, to test exhaustively, to debug, and to audit.
      2. The exploit writer, releaser: ought to publicize the vulnerability by describing it and illustrating protection measures before hammering the world with a working exploit to illustrate the deficiencies of the other two parties.
      3. The user hooking up his purchased system to the net. Should be listening to the other two parties about what's vulnerable, how to mitigate it in the short term and patch for the long term.
      I see all three parties not wanting to fulfill their responsibilities and trying to shift blame on to the other two parties.

      Until Bill Gates starts to act more like Theo de Raadt, I don't belive he's upholding his part.

      --
      "Provided by the management for your protection."
    5. Re:Since when is Bill Gates a security expert? by Otter · · Score: 4, Informative
      At any rate, the question was about outside developers, not Microsoft code. His point was that in a well-designed system with safe APIs, a reliable, usable update system and good blocking, there's less burden on the developers to get every detail right -- and that Microsoft hasn't provided such an environment.

      It's roughly analogous to insisting that Unix permissions make harmful worms and viruses impossible, except less false.

    6. Re:Since when is Bill Gates a security expert? by swordboy · · Score: 2, Insightful

      No code is perfect, especially at the OS level.

      Perfect code is approached asymptotically. That is, you'll never fix all of the bugs/holes/etc.

      But an OS that has been refined for 20 years is further along the curve than a brand new OS that has just been released.

      This will bite Microsoft sooner or later.

      --

      Life is the leading cause of death in America.
    7. Re:Since when is Bill Gates a security expert? by 00420 · · Score: 4, Insightful

      Funny? Personally I think this is insightfull.

      I've said it before (even though I don't like to), but Bill Gates is not an idiot. He's a pretty intelligent guy who is more than capable of understanding computer security. But, for some reason he choses not to implement it in his software.

    8. Re:Since when is Bill Gates a security expert? by SirNAOF · · Score: 2

      Allowing root across networked file systems is not a great security practice. That's not the OS's fault, that's the fault of whoever setup the systems.

      "Windows's security problems are related to application coding, not OS design."

      Ok, where does the OS end and the application begin? We all know how Microsoft likes to incorporate things into their OS, so where is the line drawn?

      --
      Jeremy Baumgartner
    9. Re:Since when is Bill Gates a security expert? by murdocj · · Score: 5, Insightful
      Ok, where does the OS end and the application begin?
      This is the core of the problem. I talked to a guy I had worked with who was at MS and was complaining about how the MS Office group was implementing all sorts of O/S features in Office because they needed them. MS has never had the concept of seperating O/S functions from application functions. As a result, you end up with holes because the core O/S is performing operations that should be in apps, and the apps are doing the work of the O/S.

      Perhaps in theory Windows has now been layered to an extent that it could function similar to UNIX, but in practice MS continues to prefer lots of functionality over security. And as the interview shows, that attitude comes down right from the top.

    10. Re:Since when is Bill Gates a security expert? by AKnightCowboy · · Score: 4, Insightful
      I dont even see why this is news. No code is perfect, especially at the OS level.

      Of course that's only true for varying degrees of "no". There is perfect software that has no bugs, but it's extremely expensive and difficult to produce. You need integrity checks at every single layer of development to ensure that nothing added compromises the code already in place. IMHO Windows should be scrapped and a completely new code base developed from the ground up with security in mind. Security is not something you can tack on as an afterthought, it MUST be implemented at the earliest stages of planning an application or you've already lost the battle.

    11. Re:Since when is Bill Gates a security expert? by rifter · · Score: 3, Insightful

      His argument is an interesting point of view though. It sounds to me
      like he's saying microsoft doesn't need perfect code because people
      can just install firewalls. What if the code in the firewalls in turn
      isn't perfect though? Doesn't that leave us in an insecure position
      again? What about the e-mail scanning software? What if it misses a
      virus? Shouldn't you have layers of protection, instead of an outer
      layer of protection and a soft underbelly?

      This in and of itself proves that Mr. Bill does not have a clue, not only about security but about how the recent worms propogated. Firstly, firewalls are not a panacaea. They only protect from extenral threats. They do not protect against internal threats or trojans/viruses/worms which are brought inside. They do not protect you when you have a worm/virus infected computer connecting to your network via VPN remotely or which is brought inside after being infected. They also do not help you if there is a vulnerability in a core world-facing service like, say, IIS.

      These things should be intuitively obvious to the meanest of minds, but are beyond Bill Gates' understanding. Further, he has put the lie to his earlier promise of better software. Now that security firms have been paid off not to report Microsoft holes that they do not deign to fix, Microsoft seems to be ditching the whole idea of writing secure code. It's not as though it was anything more than a marketing ploy in the first place, but now he has pretty much told us that Microsoft will write crappy software on purpose because they don't believe that software has anything to do with security.

      If you continue to use Microsoft products after this, well, I guess you get what you deserve.

    12. Re:Since when is Bill Gates a security expert? by Spoing · · Score: 4, Insightful
      His argument is an interesting point of view though. It sounds to me like he's saying microsoft doesn't need perfect code because people can just install firewalls. What if the code in the firewalls in turn isn't perfect though? Doesn't that leave us in an insecure position again? What about the e-mail scanning software? What if it misses a virus? Shouldn't you have layers of protection, instead of an outer layer of protection and a soft underbelly?

      More importantly; A firewall -- depending on the situation -- prevents access to some ports, and allows access to others.

      When data can be transfered through the firewall, you now depend on the program servicing the port to be secure. If it's not, the fact that there is a firewall in place won't matter since it's out of the picture.

      --
      A firewall can not protect you from yourself. Turn off what you do not need. Do not use the firewall to do your work.
    13. Re:Since when is Bill Gates a security expert? by Dark+Fire · · Score: 5, Insightful

      Both Windows and Unix are based on 20 year old ideas. The similarities between VMS and Windows are quite astonishing. There was an article on /. a while back about it.

      I agree that many security problems in both unix and windows come from poor application design.

      Compare designs between qmail and sendmail. qmail is a properly constructed unix application that takes advantage of all the facilities unix provides. sendmail is a blob. bind also suffers from being a blob. sendmail and bind alone account for a good portion of unix related vulnerabilities.

      Bind and sendmail are applications in the unix world.

      Unix and Windows may bother be at heart very solid designs. Remember though that microsoft isn't just responsible for the operating system, but for many of the most popular windows applications as well. IIS, Office, file/print services, exchange, etc.

      Microsoft goal has always been integration. Integration and Security are opposing goals.

      Single sign-on is a good example. To prevent someone from entering their password each time they want to utilitize a secure resource, you ask them for their username and password once and then cache the username/password. By doing this, you have sacrificed security for integration. The cache acts as an integrated security service that transparently lets any program that runs act with your full authority on all security resources that you are permitted to utilize for as long as your credentials remain in effect.

    14. Re:Since when is Bill Gates a security expert? by SirNAOF · · Score: 2, Interesting

      With proper setup, even NFS can be 'transparent and secure'. It's not the technology, it's the admins.

      To a point, Billy boy is right. The users (and/or admins) need to know how to set things up in a secure manner. But this is only half the problem. The other half is having a platform that is designed with security in mind, and having tools that are properly designed as well.

      I have personally setup remote file system access securely under unix. But I'm sure you don't care about that, I'm not an 'average' user.

      --
      Jeremy Baumgartner
    15. Re:Since when is Bill Gates a security expert? by divide+overflow · · Score: 4, Funny

      > It sounds to me like he's saying microsoft doesn't need perfect code because people can just install firewalls. What if the code in the firewalls in turn isn't perfect though?

      More to the point, what if the firewall RUNS ON WINDOWS??

      It sounds to me like Bill Gates has just become a strong advocate of Linux/*BSD/UNIX based firewalls. Tee hee hee....

    16. Re:Since when is Bill Gates a security expert? by jason.mitchell · · Score: 2, Informative

      Since when is Bill Gates in expert in anything... besides being a theif.

    17. Re:Since when is Bill Gates a security expert? by evilpenguin · · Score: 5, Interesting

      There's a famous quote, wish I could remember who said it (someone leap in with attribution!) (and I'm quoting from memory, so I'm sure I'm misquoting...)

      "It is axiomatic that every program contains at least one bug and can be reduced in size by at least one instruction, therefore, every computer program can be reduced to a single instruction which does not work."

      There's the singularity on your asymptotic curve ;-)

    18. Re:Since when is Bill Gates a security expert? by Jeremy+Allison+-+Sam · · Score: 4, Interesting

      Windows has root in *exactly* the same sense that UNIX does.
      Do you think Administrator or LOCALSYSTEM on a box can't do
      anything root can ? Change ownership of files to an arbitrary
      SID (that's a lie in the Microsoft docs, claiming that can't
      be done, I wrote a Win32 program to do just that about 11 years
      ago :-). They *are* root. No, difference.

      What you are complaining about is NFS, not UNIX.

      Stop comparing *one* of the remote file system protocols in
      the UNIX world with UNIX itself. And stop claiming that Windows
      is architectured any differently. You're simply repeating
      Microsoft propaganda, and people who know better will point
      out you're lying. You're lying btw.

      Jeremy.

    19. Re:Since when is Bill Gates a security expert? by AllenChristopher · · Score: 2, Insightful
      Perfect software and bug-free software are different. Perfect software is much harder than bug-free software because it includes basic design flaws.

      Your DRM schemes are an example. Just because an encryption scheme can be cracked doesn't mean there's a bug! If the DRM's underlying encryption scheme were, for example, to encode every byte as the negative of itself, and then one just hoped nobody would figure it out, that would be ridiculously optimistic, but it wouldn't be a bug. The code itself could be absolutely bug-free in examining keys to see if they are valid and then flipping the bits for output.

      In specific, the recent CD copy-protection which can be bypassed by the shift key, or disabling AutoRun, does not have a bug which allows these things. The company just relied on that few people will know how, and that's probably good enough. It's part of the spec.

    20. Re:Since when is Bill Gates a security expert? by SiaFhir · · Score: 2, Informative
      What Gates forgets is that the average user doesn't know enough about computers to make sure their security is up to snuff. I work as a tech supporter at an ISP and you wouldn't believe how unknowledgeable people are with computers. I have to hold their hand just to get into the Control Panel! Does Gates really expect them to know how to configure their firewall and make sure they have the latest security patches? They know how to turn on the computer, and get into IE, OE, MSN and Word. That's it.

      Then there's the firwalls. I don't know about other ISPs, but firewalls wreak havoc on our connections. When a cust has a problem browsing, the first thing we do is blow away any software-based firewalls.

      Perhaps Gates should stop victimizing the laymens by blaming his company's problems on them, and GET IT RIGHT!

    21. Re:Since when is Bill Gates a security expert? by Ty · · Score: 2, Funny
      Where is the bug?

      You're using BASIC.

  2. "Sometimes imperfect code is better" by Anonymous Coward · · Score: 5, Funny

    For example, if you introduce a bug that breaks the TCPIP stack, that's going to really secure things nicely.

  3. As an SSL developer by Anonymous Coward · · Score: 5, Interesting

    I couldn't agree more.

    Majority of security issues come not from buffer overflows in the application code or similar stuff, but from dumb users clicking on e-mail attachments and downloading wicked screensavers.

    Ever ran Spybot through a typical home user computer? Middle-aged women seem to be the worst offenders, Spybot and Ad-aware have pages and pages of stuff that the user usually isn't aware about.

    1. Re:As an SSL developer by RatBastard · · Score: 5, Insightful
      Middle-aged women seem to be the worst offenders

      Of course they are. They tend to be trusting and don't realize that perfect strangers are more than willing to screw them into the ground. But the OS doesn't need to be a welcome mat for these problems. There are some very basic things that MS could have done to make Windows secure enough that being a trusting user doesn't put the entire system at risk.

      To make a analogy that fits users of this level and background, your point is like saying that cars are less likely to get stolen if the doors are locked and blaming said car owners for because their Fnords are getting stollen because they haven't locked the doors that Fnord didn't bother to install in the first place.

      --
      Boobies never hurt anyone. - Sherry Glaser.
    2. Re:As an SSL developer by 16K+Ram+Pack · · Score: 2, Insightful
      It's odd, there's very few accidents involving people cutting off their fingers in electric coffee grinders.

      Why? Because the manufacturers put in a switch which makes it hard to do it. The blade won't operate without the lid on.

      Now you CAN work out a way to remove the guard and cut off your fingers...if you really want to.

      If Windows had been a little better thought through, they'd have locked it down, done more sandboxing and helped people run it in idiot mode, or allow people who know what they are doing to run in non-idiot mode.

      I know heaps of people who use their PCs for Word, Excel, web surfing, reading emails, viewing pictures, and playing games. They don't want to install much, and would probably love it if the operating system made it difficult for them to install garbage on their machine.

      They want to use it as an appliance, not as a piece of geek tech.

      It's sad that the idea of net stations didn't take off, where everything is accessed across a network, and a hard drive is only there for caching. All your data lives on it, and all your programs (which could be rented with services being added).

      Of course, you think Microsoft would go for such an idea?

    3. Re:As an SSL developer by 16K+Ram+Pack · · Score: 2, Interesting
      Just because you don't want to have a rental-type service doesn't mean that others don't.

      And you (like me) probably know a lot of the tricks of hackers and how to protect yourself with Firewall, Anti-virus, not downloading .exes sent in the mail, patching, whatever.

      A huge number of people who don't work in the computer industry or have office jobs don't.

      The following could all be delivered via Java Applets within a web page: email, office, games, small business accounts, graphical design, instant messenging, video playback, games, project management software. Database software could just run as server side websites. Outside of those applications, I can't think of much else that tens of millions of home users use. And what's left could be easily built.

      The only thing I would struggle with from an applet POV would be digital camera upload where you'd have to interface with the USB port (and there's probably a way around that).

  4. We don't need perfect code for security by grasshoppa · · Score: 4, Insightful

    and he's absolutely right. We could just unplug our computers and leave them in a cold, dark room all by themselves, with no power.

    For the rest of us, however, security starts with the code.

    --
    Mod me down with all of your hatred and your journey towards the dark side will be complete!
  5. I have 2 words for Mr Gates. by Adolf+Oliver+Bush · · Score: 2

    Buffer Overflow.

    --


    This post cannot be re-broadcast without the express written consent of Major League Baseball.
  6. Sooo. by Creepy+Crawler · · Score: 2, Insightful

    How do you firewall off a semi-legit request to a external MS-Exchange that "Admin's" the server? Even stateful devices like the Packeteer cant selectively block data in the TCP block... expessially 0-day exploits.

    Yeah. You can use firewalls(cough). That's why Unix is the Internet OS.

    --
  7. What about the Firewalls? by sapped · · Score: 3, Insightful

    If we are not going to rely on perfect code but expect firewalls to catch the problems, then what do we do if the code in the firewalls aren't perfect?

    Do we string together a series of firewalls in the hope that the code problems don't overlap?

    1. Re:What about the Firewalls? by jonhuang · · Score: 3, Funny

      You string together many lines of defense and hope for the best. Really, what gates said makes a lot of sense to me.

  8. Read into it what you want by stratjakt · · Score: 5, Insightful

    It makes sense to me. Don't rely on someone else to keep your computer secure. Take steps yourself.

    Look at me, I'm just going to get the latest debian iso and install it and not worry about anything!

    Look at me, I'm just going to go buy a car and not worry about locking the doors or using a club, because I expect that the ignition system is tamper proof.

    Don't blame the architect when someone comes through an unlocked window in your home and steals your stereo.

    No, you don't need perfect code. Linux has no "perfect code". If it did, Linus et al would be finished and have moved on to other things.

    I dont rely on Linus for security, I don't rely on Bill Gates for security. At the end of the day, it's my system, and it's up to me to take steps to protect it.

    --
    I don't need no instructions to know how to rock!!!!
    1. Re:Read into it what you want by Tsali · · Score: 4, Insightful

      So Joe SixPack is going to secure every pager, phone, wireless access point, and hell, even a car because he is self-reliant?

      Joe SixPack either does nothing or sues someone.

      --
      This space for rent.
    2. Re:Read into it what you want by fishybell · · Score: 2, Insightful
      Don't rely on someone else to keep your computer secure. Take steps yourself.


      Too bad most people who use computers don't know what steps to take. Even with Windows Update enabled to run automatically, people won't have secure computers. It is the responsibility of the car makers to make cars safe, should it not be the responsibility of operating system makers to make desktops safe?

      Unfortunately, without government intervention car makers wouldn't have made their cars as safe as they are today by themselves. Now it's gotten to the point where safe is a selling feature to many buyers. Shouldn't the same apply to operating system makers like Microsoft, Apple, etc? Should the goverment regulate? no, but safety should definately be a selling point.
      --
      ><));>
    3. Re:Read into it what you want by DeltaSigma · · Score: 5, Insightful

      I'm not disagreeing with you, or trying to dampen your point.

      You might be a college graduate, hell a professor when it comes to security. You might have an understanding of every open cryptic algorithm in use today. You just might have learning and experience which has engraved security processes onto your heart.

      But then, there's the rest of us. I'm a simple web/graphics designer. I don't even know how to compile a program. The most complicated things I produce are script. In the technical arena my contributions are child's play. As a long-time windows user, I had no concept of security. It was accepted fact that I had to patch and run process sapping virus scanners to prevent what was inevitable anyways, the infection and subsequent re-install of my operating system.

      In the last year, I switched to Linux. Debian, first, now RedHat 9.

      It's Linux that taught me security. It's Linux that gave me a better understanding of how ports work, how services can be hijacked and used to tamper with your machine, how random programs can degrade my security, how running as root is like volunteering my machine to be a DOS attack zombie.

      Linux isn't inherantly secure due to superior code (don't get me wrong though, I strongly believe Linux utilizes superior code). It's inherantly secure because it conditions its user to consider security. Debian and RedHat taught me where vulnerabilities can exist in my operating system, and how to account for them.

      Thanks to Debian and RedHat, my Windows box is more secure as well.

      I may not have the safest internet-connected box on the face of this earth, but I can rest assured I'm in the top 10% when I'm using my Linux-based operating systems.

    4. Re:Read into it what you want by stratjakt · · Score: 2, Insightful

      Which is the point. The word needs to get out, there is no "perfect code".

      Which makes it a good thing that Gates is being truthful about the situation.

      --
      I don't need no instructions to know how to rock!!!!
    5. Re:Read into it what you want by ldspartan · · Score: 2, Insightful
      It is the responsibility of the car makers to make cars safe, should it not be the responsibility of operating system makers to make desktops safe?

      It astounds me that people actually make this argument.

      Allow me to explain:
      Every single car is in a postion to kill several people in the event of a catastrophic malfunction or operator error.
      Very few computers are in a position to harm anyone.

      And no, just because your computer contains documents you deem vital to your life does not mean that the impetus for securing them falls on the manufacturer and not yourself. The two situations could not be less comparable.

      --
      lds

    6. Re:Read into it what you want by Zelet · · Score: 5, Insightful

      Your arguement is flawed. A better analogy would be:

      I have a car. Even though I locked the door... it fell off.

      Basically what I'm saying is that the basic of security that the manufacturer should provide isn't functioning. Of course I could always use 'the club' but the door shouldn't fall off the hinges.

      Of course if you wanted a true analogy of what Windows security is like:

      You can lock the doors - but the door locks are hidden and my mom couldn't figure out how to do it and the doors come unlocked by default. Even if you lock the doors the windows are always open - and there is no way to close them without buying the windows rollers yourself. If somebody gets into your car not only can the ignition be turned by any basic screw driver but they could blow up the entire car - including the engine by using easy to use functions from within the cabin of the car.

      Now take OS X (I haven't used Linux in a while so I'm more familiar with OS X)

      Your car comes with the doors locked by default. The windows are all rolled up. If somebody DOES get into the car - they can trash the cabin but can't destroy the engine.

      --
      ...And when they came for me, there was no one left to speak out for me." - Martin Niemoeller (1892-1984)
    7. Re:Read into it what you want by Jeff+DeMaagd · · Score: 3, Interesting

      I don't expect perfect code but I also don't expect that car door locks to be defeatable by toothpicks or that a "master" remote unlocker unlocks every car in a parking lot in a second with one button press.

      I think security should be important in _all_ phases of product usage, not just the user. It should be important in design, coding, testing and actual use. Any weakness in those four reaps a weakness in the entire product.

      It is important for the user to take proper steps but that doesn't releave any product maker from their end of the responsibility of properly designing and producing secure code. Yes, the user should take steps but then being a user of any particular piece of software shouldn't be a "kick me" sign.

    8. Re:Read into it what you want by poot_rootbeer · · Score: 4, Insightful

      Look at me, I'm just going to go buy a car and not worry about locking the doors or using a club, because I expect that the ignition system is tamper proof.

      But would you buy a car that didn't even come with locks on the doors, and instead of needing a key to start the ignition you just had to press a big red button on the dashboard that says CAR GO NOW?

      Microsoft isn't 100% responsible for making sure your Windows installation is secure. But at the same time, MS isn't ZERO percent responsible, either. They need to do their share.

  9. Perfection by mukund · · Score: 2, Interesting

    I don't want to sound like a troll :-). If Bill Gates said "perfect software" isn't necessary, he's somewhat on the lines we are at today because no software out there can be declared perfect or bug free. There is no such thing. But whenever bugs are found, it is good practise to patch software. We do this under Linux, Mac OS X and Windows. And having a good firewall configuration helps keep out the dirty world.

    --
    Banu
  10. Ironic by PD · · Score: 2

    Isn't Microsoft the company that's trying to encapsulate object access on port 80? SOAP? What firewall will block that?

    And what are home users supposed to do? Block off their e-mail ports so they can't get mail? That'll stop viruses for sure.

  11. What he's really saying by andyring · · Score: 2, Insightful

    Sounds like what Bill is actually saying is that "It's not our fault!" or "Security is not our responsibility!". By saying that security should fall to firewalls, etc., he is trying to shift responsibility from his company to the end user. Sounds to me like it is nothing more than justifying the trend in software, particularly MS (but admittedly others) to let software schedules be driven by the marketing department as opposed to when the software is actually ready for prime time.

  12. sort-of has a point by mikeee · · Score: 2, Insightful

    The fact is, you won't get perfect code, whether you need it or not. You should design things to minimize the amount of code that does have to be perfect, and the damage done if it isn't.

  13. Transfer of blame by nurb432 · · Score: 4, Insightful

    Blame the user, not the developer, is the message.

    Its not the users responsibly to compensate for poor design, regardless of the product. Be it an unsafe car, or insecure OS.

    --
    ---- Booth was a patriot ----
  14. Micro$ecure by tds67 · · Score: 4, Funny
    Gates: 'You don't need perfect code' for good security

    By that logic, Microsoft software should be the securest software around.

  15. Ironic by Idou · · Score: 2, Insightful

    "You don't need perfect code to avoid security problems."

    Here is a guy who knows nothing about perfect code, nor security.

    Reminds me of the child who keeps on flunking school responding to the first sign of criticism, "I don't have to be PERFECT, do I?"

    --
    Sdelat' Ameriku velikoy Snova!
  16. Perfection is illusion by nightsweat · · Score: 2, Insightful
    To rely on any code to be perfect is a fool's errand. Sorry, but Bill is right here. (Ow! That hurt to say.)

    "All code has at least one extra instruction and at least one bug. Therefore by extrapolation, all programs can be reduced to one instruction that doesn't work."

    --

    the major advances in civilization are processes which all but wreck the societies in which they occur - A.N. White
  17. Right an Wrong by chill · · Score: 4, Interesting

    "You don't need perfect code to avoid security problems. There are things we're doing that are making code closer to perfect, in terms of tools and security audits and things like that. But there are two other techniques: one is called firewalling and the other is called keeping the software up to date. None of these problems (viruses and worms) happened to people who did either one of those things."

    The first sentence is correct -- or moot. The last is pure bullshit.

    "Perfect" code is probably unattainable in complex applications. This is why things like firewalls, IDS, backups, etc. exist. Code should be made as good as possible, but dwelling on perfection will only pull your focus from other issues.

    However, no virus or firewall in the world is gonna stop a cluleless user from clicking on an attachment and screwing their system. Virus scanners are mostly reactionary -- if it isn't in their list of malware, they can't find it. If it is a new way to screw users, and they click it...

    EVEN if users have to jump through hoops like not executing from inside the mail program, saving it to the desktop, unzipping, scanning -- they'll screw something up. It is the nature of the beast.

    Even with sandboxing -- good luck getting a user to execute the code in a sandbox first, every time.

    --
    Learning HOW to think is more important than learning WHAT to think.
    1. Re:Right an Wrong by Pseudonym · · Score: 2, Insightful

      Actually, the last point is worse than bullshit. It's downright dangerous.

      One of the most important rules of security is: Don't engineer a single point of failure. The reason for firewalls et al is that we know that the software that they protect will be insecure despite our best efforts. That's why we put up an additional barrier.

      Relying on firewalls because we made the software insecure and have no intention of fixing it is effectively engineering a single point of failure.

      --
      sub f{($f)=@_;print"$f(q{$f});";}f(q{sub f{($f)=@_;print"$f(q{$f});";}f});
  18. Looks like Mr Gates has been taking lessons... by Zambarra · · Score: 2, Funny
  19. Re:Perfect Code isn't possible by __past__ · · Score: 2, Insightful
    Perfect code is possible, but most customers are not willing to pay the price. You can write code that is provably correct, and this is regularly done in some fields (aviation, military and medicine come to mind). Just don't expect to be able to buy a provably correct operating system or word processor for a few hundred bucks anytime soon.

  20. Answer.... by MoeMoe · · Score: 3, Funny

    What kind of message does that send to the developers who work for Gates?

    That it's time to get more G5's because 18 isn't enough...

    --
    Business \Busi"ness\, n.;
    A scam in which all people involved perceive as beneficial...
  21. Silly Soccer Moms by twoallbeefpatties · · Score: 2, Insightful

    It's kind of hard to say any system, even open source, is going to have "perfect code," but the major problem that is pointed out here is that it does no good to patch a system when the customers aren't going to install the patch. With products like 'nix, which are used more by *ahem* "serious" computer users, admins and the ilk, as soon as someone says "There's a bug in the software," word gets out, and people in the know make sure they are protected. The general population doesn't respond that quickly, however. Many Windows owners aren't even going to understand how to update their systems. This is not so much a fault with Windows as a fault with computer users who don't attempt to fully understand the product they are working with. People don't understand firewalls, they don't understand basic security. They know that you double-click on Outlook, and, poof, there's your e-mail.

    We're going to see some obvious responses to this post about the faults of closed-system software, but Gates does bring up a good point: It's hard to have a secure system if the end-user doesn't know what he or she is doing. It's like a car that you drive for five years without ever getting the oil changed; there is no patch for ignorance. And what's funny is: whenever a company tries to become more user-friendly, Windows, Macintosh, etc., the hardcore community gets on their case for it. If we could develop an open-source system with enough depth to satisfy the experienced users, but is easy enough to keep in control by the neophytes, then you could have a widespread, secure system.

    --
    Libertarians somehow believe that private businesses should be stronger than governments but weaker than individuals.
  22. Beware his Jedi Mind Tricks by Gothmolly · · Score: 3, Funny

    BillG: "You don't need secure code".
    (aside to Ballmer - "The Force gives power over weak minds")
    Ballmer: "Um yes, the Force gives power over weak minds."
    BillG: "Steve, stop that!"
    Ballmer: "Um... Steve, stop that!"

    --
    I want to delete my account but Slashdot doesn't allow it.
  23. One born every minute! by Thud457 · · Score: 2, Insightful
    Shouldn't you be able to go a whole month without a new vulnerability before you start foisting yourself off on the public as a security expert?!!!

    Microsoft's expertise is controlling the market, not writing code.

    --

    the preceding comment is my own and in no way reflects the opinion of the Joint Chiefs of Staff

  24. And the real funny part is... by Tenareth · · Score: 4, Interesting


    How much trouble their products have when seperated by stateful firewalls. I mean, it wasn't until after AD was out for a bit that they realized you couldn't put a firewall between them and for large corporations, that wasn't acceptable. Now there is a bogus work-around, but ultimately W2K is horrible at dealing with firewalls inside the enterprise.

    And the whole idea of a protected shell, soft middle has been destroyed by the likes of Nimbda, Nachi, etc. Eventually, someone gets past the outer shell.

    We like to keep all of our satallite locations seperated by Firewalls, but as we started moving to W2K3 we found out Microsoft won't support our infrastrucure with internal firewalls...

    Real nice Bill, thanks for the help.

    --
    This sig is the express property of someone.
  25. Bill is right by blizzardsoup · · Score: 2, Insightful

    re: don't need perfect code to be secure

    Linux code is not perfect and is secure.

  26. Patching only protects against amateurs by Animats · · Score: 3, Informative
    The whole "patching" approach is bogus. It only protects against nuisance attacks. A serious attacker, one who's doing it for gain and has a specific target, isn't restricted to whatever the script kiddies are using this week. They can exploit any vulnerability, well known or not.

    From a military perspective, "patching" is equivalent to deploying your forces to protect against kids throwing rocks over the base fence. That won't help when an organized force attacks.

    1. Re:Patching only protects against amateurs by duffbeer703 · · Score: 2, Insightful

      You seem to be the only person around here who gets it as far as what security really is.

      The Blaster worm was a good thing in that a major flaw which basically rendered permissions irrelevant is now fixed just about everywhere...

      The recent RPC bugs have been around since NT 3.51. Do you honestly believe that real hackers have not been taking advantage of that fact for years?

      --
      Conformity is the jailer of freedom and enemy of growth. -JFK
  27. Taking a page from George W. Bush by woody188 · · Score: 2, Funny

    Just like GWB said more people dead in Iraq proves that the American occupation of Iraq is working.

    Gates is saying the more attacks and flaws that are exploited proves Windows success.

    Do you believe either one?

  28. Re:Perfect Code isn't possible by e2d2 · · Score: 2, Informative

    Plus to add what you said (which I agree with) Gates qualifies his statement by saying: "There are things we're doing that are making code closer to perfect, in terms of tools and security audits and things like that. But there are two other techniques: one is called firewalling and the other is called keeping the software up to date".

    So he just said, yes we are trying our best, but it's not gonna be enough. That's a pretty fair statement regardless of the environment. Perfect code does not exist. You cannot prove perfection but you can prove that your app is secure within reasonable tolerances, which MS software of late has been anything but. They need to step up their efforts to keep up with their competitors, direct and indirect. But his statement was of course taken out of context in typical /. style. A developer trying his/her best to release perfect code is a good thing. But it must be backed up with local security and up to date software.

  29. Not only that by siskbc · · Score: 4, Insightful
    His argument is an interesting point of view though. It sounds to me like he's saying microsoft doesn't need perfect code because people can just install firewalls. What if the code in the firewalls in turn isn't perfect though? Doesn't that leave us in an insecure position again? What about the e-mail scanning software? What if it misses a virus? Shouldn't you have layers of protection, instead of an outer layer of protection and a soft underbelly?

    I'd say two things to him. First, the only completely effective firewall is the one where I unplug my computer. Assuming you leave a port open, that's a possibility for an attack. Second, all a hacker needs is a proper buffer-overflow in a user program that employs that port, and it's fun time. I'm sure Internet Exploder etc wouldn't apply there. No, not at all.

    He has a point in that firewalls have to be a large part of the solution. However, the idea that I can write the world's shittiest code and this is OK because I have a firewall is ludicrous.

    Naturally, all this assumes you don't buy your firewall software from MS. That would be pretty funny.

    --

    -Looking for a job as a materials chemist or multivariat

  30. A pat on the back by jonhuang · · Score: 4, Insightful
    For an out of context quote. This whole article is clearly just a biased "ooo ooo they suck omg" sort of thing. The line could have been just as easily phrased: "you can't rely on perfect code for security". Note that (IRTFA) the next line is along the lines of "but while we're working toward pefect code..."

    seriously.

  31. patch size by rakerman · · Score: 3, Insightful

    I don't understand why no one raises the patch size issue. To fix a buffer overflow, you've got to need what, 2K of modified code, tops? But the patch is like 2MB? Or 20MB?

    In the US, where most people are still on dialup, how can anyone reasonably expect that people are going to download tens of megabytes of patches?

    Microsoft should be mailing out free CDs with the latest patches.

    1. Re:patch size by Artifakt · · Score: 2, Interesting

      One 98 IE specific patch I installed reinstalled stock files for solitare (I was running a hacked copy that had custom card backs or I wouldn't have spotted it quickly enough to be sure it was the patch). Why in the lower plane of your choice would solitare contain any code that could be a vulnerability? No wonder patches are bulky, they are apparently either a shotgun approach to the problem, or they are fixing lots of things besides what they claim to fix.

      --
      Who is John Cabal?
  32. Advocatum diaboli by isomeme · · Score: 2, Insightful

    Let's be fair to Mr. Gates, for once. If you needed perfect code to achieve security, security would be impossible; I've never seen a nontrivial perfect program. All real-world large projects are going to have errors in them; it's a simple fact of our imperfect world.

    Once you recognize this, attention must turn from achieving some mythical perfection to dealing with the probable scope and impact of errors. Just for example, one good thing about languages like (e.g.) Perl and Java is that (absent major kludging) they are incapable of expressing a buffer-overrun bug, a category of possible bug in (e.g.) C which is single-handedly responsible for a majority of significant net security holes.

    In other words, once you admit that your code will never be perfect, you are forced to consider how to limit the damage your imperfections can do, and that in turn steers you toward technologies, processes, and practices that help you with that potential-damage reduction goal.

    In that sense, Gates is entirely correct that one key to maintaining a secure system is to limit the accessibility of unneeded ports (and the services possibly behind them) from the net at large. Yes, ideally, all those ports and services would be invulnerable to attack. But we know that we're not perfect, so we play it safe and use a firewall. It's classic "belt and suspenders" engineering.

    There is certainly a lot to be said about Microsoft's culpability for the low quality of their products, particularly with regard to security. But that doesn't mean Gates was wrong to say what he said.

    --
    When all you have is a hammer, everything looks like a skull.
  33. use a firewall? you mean, a badly coded firewall? by SirSlud · · Score: 3, Funny

    thats hilarious .. you dont need good code to be sure .. you only need somebody else's good code to run a firewall.

    oh lordy.

    --
    "Old man yells at systemd"
  34. this is their subscription business model by bigpat · · Score: 2, Interesting

    "make sure that they keep their software patches up-to-date"

    They are pursuing a subscription based model which the regular release of software patches supports. Now users see regular patches for scary new security holes downloaded on a regular basis... I expect now that most people are getting used to it, that Microsoft will shorten its supported lifecycle for OS releases and require full upgrades... which of course you can get downloaded to your machine directly using a credit card.

    Funny how Bill is using the Open Source community to help spread FUD about its own products which will then be used to help force regular costly upgrades on people.

    Security concerns might cause some people to start using Linux Desktops, but the majority of people will just buy into a system of regular updates from Microsoft.

    This is a no win issue for the Open Source community.

    The evil is too strong to resist, the only way to win is to deny it battle.

  35. Transference of Responsibility by sfhc · · Score: 2, Interesting

    "Instead he suggests that users acquire and properly configure firewalls and make sure that they keep their software patches up-to-date." Bill Gates is sending the message that in his opinion, security is not the responsibility of the software author, but of the end user. This is an obviously flawed point of view. Just as if a car manufactor knowingly released a car with faulty breaks, they would take the initiative to launch a recall, and would most likely face civil/crimial consequences for their actions. However, MS has been able to knowingly release a defective product and escape consequence. They are even so arrogant as to say that it is up to the end user to secure their system. Bill is clearly stating that MS does not take security seriously.

  36. He is a genius by falcon5768 · · Score: 2, Insightful
    someone should make ihim in charge of homeland security.... ;-) Anyway in all fairness some of what he says IS true. Very often its people who dont know how to use computers that is the main reason these kinds of security breakdowns happen, not the OS it's self.

    Common sense tells us to go to the Auto dealer to get a fix done when there is a recall. Granted we all get a notice if that happens but you know not to drive around too long if there is word it could be serious.

    But the computer is a tool to most people akin to a screwdriver or hammer, people really dont look to take care of it, they just use it. If more people looked at it like a pet and not a tool, then maybe people would care for their computers.

    That being said, it IS his duty to the customer to both make fixes visable and known and not hide them like Microsoft does on a routine basis, and more importantly make things work better the first time so this stuff doesnt happen every 3 weeks.

    One of the things that pisses me off the most about Microsoft vs. Apple is that Microsoft defaults almost everything to being open and insecure half the time. Only with XP was stuff not defaulted to on and did they default you to having a firewall to protect stuff.

    And it was always stupid stuff no consumer would ever use that was defaulted to being open, and of course you being the consumer didnt know any better. This is more dangerous now when we see more and more computers connecting full time with the use of cable and DSL vs. even 5 years ago when roughly 97% of traffic was 56k, and therefore only on for short periods.

    They are taking steps, but Microsoft has to stop denying it has an important roll in this cause honeslty it does. Everyone is using your OS guys, the least you can do is make sure their computers will be safe.

    --

    "Slashdot, where telling the truth is overrated but lying is insightful."

  37. "Execute Permissions" on code blocks by callipygian-showsyst · · Score: 2, Insightful
    One of the things Microsoft is adding (for processors that support it) is explicitly marking executable code with hardware-implemented "execution permission".

    This would prevent most buffer overflow attacks.

    I think it's correct to assume that you'll never--on a box where many companies can write software--have 100% perfect code. Having hardware at the processor and network level to add security is a fine idea.

    Microsoft isn't too far off the mark.

  38. Security is a process not a state by DeadSea · · Score: 5, Interesting
    There is no such thing as being secure.
    There is no such thing as software without bugs.
    There is no such thing as an operating system without vulnerabilities.
    No scan will find all the holes.
    No firewall will protect you from all attacks.
    No patch will fix all your systems.
    No intrusion detection system will catch all breakins.
    No employee screening process will weed out all the criminals.
    No employee training program will eliminate all employee mistakes.
    Security cannot be purchased.
    Security cannot be achieved.

    The security process is a checklist of items that should be evaluated and expanded periodically.
    Continuously and actively search for vulnerabilities. If the cracker knows about the hole before you do, you have a problem. Run scanners, hire people to test your security.
    Read security advisories, keep systems up to date with the latest patches, consult others who also try try to keep their security bar high.
    Take preventative measures: install a firewall, train employees to use secure practices, implement stricter checks and balances.
    Detect problems with intrusion detection systems. Put up honeypots and tripwires. Enable logging.

    It scares me, but Microsoft is right.

    1. Re:Security is a process not a state by DeadSea · · Score: 3, Insightful
      Nothing microsoft or any other programer can do is going to be able to stop me if I grab pair of mac-10s and just go after their physical computer

      Your thinking is one of the reasons that security is often breached. It is not possible to think about computer security without securing the computer physically. The security process requires holistic thinking. You cannot just dismiss ways to bybass security with a "well, of course somebody could do that". A cracker may find it easiest to get in via the wire, but a determined cracker won't stop at that. Unless you are thinking of every way to break in, just like an attacker would, you have vulnerabilities.

      There are other ways around the wire as well. What if your mother (child, significant other, friend, employee) were using your computer (you let them while you aren't home), and somebody calls you and impersonate you or claims to be a friend calling on your behalf. The attacker has her go to a website, download a program, and run it. The program reads your private data and sends it. Do you expect Microsoft to prevent this type of attack? There are some things you can do to lock a system down so users can't install and run software, or upload to the internet, but it is a hard problem to solve.

  39. Re:1st. by cshark · · Score: 4, Funny

    Don't worry, Windows is making strides in stability every day because of it's open design and collaborative development process. One day, it will be a suitable desktop operating system. Maybe it will even be enterprise ready. But that's still a ways off.

    --

    This signature has Super Cow Powers

  40. Re:Bilbo Baggins by AndroidCat · · Score: 2
    If it took a heroic archer, a magical arrow, a talking raven, and a thinking hobbit to penetrate MS security, I'd be happier than the current situation. (A chaotic-evil script-kiddie with a scroll of SWEN.)

    Like LOTR, Microsoft security is mostly fantasy.

    --
    One line blog. I hear that they're called Twitters now.
  41. he is actually right by Archfeld · · Score: 2, Insightful

    Perfect code is a myth, like extra money, or a temporary tax. What we really need is consistency between the calls, internal (local) or external (web) in the way the buffer is handled and access controls that make sense. At least on the M$ side they still have not recovered from the code mangling idiocy with MSIE and Explorer co-mingling.

    --
    errr....umm...*whooosh* *whoosh* Is this thing on ?
  42. Stupid Question... by Mr.+Dop · · Score: 2, Funny

    Does the same speech writer work for both Bill Gates and George Bush?? The both seem to be making some pretty preponderously dumb speeches lately.

  43. very secure! by sewagemaster · · Score: 2, Funny



    my windows has the worst code, but i keep the power off constantly on that box. it's the most secure operating sys^H^H^H mode indeed :)

  44. Well...Bill's sorta right here... by dasmegabyte · · Score: 2, Insightful

    You *can't write perfect code. Luckily, you *don't* have to write perfect code, if you write everything in a language that properly handles exceptions. This doesn't mean you shouldn't try to write perfect code...just that if, like every other programmer that has ever touched a keyboard or punch card, you have bugs in your code, you're much better off if your tools are watching your back.

    A good example is the number one favorite tool of the hacker, the buffer overflow. I don't care what OS you have, if you have buffers that can be overflown, you have insecure code. It doesn't matter what "user" the code is running as when it gets full access to your memory and command stack.

    So use one of the dozens of languages that won't let you write unchecked code. And you can write as sloppy as you like -- nobody's going to be able to bust down that door. To be honest, i think in the next few years we'll see more of this sort of problem with LINUX than we will with Microsoft. Microsoft is trying to get everybody to write for a virtual machine in languages like C# and VB.NET (which is significantly less of a joke than you think it is). Whereas open source developers seem to pride themselves in sticking to archaic C code...shit, that language was old when I was in MIDDLE SCHOOL (in fact, the computer librarian would only let you check out books on C++). It's not "faster" in today's world, where machines are three clock cycles FASTER than the fastest common interconnect...coding in C is simply some bizarre combination of laziness and bravado. Hey, if you guys want to code in a masochist's language, there's always PERL. The rest of the time we should all be in C++ and Java wherever possible. Sorry if those overflow checks take .1% off your linpack benchies...

    --
    Hey freaks: now you're ju
  45. Interesting.... by lcde · · Score: 2, Insightful

    That sounds like a Microsoft way of thinking. Leave the code we have the same, just have add-ons to protect that and add-ons to protect that.....

    The core of Windows is so bloated by patches or quick fixes I was confused on the column on Linux Hacks. Maybe it was ment as not to go down the same path. But the code that seems to be quick fixes rarely breaks anything, only makes it better.

    No code is perfectly secure and I don't expect worms and such to stop on any OS, IMHO I feel that security needs to be a vital part of Windows' thinking, if they want to keep their market share.

    --
    :%s/teh/the/g
  46. First true, then False. It's not enough! by dwheeler · · Score: 2, Insightful
    As author of a book on how to write secure programs, I feel I have to comment on this. Let's look at his claims:

    1. "You don't need perfect code to avoid security problems."
      Actually, that's true. For security, you want to minimize the amount of code that's important for security, and the security-relevant pieces have to be right in the sense that they don't allow security to be broken. Even the critical pieces can be imperfect as long as the imperfections don't harm security. But there's a danger here - typically the bar is set far too low. My fear is that this will be interpreted by his developers as "slipshod implementations are still okay." Which is not true - the parts that matter, still matter.
    2. "There are things we're doing that are making code closer to perfect, in terms of tools and security audits and things like that. But there are two other techniques: one is called firewalling and the other is called keeping the software up to date."
      Tools and security audits can help, as can firewalling and keeping up with patches. But that's not enough. Training developers how to develop secure software , and giving them the time to do, is probably even more important. I know Microsoft has done at least some of that, though I don't know how widespread it is and how well it's compensating for all the years they did not do that. Techniques other than the ones he's listing are frankly more critical, too. In particular, the system needs to be broken down into smaller, mutually suspicious pieces with minimal privileges, so that breaking one component doesn't break everything. There needs to be multiple layers of defense. The system needs less tight integration, and it needs to be easier to disable and remove everything not strictly necessary for a particular task. In contrast, firewalling is only a first baby step - his competitors (like Red Hat Linux) enable that by default as a starting point, and so Microsoft is only just catching up there. Besides, viruses are almost entirely an Outlook-unique problem, other systems are designed to not have that weakness in the first place. Patch management is important, but given Warhol worms, they won't be enough - if attacks take a few seconds or minutes, we won't be able to patch every system around the world fast enough.

    I hope that Microsoft is doing much more than Mr. Gates is saying here.

    --
    - David A. Wheeler (see my Secure Programming HOWTO)
  47. Yes, remember folks... by Chris+Mattern · · Score: 2, Funny

    When a program doesn't meet your standards, there's only one thing to do--lower your standards!

    Chris Mattern

  48. There is no way that should be possible... by AzrealAO · · Score: 2, Insightful

    in a corporate environment.

    If a computer in the act of being installed is exposed to the net unprotected, your System Admin's need to be dragged out and shot.

    If it's getting infected by an infected computer INSIDE the corporate firewall, your IT department needs to be dragged out into the street and shot.

    There is absolutely NO GOOD REASON that a computer should be freely attackable in a corporate environment unless the IT Department is grossly incompetent.

  49. Re:Right and Wrong by chill · · Score: 3, Insightful

    I can't agree with that. If the default behavior of all common mail programs so discourages people from executing attachments, I think the worm problem (at least as it exists today with things like sobig) would be effectively solved.

    That's not to say that nobody will find a way to execute such a program. The problem with sobig, though, was that so *many* people ended up running it, because of how easy it is to do in mail programs.


    Except many worms are spread through more than one means.

    A real case I dealt with: the I LOVE YOU virus.

    The ILY virus spread through local network shares and e-mail attachments. The parent office of a corp I worked for (2,000 PCs) was hammered with it. It took them two days to clean up.

    Then, the next day, some idiot who originally *thought it was a real love note and saved the attachment to his desktop* executed it again -- out of the context of an e-mail attachment.

    The shame and humiliation heaped upon him was enough to ensure he wouldn't ignore IT memos again. However, it brought the e-mail servers down a second day while it was fixed. Again.

    In a LAN environment, all it takes is one idiot.

    --
    Learning HOW to think is more important than learning WHAT to think.
  50. WHAT!?! by DigitalKhaos23 · · Score: 2, Insightful

    Bill Gates says 'You don't need perfect code to avoid security problems.' Instead he suggests that users acquire and properly configure firewalls and make sure that they keep their software patches up-to-date.

    Come on now. I deal with end-users all the time. They have problems finding their damn "start" buttons, and the illustious Mr. Gates is suggesting that these users install and configure their own firewalls?

    True, there is no perfect OS and all OS's are going to be vulnerable in some way. True again that Windows holds the desktop market in it greasy hands, but instead of attempting to meet "corperate deadlines" and wasting time and money by adding functionality into the OS consequently putting other companies out of business, lets start writing some quality code. Screw the deadlines.

    This annoys me.

  51. "per line of code..." by anocelot · · Score: 2, Funny

    "I mean, people act like some other systems don't have vulnerabilities; actually all the forms of Unix as well as Linux have had more vulnerabilities per line of code."

    You know, I can think of at least two ways to take this. ;)

    --
    This tagline brought to you by 1500 monkeys in just under 17 years.
  52. Read the article by nomadicGeek · · Score: 2, Informative

    Heaven forbid that anyone should read the article before posting.

    Taken out of context, what Gates said sounds ludicrous. You also have to remember that this was an off the cuff remark. Read the whole article and it makes more sense. His point is that despite the holes in Windows code, patches were provided prior to the hole being exploited and the people who patched their systems and had reasonable security (i.e. many layers) in place had no problems.

    My experience would seem to support this. I see a lot of networks in my travels. The folks who are on top of things don't seem to have a lot of problems. The folks who aren't have lots of problems, viruses and otherwise. I would say that the quality and quantity of the people involved is more important than the OS that you run at this point.

    The biggest problem that I see is IT departments that have people with insufficient skills. The right person with the right skills can make all the difference in the world. Many companies deploy systems in a haphazard fashion without thinking about maintaining the systems. Before you know it they have a big stinking mess that is going to cost a lot of money to clean up when it could have all been avoided if the right people had been involved from the beginning. Once the mess is there, they can't afford to go back and fix it. They have systems everywhere that aren't patched and were never locked down properly anyway. They have no way to centrally manage the systems and don't monitor their network traffic.

    If you have your shit together and pay attention to detail, you can maintain a pretty secure environment with Windows. I would say that this is the same for most major systems out there. Look at the security patches available for Linux, Apache, and most other software out there. If you are lax then you likely have security vulnerabilities no matter what you have installed. There is no perfect code out there. Any complex system is bound to have holes.

    I think that it is unwise to underestimate Microsoft. In the past, stability was the main issue. They have come a long way in improving stability. Now the main issue is security. It is going to take a couple of years but I would say that you will see a level of improvement that is comparable to the stability improvements seen in NT. It won't be perfect but it will be good enough to keep people buying.

  53. Just to bash Gates by CaptainTux · · Score: 2, Insightful
    It amazes me how people will take ANYTHING Bill Gates says and interpret it in a twisted way just to take a slam at him. This is a really good example of this.

    If you are a developer and you believe that code can be perfect or that it even NEEDS to be in order for users to be protected then I would suggest that you've never worked on any projects of any size. If you are a developer who claims to write perfect code then I invite you to send me your resume.

    The truth of the matter, and anyone who has done professional software development knows this, is that it is impossible to write perfect code. Yes, even under our beloved Linux. Indeed, EVEN our beloved Linux. The challenge is to implement within that imperfect code solid security procedures that deal with, and protects the end user from that code.

    Really folks, I hate Gates as much as the next guy, but he isn't wrong in EVERY single thing he says. Sheesh.

    --
    Anthony Papillion
    Advanced Data Concepts, Inc.
    "Quality Custom Software and IT Services"
  54. Gates isn't wrong; argument works against him. by jbn-o · · Score: 2, Insightful
    Don't rely on someone else to keep your computer secure. Take steps yourself.

    That's why I find free software to be superior to non-free software. With non-free software you must "rely on someone else to keep your computer secure" because only one person or organization has the source code and the legal authority to improve the software. If a program is Free Software for me, I get to choose how much time am I willing to spend developing the skill to improve my software to suit my needs. It doesn't matter to society how much of that freedom I leverage, what matters is that I have the freedom. But I want that freedom for everyone else too. I benefit from more people having these freedoms because I benefit when those people leverage those freedoms in clever ways.

    This is also where I somewhat part with the Open Source movement. On the one hand, I'm glad for all the attention they've helped bring to Free Software licenses (particularly the GNU GPL), but on the other hand I (as a user) want the freedom to share and modify software. I'm not against businesses having the freedoms of Free Software, but I don't want to tailor my message for them or pitch chiefly to them. The GNU project tells about an interesting episode in their their essay on the difference between Free Software and Open Source:

    At a trade show in late 1998, dedicated to the operating system often referred to as ``Linux'', the featured speaker was an executive from a prominent software company. He was probably invited on account of his company's decision to ``support'' that system. Unfortunately, their form of ``support'' consists of releasing non-free software that works with the system--in other words, using our community as a market but not contributing to it.

    He said, ``There is no way we will make our product open source, but perhaps we will make it `internal' open source. If we allow our customer support staff to have access to the source code, they could fix bugs for the customers, and we could provide a better product and better service.'' (This is not an exact quote, as I did not write his words down, but it gets the gist.)

    People in the audience afterward told me, ``He just doesn't get the point.'' But is that so? Which point did he not get?

    He did not miss the point of the Open Source movement. That movement does not say users should have freedom, only that allowing more people to look at the source code and help improve it makes for faster and better development. The executive grasped that point completely; unwilling to carry out that approach in full, users included, he was considering implementing it partially, within the company.

    The point that he missed is the point that ``open source'' was designed not to raise: the point that users deserve freedom.

    stratjakt wrote:

    No, you don't need perfect code. Linux has no "perfect code". If it did, Linus et al would be finished and have moved on to other things.

    Nothing is perfect, so arguing about our need for perfection seems to me to be a moot point. I think we need a system to give as many people the freedoms to inspect, share, and modify software so software can meet people's needs. The proprietary model of software development and distribution does not give us these freedoms.

  55. what are reasonable responsibilities for users? by rbird76 · · Score: 2, Insightful

    Users want software that works, that does the job it's supposed to do. What should users be expected to know and do? Basic security, such as updates and securing against somewhat standard threats (such as Outlook attachments) might be reasonable, but I was under the impression that the documentation for changing these features was less than outstanding. In some cases, the updates may either not work or may come with onerous EULA (WMP 9.0).

    I didn't RTA, but BG seems to expect users to know as much as the virus/script writers and perhaps more than his own engineers to secure their computers. While there is a lot of avoidance of responsibility on the part of users for security flaws, it seems unreasonable to have to spend significant amounts of time to know the inner workings of their system to use it, particularly when Microsoft seems more interested in adding "features" such as "trusted computing" than to write correct code and patches.

    In order to drive, I have to look at the oil, gas, and tire pressure to keep it OK, and I have to know how to drive competently, but I don't have to understand my transmission much to run the car. It would be harder for lots of people to secure their cars if, in addition to the locks, the engine had multiple overrides to allow other users access which would either be listed on p.600 of the Advanced Mechanics' Maintenance Manual for your car or available by downloading from the manufacturers' website along with great features such as a governor that limits you to 55 mph or which rejects non-Exxon gas. MS sells its OS to people solely interested in using it, yet it neither is willing to clarify the requirements for maintaining security nor to write working software or patches. Instead, MS is better at blaming or hindering its users than in actually achieving the "security" they trumpet so loudly.

    If you want users' help in improving security, BG, a good start might be to work with your users rather than against them. Whatever legitimate points you make are diluted by your cavalier attitude about the flaws of MS software and the antagonistic attitude of MS towards the users of its software with respect to security (trusted computing again) - improvements at security seem to secure software from use by legitimate agents rather than from use by illegitimate agents (virus writers and crackers). Users should be your customers, not the enemy. If you believe that users should behave differently, than clarifying the correct behavior to users without a BS in EE/CS would help; setting insecure features to default off might help too.. Then if users want to shoot themselves in the foot, they might have to learn something (and thus might learn not to do that). MS warnings about user security sound like "don't engage in unsafe sex" talks from condom makers who make defective products.

  56. Best excuse for code bloat by isn't+my+name · · Score: 5, Funny

    Gates said:

    I mean, people act like some other systems don't have vulnerabilities; actually all the forms of Unix as well as Linux have had more vulnerabilities per line of code.

    Now, that is the best justification for MS code bloat I have ever heard. It reduces your security vulnerability density!

  57. Re:Unix is difficult, Windows is easy to use by cayenne8 · · Score: 5, Insightful
    "Unix may be secure but it is arcane and difficult to learn and use."

    That a computer system's administrator should be fairly intelligent, able to read and learn how to do new and complex things and stay up to date with technology.

    What the hell were we thinking....??

    ...sarcasm mode off...

    --
    Light travels faster than sound. This is why some people appear bright until you hear them speak.........
  58. Who is Bill Gates? by Dr.+Molf · · Score: 5, Funny

    Who is Bill Gates?

    I would like to hear what a real security expert like Jeff Goldblum had to say, though. After all, he managed to interface a Mac with an Alien computer. I mean, he's no Sandra Bullock, but he's still a pretty good "hacker". (That's the correct term, right?)

    --
    indeed..
  59. Imagine this in another industry.. by LrdHlmt · · Score: 2

    'You don't need perfect nuclear plants to avoid security problems'

    Peolple should build radiation safe bunkers in their basements, in order to keep their families completly safe.

  60. that does not follow. by twitter · · Score: 2, Insightful
    'You don't need perfect code to avoid security problems.'

    IS NOT

    'you can't rely on perfect code for security'

    First, imperfect code is a security problem. M$ has many flaws and they know it each time they ship code. The kind of problems M$ has extends to poor design as well, so it would break even if it were perfect.

    Second, Bill's statement implies that his company never will get better. That's something anyone familiar with M$'s history and hype knows, but it's kind of in-your-face for him to put it that way then blame the users again.

    Get back in your hole, appologist troll.

    --

    Friends don't help friends install M$ junk.

  61. Gates is right, in part. by argent · · Score: 2, Interesting

    You don't need perfect code, you need a secure design. If you have a design that fails "closed", that defaults to not allowing access and requires an exception handler to function correctly for access to be granted, then most bugs will result in a denial of service rather than a security failure.

    The problem that Gates isn't dealing with is that Windows has traditionally used security mechanisms that "fail open". For example, Internet Explorer used the same file type - application bindings as the desktop, and then added a bunch of rules to prevent insecure apps from being opened. Internet Explorer, again, allows local objects full access and then has exceptions to cover objects that aren't really local (like attachments in cache directories).

    So, on the one hand, Bill is right that if you have a good design you don't need perfect security. On the other hand, he's selling a system with a lousy design. So where does that leave us? Well, it doesn't leave me with any warm fuzzies about Longhorn...

  62. Re:Unix is difficult, Windows is easy to use by Bromrrrrr · · Score: 2, Insightful

    It was Microsoft who told these home users that they could be connected without any hassles. They can't just backtrack now and blame their users.

    So yes Unix may be secure but it is arcane and difficult to learn and use.. but no unix vendor has ever stated (afaik) that anyone can use their product without any knowledge about computers.

    --

    What a rotten party, have we run out of beer or something?
  63. From the Windows XP "Getting Started" book by AllenChristopher · · Score: 2, Interesting
    "Another way to make your computer more secure is to assign a password to the Administrator account, which is blank by default."

    There's a line between convenience and leaving the whole system completely open. This is on the wrong side of that line.

  64. If Gates isn't/wasn't a coder, few of us are by mactari · · Score: 2, Interesting

    even calling gates a coder is a stretch

    I couldn't google the link up quickly, but I started giving Gates credit as a coder when I read how his BASIC interpreter worked. I've done just a touch of assembly programming as a hobby, and Gates apparently, to save space, was able to cleverly reuse bits of the interpreter when newly written portions of his code matched previously written portions closely.

    That is to say that he scoured the code he'd already written to see if there was any place he could JSR to reuse code -- essentially using functions in a language where there wasn't any such thing.

    Sure, perhaps this was common practice then, but the point is that he got the concepts. And he, along with Allen, wrote something usable and sellable, and didn't shoot any blanks before becoming profitable. If you can't call Gates a programmer without stretching, people like John Carmack (afaict) are probably the only fellows that deserve the title around here. Which means not very many of us.

    (Now this fact, of course, makes Microsoft's attitude towards security even less forgivable; it's not like they have some naive corporate exec running the ship. And, like I said, this makes Gates' comment about "perfect code" even worse. I don't think he's talking about "Code a la Plato's Forms". Rather, he seems to be justifying the security issues his reused, legacy code that didn't have networking in mind has when used in today's world! That's lazy and fairly irresponsible.)

    --

    It's all 0s and 1s. Or it's not.