<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: p2pnet virus infection</title>
	<atom:link href="http://www.p2pnet.net/story/16968/feed" rel="self" type="application/rss+xml" />
	<link>http://www.p2pnet.net/story/16968</link>
	<description>p2pnet.net - reader powered</description>
	<lastBuildDate>Wed, 01 Feb 2012 15:11:09 -0300</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Reader's Write</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-775741</link>
		<dc:creator>Reader's Write</dc:creator>
		<pubDate>Sat, 13 Sep 2008 06:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-775741</guid>
		<description>Technically, Windows does have user-administrator privilege separation, it&#039;s just that users have historically defaulted to being administrator for Win9x compatibility (because Win9x and Win3.1 DIDN&#039;T have that kind of security) and, as a result, many programs which shouldn&#039;t need to run as admin... accidentally do.

As for things like buffer overflows, that&#039;s one of many things where protections are easier to enable as an opt-out on Linux. (WinXP and WinVista support Hardware DEP... but it&#039;s set to &quot;opt in&quot; by default for backwards-compatibility) For Linux, they just patched GCC so it tags generated binaries with information on whether they naively do things which require a DEP exception. (eg. things like Java which generate machine code at runtime and then execute it) Since most of the software is open-source stuff that&#039;s fresh-compiled for each release, the problem all but fixed itself after that. Closed-source stuff with no DEP-compatibility info can be manually tagged before packaging.

Security features like DEP (having hardware enforce a &quot;code can&#039;t be edited, data can&#039;t be executed&quot; rule) and partial ASLR (address-space layour randomization) arrived in Linux for several years now. (They also added the last pieces of complete ASLR a few months ago.) The main thing holding back hardware DEP on 32-bit Linux is that, in order to access the NX-bit in 32-bit mode, you have to do something which will freeze up the Pentium Pro and any older processors. I&#039;ve heard that some distros work around that by offering two kernels, but since I already run 64-bit Linux, I haven&#039;t bothered to keep an eye on that.

Of course, it also helps that Linux distributors have a better track record than Microsoft for quick patch releases when security holes are discovered... and that automatic security updates aren&#039;t limited to the OS itself and any apps which provide their own update-checking system.

Of course, possibly most importantly, Linux&#039;s security advantages aren&#039;t limited to the kernel and package manager. Here are some examples of conventions and specific program behaviours which improve security:
- Binaries cannot provide a custom icon to the file manager, and instead of hiding extensions, the file manager simply auto-selects everything but the extension when you choose &quot;Rename&quot;.
- In most cases, file managers check the file header to identify the file&#039;s type. In the case of Nautilus, double-clicking a file where the header and extension don&#039;t match will trigger a warning box.
- Default umask settings ensure that, if you save a binary from any non-malicious application (browser, etc.), it won&#039;t be executable. (and then file managers will pop up an &quot;Open With...&quot; dialog if you double-click it)
- Unlike Windows, there are at least two popular applications for any given activity and there&#039;s no guarantee that a given machine will have a specific vulnerable component installed. As in nature, avoiding a monoculture makes it more difficult for viruses and other nasties to spread.
- All embeddable browser widgets default to disallowing easy installation of untrusted components. (Something the Internet Explorer ActiveX control apparently has a problem with)
- Konqueror uses KDE KParts (an ActiveX-like technology) but keeps it safe by exposing a web-visible API more along the lines of netscape plugins. (Websites cannot request a specific part beyond specifying the mimetype that needs to be supported, one-click remote install is not supported, Javascript access to KPart internals ranges from minimal to nonexistant, etc.)
- All Linux media players will ignore the &quot;This file is DRMed. Here&#039;s where to get authorized&quot; links that ASF streams (WMV, WMA, etc.) can contain. Those have been exploited to open Internet Explorer into a vulnerable site before.</description>
		<content:encoded><![CDATA[<p>Technically, Windows does have user-administrator privilege separation, it&#8217;s just that users have historically defaulted to being administrator for Win9x compatibility (because Win9x and Win3.1 DIDN&#8217;T have that kind of security) and, as a result, many programs which shouldn&#8217;t need to run as admin&#8230; accidentally do.</p>
<p>As for things like buffer overflows, that&#8217;s one of many things where protections are easier to enable as an opt-out on Linux. (WinXP and WinVista support Hardware DEP&#8230; but it&#8217;s set to &#8220;opt in&#8221; by default for backwards-compatibility) For Linux, they just patched GCC so it tags generated binaries with information on whether they naively do things which require a DEP exception. (eg. things like Java which generate machine code at runtime and then execute it) Since most of the software is open-source stuff that&#8217;s fresh-compiled for each release, the problem all but fixed itself after that. Closed-source stuff with no DEP-compatibility info can be manually tagged before packaging.</p>
<p>Security features like DEP (having hardware enforce a &#8220;code can&#8217;t be edited, data can&#8217;t be executed&#8221; rule) and partial ASLR (address-space layour randomization) arrived in Linux for several years now. (They also added the last pieces of complete ASLR a few months ago.) The main thing holding back hardware DEP on 32-bit Linux is that, in order to access the NX-bit in 32-bit mode, you have to do something which will freeze up the Pentium Pro and any older processors. I&#8217;ve heard that some distros work around that by offering two kernels, but since I already run 64-bit Linux, I haven&#8217;t bothered to keep an eye on that.</p>
<p>Of course, it also helps that Linux distributors have a better track record than Microsoft for quick patch releases when security holes are discovered&#8230; and that automatic security updates aren&#8217;t limited to the OS itself and any apps which provide their own update-checking system.</p>
<p>Of course, possibly most importantly, Linux&#8217;s security advantages aren&#8217;t limited to the kernel and package manager. Here are some examples of conventions and specific program behaviours which improve security:<br />
- Binaries cannot provide a custom icon to the file manager, and instead of hiding extensions, the file manager simply auto-selects everything but the extension when you choose &#8220;Rename&#8221;.<br />
- In most cases, file managers check the file header to identify the file&#8217;s type. In the case of Nautilus, double-clicking a file where the header and extension don&#8217;t match will trigger a warning box.<br />
- Default umask settings ensure that, if you save a binary from any non-malicious application (browser, etc.), it won&#8217;t be executable. (and then file managers will pop up an &#8220;Open With&#8230;&#8221; dialog if you double-click it)<br />
- Unlike Windows, there are at least two popular applications for any given activity and there&#8217;s no guarantee that a given machine will have a specific vulnerable component installed. As in nature, avoiding a monoculture makes it more difficult for viruses and other nasties to spread.<br />
- All embeddable browser widgets default to disallowing easy installation of untrusted components. (Something the Internet Explorer ActiveX control apparently has a problem with)<br />
- Konqueror uses KDE KParts (an ActiveX-like technology) but keeps it safe by exposing a web-visible API more along the lines of netscape plugins. (Websites cannot request a specific part beyond specifying the mimetype that needs to be supported, one-click remote install is not supported, Javascript access to KPart internals ranges from minimal to nonexistant, etc.)<br />
- All Linux media players will ignore the &#8220;This file is DRMed. Here&#8217;s where to get authorized&#8221; links that ASF streams (WMV, WMA, etc.) can contain. Those have been exploited to open Internet Explorer into a vulnerable site before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry Ermich</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-775414</link>
		<dc:creator>Henry Ermich</dc:creator>
		<pubDate>Sat, 13 Sep 2008 01:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-775414</guid>
		<description>Saw that Rekrul mentioned the user-admin seperation issue, and did a far better job of explaining it than I ever could! (What can I say - I&quot;m not a tech-nerd, just a nerd!) :)</description>
		<content:encoded><![CDATA[<p>Saw that Rekrul mentioned the user-admin seperation issue, and did a far better job of explaining it than I ever could! (What can I say &#8211; I&#8221;m not a tech-nerd, just a nerd!) <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry Ermich</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-775407</link>
		<dc:creator>Henry Ermich</dc:creator>
		<pubDate>Sat, 13 Sep 2008 01:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-775407</guid>
		<description>Actually, no:
   The thing that makes Linux sturdy as hell is NOT the &quot;security by obscurity&quot; by any means.  

   1. It&#039;s not like Linux doesn&#039;t have market-share.  The fact is, there&#039;s most likely vastly more Linux systems running even as &quot;desktop&quot; systems than ever get reported.  (That&#039;s one of the kewl parts about it -- Linux distros are easy to come by (and very low price -- &quot;Free&quot; as in BOTH senses of the term many times!) :)  Nobody&#039;s really &quot;keeping score&quot; on Linux penetration into the &quot;Home PC&quot; market, but it&#039;s definitely bigger than just 2% :)

    2. When you factor in the prevalence of Linux systems in other settings (Apache wasn&#039;t &quot;native&quot; to Windows, etc.) -- you end up with the fact that at least a sizeable chunk of the world&#039;s computer systems are running some variant of Unix/Linux, and have been since at least the 1970s.  The fact that Microsoft managed to grab a significant chunk of the &quot;Desktop&quot; market has never really MEANT anything in terms of total amount of computer systems running any given OS.

   3. Additionally, how in hell can anybody claim &quot;obscurity&quot; for something where damn near all the codebase even down to the Kernel level is freely-available?  From a technical standpoint, there&#039;s infinitely more &quot;obscurity&quot; with a proprietary, closed-source OS (such as Microsoft products).  

    No, what REALLY ruggedizes Linux, is the fact that (like Unix before it), every single file and process on the system is &quot;owned&quot; by -- and associated with -- specific users/groups.  Thus, programs can only &quot;do stuff&quot; to files when it&#039;s permitted to them to do.)

   That&#039;s why you have to do the &quot;super-user&quot; thing.  You have to be logged in as &quot;root&quot; to actually be able to modify most of the critical stuff of the system.

    Now, yeah, while &quot;viruses&quot; are pretty much impossible under Unix/Linux, there ARE a lot of other sorts of nastiness that ppl can do -- buffer overrides and such, so running a Linux Distro isn&#039;t quite a &quot;magic bullet&quot; by any stretch -- but, since most Distros are either gratis (&quot;Free as in Beer&quot;) or at the very least, MUCH less expensive/with less restrictive licensing terms, it&#039;s no big deal do reinstall, or even system recovery -- just slap a KNoppix CD in (for example), dump all your mission-critical files to a CD or USB flash-drive, and do a clean reinstallation.  THEN just dump your files back to their &quot;original&quot; location (making sure to use the same user accounts etc so the system doesn&#039;t bitch about it!), and you&#039;re back.

   Sam:  What version of MacOS are you running?  Leopard?  
   No hard feelings, Man -- best of luck with your biz and your life.  :)

   (Oh, and Thanks, sam: if we hadn&#039;t gotten into that little &quot;scuffle&quot;, Jon would never have offered me the chance to contribute more fully to p2pnet! :)  Rest assured -- more (as you called it) &quot;useless history lessons&quot; to come! :)</description>
		<content:encoded><![CDATA[<p>Actually, no:<br />
   The thing that makes Linux sturdy as hell is NOT the &#8220;security by obscurity&#8221; by any means.  </p>
<p>   1. It&#8217;s not like Linux doesn&#8217;t have market-share.  The fact is, there&#8217;s most likely vastly more Linux systems running even as &#8220;desktop&#8221; systems than ever get reported.  (That&#8217;s one of the kewl parts about it &#8212; Linux distros are easy to come by (and very low price &#8212; &#8220;Free&#8221; as in BOTH senses of the term many times!) <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Nobody&#8217;s really &#8220;keeping score&#8221; on Linux penetration into the &#8220;Home PC&#8221; market, but it&#8217;s definitely bigger than just 2% <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>    2. When you factor in the prevalence of Linux systems in other settings (Apache wasn&#8217;t &#8220;native&#8221; to Windows, etc.) &#8212; you end up with the fact that at least a sizeable chunk of the world&#8217;s computer systems are running some variant of Unix/Linux, and have been since at least the 1970s.  The fact that Microsoft managed to grab a significant chunk of the &#8220;Desktop&#8221; market has never really MEANT anything in terms of total amount of computer systems running any given OS.</p>
<p>   3. Additionally, how in hell can anybody claim &#8220;obscurity&#8221; for something where damn near all the codebase even down to the Kernel level is freely-available?  From a technical standpoint, there&#8217;s infinitely more &#8220;obscurity&#8221; with a proprietary, closed-source OS (such as Microsoft products).  </p>
<p>    No, what REALLY ruggedizes Linux, is the fact that (like Unix before it), every single file and process on the system is &#8220;owned&#8221; by &#8212; and associated with &#8212; specific users/groups.  Thus, programs can only &#8220;do stuff&#8221; to files when it&#8217;s permitted to them to do.)</p>
<p>   That&#8217;s why you have to do the &#8220;super-user&#8221; thing.  You have to be logged in as &#8220;root&#8221; to actually be able to modify most of the critical stuff of the system.</p>
<p>    Now, yeah, while &#8220;viruses&#8221; are pretty much impossible under Unix/Linux, there ARE a lot of other sorts of nastiness that ppl can do &#8212; buffer overrides and such, so running a Linux Distro isn&#8217;t quite a &#8220;magic bullet&#8221; by any stretch &#8212; but, since most Distros are either gratis (&#8221;Free as in Beer&#8221;) or at the very least, MUCH less expensive/with less restrictive licensing terms, it&#8217;s no big deal do reinstall, or even system recovery &#8212; just slap a KNoppix CD in (for example), dump all your mission-critical files to a CD or USB flash-drive, and do a clean reinstallation.  THEN just dump your files back to their &#8220;original&#8221; location (making sure to use the same user accounts etc so the system doesn&#8217;t bitch about it!), and you&#8217;re back.</p>
<p>   Sam:  What version of MacOS are you running?  Leopard?<br />
   No hard feelings, Man &#8212; best of luck with your biz and your life.  <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>   (Oh, and Thanks, sam: if we hadn&#8217;t gotten into that little &#8220;scuffle&#8221;, Jon would never have offered me the chance to contribute more fully to p2pnet! <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Rest assured &#8212; more (as you called it) &#8220;useless history lessons&#8221; to come! <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reader's Write</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773793</link>
		<dc:creator>Reader's Write</dc:creator>
		<pubDate>Fri, 12 Sep 2008 03:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773793</guid>
		<description>For me, the main benefit to using Linux software isn&#039;t the security by obscurity, but the security of having the nVidia drivers and a copy of Opera (for testing sites I write) as the only apps on my entire system which weren&#039;t built from freely-available source (usually hash-verified) by people who know the risk involved in letting something untrustworthy through and delivered to me by a package manager which also verifies hashes.

Of course, running a platform where the applications expect user-administrator privilege separation (unlike many Windows apps) and it&#039;s the default mode of operation also helps.

Now I just wish someone would fix the PID, SID, and command-based filter matching for SMP kernels so outbound firewalling would be feasible for a dual-core desktop system without a dedicated sysadmin.</description>
		<content:encoded><![CDATA[<p>For me, the main benefit to using Linux software isn&#8217;t the security by obscurity, but the security of having the nVidia drivers and a copy of Opera (for testing sites I write) as the only apps on my entire system which weren&#8217;t built from freely-available source (usually hash-verified) by people who know the risk involved in letting something untrustworthy through and delivered to me by a package manager which also verifies hashes.</p>
<p>Of course, running a platform where the applications expect user-administrator privilege separation (unlike many Windows apps) and it&#8217;s the default mode of operation also helps.</p>
<p>Now I just wish someone would fix the PID, SID, and command-based filter matching for SMP kernels so outbound firewalling would be feasible for a dual-core desktop system without a dedicated sysadmin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rekrul</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773790</link>
		<dc:creator>Rekrul</dc:creator>
		<pubDate>Fri, 12 Sep 2008 03:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773790</guid>
		<description>&quot;One thing Iâve always found funny is how some users, regardless of the platform they use, refuse to use a firewall that monitors not just incoming traffic, but outgoing as well.&quot;

I run Kerio Personal Firewall, which monitors outgoing traffic as well as incoming. I convinced my friend to install it, but he got frustrated with it always asking him about allowing connections. Previously, he was just using the Windows XP firewall. Another person I met had Zone Alarm installed, but when an alert would pop up, he&#039;d just click the Permit/Allow button until it went away.

&quot;Most people donât bother to read the license agreement when they install software.&quot;

I&#039;m guilty of this as well, but in my case it&#039;s because I know they mostly all have the same terms in them. Namely that the company makes no guarantees, they will not be held liable for any damage, even if it&#039;s clearly their fault, etc. Any company that does something truly sneaky like installing malware on your system usually doesn&#039;t mention it in the EULA.</description>
		<content:encoded><![CDATA[<p>&#8220;One thing Iâve always found funny is how some users, regardless of the platform they use, refuse to use a firewall that monitors not just incoming traffic, but outgoing as well.&#8221;</p>
<p>I run Kerio Personal Firewall, which monitors outgoing traffic as well as incoming. I convinced my friend to install it, but he got frustrated with it always asking him about allowing connections. Previously, he was just using the Windows XP firewall. Another person I met had Zone Alarm installed, but when an alert would pop up, he&#8217;d just click the Permit/Allow button until it went away.</p>
<p>&#8220;Most people donât bother to read the license agreement when they install software.&#8221;</p>
<p>I&#8217;m guilty of this as well, but in my case it&#8217;s because I know they mostly all have the same terms in them. Namely that the company makes no guarantees, they will not be held liable for any damage, even if it&#8217;s clearly their fault, etc. Any company that does something truly sneaky like installing malware on your system usually doesn&#8217;t mention it in the EULA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Irate Pirate</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773763</link>
		<dc:creator>Irate Pirate</dc:creator>
		<pubDate>Fri, 12 Sep 2008 03:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773763</guid>
		<description>Mac&#039;s can indeed get infected, but there really isn&#039;t much incentive for malware programmers to bother with them. Security by obscurity it&#039;s called and Linux falls into the same category. People think this makes them 100% safe but in reality it all comes down to a false sense of security and chance. Naturally the odds of infection increase as the number of people using the more obscure platforms grow.

One thing I&#039;ve always found funny is how some users, regardless of the platform they use, refuse to use a firewall that monitors not just incoming traffic, but outgoing as well. This is a last (first?) line of defense when it comes to all software on your PC, not just malware. I guess what I&#039;m really saying is that I&#039;m amazed at how many people are completely trusting when it comes to commercial entities. Most people don&#039;t bother to read the license agreement when they install software. Even if you do, who truly believes these corporate entities honestly have your best interests at heart when it comes to ideals such as privacy? Do you also leave the doors unlocked at home? Are you really that trusting? Anyways, something to think about.

Perhaps I sound like the paranoid tin foil hate wearing type, but really I&#039;m just trying to be prudent. When you see the lengths that some people will go to in order to make an easy buck, the things they are willing to do to one another and the lows they let themselves sink to, sometimes for little to no real gain at all, how can one not be at least a little bit paranoid deep down inside? Hmm, perhaps that is why, despite being a PC enthusiast and running Windows for as long as it has been around, I&#039;ve never once gotten an infection.</description>
		<content:encoded><![CDATA[<p>Mac&#8217;s can indeed get infected, but there really isn&#8217;t much incentive for malware programmers to bother with them. Security by obscurity it&#8217;s called and Linux falls into the same category. People think this makes them 100% safe but in reality it all comes down to a false sense of security and chance. Naturally the odds of infection increase as the number of people using the more obscure platforms grow.</p>
<p>One thing I&#8217;ve always found funny is how some users, regardless of the platform they use, refuse to use a firewall that monitors not just incoming traffic, but outgoing as well. This is a last (first?) line of defense when it comes to all software on your PC, not just malware. I guess what I&#8217;m really saying is that I&#8217;m amazed at how many people are completely trusting when it comes to commercial entities. Most people don&#8217;t bother to read the license agreement when they install software. Even if you do, who truly believes these corporate entities honestly have your best interests at heart when it comes to ideals such as privacy? Do you also leave the doors unlocked at home? Are you really that trusting? Anyways, something to think about.</p>
<p>Perhaps I sound like the paranoid tin foil hate wearing type, but really I&#8217;m just trying to be prudent. When you see the lengths that some people will go to in order to make an easy buck, the things they are willing to do to one another and the lows they let themselves sink to, sometimes for little to no real gain at all, how can one not be at least a little bit paranoid deep down inside? Hmm, perhaps that is why, despite being a PC enthusiast and running Windows for as long as it has been around, I&#8217;ve never once gotten an infection.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rekrul</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773499</link>
		<dc:creator>Rekrul</dc:creator>
		<pubDate>Thu, 11 Sep 2008 23:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773499</guid>
		<description>Yeah, Macs don&#039;t get viruses because nobody bothers to write viruses for them. Just like many software authors don&#039;t bother to write software for them.</description>
		<content:encoded><![CDATA[<p>Yeah, Macs don&#8217;t get viruses because nobody bothers to write viruses for them. Just like many software authors don&#8217;t bother to write software for them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reader's Write</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773317</link>
		<dc:creator>Reader's Write</dc:creator>
		<pubDate>Thu, 11 Sep 2008 20:40:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773317</guid>
		<description>why does it not surprise me that sam i am is a mac fanboi? ;)</description>
		<content:encoded><![CDATA[<p>why does it not surprise me that sam i am is a mac fanboi? <img src='http://www.p2pnet.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam I Am</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773268</link>
		<dc:creator>Sam I Am</dc:creator>
		<pubDate>Thu, 11 Sep 2008 20:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773268</guid>
		<description>Well, they CAN get viruses, Dude, but if you were going to invest a couple hundred hours in writing malware, would you do it for 8 percent or 92 percent of the platforms? As MAC grows, so does the virus risk. But it&#039;s always been essentially nada. When I bought my first computers I wanted design apps, and specifically lighting design apps. Windows was just pathetic with nothing at all at the time, barely limping up to 3.1.

I found 6 different lighting design apps for the MAC back then and it&#039;s been one of the best business decisions I&#039;ve ever made. My poor Windows buddies in a year invest in system administration more than what I&#039;ve invested in 16-plus-years total. Truth is, we&#039;ve been wall-to-wall MAC here since the early 90&#039;s and never even purchased or installed a virus application. It just works.</description>
		<content:encoded><![CDATA[<p>Well, they CAN get viruses, Dude, but if you were going to invest a couple hundred hours in writing malware, would you do it for 8 percent or 92 percent of the platforms? As MAC grows, so does the virus risk. But it&#8217;s always been essentially nada. When I bought my first computers I wanted design apps, and specifically lighting design apps. Windows was just pathetic with nothing at all at the time, barely limping up to 3.1.</p>
<p>I found 6 different lighting design apps for the MAC back then and it&#8217;s been one of the best business decisions I&#8217;ve ever made. My poor Windows buddies in a year invest in system administration more than what I&#8217;ve invested in 16-plus-years total. Truth is, we&#8217;ve been wall-to-wall MAC here since the early 90&#8217;s and never even purchased or installed a virus application. It just works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dude From Finland</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-773242</link>
		<dc:creator>Dude From Finland</dc:creator>
		<pubDate>Thu, 11 Sep 2008 19:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-773242</guid>
		<description>&quot;Or just get a MAC.&quot; 

Yeah cuz MAC&#039;s will survive the end of the world and never have any viruses.

I wonder why they write virus software for Mac&#039;s.</description>
		<content:encoded><![CDATA[<p>&#8220;Or just get a MAC.&#8221; </p>
<p>Yeah cuz MAC&#8217;s will survive the end of the world and never have any viruses.</p>
<p>I wonder why they write virus software for Mac&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam I Am</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772914</link>
		<dc:creator>Sam I Am</dc:creator>
		<pubDate>Thu, 11 Sep 2008 16:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772914</guid>
		<description>Or just get a MAC.</description>
		<content:encoded><![CDATA[<p>Or just get a MAC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angel computer services</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772849</link>
		<dc:creator>angel computer services</dc:creator>
		<pubDate>Thu, 11 Sep 2008 15:39:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772849</guid>
		<description>Due to many aholes out there it&#039;s advised to use very good after-market firewall [zonealarm or zonealarm suite is pretty good for winblows]
Top anti-virus appz: kaspersky, nod32, avast, antivir ... no one anti-virus will catch all
Never use norton360 or mcafee due to scripts and they miss a lot, 
Once a month to 3 months pull the HD, stick it in HD caddy and scan it in another system with another brand of anti-virus [i use minimum or 3 types]
Never use free anti-virus [unless you absolutely have to] as it&#039;s usually crippled and can&#039;t tell it to bypass good or custom appz
Also use anti-spyware appz like ad-aware and spybot [with spybot u need to get into advanced and disable the ads, but it&#039;s worth it]
Up to you disable teatimer in spybot install as it&#039;s highly system intensive
note: windows defender is also crap
Scan every file you get just after download! ... this goes for Linux and Mac too

With that out of the way ... Thou shalt Not EVER use demo, free trial, crippleware, shareware or any such promo appz

To be more secure and happy i find simply mepis linux or ubuntu a good general desktop OS, and you have about 12000 free appz to choose from</description>
		<content:encoded><![CDATA[<p>Due to many aholes out there it&#8217;s advised to use very good after-market firewall [zonealarm or zonealarm suite is pretty good for winblows]<br />
Top anti-virus appz: kaspersky, nod32, avast, antivir &#8230; no one anti-virus will catch all<br />
Never use norton360 or mcafee due to scripts and they miss a lot,<br />
Once a month to 3 months pull the HD, stick it in HD caddy and scan it in another system with another brand of anti-virus [i use minimum or 3 types]<br />
Never use free anti-virus [unless you absolutely have to] as it&#8217;s usually crippled and can&#8217;t tell it to bypass good or custom appz<br />
Also use anti-spyware appz like ad-aware and spybot [with spybot u need to get into advanced and disable the ads, but it's worth it]<br />
Up to you disable teatimer in spybot install as it&#8217;s highly system intensive<br />
note: windows defender is also crap<br />
Scan every file you get just after download! &#8230; this goes for Linux and Mac too</p>
<p>With that out of the way &#8230; Thou shalt Not EVER use demo, free trial, crippleware, shareware or any such promo appz</p>
<p>To be more secure and happy i find simply mepis linux or ubuntu a good general desktop OS, and you have about 12000 free appz to choose from</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devil's Advocate</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772817</link>
		<dc:creator>Devil's Advocate</dc:creator>
		<pubDate>Thu, 11 Sep 2008 15:01:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772817</guid>
		<description>Fonts?!?
Geez, Jon!  I&#039;ve got MILLIONS of fonts.
Ya could&#039;ve asked me!

...unless &quot;fonts&quot; is code for &quot;something more likely to have infected you&quot;.
: )

Cheers, Jon
...And stay off those ,er, &quot;font sites&quot;, won&#039;tcha?!</description>
		<content:encoded><![CDATA[<p>Fonts?!?<br />
Geez, Jon!  I&#8217;ve got MILLIONS of fonts.<br />
Ya could&#8217;ve asked me!</p>
<p>&#8230;unless &#8220;fonts&#8221; is code for &#8220;something more likely to have infected you&#8221;.<br />
: )</p>
<p>Cheers, Jon<br />
&#8230;And stay off those ,er, &#8220;font sites&#8221;, won&#8217;tcha?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: OttawaGal</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772681</link>
		<dc:creator>OttawaGal</dc:creator>
		<pubDate>Thu, 11 Sep 2008 13:22:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772681</guid>
		<description>wasn&#039;t me!</description>
		<content:encoded><![CDATA[<p>wasn&#8217;t me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772671</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 11 Sep 2008 13:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772671</guid>
		<description>In retrospect, it probably wasn&#039;t the fonts.

Cheers!</description>
		<content:encoded><![CDATA[<p>In retrospect, it probably wasn&#8217;t the fonts.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reader's Write</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772654</link>
		<dc:creator>Reader's Write</dc:creator>
		<pubDate>Thu, 11 Sep 2008 12:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772654</guid>
		<description>Last I heard, fonts can&#039;t contain executable code. Were they bundled up in one of those &quot;executable installers for people who don&#039;t know to right-click and choose &#039;install&#039;&quot;?</description>
		<content:encoded><![CDATA[<p>Last I heard, fonts can&#8217;t contain executable code. Were they bundled up in one of those &#8220;executable installers for people who don&#8217;t know to right-click and choose &#8216;install&#8217;&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.p2pnet.net/story/16968/comment-page-1#comment-772638</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 11 Sep 2008 12:46:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.p2pnet.net/story/16968#comment-772638</guid>
		<description>UPDATE: This is going to take a while.

Cheers!</description>
		<content:encoded><![CDATA[<p>UPDATE: This is going to take a while.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>


