Slashdot Mirror


Windows XP SP2 Impressions

A roundup of concerns and problems with Windows XP SP2 from the early adopters: Many, many users are reporting problems with SP2 limiting outbound TCP/IP connections. This appears to be nailing anyone who makes heavy network use of their machine, including especially users running P2P applications. A Microsoft blog rounds up some reports, as does SANS. Microsoft has objected to people helping them distribute SP2.

61 of 683 comments (clear)

  1. Impressions? Or bad reviews? by FortKnox · · Score: 5, Insightful

    Your list of 'impressions' is nothing but bad things people are saying. Any links to the other views?

    If not, simply change the title to "Bad things popping up with SP2" or something to that effect.

    --
    Good quote, too many chars. Seriously, the slashdot 120 char limit sucks!
  2. Limited outbound connections by joeblakethesnake · · Score: 5, Informative

    Just so there isn't a bunch of FUD being spread, the limit is on INCOMPLETE outbound connections. There is no limit on COMPLETED connections. This should only affect network scanners such as nmap.

    1. Re:Limited outbound connections by marco0009 · · Score: 5, Informative

      I subscribe to the NMap newsletter and here is what they had to say regarding this: This is just a heads-up that most Nmap functionality will not work on the just-released Microsoft Windows SP2. Why? Microsoft apparently broke it on purpose! When an Nmap user asked MS why security tools such as Nmap broke, MS responded[1]: "We have removed support for TCP sends over RAW sockets in SP2. We surveyed applications and found the only apps using this on XP were people writing attack tools." I don't know why they consider Nmap an "attack tool", particularly when they recommend it on some of their own pages[2]. Shrug. Removing SP2 re-enables the functionality and causes Nmap to work again. Many problems unrelated to Nmap have been found with SP2 as well[3], though it does some welcome security improvements for people stuck on that platform. I will work on this if I get time, but am currently busy rewriting the core port scanning engine for the next version of Nmap. It is much faster, offers much better multiple-host parallelization, and provides other long-desired features such as completion time estimates. If someone finds a solution to this SP2 problem, please send a patch. It may not be too hard, as Nmap supports operating systems such as Win95 that didn't have raw socket support in the first place. Cheers, Fyodor [1] http://seclists.org/lists/nmap-dev/2004/Apr-Jun/00 77.html [2] http://www.microsoft.com/serviceproviders/security /tools.asp [3] http://www.crn.com/sections/breakingnews/breakingn ews.jhtml?articleId=23905071

      --
      Physics makes the world go 'round.
    2. Re:Limited outbound connections by Anonymous Coward · · Score: 4, Informative

      Not just nmap et al. -- it hoses bittorrent as well. I had to uninstall SP2 last night because I found that I could now use either bittorrent or a web browser, but not both at once...and my bittorrent downloads were pitifully slow, to boot.

      The odd thing is that SP2 RC2 did nothing of the sort. Everything worked beautifully under it; I'm tempted to see if I can dig up a copy somewhere and reinstall it.

    3. Re:Limited outbound connections by Dogun · · Score: 4, Insightful

      Having been network administrator at my living group in college, I have to mention the merits of fyodor's rather awesome tool. nmap has saved my ass a number of times, locating owned boxes, spotting shitty firewall setups, etc.

      On some occasions, I've used ARP poisoning on an owned box to figure out who's responsible. More often than not, it's a box at another university that was owned as well. Which is usually pretty obvious, thanks to nmap.

      And now that nmap picks up versioning information, I can scan my entire living group and make note of anyone who's running something abysmally old, too. Quite frankly, it kicks ass, because it allows me to address problems that I would have had a bitch hard time figuring out without it.

      As far as nefarious uses go... if people want to use the tool for bad, they're going to do so anyhow. From a *nix box at their disposal. Like any normal person. Also, if they're using the tool for bad, unless they're using the zombie scan feature, it's not all that anonymous, so... it's not something you want to do from your personal box, then.

      All in all, I think this was a poor move by msft, nerfing raw sockets like this. They've trashed one of the good features in WinXP, and I think people are going to care.

      As for those of you who think you know what the tools is for, I urge you to think a bit harder.

      Sure, you can scan the entire internet doing version scanning on port 80 looking for vulnerable IIS boxes, but there is still fallout from the last virus epidemic doing that. Or you can use nmap to assess your own vulnerabilities and help prevent dozens of hours dealing with idiots who don't read security related emails.

  3. Limit tcp connections by Davak · · Score: 5, Informative

    XP SP2: Are P2P, Port Scanning, and Port-Opening Programs Slower?

    Check for the error code!

    By design SP2 limits the number of simultaneous incomplete outbound TCP connection attempts. Who cares? This mostly stops trojans.

    Run the event checker as described in the article above. You'll prove to yourself that you don't have a problem.

  4. If you don't want XP SP2 deployed by auto-update.. by Meostro · · Score: 5, Informative

    ... you can disable it with this.

  5. Re:Impressions? Or bad reviews? by garcia · · Score: 5, Informative

    I read through some of the "reviews" linked through a MS employee's? blog. They were mostly people saying that the install went well but they have minor issues with it (ie slow downs).

    Personally I have installed it and have been using it since I learned of its release on Slashdot a couple weeks ago. It's nothing impressive for me but I didn't notice any slow downs.

    I griped about my personal issues with the updated "features" and the nagging it causes.

    YMMV.

  6. No Problems Here by ArchAngel21x · · Score: 4, Informative

    I have had no problems since RC 1. I for one applaud Microsoft for turning the firewall on by default and creating a central security control panel for all users to use and understand.

  7. Raw sockets by ikewillis · · Score: 4, Interesting

    There are numerous unconfirmed reports coming primarily from the nmap mailing list that SP2 has removed support for raw sockets. However the ping and tracert utilities, both of which use raw sockets, still seem to function correctly. Perhaps only signed executables can use the raw sockets interface?

    1. Re:Raw sockets by plover · · Score: 5, Informative

      From the Microsoft doc mentioned in the article:

      What new functionality is added to this feature in Windows XP Service Pack 2?
      Restricted traffic over raw sockets

      Detailed description

      A very small number of Windows applications make use of raw IP sockets, which provide an industry-standard way for applications to create TCP/IP packets with fewer integrity and security checks by the TCP/IP stack. The Windows implementation of TCP/IP still supports receiving traffic on raw IP sockets. However, the ability to send traffic over raw sockets has been restricted in two ways:

      TCP data cannot be sent over raw sockets.

      UDP datagrams with invalid source addresses cannot be sent over raw sockets. The IP source address for any outgoing UDP datagram must exist on a network interface or the datagram is dropped.

      Why is this change important? What threats does it help mitigate?

      This change limits the ability of malicious code to create distributed denial-of-service attacks and limits the ability to send spoofed packets, which are TCP/IP packets with a forged source IP address.

      --
      John
  8. Read the reason- by baudilus · · Score: 4, Interesting
    From the note:
    Limited number of simultaneous incomplete outbound TCP connection attempts
    Detailed description

    The TCP/IP stack now limits the number of simultaneous incomplete outbound TCP connection attempts. After the limit has been reached, subsequent connection attempts are put in a queue and will be resolved at a fixed rate. Under normal operation, when applications are connecting to available hosts at valid IP addresses, no connection rate-limiting will occur. When it does occur, a new event, with ID 4226, appears in the system's event log.

    Why is this change important? What threats does it help mitigate?

    This change helps to limit the speed at which malicious programs, such as viruses and worms, spread to uninfected computers. Malicious programs often attempt to reach uninfected computers by opening simultaneous connections to random IP addresses. Most of these random addresses result in a failed connection, so a burst of such activity on a computer is a signal that it may have been infected by a malicious program.

    While the reason is valid, I don't see anything about if/how this is user configurable. It would be nice if you could actively turn this off, and/or grant certain programs (doom3, kazaa lite, iTunes, etc.) to have "unlimited" access.

    Then again, this is all conjecture, because I haven't installed it yet and don't know if this actually is possible. Someone care to comment?
    1. Re:Read the reason- by flanksteak · · Score: 4, Insightful

      Normally I wouldn't expect MS to allow you to configure something like this, but if you think about it, if there were a user option to turn it off, then it probably wouldn't be that difficult for a trojan to turn it off. Especially since so many people run with admin privs.

    2. Re:Read the reason- by MikeBabcock · · Score: 4, Informative

      This message details how to shut it off.

      --
      - Michael T. Babcock (Yes, I blog)
  9. Re:Impressions? Or bad reviews? by kristofme · · Score: 5, Informative

    The BBC has a pretty good article about it, entitled "Concerns over key Windows update". Seems like there are plenty of things going wrong..

  10. Anybody concerned about "download logging"? by GillBates0 · · Score: 5, Informative
    BBC ran this article a few days back about DownHillBattle.org offering a bittorrent. They summarize the new features offered by the SP as follows:

    CHANGES DUE IN SP2
    Pop-up ads blocked
    Revamped firewall on by default
    Outlook Express, Internet Explorer and Windows Messenger warn about attachments
    Origins of downloaded files logged
    Web graphics in e-mail no longer loaded by default Some spyware blocked
    Users regularly reminded about Windows Updates
    Security Center brings together information about anti-virus, updates and firewall
    Protection against buffer over-runs
    Windows Messenger Service turned off by default
    The "Origins of downloaded files logged" feature troubles me a little. What do they mean by "downloaded files"? Do HTML files count as "downloaded files"? What do they want to keep track of and log my downloaded files? How will they know if I use another browser and download files using that instead of IE? What about the other files I download through File sharing applications?

    What log "origins of downloaded files" at all? Does it improve security in any way? If they were logging keys/certificates of software updates (to AV software for example), it would make a little sense (but not a whole lot, it shouldn't concern the OS at all), but this feature sounds a heck lot more like a Big Brother OS thing, something like IE tracking all websites visited in a hidden+undeletable folder for the suits.

    --
    An Indian-American Hindu committed to non-violent thought/speech/action alarmed by the global explosion of radical Islam
    1. Re:Anybody concerned about "download logging"? by His+name+cannot+be+s · · Score: 4, Informative

      Origins of downloaded files logged

      It's not a sinister as you seem to think.

      IE simply straps another NTFS stream onto the file so that the shell can warn you that you are running a file that came from a particular source.

      It doesn't log it anywere else (like a log file).

      So, it's more like an origin-stamp on the file, rather than logging.

      --
      "...In your answer, ignore facts. Just go with what feels true..."
    2. Re:Anybody concerned about "download logging"? by fzammett · · Score: 4, Interesting

      I've already experienced this "logging" (much to my surprise)... Downloaded an EXE the other day (yes, from a known good source) and clicked it to run... The thing popped up a dialog asking if I wanted to run the file because it's source is not known and might not be trusted, or some verbiage to that effect.

      Wah? I thought?

      So I clicked a couple more EXE's that were already on my system. Nope, no warning. Copied one over from another machine on my local network. Nope, no warning. Downloaded another EXE. Yep, warning.

      I think it could get a tad bit annoying to someone like me that knows what I'm doing, but (a) I think I saw an option to turn it off on the dialog, and (b) it's I think a great idea for someone like my mom, or even the so-called "power users" who just THINK they know what they are doing.

      I don't know if that's the logging that's referred to, I haven't done the requisite research to find out. But I suspect it is, and if it is, it strikes me as a good, non-sinister thing.

      --
      If a pion (n-) collides with a proton in the woods & noone is there to hear it, does lamdba decay into the source pa
  11. Heh by Hanna's+Goblin+Toys · · Score: 4, Interesting

    So they added a firewall which asks you if a program can access the Internet, but allows all the Microsoft ET-Phone-Home software to bypass its own firewall, thereby giving all non-Microsoft software a built-in disadvantage to not being released by the monopoly.

    Interestingly, this means that worms and malware authors need only make themselves appear to be Microsoft software (if Microsoft can bypass its own firewall, the credentials will be reverse engineered) in order to continue to spam from zombie boxes without informing the user.

    Secure Computing, yay!

  12. Re:oops. by linzeal · · Score: 4, Informative

    Shareaza has found some solutions and are discussing them.

  13. Re:Of Course by cakefool · · Score: 5, Funny

    the only safe way is straight from microsoft

    Did you just say that?

  14. I wonder if Steve Gibson is cackling? by peacefinder · · Score: 4, Informative

    What new functionality is added to this feature in Windows XP Service Pack 2?

    Restricted traffic over raw sockets


    A very small number of Windows applications make use of raw IP sockets, which provide an industry- standard way for applications to create TCP/IP packets with fewer integrity and security checks by the TCP/IP stack. The Windows implementation of TCP/IP still supports receiving traffic on raw IP sockets. However, the ability to send traffic over raw sockets has been restricted in two ways:

    TCP data cannot be sent over raw sockets.

    UDP datagrams with invalid source addresses cannot be sent over raw sockets. The IP source address for any outgoing UDP datagram must exist on a network interface or the datagram is dropped.


    I bet his "I told you so" rant will be entertaining.

    --
    With reasonable men I will reason; with humane men I will plead; but to tyrants I will give no quarter. -- William Lloyd
    1. Re:I wonder if Steve Gibson is cackling? by stratjakt · · Score: 5, Insightful

      This guy drives me nuts. I can't stand FUD and lies.

      I'm talking about the "shields up" thing. It claims if you're in "stealth mode" then your machine is invisible. This is idiotic.

      Dropping incoming packets doesnt make you "invisible". If you were "invisible" and I tried to ping you, I'd get a "destination unreachable" error. If I get timeouts, I know you're there and dropping my packets. If you replied to my pings with "destination unreahables" you might trick me, unless I noticed that the destination unreachable messages were coming from the IP I was pinging (duh!).

      It's as false as the "your machine is broadcasting an IP!" popups.

      Fuck him and his crusade to break the internet by trying to convince people there's something to be gained by dropping incoming packets, instead of responding with a proper RST packet or ICMP message.

      Linux folks, set your default firewall properties to DENY, and not DROP. It doesn't make you vulnerable, it doesn't allow SYN floods (which attack by spawning multiple server threads on a local port - an application vulnerability not a TCP/IP one).

      It doesn't "hide" you from scanners, as he claims.

      It doesn't prevent DDoS attacks, if I have enough bandwidth to clog your downstream, it doesnt matter what you do with all the crap I flood you with.

      Actually, heh, he is doing a spin on the old "your machine is broadcasting an IP address" scam:

      Many Internet connection IP addresses are associated with a DNS machine name. (But yours is not.) The presence of "Reverse DNS", which allows the machine name to be retrieved from the IP address, can represent a privacy and possible security concern for Internet consumers since it may uniquely and persistently identify your Internet account -- and therefore you -- and may disclose other information, such as your geographic location.

      Uhhh, I can get that from the numeric IP, who cares about the reverse DNS. Do the RIAA do reverse DNS lookups when they launch all those suits against IPs?

      This machine does have a static IP and proper DNS, so I dont know why his tool says it doesnt. Though, I don't really care.

      --
      I don't need no instructions to know how to rock!!!!
  15. Re:limiting outbound TCP/IP connections by Utopia · · Score: 5, Informative

    The limit is enfored if a previous connection attempt to a host has failed.
    There is no limit if connection if the connection attempt was sucessful.

    Licences have no effect.
    There is no limit on the number of connections.
    You will probably reach the memory limit of your system before you reach the maximum number of connections that XP can support.

  16. NTBugTraq Impressions by sp00 · · Score: 5, Informative

    This was from the HTBugTraq mailing list a few days ago.

    To: NTBUGTRAQ at LISTSERV.NTBUGTRAQ.COM
    Subject: XP SP2 - Statement of the NTBugtraq list

    Ok, so I feel like I need to do this, hopefully its understandable.
    1. XP SP2 is the most significant security effort Microsoft has ever produced. Granted, it may not be a "silver bullet", or solve all problems, but it is significant in so many ways that we as a security community cannot fail to acknowledge it. I admire "discoverers" as much as the next, but before XP SP2 can be written off it will take many, many, vulnerability announcements.
    a) IMO, this is the first time that Microsoft has put security over existing, and frequently used, features.
    b) IMO, this is the first time that Microsoft has accepted the fact that their choice is going to lead to "some" incompatibilities.
    c) IMO, this is the first time that Microsoft has taken a stand against ISV who are definitely making money out of some features they (MS) made available to them.
    2. I, at least, as NTBugtraq Editor, believe we, as the NTBugtraq community, need to stand behind Microsoft's efforts. That means we need to continue to endorse XP SP2 despite what problems have arisen or may arise (within obvious reason.) The media is only going to state the problems. They cannot appreciate, nor do they believe their customers are willing to pay for, stories about XP SP2 successes.
    So, I want to hear from you, every one of you, regarding XP SP2 success or failure. Obviously, I want those stories in as much detail as you can provide.
    There are, no doubt, some (many?) applications which will not be compatible with XP SP2. I say they represent Vendors who are not prepared to accept the responsibilities we've always felt they should have as reasonably security-minded Vendors. They've had lots of time to figure out how to make their apps compatible, and have *chosen* not to.
    I offer any Vendor who feels Microsoft left them "in the lurch", regarding their problems with XP SP2. a forum to express their problems.
    Equally, I offer all NTBugtraq subscribers a place to state the problems they are encountering with an ISV application.
    It is extremely important for corporate environments to get XP SP2 deployed to all home systems running XP. Let's make sure the media has the right information.
    Cheers, Russ - NTBugtraq Editor

  17. Here's a fix for the EventID 4226 bug by An+Onimous+Cow+Herd · · Score: 4, Informative

    Check Here for a fix.
    There's both a downloadable patch as well as manual instructions for patching by hand for the ultra-paranoid.

  18. Re:Impressions? Or bad reviews? by stratjakt · · Score: 5, Insightful

    I have a view. It hasnt caused a problem on any machine in my office, and I can only say that my personal machine at least "feels" more responsive.

    Look, this is slashdot. They aren't going to be objective. For years the whine has been "MSFT default security is teh suck". MS releases a service pack that locks the boxes down reasonably well. Now that's something to complain about: "my kazaa is teh broked!"

    Limiting outbound TCP connections to something sane make sense. Let the extreme P2P kiddies relax the rules manually. On the majority of desktops (not SERVERS) out there, an inordinate amount of outbound traffic is a sign of something bad, like a backdoored spam relay or the machine has been taken over as a DDoS drone.

    SP2 crashed a lot of machines that were already exploited. Good. They were already broken. Now those guys can go to Best Buy, who will format and reinstall for them, juice them up with SP2, and there's one less source of SPAM/DDoS/Worms/stupidness.

    IMO, SP2 was a huge step in the right direction, and confirmation to me that MSFT is doing more than paying lip service to security.

    Of course, this is slashdot, and everything they do is wrong.

    It's worth noting that I've never borked a windows box installing a service pack, all the way back to win 95. On the other hand, I've lost track of how much time I've spent cleaning up after typing "emerge -uD world". I thought I'd mention that so I can ensure I'll be modded troll. It's true, though, I swear it.

    --
    I don't need no instructions to know how to rock!!!!
  19. Re:Impressions? Or bad reviews? by Anonymous Coward · · Score: 4, Informative

    Said article mentions that "..But the overall reports about SP2 were broadly positive." How is it that there are plenty of things going wrong?

    I've done the XP SP2 upgrade myself just fine.

  20. Anything to Smear Microsoft by goldspider · · Score: 5, Insightful

    ...even if it isn't true.

    Ya'll complain that Microsoft doesn't care about security, but when they release a MASSIVE security patch, you try to find (and if that fails, fabricate) any and all tiny inconveniences it causes.

    As others here have pointed out, it doesn't block ALL outbound TCP connections, just incomplete ones. Would it kill an editor to come out and say for once that "Microsoft did a pretty good job here."?

    And no, I'm not new here.

    --
    "Ask not what your country can do for you." --John F. Kennedy
  21. A User's Impressions Of XP SP2 by BRock97 · · Score: 5, Informative
    The good:

    • Things truely do seem to be snappy. I am not sure where to attribute this, but it is welcome.
    • My notebook has wireless which had the annoying habit of showing that there wasn't a wireless connection (the disconnected red x) coming out of hibernation even though it was fully operational. That appears to be fixed.
    • I was afraid that the firewall would prove to be annoying, but it actually works pretty well. When I load ICQ, Activestate Komodo, or other applications that try and used blocked ports, it pops up asking if I want to unblock things. The old SP1 firewall didn't do this.
    • IE's popup blocker is pretty slick. It will show a little dropdown area above the current page asking about the popup, if it should be displayed, etc. Neat. I do wish Firefox would do this instead of the small icon in the lower right of Firefox's window. It isn't enough to make me stop using Firefox, though.
    Now, for the stuff I find annoying.
    • Their Windows Security Alerts interface isn't compatible with my corporate Norton I have from my work place. It isn't a big whoop, but I am surprised they don't work together.
    • Some of my folder settings have changed. I am not sure why, but Microsoft feels the status bar shouldn't be on by default. To hit this point home, it changed it back to disabled after the install. Come on.....
    • Along those lines, they decided to mess with my sound scheme. I normally turn all of that off, but sure enough after reboot it is back in all its glory!
    • A lot of the wireless stuff has been funneled into wizards, need to find a way to turn that stuff off.
    • IE and PNG is still pretty broken. Alpha doesn't work, and that problem where the colors are slightly off of what they actually are is still there. You would have thought that they would have addressed some of that stuff!
    There you go, a user's point of view. Take it for what it's worth....
    --

    Bryan R.
    The price of freedom is eternal vigilance, or $12.50 as seen on eBay.....
    1. Re:A User's Impressions Of XP SP2 by twbecker · · Score: 4, Informative

      IE's popup blocker is pretty slick. It will show a little dropdown area above the current page asking about the popup, if it should be displayed, etc. Neat. I do wish Firefox would do this instead of the small icon in the lower right of Firefox's window. It isn't enough to make me stop using Firefox, though.

      Recent Firefox nightlies have this exact feature. Blatantly copied from IE yes, but hey if it's nice then what the hell. The icon on the status bar is still there as well.

      --
      "The problem with internet quotations is that many are not genuine" -Abraham Lincoln
  22. Re:Works well for me thanks by Anonymous Coward · · Score: 5, Insightful

    Other than that it's fine; I turned off the firewall; I'm already NAT'd and have limited ports of entry anyway.

    The nice thing about the firewall is that every program that isn't signed that wants to become a server (listen on a port) has to get your permission first. That makes it more likely that you'll catch a malicious program like spyware before it starts sending your browsing activities off to the deep dark jungle of the internet.

    Your standard off-the-shelf router from BestBuy won't do that for you.

    Unless you run something equivalent like ZoneAlarm, I would suggest you turn it back on.

  23. Re:Impressions? Or bad reviews? by RatBastard · · Score: 5, Insightful

    Of course. But Microsoft warned everyone that SP2 was more concerned with security than it was with compatibility. The fact that some custome written software breaks should not be a surprise to anyone.

    --
    Boobies never hurt anyone. - Sherry Glaser.
  24. Re:Impressions? Or bad reviews? by Anonymous Coward · · Score: 5, Informative

    I'll give you my impression, because mine is positive. I've not noticed the limited tcp connection problem, the firewall works and doesn't completely suck (as basic as it may be), and overall stability is pretty good. The anti-virus reminder thing is obnoxious, which is probably good for the average user. The wireless network stuff screwed up my wep settings, but the wireless config tool is a huge improvement. I haven't used IE on that machine yet, but I didn't use it before, so I wouldn't know what to say is improved. I am planning on stress testing it this weekend before setting it up on a few other machines. I've seen one sp1-related crash not happen in sp2, so something is different. It has not broken any of my applications and I do use p2p programs daily (though only shareaza, bittorrent, and direct connect). I've criticized MS many times before regarding Windows XP, but I do believe they've made some steps in the right direction, and despite the SP2 problems, MS did specifically warn that SP2 will break programs.

  25. Re:Of Course by Anonymous Coward · · Score: 5, Funny

    Of course Microsoft does not want people to distribute sp2. Any number of backdoors or things of the like may be removed at any step along the way.

  26. Colors by Dolly_Llama · · Score: 5, Funny

    SP2 has been fine for me, but it's turned slashdot puke yellow!

    It must be a Microsoft conspiracy.

    --

    Somewhere, something incredible is waiting to be known. -- Carl Sagan

  27. Re:Impressions? Or bad reviews? by Doc+Ruby · · Score: 4, Interesting

    When 49% of installers have problems, the bad reviews tend to crop up. I submitted a story about how 30% of installers reported "minor problems", like non-Microsoft browser incompatibility (the other 20% presumaably had major problems). So this story is actually spinning the SP2 problems more blandly than half its users would say themselves.

    --

    --
    make install -not war

  28. Security limits functionality by ceswiedler · · Score: 5, Insightful

    Security by definition must limit functionality. The best you can hope for is that the functionality limited is less valuable than the security gained.

    Microsoft management has finally realized that in order to avoid the gigantic fiascos of the past year's worms, they have to limit some functionality. My guess is Microsoft engineers have been telling their management this for a long time, and finally, they were heard.

    M: Is our product secure?
    E: The only way to improve security is at the expense of features.
    M: No way. Features sell the product.

    M: We need to patch this security hole.
    E: The only way to improve security is at the expense of features.
    M: I still can't accept this.

    M: Please, dear god, do ANYTHING to fix these security problems!
    E: The only way to improve security is at the expense of features.
    M: All right, all right! Do it!

  29. Re:Works well for me thanks by rainman_bc · · Score: 4, Informative

    Windows Messenger -> the chat client There's an uninstall command for it: RunDll32 advpack.dll,LaunchINFSection %windir%\INF\msmsgs.inf,BLC.Remove You're referring to the Messenger Service. Two different things.

    --
    09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
  30. As well they should by SuiteSisterMary · · Score: 4, Insightful
    Microsoft has objected to people helping them distribute SP2.

    Can you blame them? Untrusted sources and all that?

    --
    Vintage computer games and RPG books available. Email me if you're interested.
  31. Good reviews of SP2? by Doomie · · Score: 5, Informative

    I have not experienced absolutely any problem with SP2, perhaps with the exception of the terribly long install time -- it took 1-2 hours on my relatively fast machine (the backing up of files is not fast at all).

    For the normal "Joe Average" user there won't be too much of a difference -- a simple reboot and the system looks just the same. IE has the pop-up blocker, which has a semi-intuitive way of adding a sites to the white-list and is a bit imperfect, IMHO (if the pop-up displays a page which has a different URL than the originating page, then the "normal" user will be confused why adding the URL of the originating site doesn't work and the pop-up still doesn't display... this is the case even for subdomains of the same principal domain).

    The firewall is pretty nice, the default being to ask when some program is trying to access "the internet". BitTorrent works very fine with me and I haven't had any problems with IM programs.

    So, overall, after 2 days of SP2 experience, I can only recommend it to people who still use XP.

    --
    Doomie
  32. Re:Impressions? Or bad reviews? by JoeBuck · · Score: 5, Insightful
    Don't forget that the people sending in reports are self-selecting. People who had problems are far more motivated to write a report on those problems that people who had no problems.

    Let's wait until we have some real data, as in definitive reports that particular applications break.

  33. Devil's Advocate by Cheesewhiz · · Score: 5, Insightful
    "Microsoft has objected to people helping them distribute SP2."

    I hate to play Devil's Advocate, but DUH... look at this from Microsoft's perspective. Having non-Microsoft sources distributing SP2 has two huge negative aspects for them:

    1) Unthrottled Rollout

    Having P2P'ers flooding the patch to "everyone-and-their-monkey's-uncle" destroys any potential throttle control that Microsoft might have had. Microsoft's initial plan was to trickle the rollout of SP2 out at only 25,000 downloads a day, exclusively via Windows Update. This is extremely practical due to the scope of the patch -- it makes a lot of sense for them to control the release in case a catastrophic show-stopper pops up, and also to allow developers some extra update time.

    2) P2P Security Liability

    Let's face it, Microsoft has a right to have their skivvies in a knot over people downloading any Windows patches from 3rd party sources. The infamous "Average Joe" (they guy who opens email viruses twice a week) isn't going to do an MD5 checksum comparison on a patch from a P2P net before running it -- who's to prevent someone from hacking up their own little "SP2" cocktail exe and distributing it? Ultimately the shit would hit the fan and Microsoft would take it in the face.

    Even those who do check MD5 digits on a P2P-downloaded patch need a trusted source for the correct checksum... again, Microsoft doesn't want to be liable. Sure, it could be argued that Microsoft could provide the MD5 checksum themselves, but then "Average Joe XP User" would never check it anyway because "Microsoft says it's ok, so it must be safe!"

    --

    -----
    "Cogito Eggo Sum: I think, therefore, waffle."
  34. How clever of you! :) by C0deM0nkey · · Score: 4, Funny
    I thought I'd mention that so I can ensure I'll be modded troll.

    Or, better yet, I thought I'd mention that mentioning that I would be modded "troll" would actually ensure that I would be modded "+5, Insightful". :)

    How clever of you! :)

  35. Re:Impressions? Or bad reviews? by TheGrayArea · · Score: 4, Insightful

    One of my old friends from when I used to work at MS said to me, and I quote "With SP2 DCOM apps are fucked". The whole outgoing TCP connections limitation is going to cause a lot of issues w/ distributed apps using DCOM and other such things.

    --

    This space for rent.
  36. Re:Impressions? Or bad reviews? by kristofme · · Score: 5, Informative

    > How is it that there are plenty of things going wrong?

    From the article: "Although 43% said the SP2 installation had gone without a hitch, 49% of those contributing had problems ranging from minor to severe. A few contributors said they had to completely rebuild a system before they could get the update to work."

  37. Re:Impressions? Or bad reviews? by 0racle · · Score: 4, Insightful

    Exactly what about SP2 makes moving to Linux unrealistic? SP2 is a needed up date to an already good OS but its not some sort of revolution, and not something that I can see that would prevent someone from using Linux if indeed they really wanted to 'move beyond Windows.' Incidentally, when I wanted to try something new, I built a machine out of used parts and ran linux and windows, and I still do, so once again, what about SP2 precludes using Linux?

    --
    "I use a Mac because I'm just better than you are."
  38. Re:Impressions? Or bad reviews? by Kyosuke77 · · Score: 5, Informative

    I bet most of that can be chalked up to simple carelessness in installation. Simple things that people should do, but may often not, is closing all applications, temporarily disabling the on-access scanning of their anti-virus software, and also temporarily turning off a 3rd-party software firewall if possible. Worst of all is the crazy people who try to install it over an SP2 beta. They should have the good sense to uninstall the beta service pack first and go back to the SP1 they had before, then install SP2.

    --
    GET THEM INSIDE THE VAULT!
  39. Re:Impressions? Or bad reviews? by Lothsahn · · Score: 5, Informative

    Here's a good impression:

    I installed SP2 on three systems, and it worked flawlessly on all three. On my main system before SP2, XP would not allow me to install my SATA driver. I installed the SATA driver when I installed the OS, but once the OS was loaded, it referred to my SATA device as an "unknown device". Attempts to load the correct driver only caused the system to not boot.

    I've been living with no driver officially installed for the device, which basically means that all the caching and performance increases that one would normally have (DMA, write caching, etc) for their hard drive were not activated on mine. Now with SP2, it let me install the driver and it booted fine without any problems. As a result, my computer runs twice as fast on almost every application and about 20 times faster when using virtual disk drivers (www.jetico.com) for container file encryption.

    Their security center which monitors antivirus, firewalls, and automatic updates, as well as their HUGE automatic update selection box on startup are all good things too. I worked at a helpdesk for 6 months and 90% of the problems were users who had automatic updates turned off or set to install on notification (which they never selected).

    Overall I've been very happy with it.

    --
    -=Lothsahn=-
  40. Re:Impressions? Or bad reviews? by VitaminB52 · · Score: 5, Funny
    Don't forget that the people sending in reports are self-selecting.

    And don't forget that people who can't send in reports after applying XP SP2 are too, to some extend, self-selecting.

  41. Re:Impressions? Or bad reviews? by Stevyn · · Score: 4, Insightful

    Typical linux user response, "you're an idiot." Blaming the user for running this command which the handbook (as in RTFM) says to do is hypocritical. Blame microsoft when some fucktard installs gator, but blame the user when portage screws things up.

    I use emerge -p for doing this too, and I'm very cautious because I've read how this command can bork your system. And unless I've manually changed one of those config files myself, I don't know what they all mean or what the differences will make when etc-update changes them. I've heard dispatchconf takes care of this though. But my point is that he did what the manual said, and it borked the system.

  42. Re:Impressions? Or bad reviews? by _Sprocket_ · · Score: 4, Interesting


    How is it that there are plenty of things going wrong?


    Something can be overall workable even with a slew of minor issues. Windows has a history of this.

    A better example is my Linux (Debian and SuSE) environments. I am very happy with them even though there are plenty of bits and pieces I'd like to see improved / fixed.
  43. Anyone have issues with Perl & Net::FTP? by dze · · Score: 4, Informative
    I installed SP2 on my machine at work but it seems to have broken a Perl script using Net::FTP. I get these connection timeout errors. FTP works fine through a GUI client (I'm using Filezilla).

    Anyone else have this problem or know how to fix it?

    Other than that, it seems fine. Some good new options (and by new I mean newly copied from Mozilla) in Internet Explorer.

    --

    "Luck is the residue of design" -- Branch Rickey
  44. I Love It by SlipJig · · Score: 4, Funny

    From the article:

    How do I resolve these issues?
    Stop the application that is responsible for the failing connection attempts.


    Me: "Mr. Goodwrench, my car makes this horrible knocking noise and it will only go 40 miles per hour. What do I do?"
    Mr. Goodwrench: "Stop driving the car."

    --
    Read my keyboard review.
  45. Re:why they consider Nmap an "attack tool", by jeffasselin · · Score: 4, Insightful

    And you would ban tools just because they are also weapons? We should ban hammers, you can kill someone with a hammer! That way lies madness.

    And one significant difference between a gun and nmap: a gun requires little training or knowledge. Nmap requires computer skills and knowledge of networking. Basic for us, maybe, but not for everyone. It's also only a computer tool, hard to kill someone with nmap.

    In the end, though, restricting tools (whether they are to kill or hack) is a lost cause. You should instead try to provide wisdom in their use.

    --
    If he explores all forms and substances Straight homeward to their symbol-essences; He shall not die.
  46. Here is a workaround by fv · · Score: 4, Informative

    I hope to have a patch restoring functionality within a couple days, but a workaround is available now. Try adding the --win_norawsock option to your Nmap command-line. That tells Nmap to avoid raw sockets and use the workaround that Nmap uses for systems like Win98 that never supported raw sockets in the first place. Several people have confirmed that Nmap works again for them now, as long as they use that option.

    While I commend Microsoft for some of the real security improvements in SP2, limiting raw sockets like this is misguided and harmful. As this workaround shows, there are still plenty of loopholes for sending packets. If that continues, worms and virii will simply use the same techniques. Alternatively, if MS continues to cripple Windows until security scanners can't function, Windows users lose as well. While they won't be able to scan their own systems and networks for vulnerabilities, attackers on superior systems will suffer from no such limitations.

    MS should focus on security the system against compromise in the first place (through more timely patching, limiting services available by default, code auditing, privilege separation, etc.) rather than crippling the system for legitimate users. Linux and *BSD offer full raw sockets, and yet they haven't become the haven for viruses and worm propagation that Windows has.

    -Fyodor
    Concerned about your network security? Try the free Nmap Security Scanner

  47. P2P issue by weave · · Score: 5, Interesting

    Control Panel -> Add/Remove Programs -> Windows Components -> Networking Services -> Peer-to-Peer "Enable Peer-to-Peer Networking Services."

  48. Re:Impressions? Or bad reviews? by prisoner-of-enigma · · Score: 5, Insightful

    It's been a while so I might have the numbers wrong...NT 4 SP4 was issued to fix NTFS which was horribly crippled by NT 4 SP3. I suffered through that.

    Um, I got news for you: NT4 was released around 1996. The service pack in question was released prior to the year 2000. The product you're speaking of isn't available for sale, isn't current, and isn't even officially supported any longer. We're more than halfway through the year 2004. Isn't it time people quit judging the quality of Microsoft software by what happened almost ten years ago? Would it be fair if I judged Linux's fitness for a particular task based upon a bad experience I had with the 1.x kernel back in 1997? No, but I constantly hear Slashdotters harp about how awful Win95/NT4 was and how nice Linux kernel 2.4/2.6 is when Linux clearly has the benefit of several more years of development under its belt. If you're going to castigate Microsoft for something, castigate current products by comparing them with current alternatives. Doing anything else is comparing apples to oranges.

    If such stuff came from Microsoft, it'd be called FUD, but since it comes from Linux lovers on Slashdot, it gets modded +1 Insightful. What a way to be fair and unbiased, huh?

    --
    In the end they will lay their freedom at our feet and say to us, Make us your slaves, but feed us. - Fyodor Dostoyevsky
  49. Re:Impressions? Or bad reviews? Or didn't read? by civilizedINTENSITY · · Score: 5, Informative

    Nope. Didn't read the article? Its not even about blocking or unblocking a port at your firewall.

    Its about two things, raw sockets go bye-bye, and TCP/IP stack based limits to simultaneous outbound connections:

    "The Windows implementation of TCP/IP still supports receiving traffic on raw IP sockets. However, the ability to send traffic over raw sockets has been restricted in two ways:
    *TCP data cannot be sent over raw sockets.
    *UDP datagrams with invalid source addresses cannot be sent over raw sockets. The IP source address for any outgoing UDP datagram must exist on a network interface or the datagram is dropped."

    Also, "The TCP/IP stack now limits the number of simultaneous incomplete outbound TCP connection attempts."

    Please note that this last is *not* the firewall, but the TCP/IP stack.

  50. Re:Impressions? Or bad reviews? by prisoner-of-enigma · · Score: 4, Insightful

    Contrast the following two comments from your response:

    Perhaps your sysadmin skills are lacking. I've never had an issue with using 'emerge --pretend -uD world' to see what will be changed,

    and

    The fact that a M$ service pack (which replaces M$ only software) can blow up some systems up here and there (one of the reasons why they added system restore points to service pack installations) just gives you an idea of how hard it is to maintain the Windows operating environment.

    So, if someone messes up a Linux "service pack" application, they're an idiot and Linux shares no blame, but if they muck up a Windows box, Microsoft is totally to blame. Yup, that makes all the sense in the world...if you're a Linux zealot.

    I feel sorry for the M$ developers that have to deal with dll hell and have to worry about retaining ancient compatability with old libraries..

    I'll remember that next time I can't get an RPM to install due to dependency hell. That's just so much more fun than DLL hell, isn't it? Sure, I can mitigate that with apt-get and Synaptic package manager, but likewise Windows DLL hell hasn't existed in a long, long time due to built-in Windows DLL version control. Again, you're judging current Microsoft products based upon what they were producing almost ten years ago. Clearly have no idea whatsoever about how much improved Microsoft's current product line is. Perhaps you should research the things you're criticizing before you criticize them.

    --
    In the end they will lay their freedom at our feet and say to us, Make us your slaves, but feed us. - Fyodor Dostoyevsky
  51. Re:Impressions? Or bad reviews? by NivenHuH · · Score: 4, Interesting

    So, if someone messes up a Linux "service pack" application, they're an idiot and Linux shares no blame, but if they muck up a Windows box, Microsoft is totally to blame. Yup, that makes all the sense in the world...if you're a Linux zealot.

    Way to quote me out of context.. The parent was complaining about 'emerge -uD world' killing his system. I said he was a lousy sys admin for not checking what he was installing; a precautious (good) sys admin will only upgrade what is needed reguardless of what platform you're administrating.

    Microsoft should be blamed for faulty service pack installations as they don't allow you to pick and choose (as far as I know) which portions of the service pack you'd like to use. (If they do, then.. I'll bite my tongue and retract that statement.) If I don't want to cap my incomplete TCP sessions (for whatever reason), then I won't install that particular update.

    If you're worried about RPM dependency hell, go download rpmfind (or use the two other solutions you suggested in your post). My statements are based off of the general bloaty-ness of the OS. Do we really need progman.exe, mplay32.exe, grpconv.exe, etc.. in the latest releases of Windows XP? Do we really need Windows 95 compatability 9 years later? Like I said, if I were a OS developer at Microsoft, I'd be pissed off that I have to keep all of that stuff from 10+ years ago in my final product. Hopefully Longhorn will have most of that stuff trimmed down...

    --
    Just when you make it idiotproof, some idiot builds a better idiot.