Slashdot Mirror


Symantec's Genesis to Usher in a New Age of Trust?

eldavojohn writes "Symantec has announced that they will be creating a massive security package called Genesis. Semantec has set their goal to 'Security 2.0' which is proposed to be 'a new age of trust on the Internet.' From the article: 'Symantec plans a one-stop software service tying together anti-virus, anti-spam, firewall and a host of other PC optimization technologies...' This is certainly something the common computer user could buy instead of having to fork over cash for every component. I don't think I'll be purchasing it though."

275 comments

  1. Genesis? by dorkygeek · · Score: 5, Insightful

    Let's hope it was designed intelligently then...

    But seriously, I'd rather have the security problems fixed at the source, instead of having to add layers and layers of so called "security software".

    --
    Windows is like decaf - it tastes like the real thing, but it won't get you through the day.
    1. Re:Genesis? by sumdumass · · Score: 5, Interesting

      I'm wondering if all these layers will slow my computer down even more then thier existing software does. It is pretty bad when i upgrade from a athlon XP 2200 to an 3200 processor and after installing nortan AV 2005 it apears to run slower then the XP2200 did.

      I havn't been fond of thier products since thier 2003 versions. I asked thier tech support several times (after having to reinstal one of thier products and reactivating it because of an upgrade or it just stoped working) why all the systems I install thier AV or internet securities sweet on run so slow and they told me it was because "it is a complicated program","thats how you know it is working" and get this "microsoft slows it down because microsoft is coming out with an antivirus soon".

    2. Re:Genesis? by ForumTroll · · Score: 2, Informative

      "But seriously, I'd rather have the security problems fixed at the source, instead of having to add layers and layers of so called "security software"."

      The only solution here is to use a different operating system. Preferably one that was developed by people that have some idea of what they're doing (ie. MacOS X, GNU/Linux, Solaris etc.). With Windows all you're ever going to get is a nice Fisher Price interface with layer upon layer of extra crap piled on top trying to make up for the ridiculously poor quality of the base system and its architecture. The shell alone speaks volumes about Windows.

      --
      "A Lisp programmer knows the value of everything, but the cost of nothing." - Alan Perlis
    3. Re:Genesis? by lifeisgreat · · Score: 2, Interesting

      Indeed - from the sounds of things, all the API hooks and extra levels they've had to add for such security systems sound like a proto-operating system in itself.

      I think there's a real need for extending the Windows ACL system even further than it already is to encompass programs as well as users - that way the built-in security subsystem could be utilized instead of ever-more hacks. I want to be able to bring up a property sheet and say:

      - process x can't write to directory tree y, even if the running user z has write access there (so only, say, MS Word can write to /My Documents/Word Stuff/)
      - process x can't be controlled via automated means (so that if only Explorer.exe has the ability to delete your files, it can't be scripted to do so by a shell script, SendInput() API calls, etc.)
      - default setting of processes being unable to access the networking subsystem, or processes having access to TCP ports on a per-port basis (ACL subsystem becomes a firewall)
      - only process x can alter ACL information
      - etc.

      The issue I have with assigning rights on a per-user granularity is that once you're running under a user's credentials, you can do *anything* they can surreptitiously. Running as an unprivileged user, an exploit in Firefox will still let it hose your profile, start up trojans under the user's login and anything else. If the Firefox process itself is prevented from spawning read/write/delete/execute actions anywhere but a set of temporary and incoming directories, it's almost bullet-proof.

      Are there any operating systems out there with per-user AND per-process ACLs? If not why not? Are there glaring issues I'm missing? I don't want to have to make a "firefoxuser" login that has everything disabled apart from read-only access to Firefox.exe and write-only to a temp directory somewhere, then do something similar for EVERY other program, I want to be able to constrain a program itself regardless of the user running it.

    4. Re:Genesis? by Anonymous Coward · · Score: 0

      or as it is refered to internally "Bullshit 2.0"

    5. Re:Genesis? by Al+Dimond · · Score: 5, Insightful

      There have been plenty of buffer overrun vulnerabilities allowing potential arbitrary code execution on all major operating systems. There have been plenty of priviledge escalation vulnerabilities on all major operating systems. All you need to get from there to a real exploit is either (a) a vulnerable server listening on some port or (b) some user to click on the wrong link or open the wrong attachment.

      90s Outlook had lots of problems. 90s IE had lots of problems. There's a big problem with user accounts on Windows and how difficult it is to run as non-admin. And Windows doesn't have effective tools like sudo to grant occasional privledges beyond the usual. These tools can be built onto Windows. Third-party developers can be pressured to release software that works with the security model. Exploits can be patched, and quality control can be improved. And there are a lot of people working for Microsoft on these very things.

      Microsoft may never fully win the battle against hackers. But then again, I don't know if anyone ever can. Even OpenBSD has had security holes in its default install a few times, and it's fighting a much less malicious group of hackers than Windows is. I love using GNU/Linux; it's cool that Unix has had sudo since 1980 and a tradition of sane security practices. That doesn't mean we should get arrogant about security.

    6. Re:Genesis? by Aqua+OS+X · · Score: 1

      It was designed intelligently, but it can't dance, and it can't talk.

      --
      "Things are more moderner than before- bigger, and yet smaller- it's computers-- San Dimas High School football RULES!"
    7. Re:Genesis? by Anonymous Coward · · Score: 0

      > It was designed intelligently, but it can't dance, and it can't talk.

      It'll suck unless they get Peter Gabriel to return!

    8. Re:Genesis? by dorkygeek · · Score: 1
      Are there any operating systems out there with per-user AND per-process ACLs?

      Couldn't that be achieved by running program P with setuid, having an own user named PU and an own group named PG for program P. Now as user U, you could set the UID of directory /home/U/foo/bar/files_of_P to PU (or add PU to the ACL for that directory).

      Now, no matter whether user U or V runs P, P only has access to the directories of a user which have UID PU. For users U and V to have full access to these directories, they could simply join group PG.

      --
      Windows is like decaf - it tastes like the real thing, but it won't get you through the day.
    9. Re:Genesis? by ForumTroll · · Score: 2, Interesting

      I'm well aware that other operating systems also have security flaws and I concede that there is no operating system that is completely safe. However, the architecture and coding practices of the other operating systems I mentioned make it much easier to avoid flaws altogether and also make it much easier to locate the flaws and correct them. Being required to run Windows as administrator for many applications to work is just one simple example of extreme neglect for security. And yes this is partially the fault of Windows developers, however it's also largely Microsoft's fault for not teaching or enforcing developers using their platform to use sane security practices since day one.

      I completely agree that all systems have flaws, but some have a lot more than others and also have an architecture and development process that make it much harder to find and eliminate these flaws.

      --
      "A Lisp programmer knows the value of everything, but the cost of nothing." - Alan Perlis
    10. Re:Genesis? by Anonymous Coward · · Score: 0

      It'll probably still be a land of confusion ...

    11. Re:Genesis? by lifeisgreat · · Score: 1, Interesting

      You can hack it in by making a user for every program, but I don't think that should be necessary. Besides, who'd want to do that? And also, there's still a lot of privileges that existing security models don't support - i.e. what if I don't want program P to be able to access the network apart from port 80? Then I need an additional tool to the existing OS security subsystem, whereas there's no reason that the networking stack shouldn't be considered an object with an ACL, like a registry key or a directory.

      I believe the OS should automatically treat every process as a privilege-less user (that is, can access and do nothing). a standard for delimiting access rights should be stored as a manifest for the program for easy setup from trusted distributors, such that you'd get say iexplore.exe, right-click iexplore.acl, "Assign Rights", and you'd have a browser configured that can only do those actions set out in iexplore.acl. Such as, read only access to itself and its own directory, write access to an incoming files directory, read/write to its own registry key and the temp folder, outgoing network access to tcp port 80, and that's it. It shouldn't be allowed to spawn child processes, read system information like hostname, username, usergroup, OS version, and it can't because all those permissions were absent from iexplore.acl (but can of course be assigned).

      I just can't stand the idea of a process having all the abilities of its running user with no way to limit them. The only workaround is creating more users and groups, numbering in the hundreds for any usable installation.

    12. Re:Genesis? by dorkygeek · · Score: 1
      You can hack it in by making a user for every program, but I don't think that should be necessary.

      Why not? It doesn't harm the system.

      Besides, who'd want to do that?

      For example the install scripts or the OS itself.

      Such as, read only access to itself and its own directory, write access to an incoming files directory, read/write to its own registry key and the temp folder, outgoing network access to tcp port 80, and that's it. It shouldn't be allowed to spawn child processes, read system information like hostname, username, usergroup, OS version, and it can't because all those permissions were absent from iexplore.acl (but can of course be assigned).

      You might be interested in Java then. By the virtue of the Security Manager, you can in fact define for every Java app you run what it is allowed to, and what it is not allowed to do.

      For example, using the FilePermission you can restrict the app's read or write access to certain directories only. Analogously, using the SocketPermission you can restrict network access of that program to certain hosts or certain ports only. With an application-specific policy file, you can control the rights of this app extremely fine-grainedly.

      --
      Windows is like decaf - it tastes like the real thing, but it won't get you through the day.
    13. Re:Genesis? by Fred_A · · Score: 1
      Let's hope it was designed intelligently then...


      Trusting Symantec will certainly demand quite a leap of faith...
      --

      May contain traces of nut.
      Made from the freshest electrons.
    14. Re:Genesis? by silverburn · · Score: 3, Informative
      Hear, Hear.

      Try installing the 2006 Internet Security edition; on a Athlon 3200+ it's so slow on startup I just standby the PC now instead of turning it off, for fear of dropping dead of old age before my PC's restarted.

      And it now takes THREE TIMES LONGER to get fully operational. And opening a word document takes an eternity. And it breaks more often than the 2005 edition (twice since it was launched!).

      What an utterly shite piece of flaky bloatware it's become.

    15. Re:Genesis? by superiority · · Score: 1

      These tools can be built onto Windows.

      Wait...we shouldn't get angry at something's lack of security features because, if the developers really wanted to, they could put them in. Never mind that some of them should already be there. Besides, in case you hadn't noticed, exploits in XP have been being patched for 4 and a half years now. Nothing much seems to have changed.

    16. Re:Genesis? by sumdumass · · Score: 2, Informative
      And it breaks more often than the 2005 edition (twice since it was launched!).
      and isn't it interesting that with the product activation you now have to call in and have them re-authorize the activation. They insist you give them an email address, god forbid it hasn't changed since the last time you called or you will have another 20 questions on are you sure your not stealing our crapware, then you have to put up with all the spam they say they have no conection with.

      Somethign has gone completley down hill with thier software. I remeber a time when I could say with confidence it was one of the best AV suites availible and had no problem recomending it to someone. After about the 20th time I had to call and re-activate clients (2005) software I told them if they didn't fix it i was taking my business elsewere. Well, i have switched almost all my clients to either AVG (pay version) which is half the price for twice as many years updating or Zone labs products. The only holdouts are my clients who have longer then 2 months left on thier AV subsciption.
    17. Re:Genesis? by drsmithy · · Score: 1
      However, the architecture and coding practices of the other operating systems I mentioned make it much easier to avoid flaws altogether and also make it much easier to locate the flaws and correct them.

      What "architectural and coding practices" are you thinking of ?

      Being required to run Windows as administrator for many applications to work is just one simple example of extreme neglect for security. And yes this is partially the fault of Windows developers, however it's also largely Microsoft's fault for not teaching or enforcing developers using their platform to use sane security practices since day one.

      Microsoft have been telling developers to write LUA-friendly apps for 6+ years now. They share zero blame for any remotely current application needlessly requiring Administrator level privileges to run.

    18. Re:Genesis? by dkf · · Score: 1
      Microsoft have been telling developers to write LUA-friendly apps for 6+ years now. They share zero blame for any remotely current application needlessly requiring Administrator level privileges to run.
      Not really. They should have been pushing much harder on this, doing things like refusing the use of trademarks to apps that are security-stupid when run on recent-enough Windows versions. It's not like it's all that hard to get right (e.g. no writing of shared filesystem space or shared registry keys) so beating stupid third party developers over the head with a stick over this issue is fair.
      --
      "Little does he know, but there is no 'I' in 'Idiot'!"
    19. Re:Genesis? by drsmithy · · Score: 2, Informative
      They should have been pushing much harder on this, doing things like refusing the use of trademarks to apps that are security-stupid when run on recent-enough Windows versions.

      It's a requirement of the "Made for Windows" logo.

    20. Re:Genesis? by Anonymous Coward · · Score: 0

      They're either not pushing hard enough or Windows developers are just complete idiots. Which it is I really couldn't say, but I really wouldn't doubt either option or a combination of both. Have you noticed that no other modern day operating system has this problem?

    21. Re:Genesis? by FrostedChaos · · Score: 1

      Congratulations, you just invented "capabilities"-- something that a lot of researchers in the Operating Systems field have been pushing for.

      Unfortunately, the compatibility monkey is on everyone's shoulders, so we're going to be stuck with "permissions" for a long while yet.
      When was chmod invented? 1970 or thereabouts?

      --
      "Any connection between your reality and mine is purely coincidental." -Slashdot
    22. Re:Genesis? by Jedi_Knyghte · · Score: 2, Interesting
      I asked thier tech support several times (after having to reinstal one of thier products and reactivating it because of an upgrade or it just stoped working)

      Yup. I quit using Norton after it randomly deactivated itself repeatedly and then told my activation count was used up and I'd have to talk to tech support--and this was after I installed the patch that was supposed to fix it. AVG free all the way now, and cross off one hitherto faithful and satisfied customer.

    23. Re:Genesis? by Anonymous Coward · · Score: 0

      I have a lock on both the door and the ignition of my car to stop criminals stealing it, or what's inside it.
      I have no problem with buying and installing a lock (software or hardware) on my computer to stop criminals stealing it, or what's inside it.
      Although I would love to live in a society with no criminals, I accept that's completely unrealistic. Society's job is to pass laws ensuring crime doesn't pay. I'd hate to live in a country where Microsoft or IBM or Sun or Symantec or, for that matter, Linus Torvalds makes the laws. Dictatorship with computers is still dictatorship - I vote for democracy.

    24. Re:Genesis? by Blux · · Score: 1

      You bet it will slow down. Just compare Norton Anti Virus solution versions 2003, 2004, 2005 & 2006. It's like slow, slower, slowest, crawling... (well you get the idea).

      I run Windows XP at home and no protection software is installed (resident / layers). Occasionaly I run free AV, MS antyspyware, SpyBot S&D but basically it turns out they don't find a thing.

      How do I do it: using linux router and more importantly think before you click!

      That's right - use your brains & you don't need any security suite.

    25. Re:Genesis? by tbone1 · · Score: 1
      With Windows all you're ever going to get is a nice Fisher Price interface with layer upon layer of extra crap piled on top trying to make up for the ridiculously poor quality of the base system and its architecture.

      I deny this vehemently! The Fisher Price interface is an ugly pile of crap which rides to school on the short bus and whose mother dresses it funny.

      --

      The Independent: Reverend Spooner Arrested in Friar Tuck Incident - ISIHAC, Historical Headlines
    26. Re:Genesis? by Anonymous Coward · · Score: 0

      "Windows doesn't have effective tools like sudo to grant occasional privledges beyond the usual."

      Right click file and choose Run as...

    27. Re:Genesis? by Anonymous Coward · · Score: 0

      I didn't think OS X would run on a regular PC...

    28. Re:Genesis? by MC68000 · · Score: 1

      Systrace will satisfy your needs
      http://www.citi.umich.edu/u/provos/systrace/

      --
      E = m c^3 Don't drink and derive E = m c^3
    29. Re:Genesis? by Anonymous Coward · · Score: 0

      Just another way to make some money for Symantec.
      Maybe just use better system like *BSD or GNU/Linux?

      Security 2.0, Web 3.0, Foo 8.0, Bar 15.0... what a nonsense!

    30. Re:Genesis? by Anonymous Coward · · Score: 0

      Well, it's just a job to do, but it's gonna get better. It's always the same - it's just a shame, that's all.

    31. Re:Genesis? by pesachzon · · Score: 1

      There's one simple solution: move to linux (preferably ubuntu).

      In the dark ages when I still used windows and symantec products I found myself constantly trying to find out how to shut them down (which is not so easy).

      The first stage of my transition was to start using AVG antivirus and some light firewall which I don't remember. However, even with AVG I found myself constantly trying to make it work.

      Eventually I switched to linux from other reasons but I don't have to deal with this sort of stuff anymore.

    32. Re:Genesis? by Anonymous Coward · · Score: 0
      I asked thier tech support several times (after having to reinstal one of thier products and reactivating it because of an upgrade or it just stoped working)...

      I've never been successful at upgrading any version of Symantec's AV product. Every time something goes horribly wrong -- endless activation requests, sudden subscription amnesia, etc. Every time I end up removing the old and reinstalling the new.

      Does anyone here have experience with F-Secure's products?

    33. Re:Genesis? by Al+Dimond · · Score: 1

      I always thought that in order to "Run As" you needed the password of the user you were going to run as. Anyone on Windows right now that can test this? The beauty of sudo is that you can specify the additional permissions that each user can temporarily grant itself in the /etc/sudoers file, and then to get them they only have to authenticate as themselves. This means that you don't have to give out your root password, and that you can flexibly manage the permissions of each user if you choose to do so.

    34. Re:Genesis? by smittyoneeach · · Score: 1

      It's still a PITA for a lot of hardware drivers.
      Oh, and good luck if you're not buying new. While improving core OS security is a Good Thing, it makes marginal sense to pump up the left front Firestone, if the other three (representing your peripherals) have flat old drivers, to trot out the 'tired' car analogy.

      --
      Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
    35. Re:Genesis? by dodobh · · Score: 1

      SELinux?

      --
      I can throw myself at the ground, and miss.
    36. Re:Genesis? by apoc.famine · · Score: 1

      The difference as I see it is that if Linux starts becomming a large-enough market share that it's worth exploiting, WE'LL ALL SHARE SECURITY INFORMATION! If Ubantu sees some holes in an application, they will publish that information, and all the other flavors will a) be notified, and b) be able to make a timely fix. If Gentoo users start seeing code exploitation, they will publish that information, and everyone else will be able to make changes.

      Compare that with windows, where many holes and flaws probably go unnoticed for years. And even if there *appears* to be a problem, there's usually no way to crack it open and verify that. The whole open-sharing of information will allow free OSes to do a much better job of closing off security problems than any closed OS will ever be able to.

      No, no OS is free from bugs and security holes, but when everyone shares those problems openly, they will probably get fixed, and fixed fast, everywhere they need to get fixed. While we shouldn't get arrogant about security, we can at least be a little egotistic about how well we share security information. And in the long run, I think Linux flavors are far more flexiable about where they apply their man-hours. Microsoft is committed to a release-upgrade cycle. If a Linux flavor needs to put off a new version for a few months while they concentrate on patching holes, they can. If Microsoft delays for six months, their stock goes down and people scream and shout.

      --
      Velociraptor = Distiraptor / Timeraptor
    37. Re:Genesis? by Anonymous Coward · · Score: 0

      "I install thier AV or internet securities sweet"

      yeah man, those internet securities are sweet. Maybe they'll make a no or low carb version soon.

    38. Re:Genesis? by danpsmith · · Score: 1
      But seriously, I'd rather have the security problems fixed at the source, instead of having to add layers and layers of so called "security software".

      Don't you see though, this is how MS can create markets to expand into. First you create insecure software, then you create software to deal with the insecurity problems. Next there will be software to fix the insecurity problems in the security software, that will be fun!

      --
      Judges and senates have been bought for gold; Esteem and love were never to be sold.
    39. Re:Genesis? by Anonymous Coward · · Score: 0

      That's the idea for security...security in depth - not relying on any one device or piece of software to do the job - because any one device can't do all of the jobs.

      teh

    40. Re:Genesis? by Blakey+Rat · · Score: 1

      That's a point, but on the other hand, Run As... can also be used to run something under an account with *fewer* priviledges than the one you're logged in as. So in that way, it's actually more powerful than SUDO. (Presuming, of course, that you know the passwords you need access to.)

      For instance, if I'm logged in as admin, and I download a program that's possibly spyware, I can Run As... it as a normal user account to assure it won't completely hose up my computer.

    41. Re:Genesis? by operagost · · Score: 1

      Thankfully, the Corporate version is still mostly based on the Intel Landesk technology, so it is about as un-bloated as could be expected.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    42. Re:Genesis? by operagost · · Score: 1
      And Windows doesn't have effective tools like sudo to grant occasional privledges beyond the usual.
      Hold down the shift key while opening the context menu (right-click). You will find "Run As." No, I don't know why it is hidden that way.
      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    43. Re:Genesis? by g0at · · Score: 1

      I'm wondering if all these layers will slow my computer down

      Whoa, you know I'm getting used to the American mantra of "more talk and less action" (more threats and less innovation) when I initially read that as "I'm wondering if all these lawyers will slow my computer down..."

      -b

    44. Re:Genesis? by VGPowerlord · · Score: 1

      Actually, unix has a tool that can do this, too. It's called su, and it stands for switch user. su username -c "command to run" works just the same as runas /user:"username" "command to run"

      --
      GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011
    45. Re:Genesis? by VGPowerlord · · Score: 1

      It's not hidden on XP or 2003, except in the Control Panel for some reason.

      --
      GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011
    46. Re:Genesis? by fbjon · · Score: 1
      I just have ClamWin set for a weekly scan of important directories, like the system folders and a download folder. Sometimes I check individual and slightly suspicious files before running them. Slashdot will alert me to any major hoopla going on, and that's all I need.

      Except I managed to catch some age-old virus buried deep in layers of zip files. Twice. From the same file. But that was before I had any protection at all.

      --
      True confidence comes not from realising you are as good as your peers, but that your peers are as bad as you are.
    47. Re:Genesis? by Tim+C · · Score: 1

      I'd rather have the security problems fixed at the source

      The biggest single security problem facing computers these days is the people using them. Nothing (that I've seen) can save a machine from a clueless user with administrative access blinding running every piece of malware they come across.

    48. Re:Genesis? by HiThere · · Score: 1

      And this software will detect the next Sony rootkit?

      And fix it?

      --

      I think we've pushed this "anyone can grow up to be president" thing too far.
    49. Re:Genesis? by HiThere · · Score: 1

      That was software developed when Peter Norton hadn't sold his company yet.

      Actually, back when, Symantec used to make good anti-virus software for the Mac. When they went into compilers, their anti-virus software started the downhill slide. I found a replacement after the first time it trashed my hard disk, but nobody's said anything to make me think it's stopped getting worse.

      --

      I think we've pushed this "anyone can grow up to be president" thing too far.
    50. Re:Genesis? by Cro+Magnon · · Score: 1

      I just got a brand new computer, and from the specs it should run circles around my old box. But it's actually slower than the older machine. The new box has Norton 2005 and the old one had Avast.

      --
      Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
    51. Re:Genesis? by Cro+Magnon · · Score: 1

      Maybe if Microsoft had made non-admin the default, or even included a first-time message explaining why the user shouldn't run as Administrator, I'd be willing to cut them some slack. With their defaults, the average user doesn't even realize he should have a password, let alone a limited account. The devs have no reason to change.

      --
      Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
    52. Re:Genesis? by amuro98 · · Score: 1

      Several places I've worked at use F-secure, and I used to use F-prot back when it was free.

      Let's put it this way.

      F-secure works.

      Norton does not.

      Which would you rather use?

      Ok, that's a slight exaggeration. Let me put it this way: F-Secure's AV products have consistantly worked with no noticable performance impact regardless of the platform you're using. It scans, it updates, it doesn't screw up your other applications on the machine - and all without causing otherwise beefy computer to grind to a halt.

      I don't know what the folks at Norton are doing, but making a quality, robust product doesn't seem to be very high on their to-do list. If you think the Norton experience is horrible with WinXP, just wait until you try their newer products under an older OS - like Win98 or Win2k. At least you XP folks can get the thing to run - which is more than I can say when I tried putting Norton2003 on a Win2000 box. Also, god forbid you actually try to use their emergency restore disc feature. I tried doing that on a XP laptop, and wasn't able to get it to work because of all the bugs I found - and this was a core feature in their earlier products!

    53. Re:Genesis? by Al+Dimond · · Score: 1

      In addition to what VGPowerLord said in my older-sibling post, is "running as admin and occasionally running programs with a reduced permissions" really a sane model for user-level security?

      At any rate, sudo can be used to reduce permissions as well:

      aldimond@talkingcookie ~/randomdocs $ touch foo
      aldimond@talkingcookie ~/randomdocs $ ls -l foo
      -rw-r--r-- 1 aldimond users 0 Feb 3 22:30 foo
      aldimond@talkingcookie ~/randomdocs $ sudo -u awd touch foo
      Password: (here I enter my user password for the account "aldimond")
      touch: cannot touch `foo': Permission denied

      The other really nice thing about sudo (I honestly don't know whether this is the case with RunAs or not) is that things you do while sudo'ed are logged as being done by the user you're logged in as, not the one you sudo'ed to. This probably doesn't make any difference on single-user systems, but it is the right thing anyhow.

    54. Re:Genesis? by drsmithy · · Score: 1
      The devs have no reason to change.

      You seem to be missing the point. Just because the default _is_ an Administrator, is not justification for developers ignoring Microsoft's recommendations, universal best principals, and just sheer common sense by writing applications that _needlessly_ require Administrator privileges.

      An application that "needs" Administrator access because it's badly written, is solely the responsibility - and fault - of the application developer.

  2. Now if they can get their cpu use down... by ChaoticLimbs · · Score: 4, Informative

    Symantec and Norton antivirus and security packages (on machines I have experience with) use an absurd amount of memory and processor resources. Any hope that this will change someday?

    1. Re:Now if they can get their cpu use down... by TubeSteak · · Score: 2, Insightful

      I can't think of one major software package that has reduced bloat over the years.

      I also hate the trend towards dumbing down the user interface. Some virus scan progs & firewalls practically hide all the settings from you.

      Very few major anti-virus companies these days will put out a consumer (not the corporate or institutional package) piece of software that is stripped down. Feature bloat is the name of the game.

      I'd rather have 3 or 4 small efficient programs than one big POS to replace them.

      --
      [Fuck Beta]
      o0t!
    2. Re:Now if they can get their cpu use down... by WhiteWolf666 · · Score: 5, Informative

      I can't think of one major software package that has reduced bloat over the years.

      OS X, for one.

      KDE, during major versions, for two. 3.2 was faster than 3.1, 3.5 is way faster than 3.4, or 3.2

      There's a school of software development that involves making your software leaner and meaner as it "ages".

      New versions are more bloated. New revisions are LESS bloated.

      --
      WhiteWolf666 an exBush supporter. All you new-school,compassionate,save the children Republicans can rot in hell
    3. Re:Now if they can get their cpu use down... by Bananatree3 · · Score: 5, Funny

      Symantec and Norton antivirus and security packages (on machines I have experience with) use an absurd amount of memory and processor resources. Any hope that this will change someday?

      Why yes, you can solve this problem today! Simply get a dual-core system, and voila! One core for the all-in-one anti-virus, firewall, automated secure dohicky, bloated security suite; and the other core for the rest of your stuff! It will feel as if you aren't running it at all!

    4. Re:Now if they can get their cpu use down... by sumdumass · · Score: 1

      Some how i suspect symantec will find a way of making that slow to a crawl too.

      It is sad when i have to clean infections form a computer not because they didn't have an AV but because they fequently turned it off to make thier new ocmputer usable at certain things like playing games.

    5. Re:Now if they can get their cpu use down... by CaptnMArk · · Score: 1

      and Mozilla / Firefox

    6. Re:Now if they can get their cpu use down... by lifeisgreat · · Score: 0

      To be fair, what they're being asked to accomplish isn't exactly computationally cheap.

      Think about it - you have to intercept any possibly-dangerous API call that any program makes (i.e. any file or registry access, and a whole host of basic win32 calls), sanity-check the arguments of all those API calls, analyze programs at runtime for polymorphic virus behaviour, and all on top of the OS's own checking it does anyway. Hooking isn't free, and double-checking everything the kernel and shell are being requested to do is going to kick performance in the pants.

      That's why I'd rather the OS had the ability to perform these checks as part of its own security subsystem. The most important thing that most 3rd party tools do is set up jails around processes - say Internet Explorer can't write to %SYSTEMDIR% or execute child processes. I've always thought that belonged in any sane security system - I don't want my web browser having read OR write access to my Excel files, even though the user executing it DOES have that access. Short of creating new restricted users for every program and runas'ing them all, I think it's the OS's job to facilitate easy control of what processes can do, regardless of who's running them.

      Even when notepad.exe's being ran by Administrator, it shouldn't have the right to listen on TCP ports. Programs should have their rights limited, just as users do.

    7. Re:Now if they can get their cpu use down... by caffeinemessiah · · Score: 1
      I see the parent modded "funny", but in reality this doesn't sound so implausible.

      Average user: so, what's this whole "dual-core" mumbo jumbo?
      You: well, think of each core like a separate computer. One core for the all-in-one anti-virus, firewall, automated secure dohicky, bloated security suite; and the other core for the rest of your stuff! It will feel as if you aren't running it at all!
      Average user: that's awesome, thanks!

      Not so funny now, eh?

      --
      An old-timer with old-timey ideas.
    8. Re:Now if they can get their cpu use down... by darkain · · Score: 1

      They also have a rediculasly higher crash rate then without the software. McAfee and Norton are nothing but crash maniacs, at least from my personal experience.

    9. Re:Now if they can get their cpu use down... by Parham · · Score: 2, Insightful

      I switched from Norton about a year ago and I have to admit I couldn't be more happier with the speed of my computer. I currently have AntiVir PersonalEdition Classic installed and I couldn't be more happy with it. All the settings are available to met, it's fast, and it tells me exactly what it's doing with it's guard feature (it shows exactly what files it's scanning as you use your computer). The only setback is that the free version doesn't automatically update for you and the scheduler is a little funny to use, but those are things I'd gladly do manually in exchange for MUCH MUCH better speeds.

    10. Re:Now if they can get their cpu use down... by Andrzej+Sawicki · · Score: 1

      You forgot to add MP3 playback on the first core. Those are modern, powerful processors, you know.

    11. Re:Now if they can get their cpu use down... by Fred_A · · Score: 1

      ed.

      I don't think it had taken any bloat at all in all these years.
      Which is why ed remains to this day the standard text editor.

      --

      May contain traces of nut.
      Made from the freshest electrons.
    12. Re:Now if they can get their cpu use down... by Gary+Destruction · · Score: 1

      You joke about it, but it could very well end up that way. It's been my belief that the key to a more secure system is in fact a second processor. I think it will be part of the PC's evolution as security becomes more automated and computers are designed to protect even the most careless users from unforeseen threats. The idea system would utilize a second processor and the security would be entirely transparent to the user. I know; I'm dreaming.

    13. Re:Now if they can get their cpu use down... by AsbestosRush · · Score: 1

      Someone else has mentioned this in another thread, but check out AVG http://free.grisoft.com/ Does auto updates, and I've never had to futz with the scheduler.

      --
      EveryDNS. Use it. It works.
      AC's need not reply
    14. Re:Now if they can get their cpu use down... by rapidweather · · Score: 1

      The KDE Guarddog firewall does not show up in "top" as a process that takes up memory, unless you boot up the configuration interface to make changes to the firewall rules. I have a preconfigured rc.firewall built in to my livecd linux, that is placed in /etc/init.d ahead of any restoration of personal config that knoppix allows. I have by default http, https, ftp, pop3, pop3s, and dns, so email and web surfing can be done immediately after the linux system boots to the desktop.

      I note that Mozilla Firefox has the new version 1.5.0.1 out, I have that up and running in my latest build, and am using it now. Supposed to fix some security bugs.
      There seems to be an upward spiral of threats vs countermeasures in the Windows world, and as noted in the previous post, perhaps the dual core processors are needed to keep up with that.

    15. Re:Now if they can get their cpu use down... by Jesus_666 · · Score: 1

      From my personal experience you're lucky if they only crash. I can distinctly remember haveing to replace half of a Windows installation when NAV 2001 ate the sys tray, completely blocked access to the NIC and became unkillable.

      This all-in-one-super-mighty-oh-my-god-I-just-wet-mysel f software would be something to investigate if it didn't come from a company that has worked up a reputation of releasing software more dangerous to Windows installs than the malware it's supposed to protect against...

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    16. Re:Now if they can get their cpu use down... by bs7rphb · · Score: 1

      XFCE - it's all about reducing bloat.

      Don't know if that counts as a major software package though...

    17. Re:Now if they can get their cpu use down... by the.o.ster.66 · · Score: 1

      sounds like Adobes solution to problems: "you need to upgrade"

    18. Re:Now if they can get their cpu use down... by Anonymous Coward · · Score: 0

      We're quite happy with Symantec Client Security V3.02. We could never install V2 on our older Win2000 machines with 128 meg because of instability, but V3.02 runs quite nicely with all the security features turned on in 128 meg. OK, you can't run the latest games on them, but for business machines, they work well. On the downside, Symantec released 2 unstable versions (3.0 and 3.01) before they got it right.

    19. Re:Now if they can get their cpu use down... by dylan_- · · Score: 1
      The KDE Guarddog firewall does not show up in "top" as a process that takes up memory, unless you boot up the configuration interface to make changes to the firewall rules.
      That's because Guarddog isn't a firewall. It's a configuration tool for iptables (Linux's built in firewall).
      --
      Igor Presnyakov stole my hat
    20. Re:Now if they can get their cpu use down... by Parham · · Score: 1

      I don't remember where I read it, but when I was looking for my Norton alternatives, AntiVir came up as being better (finding more viruses, etc etc). I wish I could find it again to see if it was updated. How much are you happy with AVG, if you're using it?

    21. Re:Now if they can get their cpu use down... by HiThere · · Score: 1

      If you really want to secure your systems processes, mount /tmp and /home on a separate partitions, and mount / read only. It's not perfect, but all you would need to secure is:
      1) the mount command, and
      2) processes that are run from /home

      (Actually, if you REALLY want to secure your system, burn / to a rom. That should not only secure things quite well, but should also speed up, e.g., booting. Of course a few other changes are necessary, but not all that many.)

      --

      I think we've pushed this "anyone can grow up to be president" thing too far.
    22. Re:Now if they can get their cpu use down... by HiThere · · Score: 1

      How much can I trust a company that is advertising that every Linux computer needs to have their anti-virus program installed?

      They seem a bit dodgy to me.

      --

      I think we've pushed this "anyone can grow up to be president" thing too far.
    23. Re:Now if they can get their cpu use down... by MemoryDragon · · Score: 1

      I banned Symanted from my machine after they pushed a 5 mb atguard to a 60mb monster with almost no extra functionality within a year, all due to the fact that the clean streamlined interface was exchanged with a bloated buggy full of picutes disneyesk interface... All I can say is if you are looking for a change, dont wait for Symantec.

    24. Re:Now if they can get their cpu use down... by frodo527 · · Score: 0

      Oh yay, another bloated piece of crapware from Symantec.

      Norton Antivirus used to be good, back in the 90s. Since then it's bloated into a resource-sucking hog that frequently causes system instability, and just as bad, misses virus/worm infections. The whole Symantec Norton Internet Security Suite is just awful. I have worked on several PCs that were running poorly, had networking issues, and were just plain painful to use, largely due to NIS.

      The fix was easy: blow away NIS. Install everything related to it -- NAV, Live Update, the firewall, etc. Then replace it with single-purpose apps that work well for a single task (sounds Unixish, huh?)

      For antivirus I've had good results with AVG (free.grisoft.com) and Avast (www.avast.com).

      For taking care of spyware I load both Spybot Search & Destroy and Lavasoft Ad-Aware. I also use the hosts file from mvps.org.

      For a software firewall in most cases XP's built-in firewall is fine, but Windows boxes should be behind a NAT router at least.

      But the single easiest way to prevent malware from getting onto Windows boxes it to break people of the Internet Explorer and Outlook Express habit. I've converted several people over to Firefox and Thunderbird. While not perfect, they aren't the built-in rootkits that IE and OE are.

      --
      http://blogostuff.blogspot.com/
    25. Re:Now if they can get their cpu use down... by AsbestosRush · · Score: 1

      No obvious problems, but I don't use local email (Gmail online only for me), both my wife and I are avid Firefox fans, and careful to boot, so it's never been a problem for me.

      --
      EveryDNS. Use it. It works.
      AC's need not reply
  3. Internet Security by PaladinAlpha · · Score: 5, Insightful

    Really, this doesn't seem all that revolutionary -- Symantec, like McAfee, like any other company serious in the business, ALREADY offers an integrated suite of tools (Internet Security) and no matter the advancement of interplay and integration I have a hard time believing that Genesis will come across to the average user as being so much more. Wait and see, I guess.

    1. Re:Internet Security by Overly+Critical+Guy · · Score: 1

      What would be revolutionary is eliminating the need for all that crap anyway. I can't imagine diapering my computer from the big bad Internet with anti-spyware, anti-virus, firewall, etc. Then again, I use a Mac...

      --
      "Sufferin' succotash."
    2. Re:Internet Security by donaldm · · Score: 2, Interesting

      It never ceases to amaze me that people buy an Operating System (you really do one way or another) and then have to buy software to keep malware and other nasties out. At least with Unix/Linux OS's you can get security updates for the OS and in may cases, unless you have a subscription (good value for large corporations and even some small business) it can be free.

      To actually require virus protection is really a damming indictment of the Operating System and yet Business actually spend billions of dollars a year on this rather than look at other OS's and yes I do know the excuses and they IMHO are very short sighted (rather like lemmings).

      Excellent site for Business doublespeak. http://www.bullshitbingo.net/cards/bullshit/

      --
      There ain't no such thing as proprietary standards only proprietary formats. Standards are by definition open.
    3. Re:Internet Security by drsmithy · · Score: 1
      It never ceases to amaze me that people buy an Operating System (you really do one way or another) and then have to buy software to keep malware and other nasties out. At least with Unix/Linux OS's you can get security updates for the OS and in may cases, unless you have a subscription (good value for large corporations and even some small business) it can be free.

      No amount of OS security can protect against the deliberate execution of malicious code.

      To actually require virus protection is really a damming indictment of the Operating System [...]

      No OS's security has a means of stopping the things most viruses do.

    4. Re:Internet Security by xtracto · · Score: 1

      No amount of OS security can protect against the deliberate execution of malicious code.

      I disagree with you. GP post was right in that the operating system is inherently flawed and makes it easy for virus/malware software to be executed on it.

      I have said it a lot of times but will say it again, there are several flaws on Microsoft Windows operating system that the Antivirus Companies are exploiting to commercialize their software.

      1. Inadecuate user privileges policies: Microsoft Windows operating systems do not apply correct user privileges policies, in fact they have the worst policies possible giving ALL the process the user runs the possilibity to run with ADMINISTRATOR privileges, for example, letting an Internet Navigator (IE, Fx, etc) run with Administrator privileges is a potential flaw BY DESIGN.

      2. Having a big dependency between the Operating System and an Internet navigator: Extending from point one, Microsoft OS have made the Internet Explorer web browser inherently tied to the Operating System use. This, combined with the problems that arise from the first point create a great security hole.

      3. Lack of proper file permissions and permission management: Microsoft Windows Operating systems didnt have any kind of file permission management until the most recent versions, and even on these (the Windows XP versions) they still use the "less secure" approach by default making it trivial for any process to delete an important OS file.

      4. Lack of good network security: Until recently (Service pack 2 of Windows XP) windows didn't have decent network security.

      As you can see, it is the union of these problems that make the Operating System quite inscure and companies like Symantec, McAfee, SSSI and other exploit to profit.

      A lot of this problems exist not because the operating system is not capable of coping with them by itself but because its DEFAULT operation mode is insecure (i.e. giving all default users administrator privileges or having the firewall turned off by default [before XP SP2]).

      Of course the company that makes the software is not to blame (at it is not all their fault) as there are some technologies that where not considered native for the Operating Systems (like networking) and the OS developers can only enhance the software adding the new security (of course the response time may or may NOT be good).

      No OS's security has a means of stopping the things most viruses do.
      The Operating System function should be preventing the execution of malicious code (being it automatic or manual attacks) at least. Security on computers is like security in the real life, the OS should make it difficult enough for the attacker to dissuade them for trying it.

      --
      Ubuntu is an African word meaning 'I can't configure Debian'
    5. Re:Internet Security by kenevel · · Score: 1

      Their Internet Security product absolutely stank. Thank goodness they offered a no-quibble 56-day money back guarantee, even for the downloaded versions. Try sending email over an encrypted connection - it won't let you, even with the email scanning options disabled. Try checking a batch of files into CVS - it blocked the cvs.exe application time and time again asking whether it should be authorised. In the end, temporarily disabling (or as it happens, totally uninstalling) the NIS 2005 was the only solution. So no, I won't be buying it either.

    6. Re:Internet Security by drsmithy · · Score: 1
      I disagree with you. GP post was right in that the operating system is inherently flawed and makes it easy for virus/malware software to be executed on it.

      So how can the OS protect against it ? Given no shipping OS I'm aware is capable of auomatically identifying malicious code, you'll have to give a theoretical explanation.

      The only thing Windows does that makes it "easy" for "virus/malware software to be executed" is, by default, allowing a couple of file extensions indicate that a file is a binary executable. This is, at worst, a minor issue - having to 'chmod +x' on unix is barely a speedbump.

      Inadecuate user privileges policies: Microsoft Windows operating systems do not apply correct user privileges policies, in fact they have the worst policies possible giving ALL the process the user runs the possilibity to run with ADMINISTRATOR privileges, for example, letting an Internet Navigator (IE, Fx, etc) run with Administrator privileges is a potential flaw BY DESIGN.

      Having a default user be an Administrator isn't even close to a design flaw. It's a default configuration semantic that is _trivially_ addressable by the end user.

      Every OS runs applications in the context of the user that starts them (sans special conditions like Run As or sudo). If you load up Firefox as a root user, it runs as root. There is nothing unusual in Windows doing the same thing with Administrator.

      Having a big dependency between the Operating System and an Internet navigator: Extending from point one, Microsoft OS have made the Internet Explorer web browser inherently tied to the Operating System use. This, combined with the problems that arise from the first point create a great security hole.

      IE has the same design and architecture as khtml (in KDE) and WebCore (in OS X). It's a shared component, nothing more. It runs with the same privileges as the user. It's no different to the myriad shared libraries that exist in every other OS. It's "integration" into "the OS" is irrelevant to security.

      Lack of proper file permissions and permission management: Microsoft Windows Operating systems didnt have any kind of file permission management until the most recent versions, and even on these (the Windows XP versions) they still use the "less secure" approach by default making it trivial for any process to delete an important OS file.

      False. The default file permissions in Windows are as restrictive as they are on any other platform. A regular user _cannot_ delete an "important OS file".

      Lack of good network security: Until recently (Service pack 2 of Windows XP) windows didn't have decent network security.

      Service Pack 2 does next to nothing for "network security" except enable the firewall (that XP has always had) by default.

      As you can see, it is the union of these problems that make the Operating System quite inscure and companies like Symantec, McAfee, SSSI and other exploit to profit.

      Most of your conclusions are based on fallacious assumptions.

      In almost all cases, anti-virus and anti-spyware programs protect against things OS security cannot. Ie: the detection and blocking of malicious code _after_ the user has chosen to execute it (ie: after the OS security has had its chance).

      Of course the company that makes the software is not to blame (at it is not all their fault) as there are some technologies that where not considered native for the Operating Systems (like networking) and the OS developers can only enhance the software adding the new security (of course the response time may or may NOT be good).

      WTF are you talking about ?

      The Operating System function should be preventing the execution of malicious code (being it automatic or manual attacks) at least.

      How do you propose it differentiates malicious code from normal code ? Almost everything "malicious" code does is only "malicious" because of the context.

      Security on computers is like security in the real life, the OS should make it difficult enough for the attacker to dissuade them for trying it.

      The OS does. Windows has the same capabilities as other OSes.

    7. Re:Internet Security by darkmeridian · · Score: 1

      ZoneAlarm Security Suite integrates a firewall, anti-spyware, anti-virus, pop-up blocker, spam-blocker, etc. But I think "Genesis" will include "optimization software" such as defraggers. I wonder if they'll use a program to reduce its own memory usage.

      --
      A NYC lawyer blogs. http://www.chuangblog.com/
    8. Re:Internet Security by sqlrob · · Score: 1

      It's a default configuration semantic that is _trivially_ addressable by the end user.

      Incorrect. Too much software assumes admin rights.

    9. Re:Internet Security by MikeBabcock · · Score: 1

      So this is what McAfee Desktop used to be (except it didn't include anti-spam or spyware at the time, neither did anyone else).

      Great desktop tools, anti-virus, encrytion, secure file deletion, etc.

      Yeah, revolutionary.

      --
      - Michael T. Babcock (Yes, I blog)
    10. Re:Internet Security by drsmithy · · Score: 1
      Incorrect. Too much software assumes admin rights.

      This is the software's fault, not Windows'.

  4. SECURITY 2.0!!!!!!! by Anonymous Coward · · Score: 0

    For the love of god.

    "_____ 2.0" is going to be the "______ killer" of 2006

  5. I prefer Exodus. by dcapel · · Score: 5, Funny

    I have already left slavery for the promised land. Lots of those strange penguins around though...

    --
    DYWYPI?
  6. On Symantec's new software by Haiku+4+U · · Score: 3, Insightful

    Genesis? Sounds good.
    Secure from malware at last!
    So, is it Linux?

    1. Re:On Symantec's new software by johncadengo · · Score: 2, Insightful

      Hey Haiku 4 U
      Do you always write comments
      As haiku poems?

      --
      My page.
    2. Re:On Symantec's new software by Haiku+4+U · · Score: 1

      Yes, indeed I do.
      It was the only way to
      stop posting so much.

  7. with vista by Evilhomer2300 · · Score: 2, Interesting

    They may try and bring this in along with vista. The new age of windows OS is supposed to be better, faster, stronger, and more secure. With Microsofts deep pockets, do you think they may help syman. try and make things even more secure? Or maybe try to make it seem like it, give people a better hope of security. just an idea

    --
    Well if it isn't the leader of the wiener patrol, boning up on his nerd lesson...
    1. Re:with vista by MrShaggy · · Score: 1

      The conspiracy theorist in me has always thought that Microsoft and the Virus guys are in cahoots. MS gets a kickback in order to be a little less secure, so the Virus companies will survive. The other part is that I wonder if the Virus companies re;lease their own trojans every so often. That way they guaratee the sales. Almost like Kevlar Jacket guys seling armor-piercing bullets out the back. ;)

      --
      I have mod points and I am not afraid to use them.
    2. Re:with vista by sumdumass · · Score: 1

      Thats a good question. But we must remeber, Microsoft is releasing thier own antivirus so it would be benefitial for them to have a need to sell Anti virus software.

      But as the GP(or someone) stated, It is in microsofts interest to have problems around the time a new operating system gets released so thye can tought the new OS as the fix. Faster, More reliable, more secure, this rings a little bell.

    3. Re:with vista by MrShaggy · · Score: 1

      Yes the bell that rings is the same sort of market that Linux-Boxen brings. Better faster and more secure. (they are running fc as their kernel shhhH! ;)

      --
      I have mod points and I am not afraid to use them.
  8. FP by Anonymous Coward · · Score: 0

    FP

  9. Optimization Technologies? by rminsk · · Score: 4, Interesting
    and a host of other PC optimization technologies...

    So when did anti-virus, anti-spam, and a firewall become optimization technologies? My computer seems to run slower with these things installed.

    1. Re:Optimization Technologies? by aussie_a · · Score: 1

      Really? I find having them uninstalled causes my computer to run even slower.

    2. Re:Optimization Technologies? by ManOfMidnight · · Score: 1

      Your PC is probably slowed down by mal-ware allowed on your computer by a lack of anti-* software. This would unfortunatly mean that home PC users are forced to choose the lesser of two evils: slow, and slower...

      --
      A proud provider of services through the Microsoft Reboot Engineer Certification since 1997!
    3. Re:Optimization Technologies? by geo_2677 · · Score: 1

      It means they need your cash to keep their company servers and PCs running optimally :)

    4. Re:Optimization Technologies? by Anonymous Coward · · Score: 0

      So I guess you don't 'get' sarcasm.

    5. Re:Optimization Technologies? by ManOfMidnight · · Score: 1

      Oh.. Well, I'm only human, work with me! :-D

      --
      A proud provider of services through the Microsoft Reboot Engineer Certification since 1997!
  10. PC optimization technologies? by csplinter · · Score: 1

    PC optimization technologies? I wonder what they mean? Security optimization?

    1. Re:PC optimization technologies? by Rude+Turnip · · Score: 1

      If Norton Systemworks provides any clue, your system will be optimized to be as bloated as possible. Seriously, these are mostly problems that should be resolved at the OS level, not bolted-on through third-party addons.

      That's something that Apple definitely has going in their favor since they control the hardware and software as one integrated unit...they can change the whole damn thing around (68K-PPC-X86, OS=9 to OS X) to keep up with the times. Meanwhile, companies like Dell or Gateway are basically locked into X86 and Windows because they have no vertical integration of their own. Notice I didn't mention Microsoft here...because when you buy a computer, you're not buying it from Microsoft, they only make a component of the computer (OS).

  11. Let's learn from history by Anonymous Coward · · Score: 5, Funny

    Genesii (That's multiple Genesis to you and I) have a history of utter failure.

    Genesis (Sega): Defeated by SNES
    Genesis (STWoK): Stolen by Khan, and he damn dear destroyed the enterprise with it
    Genesis (Band): Ushered in the era of HORRID 80's music

    Please Symantec, can we call this something that has a history of goodness attached to it, like Campbells?

    1. Re:Let's learn from history by Anonymous Coward · · Score: 0

      Nah. The Genesis beat the crap out of the SNES for most of its lifespan. The SNES caught up later on in the 16-bit era mostly by exploiting the unforeseen (by Sega) rise in console RPGs' popularity. Nevetheless, for a long time the SNES was just plain uncool -- white and boxy with "slow games" for "kids" in the popular perception. Mario suddenly went from ruling the console roost to being that slow, fat plumber dude whose ass was handed to him by Sonic the Hedgehog on the sales charts.
        Mario recovered nicely, (and that is a good thing) but don't rewrite history, now. I was there, mocking the console fanboys from the lofty perch of my Amiga. *chuckle*

    2. Re:Let's learn from history by Anonymous Coward · · Score: 0

      I think that you forgot:
      Genesis (Bible): Adam and Eve eat the fruit that God told them not to, and now we're all fucked as a result.

    3. Re:Let's learn from history by Anonymous Coward · · Score: 0
      Genesii (That's multiple Genesis to you and I)

      Not to me. Since it's Greek rather than Latin, the plural of Genesis is Geneses.

    4. Re:Let's learn from history by TheUser0x58 · · Score: 0, Offtopic
      Genesis (Band): Ushered in the era of HORRID 80's music

      I've been a big Genesis fan ever since the release of their 1980 album, Duke. Before that, I really didn't understand any of their work. Too artsy, too intellectual. It was on Duke where Phil Collins' presence became more apparent. I think Invisible Touch was the group's undisputed masterpiece. It's an epic meditation on intangibility. At the same time, it deepens and enriches the meaning of the preceding three albums. Christy, take off your robe. Listen to the brilliant ensemble playing of Banks, Collins and Rutherford. You can practically hear every nuance of every instrument. Sabrina, remove your dress. In terms of lyrical craftsmanship, the sheer songwriting, this album hits a new peak of professionalism. Sabrina, why don't you, uh, dance a little. Take the lyrics to Land of Confusion. In this song, Phil Collins addresses the problems of abusive political authority. In Too Deep is the most moving pop song of the 1980s, about monogamy and commitment. The song is extremely uplifting. Their lyrics are as positive and affirmative as anything I've heard in rock. Christy, get down on your knees so Sabrina can see your asshole. Phil Collins' solo career seems to be more commercial and therefore more satisfying, in a narrower way. Especially songs like In the Air Tonight and Against All Odds. Sabrina, don't just stare at it, eat it. But I also think Phil Collins works best within the confines of the group, than as a solo artist, and I stress the word artist. This is Sussudio, a great, great song, a personal favorite.
      --
      -- listen to interesting music, support independent radio... WPRB
    5. Re:Let's learn from history by Lispy · · Score: 1

      Ok, for all of you that didn't get it:
      That's a quote from "American Psycho". And while YMMV I think this is the most disgusting piece of word ever said about the band. It's the EXACT opposite of all nerdy Genesis fans out there (you know Gabriel days fans). At least of the ones I know. Still, it's quite funny. It really made me want to kick the killers ass. Come on, all the killing and such, not exactly nice, but this quote, it's a crime!! :)

    6. Re:Let's learn from history by Lispy · · Score: 1

      I can't virutally hear the Symantec Genesis launch with an 8bit voicedub: "Sy-MAN-Tec".

    7. Re:Let's learn from history by Anonymous Coward · · Score: 0

      They ain't so innocent... the Campbells are still remembered for the massacre of 38 MacDonalds in Glencoe on 12 February 1692, in an act of treachery. The government troops who carried out the orders were led by a Captain Robert Campbell.

    8. Re:Let's learn from history by Keebler71 · · Score: 1

      You must be living in a land of confusion...

      --
      "It takes considerable knowledge just to realize the extent of your own ignorance." - Thomas Sowell
    9. Re:Let's learn from history by Anonymous Coward · · Score: 0
      Genesis (Sega): Defeated by SNES

      Actually, the Genesis outsold the SNES... it only appeared to be defeated to the end user because the SNES had a longer first-party-supported life than the Genesis, while SEGA dropped support for their 16-bit offering once the Saturn came onto the market. The N64 didn't come on the market until after the PlayStation, so naturally Nintendo had to do something in the meantime.

    10. Re:Let's learn from history by Anonymous Coward · · Score: 0

      KHAAAAAAAAAN!

    11. Re:Let's learn from history by Anonymous Coward · · Score: 0

      Lost to the SNES? AHAHAHAHAHAHA, good one, buddy.

      At worst it was a tie.

    12. Re:Let's learn from history by clifffton · · Score: 0

      Genesis (the band) goes back quite a bit before the 80's ( Selling England by the Pound - 1973 anyone?) and I think most will agree it was Phil Collins that brought on the schlock, not the other members of the band!

  12. bloatware by Jjeff1 · · Score: 5, Interesting

    If it's similar at all to any of the Symantec home all in one AV type packages it will be an enormous mess. The last time I worked on this, a 256MB machine used 270 MB of memory with nothing but Windows XP home and the Norton package running. Worse, when I disabled things they didn't need, like the firewall or spam scanner, it didn't actually unload them from memory.

    I stopped using Symantec for AV a while ago. But home users will still buy this for the same reason they buy a dishwasher with 19 different settings when all they ever use is the pots and pans setting.

    1. Re:bloatware by Esion+Modnar · · Score: 1
      Seems big companies like to make big bloatware. HP for example. Their "HP Image Zone" software is over 260 Mb... compressed! And all it does is manage photos and run their scanners. It's a pig.

      So why do they do this? Whatever happened to lightweight and agile? Not sexy enough for the board room? Why not give the user the option to customize his install to fit his exact needs?

      --

      They say the first thing to go is your penis. Well, it's either that or your brain. I forget which...
    2. Re:bloatware by Anonymous Coward · · Score: 0

      I've installed NIS on far too many machines whilst working as a PC tech. Like you said, 256MB of memory is simply not enough just to get the desktop running at a decent speed, not to mention any applications. Even brand new high end machine with a gig of ram saw a big performance hit.
      The there was the constant onslaught of corrupted Norton installs where it didn't work at all, broke SSL sites, or killed networking in general.

      I always recommended PC-cillin or Tread Micro internet security to people, does the same job but you can't tell its even there and I'm yet to see a problem with it.

  13. Too little, too late by HeavensBlade23 · · Score: 1

    Too bad Microsoft already has an almost-mature software suite in beta that handles pretty much every single function this handles.

    1. Re:Too little, too late by bersl2 · · Score: 2, Insightful

      If it ever is included in Windows as a standard part of the OS, it's going to be the first target of opportunity. I mean, what malware writer wouldn't love to have a security-utility monoculture in which to amply hide his program? Once you root a machine, you can have an anti-virus scanner, firewall, or whatever lie all you want to an unsuspecting user.

      Security through diversity. Remember that.

  14. Age of trust???? by scronline · · Score: 4, Interesting

    Shouldn't we be able to trust them now? Oh wait, since it took them 2 weeks to get the definitions out for a keylogging virus...I guess the answer to that is no.

    Personally, after seeing Symantec corp take 2 weeks to release the definitions for a keylogger a customers network had...All symantec products I have out there are going to go away.

    My choices are getting narrowed down quickly. McAfee lost out a few years back with the Nimda virus and failing to return phone calls....at all, not just late by a few hours or even a few days, a week later I heard from them. By that time I had already moved on since more than half my customer base was infected the DAY of the outbreak, not a week later.

    But then, both of those 2 are really good at annoying the ever loving crap out of a user, which inturn causes the user to ignore all those little popups. I've even been guilty of it because I see them like 80 times a day. JUST DO YOUR JOB! You don't have to tell us what a wonderful job you are doing, just tell us when you need us to do something.

    1. Re:Age of trust???? by midnighttoadstool · · Score: 1

      Nimda was a worm not a virus, and Mcfee is in the business of selling anti-virus software and only provided anti-worm software later in the day.

    2. Re:Age of trust???? by Anonymous Coward · · Score: 0

      it took them 2 weeks to get the definitions out for a keylogging virus

      Only two weeks?! How long is it going to take for the weasels to apologize for their complicity in the Sony rootkit fiasco? "Oh, that's Sony. If we take out their rootkit they'll bitch slap us with an DMCA lawsuit. So let's just not talk about that anymore, ok?"

      The anti-virus vendors are worse than the disease. Back up your data, and what's the very worst thing that could happen? You'll have to install your OS and some apps. Big whoop.

  15. well, it's nice to see by circletimessquare · · Score: 3, Interesting

    that megalomania is still alive and well in the corporate boardroom

    all they need are the sharks with frickin' laser beams and some wagnerian operas playing in the background and symantec's domination of teh intarweb is complete ...in their own mind

    grandiose schemes like this should signal to someone that they need some medication

    it's one thing to think big, it's another thing to think RIDICULOUSLY DRAMATICALLY HUGE! (cue gong)

    --
    intellectual property law is philosophically incoherent. it is your moral duty to ignore it or sabotage it
    1. Re:well, it's nice to see by Jubetas · · Score: 1

      I, for one, welcome our bald, pasty, jumpsuit-wearing overlords.

  16. why CowboyNeal why? by Turbs · · Score: 0

    I personally would like to know why CowboyNeal wouldn't use this package? Does he use something instead? Or has he found a secret mystical power to protect his PCs from attacks? Maybe he uses *nix? etc etc

    What do other /. users out there use or recommend?

    1. Re:why CowboyNeal why? by larry+bagina · · Score: 1
      Or has he found a secret mystical power to protect his PCs from attacks?

      Evidently not!

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

  17. Seems too late by bhaskie · · Score: 2, Insightful

    With anti-virus, anti-spam, anti-spyware, intrusion prevention, firewall, PC optimization and maintenance elements all bundled togetherm this is gonna be one hell of a system performance issue.
    "Both Genesis and the next versions of Norton's traditional security products will be designed to work on Vista, Microsoft's forthcoming operating system, due later this year, as well as Windows XP."

    Well, seems this does not do linux. Only Windows XP. But looks like Microsoft already has OneCare which does the same stuff. So I guess this is too late a genesis for symantec.

    1. Re:Seems too late by Crazyscottie · · Score: 1

      Well, seems this does not do linux.

      Maybe I'm just out of the loop, but I've never seen a Linux system that would have a use for a product like Genesis.

      --
      Just because it can't be explained doesn't mean it isn't true. Science fits into reality... not the other way around.
  18. six turds in one wrapper by Anonymous Coward · · Score: 0

    I fail to see why rolling multiple mediocre products into one big sack is a good thing. On one hand it's a nice idea to give Joe User a comprehensive set of security tools, but if Joe User is savvy enough to install one, he's probably aware of the others. No discernable benefit.

    On the other hand, Symantec doesn't have the best software quality reputation these days, and while I'll still recommend NAV by itself, the enterprise all-in-one versions are so full of bugs & memory leaks (and yes an internally-known 0-day here and there, with fixes frozen in interdepartmental political glaciers) that many of their own cognicenti and consultants run competitors' tools. So for the geeks there's no discernable benefit here either, and quite possibly the new stuff-sack of products could be worse than the enterprise turd-burrito packages they've already shoveled out the door.

    Like our friends in Redmond, Symantec would do well to refocus on that whole "quality" thing with many of their existing products before launching off into yet another direction. You sure as hell won't find their products running on any of my systems.

    -Me (posting anonymously because of former employment at Symantec)

  19. i believe the title of the story tell all by atarione · · Score: 0, Redundant

    ~~~
    Symantec Roadmap Includes Massive "Genesis" Suite
    ~~~

    knowing Symantec when they say "massive" they mean system resource useage.

    yeah no thanx....

    firewall (sygate pf ) thanx symantec for killing it off... oh well still avail for now (or there is always kerio) plus i have a m0n0wall boxen as a perimeter firewall. (FREE)

    antivirus... AVG Free or Avast Free

    antispy wall (spywareBlaster / Spybot /adware /ms antispy beta ... all free)

    whatever to teh rest of it.......

    mainly i will not install any symantec crapola on my computers.....

    --
    actually I am happy to see you, however that is in fact a banana in my pocket.
  20. new mac? by Anonymous Coward · · Score: 0

    Hey, I just thought of a new name for my Mac; "Genesis."

  21. Khaaaaannnnnnnn!!!!!! by Anonymous Coward · · Score: 0
    Sorry, had to be done. Ob ST:WOK reference.

    And, to save you the effort: Nerrrrrdddddd!!!!!!

  22. Oh great ..... by gomaze · · Score: 3, Informative

    I have seen more problems caused by Symantec's software then I could count. I feel that if you have to run Windows then any extra layers of protection that you would need can be provided by free applications online. For example: Ad-aware, Spy-Bot, AVG Anti-Virus, ZoneAlarm, and the best firewall protection, SmoothWall.

  23. What useless crap by RyoShin · · Score: 4, Informative

    I have unyielding hate for Symantec. I've spent countless hours trying to get their products to properly allow connectivity for various programs for other people, and even more hours uninstalling it after it wouldn't listen to my yelling.

    Nothing Symantec has is good, or can't be replaced by a free alternative.

    Anti-Virus? AntiVir (If you want to pay, they have a premium version, too)
    Firewall? SP2 comes with a moderate firewall that works well. There are a good deal of free firewall programs out there, not to mention that many routers now have some sort of firewall software on them.
    Ad-aware and MAS have taken care of any spyware problems I've had to deal with (except for some of the really evil ones.)

    Any and everything else can be taken care of by good judgement and learning some PC common sense. Don't arbitrarily accept downloads that IE pops up with. Don't open every attachment that claims to be a dancing Ronald McDonald. Don't listen to every e-mail propogated by the feces of the internet that various programs in your windows folder are viruses.

    There is absolutely no need to pay $100 for Symantec's horrible piece of crap. People would be better off without it.

    1. Re:What useless crap by Esion+Modnar · · Score: 1
      ...hours uninstalling it after it wouldn't listen to my yelling.

      Voice recognition will be in the next version of the bloatware. Unfortunately, any obscenities or criticisms of the Status Quo will cause it to reboot in retaliation.

      --

      They say the first thing to go is your penis. Well, it's either that or your brain. I forget which...
    2. Re:What useless crap by syousef · · Score: 1

      and even more hours uninstalling it after it wouldn't listen to my yelling

      Assuming you're not speaking figuratively, you lost me right there. There's no reason to ever yell at tech support even if they do something stupid, or if the company policy is screwing you. You make the person feel like shit, and they're LESS likely to want to help. In other words that's absolutely the stupidest most self defeating thing you can do.

      --
      These posts express my own personal views, not those of my employer
    3. Re:What useless crap by Anonymous Coward · · Score: 0

      Parent said "it wouldn't listen," not "they" or even "IT."

    4. Re:What useless crap by Bad+to+the+Ben · · Score: 1

      I heartily agree. I currently work on Helpdesk for an ISP, and I'm seriously considering sending Symantec a bill for my time. I deal with approximately 5 users a week who experience issues that can be traced back directly to Norton products.

      Typical problems:
      - Norton choking on scanning inbound mail, causing a timeout to the mail server.
      - Norton outright blocking outbound SMTP connections, even after checking firewall rules.
      - Random timeouts on web pages.
      - Causing dialup PPP connections to authenticate and then drop suddenly. Sometimes ADSL PPP connections as well, for those that operate their routers in bridged mode.

      A complete removal of Norton products for those people that use them will cure the above problems 9 times out of 10. I say complete removal because a standard Norton removal tends to leave behind various resident programs such as ccapp.exe , which lingers on to throw up random errors and be a pain in the ass.

      Norton - Security through non-usability.

    5. Re:What useless crap by Tweekster · · Score: 1

      I think making the person feel like shit is the general idea of yelling at them. And most tech support people are decent even if they cant solve hte problem. but there are others I will lay into and I honestly dont care if it hurts their feelings because they are incompetant

      --
      The phrase "more better" is acceptable English. suck it grammar Nazis
    6. Re:What useless crap by RyoShin · · Score: 1

      I'm yelling at it, not them. Unless I get an obvious idiot who won't send me to Tier 2 when asked at phone support, I try to be as kind and understanding as possible. I've been on that side of the phone as a telemarketer, so I know what people will say through the phone. And these people are support; no one calls them if something isn't wrong. So they have to deal with people who are already frusturated and mad, and the situtation often turns even uglier.

      Because of this, I try to stay as calm as possible when calling tech support, while strangling a voodoo doll (not attached to the person I'm talking to.)

      My "it wouldn't listen to my yelling" line was a joke. Symantec's program(s) wouldn't respond to my god-like booming voice and power, so I had to uninstall it to teach it a lesson, and the like. :)

    7. Re:What useless crap by Anonymous Coward · · Score: 0

      Hatred is a strong word to apply to software but it applies to my disdain for Symantec's buggy, bloated, security-risk, self-serving crap. Anytime I have had the misfortune to encounter their products it is usually an exercise in a time-wasting installs (assuming they work at all, I still have nightmares from attempting to install their AV for servers several years back), registry searches to remove offending entries it never removes during uninstalls, terrible customer support, outright thievery when they don't recognize that you have payed for a license and refuse to recognize it, followed by several months/years of followup to support the ongoing problems clients have with them.

              Unfortunately the more crap that they include with their Antivirus the more people seem to like it. It's only after months of problems that they let me install something else like AVG and then the problems go away.

  24. It'll never happen by ManOfMidnight · · Score: 2, Insightful

    I honestly hope I'm proven wrong, but I just don't see "a new age of Internet trust" happening.. ever. To even put a dent in the mal-ware industry, this new software will have to use up every last bit of resources the Vista-generation computers might have. Even then, there will always be a way around it! Any/every new feature this new software might introduce will also introduce, along with it, a new flaw; another vulnerability which will have to be patched. Thus, the circle will continue, only in another location: Vista.

    --
    A proud provider of services through the Microsoft Reboot Engineer Certification since 1997!
  25. They are late to that party... by 3seas · · Score: 1

    .....do a google for "System Mechanic Pro"

  26. Trust... They lost mine long ago. by SlashNut · · Score: 0

    Symantec (Norton) was a good company in the DOS days. They had some powerful, useful tools. When Windows came along, they fell in love with eye candy. They started coming out with useless junk, and started churning versions.

    I got fed up when they came out with PCAnywhere 9 (should have been 8.3) that claimed to have a faster file manager. It wasn't faster. The darn thing would re-sort the whole file list as it added each file in the directory. Even local file lists were slow as a result. Did it get better with 9.2, 10, 11? No. File transfers where also prone to crash. I replaced PCAnywhere with Ultra VNC, and Ultra VNC SingleClick (Free GoToMyPC anyone?).

    Shall I start in on Norton Antivirus? Oh what the heck... How about a program that can bring some machines to their knees and not others? When a user says to me: Man, my machine is slow! The first question that pops into my head is NOT "Do they have spyware?", it's "Do they have Norton Antivirus?". How 'bout a program that trashes your machine when you install another version over it, Leaves TONS of junk in your registry after an uninstall, and has no clue about new viruses (no heuristics)? I replaced Norton Antivirus with NOD32.

    How about support for products they bought?
    Powerquest made some dandy products like Partition Magic, and Drive Image. I owned both. I tried several times to find anything on the Symantec web site about Drive Image. Nope. The only thing was a press release saying they had bought Powerquest. No upgrade path, nothing. I tried recently to reinstall Partition Magic. There is a web registration/unlock required before you can use it. Guess what? The registering company does not recognize anything about Powerquest anymore. I had to toss Partition Magic in the trash. I replaced Partition Magic with Acronis Disk Director, and replaced Drive Image with Acronis True Image (You don't think I would buy Ghost do you?).

    Symantec? Dont trust 'em. Good riddance.

    1. Re:Trust... They lost mine long ago. by SmurfButcher+Bob · · Score: 1

      Eh, they were not that great.

      Their disk defrag, for example, was THE DUMBEST piece of crap on the planet. Check out this brilliant strategy that I got to witness one weekend:

      I've got a 180 meg disk, DOS 6, and I'm running Norton Defrag on it. It has a 50 meg file on it, in two contiguous chunks. There's a 49 meg "free space" up top when Norton Defrag reaches this file.

      It moves it, sector by sector, into this 49 meg space... runs out of space, and moves it back. chunk, chunk, chunk, chunk. It moves the next file into the start of this free space, and succeeds. It then... tries to move this 50 meg file... into this (now smaller) space. chunk, chunk, chunk... Fails, moves it back (chunk, chunk, chunk...), tries with the next file and succeeds (making the free space smaller), tries the 50 meg file again (chunk, chunk, chunk...), fails, moves it back (chunk, chunk, chunk... )

      And I'm being generous with all of this "chunk, chunk, chunk" stuff. In truth, it was about a 4 minute process to move the file (and fail), one-way. Then another 4 to move it back.

      Oh, immediately at the tail of this "free space" is a single cluster that's in use, followed by 60 megs of contiguous free space.

      F*ing brilliant... 27 hours to defrag a 180 meg drive with less than 170 files on it.

      Sorry, Norton Utils had some cute *looking* tools, but in truth... they were useless "feel good" eye candy, amateur knock-offs of real stuff. With the exception of their sector editor, that is. The picture of some guy with a white shirt and tie, and his sleeves rolled up... is supposed to inspire confidence? Is this the moron who wrote this defrag strategy? He's clued...

      So, I've not touched Norton (or Symantec) products since that date. They simply follow the buzzword-du-jour, and their products have no actual merit. They look really good in the box on the shelf, though... but sadly, that's where it stops.

      "SymEvent", anyone?

      --

      help me i've cloned myself and can't remember which one I am

    2. Re:Trust... They lost mine long ago. by zentigger · · Score: 1

      I fully agree. Norton was great in the 'ol DOS days.

      Same with ghost, and PC anywhere too

      hmmm...starting to notice a trend here. A whole bunch of great products turned into festering crap-piles after being bought up by symantec...

      Go! Corporate America! Go!

      --

      the above is my personal opinion and does not necessarily reflect that of the little voices in my head

    3. Re:Trust... They lost mine long ago. by Anonymous Coward · · Score: 0

      There don't seem to be many genuine Symantec products out there, they usually buy them in from smaller vendors and manage to screw them up within a couple of years.

      examples:
      Norton utitlities - bought in: indispensable in DOS 3 to 5, now pretty unusable (and can really ruin your day)
      Ghost - bought in and now dead: replaced by Powerquest Drive Image now sold under the Ghost name (one fewer competitor on the market, and one with a superior product, too)
      PCTools - bought in and killed almost right away to protect their other buy, Norton
      I don't know about any of the old Symantec software that has been long discontinued (like Grandview, Q&A), but maybe they were never developed inhouse by them, either

    4. Re:Trust... They lost mine long ago. by Anonymous Coward · · Score: 0

      Viruses, spyware, and spam. Who has the time to write all of these anyway? Think about it, would Symantec and McAfee's stock price be so high if the existence of these problems are not so numerous and malicious? Create a problem, and make money off the solutions. Part of a larger problem in the world, IMHO.

    5. Re:Trust... They lost mine long ago. by larry+bagina · · Score: 1

      So what you're saying is...

      I don't want to start a holy war here, but what is the deal with you Symantec fanatics? I've been sitting here at my freelance gig in front of a DOS 6 PC (with a 180 Meg hard drive) for about 27 hours now while it attempts to copy a 50 Meg file from one sector on the hard drive to another sector. 27 hours. At home, on my 286 running DOS 5 and XCOPY, which by all standards should be a lot slower than this machine, the same operation would take about 1 hour. If that.

      In addition, during this defrag, command.com will not work. And everything else has ground to a halt.

      I won't bore you with the laundry list of other problems that I've encountered while working on various Symantec programs, but suffice it to say there have been many, not the least of which is I've never seen a 486 machine with Norton AntiVirus that has run faster than a 286, despite the 486s faster chip architecture. My 286/16 with 2 megs of ram runs faster than this Norton machine at times. From a productivity standpoint, I don't get how people can claim that Symantec is a superior software.

      Symantec addicts, flame me if you'd like, but I'd rather hear some intelligent reasons why anyone would choose to use a Norton over other faster, cheaper, more stable utilities.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    6. Re:Trust... They lost mine long ago. by Anonymous Coward · · Score: 0

      Bravo!

  27. I just want to shout... by Anonymous Coward · · Score: 1, Informative

    NOD32... Believe me it just works. The day before I installed this nice little program on a pentium III 700... It just worked, and without crippling it I might add. They also update often, sometimes several times in a day. Well i don't want to sound like advertisement, but it just works.

  28. More impotent than Cheney... during a heart attack by unknownideal · · Score: 2, Insightful

    Symantec and McAfee are about as effective at problem solving as the Bush administration. These are two products that render a machine useless by loading hundreds of megs of unnecessary graphics and who-knows-what while simultaneously blocking network communication, and popping up every four seconds to tell you about the "attack" so narrowly averted thanks to it. Every so often it asks you for more money.

    I went red and started recommending Kaspersky, but my clients have trouble getting it installed thanks to its ridiculous registration system. Instead of a stream-lined system, you have to download a key file and 'show Kaspersky your papers,' if you catch my drift.

    Now I just install the free version of Avast. No problems so far.

    The first one of you to write software that blocks terra attacks from the inner-web is not going to have any trouble paying off that student loan. Promise.

  29. Ah semantech... by Anonymous Coward · · Score: 0, Funny

    Semantec...yummy stuff right there. Whats next on their list? Condoms that protect you against virii and bacteria?

    *yes I know seman isnt how you spell semen*

  30. Some nerve! by queenb**ch · · Score: 4, Interesting

    I wonder if this is going to have another spyware-ridden root kit in it too!

    If the guys at Symantec/Norton think I'm EVER going to install/recommend ANY of their products EVER again, they're still smoking the same stuff that they were smoking when they thought that root-kitting all their customers was a good idea in the first place.

    Hey Symantec - PUT THE CRACK PIPE DOWN AND BACK AWAY SLOWLY!!!!

    2 cents,

    Queen B

    --
    HDGary secures my bank :/
    1. Re:Some nerve! by The+MAZZTer · · Score: 1

      Well they were doing it long before it was seen as a negative thing, and they've since removed it, since now views have changed. I don't see a problem, except maybe they could have been a tad faster with it.

  31. It'll be easy to see how secure it is by Anonymous Coward · · Score: 0

    ...by how quickly the copy protection is defeated on it.

  32. Solution worse than the problem. by GeorgeMcBay · · Score: 1

    Every big-name commercial security product I've ever installed on Windows had made my system SOO drastically slower, less stable and more prone to ridiculous UI interactions (security popups instead of advertisement popups, as an example... just as annoying!) that I honestly believe these "solutions" are worse than the software they are trying to block.

    Needless to say I haven't had any installed for years now, and I also haven't been hit by any viruses or spyware.

  33. Not yet. by leonbrooks · · Score: 1

    One more generation of crapware filters should just about bring Vista to its knees.

    --
    Got time? Spend some of it coding or testing
  34. New Age of Trust? by __aatgod8309 · · Score: 2, Insightful

    The assumption appears to be that we trust Symantec...

  35. I'd rather dig my eyes out with a rusty nail by Anonymous Coward · · Score: 0

    Symantec's already got a product that does most of this - it's called SystemWorks. Why are they trying to rebrand it?

    Because it's shit. Pure, unadulterated SHIT. The memory footprint is huge, it conflicts with several commonplace corporate apps, and when coupled with Norton Internet Security it can effectively lock a business user out of the rest of the network.

    If Symantec's looking to improve on their product line, I have the perfect suggestion: bash each Symantec product's head in with a shovel and the delete key. There's nothing that Symantec does that a good lobotomy couldn't do just as well.

    Symantec: You can rename your product line and add a few extras in, but calling anything that comes out of your company "Genesis" is tantamount to me taking a huge shit and calling it heaven.

  36. Trust includes more than IT security by Morty · · Score: 2, Insightful

    If Symantec is trying to teach people to "trust" the Internet, they're doing people a disservice. The Internet is a way for people to communicate with other people; any communication includes the possibility of lies and fraud. Yes, the Internet introduces new technical types of ways for people to cheat and attack each other (phishing, OS vulnerabilities, viruses, trojan horses, etc.) but even if you solve all the technical issues, you still fundamentally have people communicating with each other. Strangers should not blindly trust each other regardless of context.

    If Jane AOLer meets Joe MSNer on IRC, even if she has "Genesis" and "Leviticus" too, should she trust him any more than if she met him in real life? No. If Jane AOLer shops at FuzzySlippersOnline, should she trust them any more than she trusts her local brick and mortar CoolBootsEmporium? Of course not. The online world is not to be trusted, any more than the big blue room outside is to be trusted.

  37. oblig by Anonymous Coward · · Score: 0

    KHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN!!!!1 !!





    stupid lameness filter. stupid stupid lameness filter.

  38. Bad marketing by typical · · Score: 1

    Unless this product gets a lot more concrete and directed, I don't know who is going to buy it.

    I can see use for an "automated services" system like this -- patching problems, looking for malware, updating software, providing a link to toll tech support for your computer, etc.

    Currently, you can cobble together something for your Windows-using relatives with AdAware, some sort of virus scanner, occasionally (maybe once a year) dropping by to update software and having them call you when things break. But that's a pain, and very wasteful of time, since a lot of these issues are common to a lot of people.

    --
    Any program relying on (nontrivial) preemptive multithreading will be buggy.
  39. Single Point of Failure by kafka47 · · Score: 2, Interesting
    I just shake my head when I see this stuff. If they are angling this as Security's answer to "Web 2.0", then perhaps they should start by examining what Web 2.0 is supposedly about. Stuff like web services and aggregation, arguably important pieces of this mythical beast, make *everyone* a content provider on the Internet. And Symantec is intending on having us run a service that gates that content?

    This is Symantec's big push... in the wrong direction.

    /K

  40. Um... by thesnarky1 · · Score: 1
    I'd be more impressed if it wasn't a company that seems to be struggling. Forgive me, but I'm not a fan of their new software. It has a hard time of getting rid of the bad stuff. Surprisingly, the smaller programs, each componant, works a lot better. Examples: Zone Alarm for my firewall, Adaware/a HOST of others for anti-spyware. AVG/Zone alarm for anti-virus. Boot disc called "The Final Solution" packed full of anti-virus and rootkit software.

    Now, how much you wanna bet the cost is going to be roughly that of all the componants?

    Also, who's to say that this'll work? If it's all integrated, and a virus turns off one part, it's all off. I take great pride of my multiple layers of defense. You get rid of my hardware firewall, I have a software one. You get rid of that I also have multiple virus scanners. Top is all off with good backups, and the ability to kill my machine, strip it, clean it of dust, and completely rebuild in 4 hours, I'm not too worried.

    1. Re:Um... by Anonymous Coward · · Score: 0

      "The Final Solution"?!

      I'm not sure who should be more offended: nazis, jews, gays, socialists, communists, Bill Gates, or supporters of F/OSS OSes!

    2. Re:Um... by thesnarky1 · · Score: 1
      Well... actually my Jewish friend came up with the name. It's designed to "ethinically cleanse" your computer of those lower life forms... virii.

      As usual, SOMEONE will find a reason to be offended, but it's a damn good joke, and I haven't met anyone who's been personally offended yet.

  41. SYMANTEC = BLOATED POS NEWBIE WARE by Anonymous Coward · · Score: 0

    Pure crap and bloatware who helped user in the era of 5000 icons in the xp notification area

    hahahaha computing these days is so retarded.

  42. Symantec's Genesis ...... by DARKFORCE123 · · Score: 1

    Symantec's Genesis is owned in only seven days and then the world reboots.

  43. Sign me up $$$ by Eric_Cartman_South_P · · Score: 2, Funny

    I hope they make a Mac version for my new 20 inch Dual Core, so I can protect it from all those vir... uh... nevermind.

    1. Re:Sign me up $$$ by R3d+M3rcury · · Score: 1

      Well, you can always get Norton AntiVirus...

    2. Re:Sign me up $$$ by evilviper · · Score: 1
      I hope they make a Mac version for my new 20 inch Dual Core, so I can protect it from all those vir... uh... nevermind.

      The bigger they are, the harder they fall.

      It will be a huge mess when the first big Mac worm gets into the wild...
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  44. ...Any hope that this will change someday? by acornboy · · Score: 0, Troll

    Uhm, yeah... its called a Mac and it was "been there done that" like, twenty some years ago

  45. Re:Project Genesis? by zcat_NZ · · Score: 1
    --
    455fe10422ca29c4933f95052b792ab2
  46. So they'll stop selling their own stuff... by geobeck · · Score: 2, Interesting

    ...and sell Trend Micro Internet Security instead?

    I've been using Trend Micro for the last couple of years. It's already got the full meal deal Symantec is promising, and it's actually updated in near-real-time (every three hours).

    --
    Find environmentally and socially responsible products on http://buy-right.net
  47. Again, a waste... by ki85squared · · Score: 1

    In my experience, anti-X software has been nothing but a waste of time and money. The majority of users I've seen using anti-X software have still had disastrous problems with their machines. I've also noticed that mainstream "live protection" anti-X software bogs down system resources and does nothing but slow things down.

    Personally, I've been browsing "safely" (with Firefox, I might add)... even with a Windows XP machine... and I can't remember the last time I've had a virus or major spyware infection. Not once have I installed anti-X software on any of my machines.

  48. Funny... by xlsior · · Score: 2, Interesting

    In my experience over the past couple of years, there are few PC 'optimizations' as effective as uninstalling Symantec antivirus, firewall, spamfilter and associated applications..

    It is absolutely *astounding* the percentage of techsupport calls coming in at an ISP helpdesk are the direct result of a malfunctioning Symantec application. Especially Norton Antivirus -- after a while, you almost start to suspect that Symantec released that program as a practical joke.

    McAfee is a distant second, while AVG and Avast rarely cause any problems. It's amazing how many problems, lock-ups and corrupted email problems magically disappear simply by uninstalling Norton Antivirus and installing the free version of AVG instead.

    Somehow, I am rather sceptical that things will get better by them slapping their entire product line in a single box, and trying to cram in a pony on top of it. Jack of all trades, master of none.

    1. Re:Funny... by WebGangsta · · Score: 1
      In my experience over the past couple of years, there are few PC 'optimizations' as effective as uninstalling Symantec antivirus, firewall, spamfilter and associated applications..

      I almost agree with you. The standalone antivirus package has never given me a problem, but the bloated and unstable Norton Internet Security software has proven to me to be an issue. In my experience, uninstalling that thing usually does the trick in shoring up somebody's computer - even with re-installing just the antivirus program part of the package. I've seen it too many times for it to be an isolated mis-installation.

  49. Package! by anupamsr · · Score: 0
    Massive security package

    Heh, and I am already thinking to switch over to NOD32 cause NAV is massive!

    PS: It is due to such news that people have started thinking 'security' is a work of software and not the OS.

    --
    I forgot to be anonymous.
  50. Or... by foo+fighter · · Score: 1

    Or, and I'm just thinking out loud here, I could just use a Mac or Linux or a BSD and not give Symantec, who has recently been credibly accused of installing rootkits and ignoring spyware developers who give Symantec money, any of my money.

    Just a thought.

    --
    obviously no deficiencies vs. no obvious deficiencies
  51. OS X version? by JFlex · · Score: 0

    Is there going to be an OS X version?!? ...oh wait.. nevermind.

  52. A new age of "trust" ?? by solios · · Score: 1

    Why should I "trust" Symantec? Hell, I don't trust Google... why should I trust a company whose entire revenue stream is built out of "fixing" "broken" boxes?? D:

    Mod me redundant if you'd like but let's be serious here - money doesn't build trust. Never has. Never will.

  53. And then what? by Anonymous Coward · · Score: 0

    So what is this, hm, "massive security package" is supposed to do?

    It has been shown time after time again these packages *alone* cannot make your computer secure. People either don't know or forget that security is a process. As Bruce Schneier put it, sticking a big, massive, spike in the ground isn't going to make your house secure, You need other things, things such as procedures.

    Knowledge is your best countermeasure.

  54. dangerous by idlake · · Score: 1

    Despite its enormous power, protomatter is highly unstable and its use has been made illegal by civilized worlds in the galaxy.

  55. Let's see... how many bad jokes... by Cl1mh4224rd · · Score: 1
    Symantec and Norton antivirus and security packages (on machines I have experience with) use an absurd amount of memory and processor resources.
    Symantec: Because a fast computer only allows the virus to spread faster.
    --
    People will pass up steak once a week, for crap every day.
  56. Nice strategy..... by ShyGuy91284 · · Score: 1

    Release something usual (same as it was with a few upgrades), but make it sound like the best thing since sliced bread. Someone's been watching Steve Job's strategy with each new release of OS X.........

    --
    In undeveloped countries, the consumer controls the market. In capitalist America, the market controls you.
  57. Might this be.. by damneinstien · · Score: 0

    a bundling of Symantec's Systemworks and Symantec's Internet Security?

    If it is, I didn't trust either of them in the old-days of Windows XP. Both are bloatware that take up too much memory and processing power. And as recent news has demonstrated, Symantec doesn't have a good track record in terms of actually fending off against viruses. They seem more in the interest of keeping themselves alive than doing any good. (Ghost debacle with SpyBot?)

  58. Basics by JulesLt · · Score: 1

    I'd entirely agree - it (multiple layers from multiple vendors) is also absolute basic security.

    End consumers need to understand that it's like putting loads of security on your house and car, which all works with one key. More convenient, but with an obvious point of failure.

    --
    'Capitalists of the world, unite! Oh ... you have' (League Against Tedium)
  59. Okay then, what's the best anti-virus product? by Anonymous Coward · · Score: 0

    Wow, lots of hate! Is Symantec really that bad? What's the best one then?

    I've been using Norton Client Security for the past 2 years on all my machines and I'm pretty happy with it. But then again I'm not an enterprise level network admin either.

    I needed something that would install on my Windows 2003 file server and that would also let me manage my loser roommates' computers so they don't bring home any stupid viruses and ruin my day.

    If anyone has any better suggestions I'm open to hearing them.

  60. Re:patronize-ware by jgp · · Score: 2, Informative

    Want a firewall? www.jetico.com - "Jetico Personal Firewall" *freeware*.
    Don't be put off by the "personal" bit. It's actually rather close to iptabls et al in the Windows world--rulesets, various logging levels, lots of different protocols, etc. It *will* confuse you initially (UI in particular), but then again, I did say it was like iptables... Both are rather unpatronising.

    Want a cheap (not free, but try it--I paid for it), fast, small anti-virus? www.nod32.com. Works, no fluff or animated 3D logos, un-installs without ripping out your computers nervous system. Very small memory foot-print.

    That is all.

  61. Fascinating... by 2e · · Score: 0

    Carol: It is our intention to introduce the Genesis device to a preselected area of a lifeless space body, a moon or other dead form - the device is delivered react with wonder instantaneously causing what we call the Genesis effect.

    Matter is reorganized with life generated results.
    Instead of a dead moon, a living breathing planet, capable of sustaining whatever life forms we see fit to deposit on it...

    SPOCK: Fascinating.

  62. Virus software is bullshit by Anonymous Coward · · Score: 0

    Recently aqurired my first virus in years doing something I shouldn't have been doing, which is how I got my last virus years ago also. I only run a cheap linksys hardware firewall and nothing else. I use thunderbird to check email which has js and images disabled and I don't use IE at all.

    I ran the usual tools like hijackthis, adware and so on. Tried getting rid of it myself by reading some info on it and editing reg and safemode and the whole business. Nothing was working so I decided to start trying demo's. I tried norton first, didn't do shit. Symantec next, it found a slew of virus's that norton didn't but still didn't get rid of it. On to Panda, found more viruses but didn't get rid of it. Next trillian, nope. Then ZoneAlarm. It found even more virus files that the others didn't, it also added the two-way firewall which kept catching my computer trying to connnect. ZoneAlarm demo ran out, fine for a day or two and then noticed some virus processes running.

    I understand the BS that I should have these useless programs running 24x7 because then I would be safe, but what the **** good are these programs if they can't get rid of any viruses. If i'm stupid enough to click on programs which are most likely viruses then why would I be smart enough to not just let them pass through the virus software anyway. The software sends about 20 popups an hour at you, if you don't already understand computers then what good are their techy explanations anyway?

    Since reinstall is the only real way to get rid of a virus (apparently), how about putting the $120 O/S on a flash card instead of a disc which takes me an hour to install. Now thats a solution I would be interested in hearing about.

  63. hmmm..... let me get this straight... by smash · · Score: 1
    PCAnywhere - pile of shit
    Backup Exec - bloated pile of shit
    Norton Antivirus - annoying piece of shit

    So, let me get this straight, i'm supposed to trust Symantec to write secure software?

    smash.

    --
    I run: Windows, OS X, Linux, FreeBSD. Just because you have a hammer, doesn't mean everything is a nail.
  64. Just remember... by Savage-Rabbit · · Score: 1

    ... the white stuff lying around all over the place is not manna from heaven (do not try to sniff it) and the critters, in the water, the ones with the triangular fins, those are Microsoft salesmen, they bite!!!

    --
    Only to idiots, are orders laws.
    -- Henning von Tresckow
  65. Use "corporate edition" by DigiShaman · · Score: 1

    Because Symantec has one of the (of not the best) anti-virus research organizations around, I don't mind using their products. But, their consumer products have grown in bloat and complexity far beyond user friendliness.

    As such, I use Norton Anti-Virus corporate edition 10. It's basically a simple GUI mounted on the engine with virus defs. Simple, clean...and effective.

    Too bad Symantec doesn't market this version to the masses. It's the best version and the most easy to use IMHO.

    --
    Life is not for the lazy.
  66. Wait, is this really anything new? by onlysolution · · Score: 1

    Norton Systemworks has pulled all these "security and optimization" things together for a while now, and all I've ever seen it do is gobble up memory and CPU time while pretty much not doing anything but actually making the system MORE unstable. Is it really such a great idea to have so many program with different agendas all sinking their API hooks in to your windows environment? I personally couldn't trust any package of independently developed applications to not accidently bump in to each other. Just look at all the weird behaviors older Norton Systemworks suites had a habit of introducing (i.e. breaking dos compatibility, even in 98!) and now that we have a new package being pulled together, it's another opportunity for the same mistakes to be made over again, only this time with a suite of more intensive, more invasive types of applications.

  67. Copyright Issue? by herwin · · Score: 1

    I've been using a neural modelling programme called
    GENESIS for over ten years. Does Symantec intend to buy the rights to the name or what?

    1. Re:Copyright Issue? by zazzel · · Score: 1

      Not necessary. They'll go to hell for tagging the name on their bloatware anyways. Trust in God.

    2. Re:Copyright Issue? by avaric3 · · Score: 1

      First, it's not a copyright issue. It's a trademark issue. Second, it would only be a problem if Symantec was selling a neural modeling program and calling it Genesis.

  68. Marketing drivel by mwvdlee · · Score: 1

    A number of applications which, when combined, don't provide full security is all of a sudden ushering in a new age of trust, because they're now sold in one cardboard box instead of multiple boxes???

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  69. Oh Yeah Sure $#^%@$# by Whiteox · · Score: 1

    Ha! Buy and install Genesis? You can imagine what that would do to your head and your system!
    1. After installation you need to set it up
    2. Firewall blocks all the stuff you want
    3. Won't recognise any 3rd party scanners
    4. Demands a heap of bandwidth to update its modules almost daily
    5. Chews memory and slows all apps from opening and saving
    6. Decides that the email you've been waiting for with that very important attachment can't be shown
    7. Breaks as its front end is html based and screws up if a module isn't downloaded or out of sequence
    8. And when you try to uninstall it, won't recognise your password, can't recognise its own install CD
    9. Search their site to find removal tools to try and uninstall it, editing the registry just for fun
    10. Give up, format the drive and install AVS which is free, better, has a small footprint and talks to you as well.
    FUCK OFF SYMANTEC

    --
    Don't be apathetic. Procrastinate!
  70. I've had this for close to 10 years .. by cheros · · Score: 1

    It's called Linux (well, OK, and BSD in various guises). No, seriously, I'm not claiming it's always been 100% good, but if this product is going to claim that I sure hope they have a good insurance - Linux (and especially) BSD have always been ahead of the curve on threats, and where they didn't get it right the exposure didn't last very long.

    Having said that, I'm in two minds if I want to see Windows to become more secure. Most virus writes follow the Pareto (80/20) principle, why put in effort for Linux when abusing Windows is so much easier?

    The upside of a safer Windows, however, could be that we'd suddenly have all that wasted bandwidth back..

    --
    Insert .sig here. Send no money now. Owner may sue, contents will settle. Batteries not included.
  71. Re:Project Genesis? by zenmojodaddy · · Score: 1

    Genesis? Is system FORBIDDEN! Money, more...

  72. Polaris and EROS by mattpalmer1086 · · Score: 1

    Check out Polaris. It's a way of giving each process on XP it's own ACL. Have a look at the rest of erights too if you want to get an idea of what people who put security *first* are thinking.

    http://www.erights.org/new.html

    Funnily enough, if you start from a good place, security often follows on naturally without getting in the way, unlike most mainstream operating systems.

    Also have a look at EROS - a pure capability operating system which allows such fine grained access control that the closest you can get to the Priniciple of Least Privilege with the most locked down system in windows is a joke when compared to it.

    http://www.eros-os.org/

  73. 2.0 by wwmedia · · Score: 0

    so nowadays "2.0" is the new "xp"

    dont we love them buzzwords

    web 2.0
    business 2.0
    security 2.0

  74. From Genesis to Revelation... by knarf · · Score: 1

    ...and the revelation will be in the shape of a many-headed beast of a program. Which will be difficult to excorsize, like Symantec products tend to be. A bug-haunted plague of biblical proportions. No thanks... Next thing you know you'll need some special number to be allowed to run a program...

    --
    --frank[at]unternet.org
  75. No more Symantec by VoltageX · · Score: 1

    From problems with uninstalling and problems caused with having Symantec stuff to a system with fully up to date Norton Anti-Virus defs - 18 viruses found... use AVG, Spybot & Adaware.

    --
    "Anonymous could not immediately be reached for further comment." - International Business Times
  76. Core Force by Alejo · · Score: 2, Insightful
    This looks like a reaction to Core Force, a free Windows tool taking security to the highest level. Only missing an antivirus. A bit annoying at first, as you have to decide what can get through or not but it's getting there with the community of users submitting profiles.

    Why wait?

  77. It all sounds like by Anonymous Coward · · Score: 0

    some CEO's wet dream... I mean, all this new-age-of-trust-and-security crapola sounds so..utopian. I'm still waiting for domed cities, flying cars, and electricity that's "too cheap to meter."

  78. You know theres a problem with "security" software by ShadowOnline · · Score: 0

    .... when you can identify which security software someone is running by the error code from outlook express... Gone are the times that a majority of user problems were actually user-related... 90% of email problems I get phone calls about are cause by security software. (doing 1st line support for a major ISP) It's a good thing that more and more people are buying Apple noawdays. Apples never have software problems, just user problems and broken hardware.

  79. yeah by akhomerun · · Score: 1

    Symantec plans a one-stop software service tying together anti-virus, anti-spam, firewall and a host of other PC optimization technologies...

    so basically it's just a fancy name for Systemworks

  80. The only solution is to use best-of-breed by tkrotchko · · Score: 2, Interesting

    Norton stuff seems to be king of the "We'll change your computer all around just for our software and it will run slower" manufacturers.

    Over the years, I've developed best-of-breed for myself. You probably have others you like:

    1) Firewall - Sygate. Doesn't try to do too much which is good because its small, fast, and it's easy to reconfigure to do pretty much anything. Oh, it's free, too. I can see why Symantec bought it and killed it.

    2) Anti-Virus - AVG is the only virus protection I've used that doesn't bog down the computer. And it's cheaper than Symantec too. I think the only reason it doesn't get rated higher by magazines is they like suites that throw in the kitchen sink. I like small utilities that work well.

    3) Anti-spyware - Webroot Spysweeper. It has worked consistently well for 2-3 years now.

    --
    You were mistaken. Which is odd, since memory shouldn't be a problem for you
    1. Re:The only solution is to use best-of-breed by shdragon · · Score: 1

      2) Anti-Virus - AVG is the only virus protection I've used that doesn't bog down the computer. And it's cheaper than Symantec too. I think the only reason it doesn't get rated higher by magazines is they like suites that throw in the kitchen sink. I like small utilities that work well.

      I agree with your selections (they're the same ones I run) with the exception of AVG. I switched to AntiVir 2 months ago after testing it & reading reviews. Like AVG, it's also free...but lighter on resources, faster, and it detected 9 Java trojans that AVG missed (that last one is what got me to switch).

      --
      "...we dont care about the economics; we just want to be able to hack great stuff."
    2. Re:The only solution is to use best-of-breed by MadMidnightBomber · · Score: 1
      Over the years, I've developed best-of-breed for myself. You probably have others you like:

      Yep, certainly:

      • Firewall - hardware
      • Antivirus - patching, and not clicking on any damnfool executable that I'm sent, or appears on a website
      • Antispyware - see above.
      --
      "It doesn't cost enough, and it makes too much sense."
  81. This strategy by Churla · · Score: 1

    So they're going to usher in a new age of trust on the internet by bundling several products together in one suite. Yeah, that's a winner, just ask Netscape. In all seriousness, the only thing this is ushering in is a new age in which you have to put all your trust in one software vendor to do everything you need security wise correctly.

    --
    I'm a fiscal conservative, it's a pity we don't have a political party anymore
  82. Zonealarm? by tkrotchko · · Score: 1

    The trouble with Zonealarm is that it's hard to configure to do stuff they don't want you to do.

    For example, if you want one machine to connect to another via your wifi connection to share a hotel hotspot, zonealarm is very hard to use primarily because it isn't an expected option, so you can't just say to it "Allow IP address xyz to connect to me on port abc".

    Plus, in the past, I found zonealarm was slowing down my ethernet connections significantly. Maybe they fixed that. I don't think it's the worst firewall, but it's far from the best. Sygate's is good (if you can still track it down), Kerio is good, even though they killed off their free version in reaction to Sygate's demise. I'm sure there are others, but Zonealarm may be a fine all-in-one product, but its a pretty mediocre firewall.

    --
    You were mistaken. Which is odd, since memory shouldn't be a problem for you
  83. still run? by SilenThunder · · Score: 1

    will I finally be able to install Norton and then use my computer afterwards? Haven't been able to do that since I had Norton Utilities 2000 running on Win98SE. It's pretty bad when you actually have to download extra software just to uninstall a program. and even then you may still have to format your hard drive to get rid of it.

  84. Wonder if this one will work with Visual Studio..? by Joce640k · · Score: 1
    I finally dumped Norton Antivirus when they released one which forced their "recycle bin" on me (takes 27 steps to actually delete a file) and insisted on scanning files with a ".cpp" extension even when I told it not to, which meant Visual C++ kept on failing to save files.

    Now they're promising something even bigger which goes even deeper into the OS. Pardon me if I feel less than enthusiastic.

    Norton Utilities 4.5 was the last good product to come from the "Norton" stable (I still use "NCD"). After that it was downhill all the way.

    PS: Antivirus? Get AVG....

    --
    No sig today...
  85. Panavision Genesis ROCKS by Quizo69 · · Score: 1

    I hate Norton as much as the next guy, but for the sake of some good uses of the word Genesis, please look at the Panavision Genesis camera - the world's BEST digital cinema camera bar none: http://www.panavision.com.au/News/Genesis.htm http://en.wikipedia.org/wiki/Genesis_HD_camera With a little luck (and a good amount of funding!!!) I will be using this camera to film my first feature film later this year...

  86. Blast Processing by GnuVince · · Score: 1

    I sure hope that this new genesis thing will have Blast Processing, because Symantec's apps are usually sluggish

  87. Great!! by Anonymous Coward · · Score: 0

    Now we only need to buy a BlueGene/L (IBM) to support the processing power that it will need :P

  88. Yawn...again? by dbmasters · · Score: 1

    OK, isn't that what "System Works" is? I stopped using Norton stuff a while ago because it got so big and bulky...I like the idea of a one stop shop, but, not if it's simply taking all their existing software and putting a mass installer around it and installing 4-5 different apps at once. If somebody could come up (or WOULD come up) with a single application that looks for viruses, spyware and spam in one app, rather than one service doing virus hunting, one service doing spyware hunting, etc...no wonder these packages slow a PC down so much. Now, I am no software developer, just a web developer, but, isn't it possible, since one service is already scanning inboard data, to have it scan for everything, rather than a service for each type of threat?

    --
    dB Masters
  89. And don't forget... by The+MAZZTer · · Score: 1

    Genesis (Bible): The universe was created.

    As Douglas Adams has said, this has been generally viewed as a bad idea and should never have happened.

    1. Re:And don't forget... by vco123 · · Score: 1

      Please recall that in Genesis there was a flood, fratricide, and general mayhem. I'm sure this isn't what Symantec had in mind for their users.

    2. Re:And don't forget... by Baddas · · Score: 1

      Depends whether they can do better than break even on additional licenses for Symantec Stormsewer, Symantec Brotherwatch, and Symantec Antimayhem.

    3. Re:And don't forget... by colinrichardday · · Score: 1

      Shouldn't that be Brotherkeeper?

  90. the state of symantec by v1 · · Score: 1

    Symantec used to be a very good quality program, but in the last couple years they really seem to have tanked. Symantec Antivirus and Norton Internet Security are probably second only to viruses as the reason PCs are brought into our shop for service. NIS just flips out sometimes if a virus attacks, and just plain shuts down everything. Who in their right mind would make an automatic rule that could block incoming email and web browser??? answer! Symantec! Thank you for saving me from my new mail and home page...

    Maybe they should make their current version of software work before they think about integrating it all together? I think at this point installing several symantec products all at once would turn your computer into a train wreck.

    --
    I work for the Department of Redundancy Department.
  91. Decode this using the proper definition. by Stormbringer · · Score: 1

    From AHD:


    trust n.
      9. A combination of firms or corporations for the purpose of reducing competition and controlling prices throughout a business or industry.
    --See Synonyms at monopoly.


    As long as you keep that definition in mind when about anything having to do with Microsoft or Windows, their meaning is quite clear.



  92. Re:oblig link by Anonymous Coward · · Score: 0
  93. Ob ST:WoK reference by Anonymous Coward · · Score: 0

    We're talking about Universal Armageddon!

  94. Security and Windows by cellophane01 · · Score: 0

    The fundamental problem with securing Windows is that for every part of the operating system you secure, every part of the operating system that uses it breaks.

  95. What's Better? by Anonymous Coward · · Score: 0

    I'm curious as to what you use and if it is for personal or corporate use.

    PCAnywhere - pile of shit
    So, what's better, VNC? Yea, Right!

    Backup Exec - bloated pile of shit
    As against what, ArcServe, Legato? Both bloated piles of shit as well.

    Norton Antivirus - annoying piece of shit
    Granted there are lots of choices here but, the generally accepted top providers all seem to be more or less the same. Symantec, McAfee, CA eTrust, etc...

    I've used all of these products for more than 10 years and they all suck. What have you found that sucks less?

    1. Re:What's Better? by smash · · Score: 1
      RDP / ICA / VNC - they're all superior
      Yes, i use backup exec, but doesn't mean i have to like it. Tar + gzip is superior IMHO.
      Trend/AVG = way less irritating than Norton AV.

      All in my opinion of course...

      smash.

      --
      I run: Windows, OS X, Linux, FreeBSD. Just because you have a hammer, doesn't mean everything is a nail.
  96. Is that the sequel... by corvenus · · Score: 1

    to the Age of Empires series?

  97. Couldn't agree more! by King_TJ · · Score: 1

    As I've commented several times before in previous Symantec-related stories, the company cranks out pure junk. Perhaps even more distastefully, has done so using the name (and for some time, even a head-shot photo!) of Peter Norton, a GOOD developer from back in the MS-DOS days, who has absolutely NOTHING to do with any of the Windows-based anti-virus and disk repair utilities they've been hawking as though he wrote them.

    As a few others have occasionally pointed out; anti-virus, anti-spyware or anti-spam type software are perfect examples of cases where open source makes the most sense. There's too much incentive in commercial versions of such products to cheat the end-user. (EG. Who's to say that if you sell an anti-virus product and sales get slow, you wouldn't pay off some hacker in a 3rd. world country to make a new virus that your product can then detect and clean first?) If not open-source, then at least products that are essentially "freeware".

    Besides, if you're going to have to add these layers of code to an OS just to keep it running securely, you want them to be as "lean" and unobtrusive as possible. Symantec and most competing commercial products are the exact opposite - because they're very concerned about "flashiness" and "substance" to try to make the user feel like he/she really got something for their money.

    I really doubt that many of them spend nearly as much effort on making good, working detection engines as they do on the "control panel" interfaces they have. Just last week, I cleaned up a virus mess on a guy's Windows XP machine. He was running Trend Micro's anti-virus product, but it kept doing full system scans and reporting no viruses found. Something was obviously wrong though. (You could even see several programs running in the task manager that didn't belong.)

    I tried running Avast anti-virus on it, and it detected a handful of trojan horse downloader viruses in the WINDOWS directory, all with random filenames starting with things like ABAAA, ABAAB, ABAAC, and so forth.

    I looked in the directory and found THOUSANDS of these files, yet Avast was only seeing random sprinklings of them. I then installed the free version of AVG anti-virus and scanned it again. Guess what? It detected over 3,000 of the files and deleted them all! So once again, the *free* product did a MUCH better job than 2 commercial ones.

  98. -1 Troll / -1 Flamebait this comment, please by fire-eyes · · Score: 1

    "Trust" and "Symantec" used in the same sentance is a bit... Well, silly.

    --
    -- Note: If you don't agree with me, don't bother replying. I won't read it.
  99. What anti-virus? by Martindale · · Score: 2, Insightful

    I have the best anti-badware known to man: Common sense.

    --
    $signature_views++;
  100. Do the Math - Please! by Spinlock_1977 · · Score: 1

    Making one chunk of software (Windows) more secure by adding another chunk (Norton) is not as effective as it might seem. By adding the second chunk, you increase the overall potential vulnerability footprint of the box, by virtue of the fact you're got more lines of code running. More code means more potential bugs, holes, etc. Symantec has previously had to patch holes in their code (as has most everyone else, of course).

    Assuming that Symantec code is about as good/bad as Microsoft code, how much of the potential benefit of Symantec's proprosed security is nullified by the increased vulnerability footprint?

    --
    - The Kessel run is for nerf herders. I can circumnavigate the entire Central Finite Curve in a lot less than 12 parse
  101. An age of trust on the internet... by Anonymous Coward · · Score: 0

    ...and popup windows on your desktop.

    "Your subscription is about to expire!"
    "Warning! Auto-protect is disabled! Your computer is at risk!"
    "New Genesis updates are available! Click here to download!"

    Age of trust? Pfft. I have a better slogan for them:

    "Who needs spyware when you have Symantec?"

  102. security? by braindeader · · Score: 1

    So, who will protect us from Symantec's registration and copy protection software?

  103. Revolutionary! by Syberghost · · Score: 1

    Hey, I've got an idea; how about instead of selling security as an add-on package, we:

    BUILD IT INTO THE FARKING OPERATING SYSTEM IN THE FIRST PLACE.

  104. Genisis cannot give us "a new age of trust" by Anonymous Coward · · Score: 0

    > "a new age of trust on the Internet"

    Symantec doesn't control the internet, let alone the dynamic interactions that happen on the internet. Yet they're promising to make the interactions trustworthy using technology?

    Bah! Pure marketing nonsense. Symantec certainly isn't going to lead the pack in making the internet a safer place. They're a company that believes in being "quick followers". They're sheep, not a shepherd. They usually acquire innovation and creativity -- not because Symantec's employees aren't creative, but because big corporations aren't structured to allow creativity to flourish. Instead, they're structured to reduce risk to stockholders -- and internal creativity is usally too risky.

    If anyone is going to usher in a new age of trust on the Internet, it will be the little guys that do it. Big corporations will follow like sheep, by acquiring or copying the innovators.

  105. New age of trust? by SpeedRacer · · Score: 1

    Is this going to be anything like the Age of Aquarius? Or perhaps it is New Age technology... Lots of crystals and such. Oh, Lord, now I have images of people with lots of hair dancing with their computers. That can't be good.

  106. RTFA by jim_v2000 · · Score: 1

    It doesn't say that that AV and Firewall are optimization, it says that the program is going to come with AV, Firewall AND optimization software. Think Norton System Works blended with Norton Internet Security.

    --
    Don't take life so seriously. No one makes it out alive.
  107. check out the deinstallation procdures for CE 8. by durkster · · Score: 1

    http://service1.symantec.com/SUPPORT/ent-security. nsf/6fffc7260966992188256bf300818635/40814e0bdb4a5 2d188256c130072ca45?OpenDocument&src=bar_sch_nam&s eg=hm

    This takes a little while , eg try searching for one of the numeric strings on a production servers registry , I have spent hours recently uninstalling 7.5, 7.6 and 8 client and server editions and it is a pain in the ass.

    If it wants your custom installer package to deinstall itself and cant find it
    (dumped onto a temporary directory on a long ago cloned master ) then your outlook is effectively :
    "you are screwed , use slow drawn out uninstallation process"

    This is great but when you find you actually have components installed like parts of the SSC installed combined with fragments of NAV 7.5 server complete with AMS etc overlaid with the CE 8 client then it really starts to suck.

  108. What is 'security' by poot_rootbeer · · Score: 1


    Security is not a Product. It is a Process.

    Symantec can promise the world, but true security is quite a bit beyond the reach of installing a "security daemon" and forgetting about it.

  109. Re:Wonder if this one will work with Visual Studio by sconeu · · Score: 1

    I've said it many times on other forums...

    Peter Norton should sue Symantec for Defamation of Character.

    --
    General Relativity: Space-time tells matter where to go; Matter tells space-time what shape to be.
  110. This is newsworthy? by Anonymous Coward · · Score: 0

    Come on, guys. This is no more news than any other bullshit press release cum advertisement. This is just Symantec dropping some more dubious functionality into a suite of software that hasn't worked for shit since its inception, in the wake of competent competition rising up while they blunder around.

  111. Trust - WTF? by jafac · · Score: 1

    I don't know about the rest of you, but I'm not inclined to trust a company (Symantec) that makes smarmy backroom deals with spyware vendors (Sony) to not protect my computer from malware.

    Nobody else with a lick of sense should trust Symantec either.

    --

    These are my friends, See how they glisten. See this one shine, how he smiles in the light.
  112. Alternative to Symantec by sedentarygecko · · Score: 1

    http://www.kaspersky.com/ A lean, strong application with a web-based encyclopedia of malware defintions and nightly definition updates. And no, I'm not getting kickbacks for this.

  113. Trust Symantec? Why? by softcoder · · Score: 1

    Symantec. Isn't that one of the anti virus companies that turned a blind eye to Sony's virus?
    Why would anyone trust them?

  114. Re:Mod Parent Insightful by mpapet · · Score: 1

    I have to believe this is how the mighty want to do things as well.

    The Trusted Computing system relies on the notion that "security" processes are done on another processor.

    --
    http://www.maxineudall.com/2010/02/should-economists-be-sued-for-malpractice.html
  115. a new age? by drew · · Score: 1

    Semantec has set their goal to 'Security 2.0' which is proposed to be 'a new age of trust on the Internet.'

    Yes, Symantec is certainly the first company that pops into my mind when I hear the word "trust"...

    --
    If I don't put anything here, will anyone recognize me anymore?
  116. Something the "common computer user could buy"? by |>>? · · Score: 1

    I suppose "could" is the right word. I suspect that many will even buy this rubbish, thanks to the effervescent sales pitch made by the local computer shop or supermarket.

    A company that writes software that cannot uninstall itself, needs more privileges than an Administrator account on XP, needs you to download three files just to remove itself and stops your actual email from being downloaded, yeah, that's something the common computer user could buy.

    I've now spent countless man hours removing this crap from client machines after they were told that they needed it. For me, AVG, SpyBot S&D and AdAware seems to work just fine and the computer still responds without the need to install Ghost, Live Update, Live Register, and 27 other little programmes.

    To top it off, it doesn't even actually work. That is, stop infections.

    Hmm, "could" indeed.

    Perhaps I should buy shares...

    --
    |>>? ..EBCDIC for Onno..
  117. Genesis (band) by 7Prime · · Score: 1

    Genesis (Band): Ushered in the era of HORRID 80's music

    Well, sure, but they also gave us "Lamb Lies Down in Broadway". They also gave us Peter Gabrial, one of the greatest philanthropists ever to walk this planet (from the interviews I've seen, his work even puts Bono to shame).
    --
    Multiplayer Gaming (defined): Sitting around, discussing single-player games with my friends, at the bar.
  118. "Massive" Security Package... by iamlucky13 · · Score: 1

    Apparently, you missed that part of the summary. My first thought was how much of my memory would I have to give up to run the basic service, and how much of a performance hit would I take and for how long when it's doing a full scan. I haven't bothered with Norton for a couple years now, and it was bad enough then.

  119. Yet another desktop security program? by philntc · · Score: 1

    Aren't there enough of these? Free and otherwise? We've been using Unfied Threat Management devices to augment desktop AV, particularly because of the better network monitoring that can be achieved.

  120. All I have to say is: by Anonymous Coward · · Score: 0

    Kaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhnhnnnnn nnnnm!!!!!!!

  121. Yes, I am not going to get killed by Msft today by Anonymous Coward · · Score: 0

    This is all about Symantec saying Windows Vista and Windows OneCare aren't going to make their products irrelevant. And to tell their investors that they'll still have a business when Redmond is delivering a/v, anti-spyware, and the other security goodies for little or no additional cost.

  122. Well... by tkrotchko · · Score: 1

    A hardware firewall goes without saying. But I use a software firewall to control programs that seem to like to chat to some distant server without permission. I think its essential.

    As to "just not clicking" on stuff, I think Windows has shown that you can be infected without clicking; the WMF fiasco is just the latest in a long list of exploits that can be invoked by just visiting a web page.

    --
    You were mistaken. Which is odd, since memory shouldn't be a problem for you
  123. Fraud by Anonymous Coward · · Score: 0

    Real security means designing the OS correctly in the first place. These are schemes to get corporations/government software on your computer acting as gatekeeper. Eventually the gatekeeper, under the guise of keeping you safe, will slowly take away your internet freedoms. I call fraud on these people. You can sprinkle sugar on shit all day long, but in the end it's still shit.