<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; anti virus</title>
	<atom:link href="http://www.ghacks.net/tag/anti-virus/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Wed, 25 Nov 2009 15:55:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add antivirus to Postfix with ClamAV</title>
		<link>http://www.ghacks.net/2009/10/25/add-antivirus-to-postfix-with-clamav/</link>
		<comments>http://www.ghacks.net/2009/10/25/add-antivirus-to-postfix-with-clamav/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 15:46:17 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[Postfix]]></category>
		<category><![CDATA[virus definitions]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17707</guid>
		<description><![CDATA[By now you have your Postfix mail server up and running (see &#8220;Install Postfix for reliable email delievery&#8220;). You even have relaying working (see &#8220;Mail relaying made simple with Postfix&#8220;). But one of the most important features you can add to a mail server is an system to prevent viruses from being passed to users. [...]]]></description>
			<content:encoded><![CDATA[<p>By now you have your Postfix mail server up and running (see &#8220;<a title="Install Postfix for reliable email delievery" href="http://www.ghacks.net/2009/10/24/install-postfix-for-reliable-email-delivery/" target="_blank">Install Postfix for reliable email delievery</a>&#8220;). You even have relaying working (see &#8220;<a title="Mail relaying made simple with Postfix" href="http://www.ghacks.net/2009/09/23/mail-relaying-made-simple-with-postfix/" target="_blank">Mail relaying made simple with Postfix</a>&#8220;). But one of the most important features you can add to a mail server is an system to prevent viruses from being passed to users. Naturally, the Linux fan will say &#8220;But Linux isn&#8217;t affected by viruses!&#8221;. Although that may, for the most part, be true, this is a mail SERVER which could be serving up mail to Windows users. And Windows machines ARE effected by viruses. To that end, anti-virus measures are a necessity on a Linux email server.</p>
<p>One of the best anti-virus systems for a Postfix server is <a title="ClamAV" href="http://www.clamav.net/" target="_blank">ClamAV</a>. This anti-virus tool kit is open sourced and can be used on all UNIX-like operating systems. It&#8217;s easy to install and effective. In this article we will be following our series started way back in the <a title="Installing Ubuntu Server 9.04" href="http://www.ghacks.net/2009/09/03/installing-ubuntu-server-9-04/" target="_blank">Installing Ubuntu Server 9.04 article</a>. Of course we will be installing ClamAV on a Ubuntu server running LAMP and Postfix. With that in mind, let&#8217;s get busy!</p>
<p><span id="more-17707"></span><strong>Installation</strong></p>
<p>The first thing to take care of is the installation of ClamAV. There are a number of tools you will need to install. Open up a terminal window and issue the command:</p>
<p><code>sudo apt-get install clamav clamav-freshclam clamsmtp</code></p>
<p>The above command should also pick up all of the necessary dependencies. The installation will also start the clamav daemon. You will restart that momentarily</p>
<p><strong>Configuration</strong></p>
<p>Once installed you have some configurations to take care of. There are three files you are going to have to edit:</p>
<ul>
<li><span style="background-color: #ffffff"><strong>/etc/clamsmtpd.conf</strong></span></li>
<li><span style="background-color: #ffffff"><strong>/etc/postfix/main.cf</strong></span></li>
<li><span style="background-color: #ffffff"><strong>/etc/postfix/master.cf</strong></span></li>
</ul>
<p>The first file to configure is the <strong>clamsmtpd.conf </strong>file. The configuration in this file is simple. Look for the lines:</p>
<p><em>OutAddress: 10025</em></p>
<p><em><em>127.0.0.1:10026</em></em></p>
<p>Change them to:</p>
<p><em>OutAddress: 10026</em></p>
<p><em><em>127.0.0.1:10025</em></em></p>
<p>That&#8217;s it for the <strong>clamsmtpd.conf </strong>file. Now let&#8217;s move on to the heavier configurations.</p>
<p>Open up the <strong>/etc/postfix/main.cf </strong>file. Scroll down to the bottom of this file and add the following:</p>
<p><em>content_filter = scan:127.0.0.1:10025</em></p>
<p><em>receive_override_options = no_address_mappings</em></p>
<p>Save that file and now move on over to the <strong>/etc/postfix/master.cf</strong> file. Again, scroll down to the bottom of this file and add the following:</p>
<p><code># AV scan filter (used by content_filter)<br />
scan      unix  -       -       n       -       16      smtp<br />
-o smtp_send_xforward_command=yes<br />
# For injecting mail back into postfix from the filter<br />
127.0.0.1:10026 inet  n -       n       -       16      smtpd<br />
-o content_filter=<br />
-o receive_override_options=no_unknown_recipient_checks,no_header_body_checks<br />
-o smtpd_helo_restrictions=<br />
-o smtpd_client_restrictions=<br />
-o smtpd_sender_restrictions=<br />
-o smtpd_recipient_restrictions=permit_mynetworks,reject<br />
-o mynetworks_style=host<br />
-o smtpd_authorized_xforward_hosts=127.0.0.0/8</code></p>
<p>Save that file.</p>
<p><strong>Restarting</strong></p>
<p>The first thing you need to do is restart Postfix with the command:</p>
<p><em>sudo /etc/init.d/postfix restart</em></p>
<p>Once that has restarted you need to restart clamsmtpd with the command:</p>
<p><em>sudo /etc/init.d/clamsmtpd restart</em></p>
<p>Now, if nothing has gone horribly wrong, you should have a virus protected Postfix mail server.</p>
<p><strong>Updating signatures</strong></p>
<p>You should never go without updating your virus signatures. This is critical for keeping your mail server virus-free as new viruses are created or old viruses mutate. Fortunately ClamAV has its own tool for this. You will need to go back to that terminal window and issue the command:</p>
<p><em>sudo freshclam</em></p>
<p>Which will update the signatures.</p>
<p>You might even add the <em>freshclam</em> command into the root users crontab for regular signature updates.</p>
<p><strong>Final thoughts</strong></p>
<p>Your Postfix mail server is getting better and stronger each day. Adding anti-virus is a critical step in the grand scheme of Postfix things. In our next addition to the Postfix series, we will add Spamassassin for anti-spam measures.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/postfix/" title="Postfix" rel="tag">Postfix</a>, <a href="http://www.ghacks.net/tag/virus-definitions/" title="virus definitions" rel="tag">virus definitions</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/04/10/what-is-your-security-concept/" title="What is your Security Concept ? (April 10, 2007)">What is your Security Concept ?</a> (9)</li>
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/10/26/stop-spam-in-postfix-with-spamassassin/" title="Stop SPAM in Postfix with Spamassassin (October 26, 2009)">Stop SPAM in Postfix with Spamassassin</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/01/11/secure-windows-xp/" title="Secure Windows XP (January 11, 2007)">Secure Windows XP</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/09/23/mail-relaying-made-simple-with-postfix/" title="Mail relaying made simple with Postfix (September 23, 2009)">Mail relaying made simple with Postfix</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/25/add-antivirus-to-postfix-with-clamav/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>KlamAV: Outstanding KDE front-end for Linux anti-virus</title>
		<link>http://www.ghacks.net/2009/06/18/klamav-outstanding-kde-front-end-for-linux-anti-virus/</link>
		<comments>http://www.ghacks.net/2009/06/18/klamav-outstanding-kde-front-end-for-linux-anti-virus/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 20:54:16 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[ClamAV]]></category>
		<category><![CDATA[KlamAV]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13684</guid>
		<description><![CDATA[You don&#8217;t usually here that phrase spoken &#8220;Linux anti-virus&#8221;. But it does exist. One of the more popular Linux anti-virus tools is ClamAV. But to most users (especially new users) ClamAV is a bit challenging to use. That is where KlamAV comes in. KlamAV does an outstanding job of making ClamAV a user-friendly tool.
Unlike ClamAV, [...]]]></description>
			<content:encoded><![CDATA[<p>You don&#8217;t usually here that phrase spoken &#8220;Linux anti-virus&#8221;. But it does exist. One of the more popular Linux anti-virus tools is ClamAV. But to most users (especially new users) ClamAV is a bit challenging to use. That is where <a title="KlamAV" href="http://klamav.sourceforge.net/klamavwiki/index.php/Main_Page" target="_blank">KlamAV</a> comes in. KlamAV does an outstanding job of making ClamAV a user-friendly tool.</p>
<p>Unlike ClamAV, KlamAV is a GUI tool. So there&#8217;s no need for opening up a terminal window and learning commands in order to scan either KMail or Evolution for viruses. And KlamAV is full of user-friendly features. Let&#8217;s take a look at how this gui tool can give you and your users even more of a security edge than they already have thanks to the Linux operating system.</p>
<p><span id="more-13684"></span><strong>Getting and installing</strong></p>
<p>More than likely KlamAV and its requisite ClamAV are in your distributions repositories. So if you open up your Add/Remove Applications tool you can install KlamAV using the following steps:</p>
<ol>
<li>Do a search for &#8220;klamav&#8221; (no quotes).</li>
<li>Select the resulting KlamAV listing.</li>
<li>Click Apply.</li>
<li>OK the dependencies.</li>
<li>Sit back and watch the installation happen.</li>
</ol>
<p>When the install completes, you are ready for your first KlamAV run.</p>
<p><strong>First run</strong></p>
<p>When you run KlamAV for the first time you have to walk through an easy-to-use setup wizard. This wizard will have you locate your signature database and quarantine locations (the defaults will work) and that&#8217;s it. When the wizard completes you will more than likely be told your installation (or signatures) is out of date.</p>
<div id="attachment_13685" class="wp-caption alignleft" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/06/klamav.png"><img class="size-medium wp-image-13685" src="http://www.ghacks.net/wp-content/uploads/2009/06/klamav-500x319.png" alt="Figure 1" width="300" height="191" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>As soon as KlamAV is running for the first time you will see the Update tab of the KlamAV window (see Figure 1). Automatically a new virus definition will begin downloading. Once that is finished you are ready to start scanning.</p>
<p>The first thing you want to do is go to the Email Protection tab and select your email client. As stated earlier, KlamAV can protect both Kmail and Evolution. If you use Kmail KlamAV can set it up automatically. If you use Evolution you have to set up a filter in Evolution to pipe incoming and outgoing mail through klammail. Once that filter is set up you have to create a second filter to send any email with &#8220;virus-found&#8221; in the header to a quarantine folder.</p>
<p>If you click on the Scan tab you will notice a directory tree. From here you can scan files with the help of the kernel module Dazuko. So you can manually scan your directories for viruses.</p>
<p><strong>Auto update</strong></p>
<p>You can also set KlamAV to automatically update your virus database (definitions).  To do this go to the Update tab and then click on the &#8220;Update Virus Database Automatically&#8221; and then select how often you want it to be automatically updated. You can also manually update the database by clicking the Update Now button.</p>
<p><strong>But why?</strong></p>
<p>You may be asking yourself &#8220;why employ a virus scanner on Linux when the vast majority of viruses can&#8217;t harm my machine?&#8221; That is true, but those viruses can harm all of those people you might forward an email to who use Windows. To protect them why not scan all of your outgoing email. Better safe than sorry in that regard.</p>
<p><strong>Final thoughts</strong></p>
<p>Even if you are running the Linux operating system, you would do well to employ some form of anti-virus, even if only to protect users you forward email to. And if you do look for a Linux anti-virus, KlamAV is one of the best.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/clamav/" title="ClamAV" rel="tag">ClamAV</a>, <a href="http://www.ghacks.net/tag/klamav/" title="KlamAV" rel="tag">KlamAV</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/18/klamav-outstanding-kde-front-end-for-linux-anti-virus/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Anti Virus Software Removal Tools Overview</title>
		<link>http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/</link>
		<comments>http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 08:00:36 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[anti virus software]]></category>
		<category><![CDATA[antivir]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[avast]]></category>
		<category><![CDATA[avg]]></category>
		<category><![CDATA[kaspersky]]></category>
		<category><![CDATA[mcafee]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[norton]]></category>
		<category><![CDATA[panda]]></category>
		<category><![CDATA[removal]]></category>
		<category><![CDATA[symantec]]></category>
		<category><![CDATA[virus software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/</guid>
		<description><![CDATA[Uninstalling anti virus software on a computer system is sometimes not a trivial task as they tend to add their components deep into the system to provide protection from various threats PC users face these days. The need for anti virus software removal tools arises if the default uninstallation fails. This usually leads to a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/anti_virus_software.jpg" alt="anti virus software" title="anti virus software" width="128" height="118" class="alignleft size-full wp-image-12041" />Uninstalling anti virus software on a computer system is sometimes not a trivial task as they tend to add their components deep into the system to provide protection from various threats PC users face these days. The need for anti virus software removal tools arises if the default uninstallation fails. This usually leads to a messed up computer system that could throw all kinds of errors at the user. It could also break other anti virus software either during installation or usage.</p>
<p><span id="more-12043"></span>So called anti virus removal tools have been created to effectively remove traces of anti virus software from the computer system. They usually run a series of processes that delete files, Registry settings and other parameters or options that have been installed by the antivirus software during installation.</p>
<p>Below is a collection of anti virus software removal tools that have been created by the developers of the programs to aid their users if they encounter difficulties uninstalling it. </p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2009/04/anti_virus_software_linux-500x257.png" alt="anti virus software linux" title="anti virus software linux" width="500" height="257" class="alignnone size-medium wp-image-12042" /></p>
<ul>
<li><a href="http://dl.antivir.de/down/windows/registrycleaner.zip">AntiVir Registry Cleaner</a></li>
<li><a href="http://www.avast.com/eng/avast-uninstall-utility.html">Avast Removal Tool</a></li>
<li><a href="http://www.grisoft.com/download-tools">AVG Remover</a></li>
<li><a href="http://www.bitdefender.com/files/KnowledgeBase/file/BitDefender_Uninstall_Tool.EXE">Bitdefender Uninstallation Tool</a></li>
<li><a href="http://support.f-secure.com/enu/corporate/downloads/removeav.shtml">F-Secure Uninstallation Tool</a></li>
<li><a href="http://support.kaspersky.com/faq/?qid=208279463">Kaspersky Removal Tool</a></li>
<li><a href="http://download.mcafee.com/products/licensed/cust_support_patches/MCPR.exe">McAfee Consumer Products Removal </a></li>
<li><a href="http://download.microsoft.com/download/4/c/b/4cb845e7-1076-437b-852a-7842a8ab13c8/OneCareCleanUp.exe">Microsoft One Care Uninstall Cleanup Tool</a></li>
<li><a href="http://service1.symantec.com/Support/tsgeninfo.nsf/docid/2005033108162039">Norton Removal Tool</a></li>
<li><a href="http://www.epcdoctor.com/panda/software/uninst08.exe">Panda Anti Virus 2008 Uninstaller</a></li>
<li><a href="http://symantec.netvision.net.il/Enterprise/SAV10/SCSCleanWipe.zip">Symantec Corporate Products Clean Up Tool</a></li>
</ul>
<p>Did we miss antivirus software uninstallation tools in the list? Let us know in the comments.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/anti-virus-software/" title="anti virus software" rel="tag">anti virus software</a>, <a href="http://www.ghacks.net/tag/antivir/" title="antivir" rel="tag">antivir</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/avast/" title="avast" rel="tag">avast</a>, <a href="http://www.ghacks.net/tag/avg/" title="avg" rel="tag">avg</a>, <a href="http://www.ghacks.net/tag/kaspersky/" title="kaspersky" rel="tag">kaspersky</a>, <a href="http://www.ghacks.net/tag/mcafee/" title="mcafee" rel="tag">mcafee</a>, <a href="http://www.ghacks.net/tag/microsoft/" title="microsoft" rel="tag">microsoft</a>, <a href="http://www.ghacks.net/tag/norton/" title="norton" rel="tag">norton</a>, <a href="http://www.ghacks.net/tag/panda/" title="panda" rel="tag">panda</a>, <a href="http://www.ghacks.net/tag/removal/" title="removal" rel="tag">removal</a>, <a href="http://www.ghacks.net/tag/symantec/" title="symantec" rel="tag">symantec</a>, <a href="http://www.ghacks.net/tag/virus-software/" title="virus software" rel="tag">virus software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/09/25/how-to-run-commercial-antivirus-software-without-paying-for-it/" title="How To Run Commercial Antivirus Software Without Paying For It (September 25, 2009)">How To Run Commercial Antivirus Software Without Paying For It</a> (21)</li>
	<li><a href="http://www.ghacks.net/2009/01/31/avg-remover/" title="AVG Remover (January 31, 2009)">AVG Remover</a> (10)</li>
	<li><a href="http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/" title="AVG-Antivirus will continue to be free (December 18, 2006)">AVG-Antivirus will continue to be free</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/20/mcafee-consumer-product-removal-tool/" title="McAfee Consumer Product Removal Tool (August 20, 2008)">McAfee Consumer Product Removal Tool</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/" title="Kaspersky Anti-Virus KAVRemover (November 8, 2008)">Kaspersky Anti-Virus KAVRemover</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>AVG 8 Update Marked User32.dll As Virus Infected</title>
		<link>http://www.ghacks.net/2008/11/10/avg-8-update-marked-user32dll-as-virus-infected/</link>
		<comments>http://www.ghacks.net/2008/11/10/avg-8-update-marked-user32dll-as-virus-infected/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 14:06:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[avg]]></category>
		<category><![CDATA[avg anti-virus]]></category>
		<category><![CDATA[avg false positives]]></category>
		<category><![CDATA[avg restore]]></category>
		<category><![CDATA[avg user32.dll]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[virusscanner]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8190</guid>
		<description><![CDATA[An update of the popular anti-virus software program AVG let a false positive slip through quality control which caused widespread panic on the Internet by desperate AVG users looking for help. The update detected a virus, more precisely Trojan Horse PSW.BANKER4.APSA, in the important system file user32.dll in Windows XP. User32.dll allows programs to implement [...]]]></description>
			<content:encoded><![CDATA[<p>An update of the popular anti-virus software program AVG let a false positive slip through quality control which caused widespread panic on the Internet by desperate AVG users looking for help. The update detected a virus, more precisely Trojan Horse PSW.BANKER4.APSA, in the important system file user32.dll in Windows XP. User32.dll allows programs to implement a graphical user interface and is considered a core component of the Windows XP operating system.</p>
<p>Users who followed the advice of the AVG software program were greeted with a Blue Screen of Death as soon as they clicked on the Heal button to remove the virus. Any attempts to boot the system afterwards failed because of the missing file. AVG was quick to react and released another update that corrected the issue.</p>
<p>This does not help those users who already cleaned the file in Windows. Here is the official information on how to fix the system for those users:</p>
<p><span id="more-8190"></span><br />
<blockquote>The system can be restored by following the steps in one of the comments on forum (using safe mode or recovery console and copying c:\windows\system32\dllcache\user32.dll into the right location)</p>
<p>If you need to restore deleted files from AVG Virus Vault you can do it this way:</p>
<p>- Open AVG user interface.<br />
- Choose &#8220;Virus Vault&#8221; option from the &#8220;History&#8221; menu.<br />
- Locate the file that was incorrectly removed and select it (one click).<br />
- Click on the &#8220;Restore&#8221; button. </p></blockquote>
<p>A possibility would have been to cross-check the detected virus with another anti-virus software or an online virus scanner to be sure that it is indeed infected before deleting the file.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/avg/" title="avg" rel="tag">avg</a>, <a href="http://www.ghacks.net/tag/avg-anti-virus/" title="avg anti-virus" rel="tag">avg anti-virus</a>, <a href="http://www.ghacks.net/tag/avg-false-positives/" title="avg false positives" rel="tag">avg false positives</a>, <a href="http://www.ghacks.net/tag/avg-restore/" title="avg restore" rel="tag">avg restore</a>, <a href="http://www.ghacks.net/tag/avg-user32dll/" title="avg user32.dll" rel="tag">avg user32.dll</a>, <a href="http://www.ghacks.net/tag/trojan/" title="trojan" rel="tag">trojan</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a>, <a href="http://www.ghacks.net/tag/virusscanner/" title="virusscanner" rel="tag">virusscanner</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2005/12/02/clam-win-antivirus/" title="Clam Win Antivirus (December 2, 2005)">Clam Win Antivirus</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/" title="AVG-Antivirus will continue to be free (December 18, 2006)">AVG-Antivirus will continue to be free</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/01/06/antivirus-test/" title="Antivirus Test (January 6, 2006)">Antivirus Test</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/05/20/what-you-should-do-after-buying-a-new-computer-system/" title="What You Should Do After Buying A New Computer System (May 20, 2009)">What You Should Do After Buying A New Computer System</a> (18)</li>
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/10/avg-8-update-marked-user32dll-as-virus-infected/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Kaspersky Anti-Virus KAVRemover</title>
		<link>http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/</link>
		<comments>http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 17:07:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[kaspersky]]></category>
		<category><![CDATA[kaspersky anti-virus]]></category>
		<category><![CDATA[kaspersky remover]]></category>
		<category><![CDATA[kaspersky tools]]></category>
		<category><![CDATA[kaspersky uninstall]]></category>
		<category><![CDATA[kavremover]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8161</guid>
		<description><![CDATA[Is it a good or a bad sign if a company starts to create specific uninstallers for their software programs to remove them complete from computer systems they had been installed on? A joke comes to mind that is saying that the Norton Removal Tool is the best product of all Norton applications. Kaspersky apparently [...]]]></description>
			<content:encoded><![CDATA[<p>Is it a good or a bad sign if a company starts to create specific uninstallers for their software programs to remove them complete from computer systems they had been installed on? A joke comes to mind that is saying that the Norton Removal Tool is the best product of all Norton applications. Kaspersky apparently has their own removal tool called <a href="http://support.kaspersky.com/downloads/products2009/kavremover9.zip">KAVRemover</a> (via <a href="http://www.megaleecher.net/Uninstall_Kaspersky">Megaleecher</a>) which can remove specific Kaspersky products from a computer system.</p>
<p>The removal tool is compatible with Kaspersky Anti-Virus 6.0\7.0\2009, Kaspersky Internet Security 6.0\7.0\2009, Kaspersky Anti-Virus 6.0 for Windows Workstations and Kaspersky Anti-Virus 6.0 for Windows Servers. If the removal tool is run on a 64-bit operating system it can only remove Kaspersky Anti-Virus 2009 and Kaspersky Internet Security 2009.</p>
<p>KAVRemover can be executed right after the download has finished. It opens up a captcha that has to be identified correctly before the removal starts. A reboot of the computer is required after the removal process has ended.</p>
<p><span id="more-8161"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/11/kaspersky_anti-virus_remover.jpg" alt="kaspersky anti-virus remover" title="kaspersky anti-virus remover" width="431" height="180" class="alignnone size-medium wp-image-8162" /></p>
<p>The product check can be skipped at the command line in case there are traces left on the system of a Kaspersky product that the check did not discover automatically.</p>
<p>The syntax would be to run kavremover9.exe and add the product that should be removed as a parameter. Here is the parameter list:</p>
<ul>
<li>kav6 </li>
<li>kav7 </li>
<li>kav2009</li>
<li>kav2009&#215;64</li>
<li>kis6</li>
<li>kis7</li>
<li>kis2009</li>
<li>kis2009&#215;64</li>
<li>kav6fs</li>
<li>kav6wks</li>
</ul>
<p>The command <code>kavremover9.exe kis2009</code> would remove all traces of Kaspersky Internet Security 2009 from the system.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/kaspersky/" title="kaspersky" rel="tag">kaspersky</a>, <a href="http://www.ghacks.net/tag/kaspersky-anti-virus/" title="kaspersky anti-virus" rel="tag">kaspersky anti-virus</a>, <a href="http://www.ghacks.net/tag/kaspersky-remover/" title="kaspersky remover" rel="tag">kaspersky remover</a>, <a href="http://www.ghacks.net/tag/kaspersky-tools/" title="kaspersky tools" rel="tag">kaspersky tools</a>, <a href="http://www.ghacks.net/tag/kaspersky-uninstall/" title="kaspersky uninstall" rel="tag">kaspersky uninstall</a>, <a href="http://www.ghacks.net/tag/kavremover/" title="kavremover" rel="tag">kavremover</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/" title="Download AVG 7.5 Professional for free (December 27, 2007)">Download AVG 7.5 Professional for free</a> (24)</li>
	<li><a href="http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/" title="Anti Virus Software Removal Tools Overview (April 16, 2009)">Anti Virus Software Removal Tools Overview</a> (10)</li>
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/03/25/norton-security-scan/" title="Norton Security Scan (March 25, 2009)">Norton Security Scan</a> (17)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Kaspersky Rescue Disk</title>
		<link>http://www.ghacks.net/2008/06/29/kaspersky-rescue-disk/</link>
		<comments>http://www.ghacks.net/2008/06/29/kaspersky-rescue-disk/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 15:15:53 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[kaspersky]]></category>
		<category><![CDATA[Kaspersky Rescue Disk]]></category>
		<category><![CDATA[rescue disk]]></category>
		<category><![CDATA[trojans]]></category>
		<category><![CDATA[worms]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5142</guid>
		<description><![CDATA[Malicious software, like viruses or trojans, can damage a system in a way that it becomes impossible to boot into the operating system that was infected by the software. The Kaspersky Rescue Disk is a standalone bootable CD that can be used to scan the system for malicious software without having to boot into the [...]]]></description>
			<content:encoded><![CDATA[<p>Malicious software, like viruses or trojans, can damage a system in a way that it becomes impossible to boot into the operating system that was infected by the software. The Kaspersky Rescue Disk is a standalone bootable CD that can be used to scan the system for malicious software without having to boot into the operating system first. </p>
<p>The approach has a few advantages but also a disadvantage. The advantage is obviously that you can use it to remove known viruses, trojans, worms and other malicious software even if the computer cannot be booted into the operating system anymore. And since it is a standalone client it is not dependent on an installed anti-virus client but can be used on any computer that can be booted from CD. This also means that the program is independent from the installed operating system.</p>
<p>The disadvantage of the approach is that the virus definitions cannot be updated that easily and that it normally means that the full boot disk would have to be downloaded and burned to CD again meaning that this would have to be done regularly to stay up to date.</p>
<p><span id="more-5142"></span>The good news is that you can download the Kaspersky Rescue Disk freely from an Kaspersky FTP and burn it to CD or DVD using a CD burning software like Nero.</p>
<p>The computer has to boot from the media and the boot sequence can be set in the computer BIOS. Make sure that the computer checks the DVD drive for a bootable device before it pulls the data from the hard drives.</p>
<p>The interface of the Rescue Disk is straightforward. It basically allows you to scan the computer for malicious software and offers ways to remove any that are found. This does not give a guarantee that the computer can be booted again after the cleanup though. A damaged file normally does not get repaired by anti-virus software.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/kaspersky/" title="kaspersky" rel="tag">kaspersky</a>, <a href="http://www.ghacks.net/tag/kaspersky-rescue-disk/" title="Kaspersky Rescue Disk" rel="tag">Kaspersky Rescue Disk</a>, <a href="http://www.ghacks.net/tag/rescue-disk/" title="rescue disk" rel="tag">rescue disk</a>, <a href="http://www.ghacks.net/tag/security/" title="Security" rel="tag">Security</a>, <a href="http://www.ghacks.net/tag/trojans/" title="trojans" rel="tag">trojans</a>, <a href="http://www.ghacks.net/tag/worms/" title="worms" rel="tag">worms</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/03/12/windows-worms-door-cleaner/" title="Windows Worms Door Cleaner (March 12, 2006)">Windows Worms Door Cleaner</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/07/05/gernova-keylock/" title="Gernova Keylock (July 5, 2008)">Gernova Keylock</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2007/12/29/why-hackers-take-advantage-of-global-events/" title="Why Hackers take advantage of global events (December 29, 2007)">Why Hackers take advantage of global events</a> (0)</li>
	<li><a href="http://www.ghacks.net/2008/01/17/trend-micro-rubotted/" title="Trend Micro RUBotted (January 17, 2008)">Trend Micro RUBotted</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/29/kaspersky-rescue-disk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Disable Automatic Virus Scanning in Firefox 3</title>
		<link>http://www.ghacks.net/2008/06/04/disable-automatic-virus-scanning-in-firefox-3/</link>
		<comments>http://www.ghacks.net/2008/06/04/disable-automatic-virus-scanning-in-firefox-3/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 08:38:43 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[firefox 3]]></category>
		<category><![CDATA[firefox 3 anti-virus]]></category>
		<category><![CDATA[firefox 3 features]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4798</guid>
		<description><![CDATA[Firefox 3 is making use of built in virus scanners to scan downloads automatically after they have been fully downloaded to the system. This feature is only available on Windows and if an anti-virus application is installed on the user&#8217;s system. While this feature might be a good way to avoid downloading malicious files it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ghacks.net/tag/firefox/">Firefox</a> 3 is making use of built in virus scanners to scan downloads automatically after they have been fully downloaded to the system. This feature is only available on Windows and if an anti-virus application is installed on the user&#8217;s system. While this feature might be a good way to avoid downloading malicious files it might on the other hand be the source of complications like delays, freezes or that harmless files (false positives) are blocked by the anti-virus software.</p>
<p>I personally do not think that such a feature is necessary due to the real-time protection that most anti-virus applications provide which will scan the file eventually before it can be executed. </p>
<p>The Mozilla team created a new preference that gives Windows users the option to disable the automatic virus scanning in Firefox which comes in handy if you have a anti-virus software installed but do not want it to scan the downloads or encounter difficulties because of this.</p>
<p><span id="more-4798"></span>Type about:config in the Firefox location bar and filter for the string <strong>browser.download.manager.scanWhenDone</strong>. The default value of that parameter is true which means that scans will be done whenever a file is downloaded. Setting it to false will disable the automatic virus scanning in Firefox 3.</p>
<p>During research I came upon another error that is connected to the Download Statusbar extension. If you receive the error message <strong>Anti-virus Program not found</strong> after a download completes in Firefox 3 and have the Download Statusbar extension installed you need to set the path to the anti-virus program manually in the Download Statusbar options.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/firefox/" title="firefox" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/firefox-3/" title="firefox 3" rel="tag">firefox 3</a>, <a href="http://www.ghacks.net/tag/firefox-3-anti-virus/" title="firefox 3 anti-virus" rel="tag">firefox 3 anti-virus</a>, <a href="http://www.ghacks.net/tag/firefox-3-features/" title="firefox 3 features" rel="tag">firefox 3 features</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/07/29/firefox-31-improvements/" title="Firefox 3.1 Improvements (July 29, 2008)">Firefox 3.1 Improvements</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/06/08/firefox-3-feature-overview-screencast/" title="Firefox 3 Feature Overview Screencast (June 8, 2008)">Firefox 3 Feature Overview Screencast</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/03/27/web-browser-firefox-308/" title="Web Browser: Firefox 3.0.8 (March 27, 2009)">Web Browser: Firefox 3.0.8</a> (13)</li>
	<li><a href="http://www.ghacks.net/2009/03/04/web-browser-firefox-307/" title="Web Browser: Firefox 3.0.7 (March 4, 2009)">Web Browser: Firefox 3.0.7</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/06/19/trim-down-the-location-bar-in-firefox-3-to-show-results-in-one-line/" title="Trim down the Location Bar in Firefox 3 to show results in one line (June 19, 2008)">Trim down the Location Bar in Firefox 3 to show results in one line</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/04/disable-automatic-virus-scanning-in-firefox-3/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Avira AntiVir Personal 8</title>
		<link>http://www.ghacks.net/2008/04/15/avira-antivir-personal-8/</link>
		<comments>http://www.ghacks.net/2008/04/15/avira-antivir-personal-8/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 13:27:41 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivir 8]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[avira]]></category>
		<category><![CDATA[free av]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3702</guid>
		<description><![CDATA[Avira AntiVir Personal 8 was released today and I thought it would be nice to write about this new release since AntiVir is one of the most popular free antivirus applications available. The most important question is of course about the new features in this new release of AntiVir. The homepage of the developer Avira [...]]]></description>
			<content:encoded><![CDATA[<p>Avira AntiVir Personal 8 was released today and I thought it would be nice to write about this new release since AntiVir is one of the most popular free antivirus applications available. The most important question is of course about the new features in this new release of AntiVir. The homepage of the developer Avira is unfortunately not very informative when it comes to those information, the table that displays the features of the free version and the two commercial versions of AntiVir is showing several entries that are new.</p>
<p>The personal free edition of <a href="http://www.free-av.com/en/index.html">AntiVir 8</a> has two new features or improvements listed on that page. The first is a raised scan speed which is always nice obviously and the second a redesigned visual appearance. The other versions of AntiVir contain a new system to create Rescue-CDs and the Security Suite a new option to backup data.</p>
<p>Windows Vista Service Pack 1 is supported now as well and there is an option to choose between software updates and updates of the virus definition lists. The size of the download is roughly 22 Megabytes and it is still possible to perform a software update right after installation which I would recommend.</p>
<p><span id="more-3702"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivir-8/" title="antivir 8" rel="tag">antivir 8</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/avira/" title="avira" rel="tag">avira</a>, <a href="http://www.ghacks.net/tag/free-av/" title="free av" rel="tag">free av</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/01/12/test-avira-antivir-personaledition-premium-for-6-months/" title="Test Avira AntiVir PersonalEdition Premium for 6 months (January 12, 2008)">Test Avira AntiVir PersonalEdition Premium for 6 months</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/" title="Kaspersky Anti-Virus KAVRemover (November 8, 2008)">Kaspersky Anti-Virus KAVRemover</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/" title="Download AVG 7.5 Professional for free (December 27, 2007)">Download AVG 7.5 Professional for free</a> (24)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/04/15/avira-antivir-personal-8/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Free Kaspersky Anti-Virus for 1 year</title>
		<link>http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/</link>
		<comments>http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 13:03:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[kaspersky]]></category>
		<category><![CDATA[trojans]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/</guid>
		<description><![CDATA[I have the feeling that this offer wont last long so you better hurry up. A free registration at the Chinese Kaspersky forum will reward the user with a Kaspersky Anti-Virus key that is valid for one year. The only catch, if you can speak of a catch, is that the website is in Chinese and that users have to navigate and register an account on that website.]]></description>
			<content:encoded><![CDATA[<p>I have the feeling that this offer wont last long so you better hurry up. A free registration at the Chinese Kaspersky <a href="http://bbs.kaspersky.com.cn/register.php">forum</a> will reward the user with a Kaspersky Anti-Virus key that is valid for one year. The only catch, if you can speak of a catch, is that the website is in Chinese and that users have to navigate and register an account on that website.</p>
<p>Kaspersky Anti-Virus sells for $39.95 regularly and is considered by many magazines to be one of the best antivirus solutions available. The key works with the English version of Kaspersky as well so don&#8217;t worry about that. The key will be send to your inbox after finishing the registration at the Chinese forum.</p>
<p><a href="http://www.raymond.cc/blog/archives/2008/02/05/free-1-year-kaspersky-anti-virus-genuine-license-key-for-everyone/">Raymond</a> posted a nice registration walkthrough and I recommend that you check out his website and use it as a guide to make your way through the registration process. Once you got the serial number you can download Kaspersky Antivirus 7.0 and use the serial number that was send to you to activate the software.</p>
<p><span id="more-3120"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/kaspersky/" title="kaspersky" rel="tag">kaspersky</a>, <a href="http://www.ghacks.net/tag/trojans/" title="trojans" rel="tag">trojans</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/06/29/kaspersky-rescue-disk/" title="Kaspersky Rescue Disk (June 29, 2008)">Kaspersky Rescue Disk</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/" title="Kaspersky Anti-Virus KAVRemover (November 8, 2008)">Kaspersky Anti-Virus KAVRemover</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/09/25/how-to-run-commercial-antivirus-software-without-paying-for-it/" title="How To Run Commercial Antivirus Software Without Paying For It (September 25, 2009)">How To Run Commercial Antivirus Software Without Paying For It</a> (21)</li>
	<li><a href="http://www.ghacks.net/2008/03/17/free-mcafee-virusscan-plus-2008/" title="Free McAfee VirusScan Plus 2008 (March 17, 2008)">Free McAfee VirusScan Plus 2008</a> (24)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>Download AVG 7.5 Professional for free</title>
		<link>http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/</link>
		<comments>http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 09:46:25 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/</guid>
		<description><![CDATA[It seems like Grisoft, the developers of AVG Anti-Virus, are giving away a copy of AVG 7.5 Professional for free in a promotion that ends January 17th. The retail price for this product is $29.95 for a one year subscription. There is no word on the page with the offer for how long it will be possible to update the software to the latest professional version.]]></description>
			<content:encoded><![CDATA[<p>It seems like Grisoft, the developers of AVG Anti-Virus, are giving away a copy of <a href="http://www.computeractive.co.uk/avg/index">AVG 7.5 Professional</a> for free in a promotion that ends January 17th. The retail price for this product is $29.95 for a one year subscription. There is no word on the page with the offer for how long it will be possible to update the software to the latest professional version.</p>
<p>The offers is only valid for non-commercial use and good for one PC at a time. I guess there is nothing wrong in downloading AVG 7.5 Pro for your computer and that of another user.</p>
<p>The download link is slow. I had a hard time downloading the file and the website seems to be going down / become unresponsive frequently and I strongly suggest that you use a Download Manager to download the file. Some mirrors have been posted at <a href="http://cybernetnews.com/2007/12/26/free-antivirus-avg-75-professional/">Cybernet news</a> which is a respected site. The links point to Rapidshare and Megaupload however and I would not use them.</p>
<p><span id="more-2658"></span>The size of the download is 37 Megabytes and I&#8217;m currently downloading it with a speed of 20 K in Orbit Downloader. I will install AVG 7.5 Pro after the download finishes and update this article if any more information come up.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/11/08/kaspersky-anti-virus-kavremover/" title="Kaspersky Anti-Virus KAVRemover (November 8, 2008)">Kaspersky Anti-Virus KAVRemover</a> (9)</li>
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2009/03/25/norton-security-scan/" title="Norton Security Scan (March 25, 2009)">Norton Security Scan</a> (17)</li>
	<li><a href="http://www.ghacks.net/2009/06/17/microsoft-security-essentials-leaks/" title="Microsoft Security Essentials Leaks (June 17, 2009)">Microsoft Security Essentials Leaks</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/09/22/microsoft-security-essentials-final-announced/" title="Microsoft Security Essentials Final Announced (September 22, 2009)">Microsoft Security Essentials Final Announced</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/12/27/download-avg-75-professional-for-free/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Check a File using multiple antivirus engines</title>
		<link>http://www.ghacks.net/2007/11/14/check-a-file-using-multiple-antivirus-engines/</link>
		<comments>http://www.ghacks.net/2007/11/14/check-a-file-using-multiple-antivirus-engines/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 19:17:44 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[Spyware]]></category>
		<category><![CDATA[trojans]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/11/14/check-a-file-using-multiple-antivirus-engines/</guid>
		<description><![CDATA[If you need to quickly check a file for malicious code that you downloaded then Virus Total might be something you might want to take a closer look at.This service stands out because it uses multiple antivirus engines instead of just one or two. The antivirus engines list looks pretty impressive because it contains 32 engines.]]></description>
			<content:encoded><![CDATA[<p>If you need to quickly check a file for malicious code that you downloaded then Virus Total might be something you might want to take a closer look at.This service stands out because it uses multiple antivirus engines instead of just one or two. The antivirus engines list looks pretty impressive because it contains 32 engines.</p>
<p>I was not able to find a engine that I knew of that was not listed, all the major players like Symantec, AVG, Kapersky and Avira are listed which means that the file will get a very special treatment. Even though the file gets scanned by those 32 engines it is no guarantee that it does not contain a virus. No script or software can give you that guarantee but this looks like the best way to scan a file for malicious code and the possibility of success is greater with it.</p>
<p>There does not seem to be a file size limit, at least nothing is mentioned on their pages regarding a file size limit. I suspect that big files will result in an error message after a certain time.</p>
<p><span id="more-2277"></span>Files can be uploaded using SSL for increased security and it can be checked that the file will not be distributed to the antivirus companies if a virus is found. This is an important option that should be checked most of the time because of privacy issues.</p>
<p><a href="http://www.virustotal.com/">Virus Total</a> offers another way to check files for malicious code. You can send them an email to scan@virustotal.com with SCAN (or SCAN- if you do not want to distribute the sample) and no body text. Attach the file to the email and make sure that it does not exceed 10 Megabytes.</p>
<p>A report will be send after the scan to the email that send the file. Users can also download a shell extension to send files directly from the context menu to Virus Total. Found the link at <a href="http://www.makeuseof.com/tag/cool-websites-and-tips-edition-102/">Make Use Of</a>.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/spyware/" title="Spyware" rel="tag">Spyware</a>, <a href="http://www.ghacks.net/tag/trojans/" title="trojans" rel="tag">trojans</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/04/10/what-is-your-security-concept/" title="What is your Security Concept ? (April 10, 2007)">What is your Security Concept ?</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/06/29/kaspersky-rescue-disk/" title="Kaspersky Rescue Disk (June 29, 2008)">Kaspersky Rescue Disk</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/" title="20 Minute Guide to Pc Security (February 14, 2007)">20 Minute Guide to Pc Security</a> (0)</li>
	<li><a href="http://www.ghacks.net/2006/03/12/windows-worms-door-cleaner/" title="Windows Worms Door Cleaner (March 12, 2006)">Windows Worms Door Cleaner</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/11/14/check-a-file-using-multiple-antivirus-engines/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is your Security Concept ?</title>
		<link>http://www.ghacks.net/2007/04/10/what-is-your-security-concept/</link>
		<comments>http://www.ghacks.net/2007/04/10/what-is-your-security-concept/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 12:06:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[encrypt hard disks]]></category>
		<category><![CDATA[rootkit]]></category>
		<category><![CDATA[secure computer]]></category>
		<category><![CDATA[security concept]]></category>
		<category><![CDATA[Spyware]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/04/10/what-is-your-security-concept/</guid>
		<description><![CDATA[Many novice users use the software that comes preinstalled with their purchased computer and rely on these to be safe from the dangers that lurk on every corner in the Internet. Trojans, Malware, Spyware, Phishing and worse are threats that every user should know about and be able to deal with. It is pretty easy to detail my security concept, it is not the most secure on earth but even those are not secure at all. If you want security do not connect to the Internet at all, that is my advise.]]></description>
			<content:encoded><![CDATA[<p>Many novice users use the software that comes preinstalled with their purchased computer and rely on these to be safe from the dangers that lurk on every corner in the Internet. Trojans, Malware, Spyware, Phishing and worse are threats that every user should know about and be able to deal with. It is pretty easy to detail my security concept, it is not the most secure on earth but even those are not secure at all. If you want security do not connect to the Internet at all, that is my advise.</p>
<p>Let me explain my security concept and ask some questions about yours afterwards. The most important part in my security concept is my knowledge. I know what I should do and what I should not do on the Internet. I know how phishing emails look like, I know when I should be doubtful of files that I want to execute and I do know how to select passwords that can not be bruteforced in a short period of time.</p>
<p><span id="more-1402"></span></p>
<p><strong>Firewall:</strong></p>
<p>I do rely on a hardware firewall that is properly configured keeping many attacks away from my computer. I do however run no software firewall because I think this is a) not necessary because of the hardware firewall and b) could lead to attacks that are not there without it. Every piece of software installed on my system is a potential way to hack my system.</p>
<p><strong>Anti virus:</strong></p>
<p>I use the free AntiVir as a virus scanner. This is probably not the best choice in the world but good free scanners are rare. I keep it running all the time with automatic updates. Nothing compared to commercial products that update once every 30 minutes but good enough to react on all threats that make it on my system. My Knowledge prevents most possible ways of attacking my system with viruses and trojans anyway.</p>
<p><strong>Encryption:</strong></p>
<p>I have two hard drives with more than 500 gigabytes of encrypted data using the excellent Open Source software True Crypt. This is important to prevent local access to my files as long as the hard drives have not been mounted. </p>
<p><strong>Spyware:</strong></p>
<p>Something that I feel is overrated. I tend to run Ad-Aware and Spybot every other week to scan my system but I normally find some tracking cookies, that is all.</p>
<p><strong>Rootkits:</strong></p>
<p>The same can be said for Rootkits. I tend to use Rootkit Revealer or other products to check my system for rootkits but only occasionally. I would never put a Sony CD into my Computer anway ;)</p>
<p><strong>Browsing, Email:</strong></p>
<p>No Microsoft products if possible. I do use Opera and Firefox for web surfing and Thunderbird as my main email client. Both browsers are more secure than Microsofts Internet Explorer and Outlook. Maybe because they are better products, maybe because hackers like to concentrate on Microsoft products because more users are using them.</p>
<p>Did I leave something out ? What is your security concept ? Let me know, I like to read about software or tips that I never thought about in first place.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/encrypt-hard-disks/" title="encrypt hard disks" rel="tag">encrypt hard disks</a>, <a href="http://www.ghacks.net/tag/rootkit/" title="rootkit" rel="tag">rootkit</a>, <a href="http://www.ghacks.net/tag/secure-computer/" title="secure computer" rel="tag">secure computer</a>, <a href="http://www.ghacks.net/tag/security-concept/" title="security concept" rel="tag">security concept</a>, <a href="http://www.ghacks.net/tag/spyware/" title="Spyware" rel="tag">Spyware</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/08/28/rootkits-sony-does-it-again/" title="Rootkits: Sony does it again (August 28, 2007)">Rootkits: Sony does it again</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/11/14/check-a-file-using-multiple-antivirus-engines/" title="Check a File using multiple antivirus engines (November 14, 2007)">Check a File using multiple antivirus engines</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/" title="20 Minute Guide to Pc Security (February 14, 2007)">20 Minute Guide to Pc Security</a> (0)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/windows-defender/" title="Windows Defender (May 29, 2009)">Windows Defender</a> (11)</li>
	<li><a href="http://www.ghacks.net/2007/11/19/why-i-decided-to-uninstall-my-antivirus-software/" title="Why I decided to uninstall my Antivirus software (November 19, 2007)">Why I decided to uninstall my Antivirus software</a> (24)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/04/10/what-is-your-security-concept/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>20 Minute Guide to Pc Security</title>
		<link>http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/</link>
		<comments>http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 07:50:42 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[security-guide]]></category>
		<category><![CDATA[Spyware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/</guid>
		<description><![CDATA[20 minutes to increase the security of a computer, wow that must be a good guide. The guys at itsecurity have written a security guide that indeed covers the basics of PC security. I do know from first hand experience that many users do not follow simple PC security guidelines, e.g. they probably have a anti-virus solution but never update it.]]></description>
			<content:encoded><![CDATA[<p>20 minutes to increase the security of a computer, wow that must be a good guide. The guys at <a href="http://www.itsecurity.com/features/20-minute-guide-pc-security-021307/" title="itsecurity" target="_blank">itsecurity</a> have written a security guide that indeed covers the basics of PC security. I do know from first hand experience that many users do not follow simple PC security guidelines, e.g. they probably have a anti-virus solution but never update it.</p>
<p>The guide is written for the inexperienced user mainly and consists of several parts. The first, called&#8221;The Basics: Spotting and Eliminating Threats&#8221; suggests to install a firewall, anti-virus software, anti-spyware software and other software like software that detects rootkits. They always recommend some programs that can be downloaded by following the links.</p>
<p><span id="more-1200"></span></p>
<p>Now that they have covered the basics they tell you to update your operating system and software that is installed on your system. They suggest to use either Opera or Firefox instead of the Internet Explorer, want you to disable file sharing and be cautious when downloading.</p>
<p>As I said all those tips are good for beginners but geeks like we are should have implemented most of their suggestions already.</p>
<p>Next comes safe emailing with suggestions on good e-mail clients, again don&#8217;t use Outlook but tools like Thunderbird or Gmail instead. They also tell you to be wary of extensions and be cautious when clicking on links in emails to avoid malicious websites. (phishing). Last but not least you should setup email filters.</p>
<p>The next part deals with protecting your passwords which can be summed up by choosing different passwords that can&#8217;t be found using dictionary attacks. They also suggest to password protect the computer which I think is completely useless.</p>
<p>After that they make two suggestions to protect the wireless network which are really basic suggestions, they also suggest not to use the wireless connection of your neighbours because it could be setup for this case. (scanning the data like passwords that are send over the connection)</p>
<p>The last part deals with physical protection: Disguise your laptop and use anti-theft solutions should not bother most users but could be useful for business clients.</p>
<p>As you can see those are basic advices that could help inexperienced users. They miss to cover some topics that could really increase security but require knowledge of the subject. They fail to address the possibility to create a user account in Windows and use this one instead of the admin account. They also miss to mention that not needed services should be turned off, which user needs telnet or remote access anyways ?</p>
<p>I&#8217;m also not very fond of software firewalls and would suggest to use a hardware firewall instead. Software firewalls give a false sense of security especially if you are inexperienced.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/computer/" title="computer" rel="tag">computer</a>, <a href="http://www.ghacks.net/tag/email/" title="Email" rel="tag">Email</a>, <a href="http://www.ghacks.net/tag/pc/" title="pc" rel="tag">pc</a>, <a href="http://www.ghacks.net/tag/phishing/" title="phishing" rel="tag">phishing</a>, <a href="http://www.ghacks.net/tag/security/" title="Security" rel="tag">Security</a>, <a href="http://www.ghacks.net/tag/security-guide/" title="security-guide" rel="tag">security-guide</a>, <a href="http://www.ghacks.net/tag/spyware/" title="Spyware" rel="tag">Spyware</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (20)</li>
	<li><a href="http://www.ghacks.net/2009/03/11/truemark-email-identification/" title="Truemark Email Identification (March 11, 2009)">Truemark Email Identification</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/02/17/new-phishing-mail-tactics/" title="New Phishing Mail Tactics (February 17, 2008)">New Phishing Mail Tactics</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/05/06/must-have-software-for-a-new-computer/" title="Must have software for my new computer (May 6, 2008)">Must have software for my new computer</a> (27)</li>
	<li><a href="http://www.ghacks.net/2008/01/05/ingenious-paypal-mimicing-spam/" title="Ingenious PayPal mimicing spam (January 5, 2008)">Ingenious PayPal mimicing spam</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/02/14/20-minute-guide-to-pc-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Windows XP</title>
		<link>http://www.ghacks.net/2007/01/11/secure-windows-xp/</link>
		<comments>http://www.ghacks.net/2007/01/11/secure-windows-xp/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 09:10:58 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/01/11/secure-windows-xp/</guid>
		<description><![CDATA[There are many articles floating around on the internet covering this subject and I would like to stay at the basics this time. A way to secure Windows XP with little effort. You can't make a system 100% secure, there will always be ways to beat every protection. I collected a list of things that should be done to secure the system, it is not a huge list but it covers all the necessary steps I think.]]></description>
			<content:encoded><![CDATA[<p>There are many articles floating around on the internet covering this subject and I would like to stay at the basics this time. A way to secure Windows XP with little effort. You can&#8217;t make a system 100% secure, there will always be ways to beat every protection. I collected a list of things that should be done to secure the system, it is not a huge list but it covers all the necessary steps I think.</p>
<p>The first and one of the most important steps would be to download and install the latest security fixes and services packs. I sometimes have to talk to users in my job (which is somewhat security related as well) and discover that they run Windows XP with the same settings that the pc was shipped with. No updates, outdated anti-virus definitions and the like. You do get the latest patches and fixes for your operating system at <a target="_blank" title="windows updates" href="http://windowsupdate.microsoft.com/">windowsupdates</a>.</p>
<p><span id="more-1089"></span>Make sure you have a valid license otherwise you will not be able to download the updates. A different way would be to use <a target="_blank" title="autopatcher" href="http://www.autopatcher.com/">autopatcher</a> which can be downloaded in a version that includes all the updates and fixes already.</p>
<p>The next step would be to turn off unnecessary services and programs that you won&#8217;t use. Why should the remote service be active if you never use it ? This reduces the chance of an attacker to get into the system. There are currently 19 services running on my system, if you never tinkered with them before you have probably double that size or even more.</p>
<p>Read the article about <a target="_blank" title="turn of unnecessary services" href="http://www.jasonn.com/turning_off_unnecessary_services_on_windows_xp">turning unnecessary services</a> off, it explains the basics. It is a good idea to turn of the following services if you do not need them</p>
<ul>
<li>Telnet</li>
<li>Universal Plug and Play Device Host</li>
<li>IIS (not installed by default)</li>
<li>Netmeeting Remote Desktop Sharing</li>
<li>Remote Desktop Help Session Manager</li>
<li>Remote Registry</li>
<li>Routing &#038; Remote Access</li>
<li>SSDP Discovery Service</li>
</ul>
<p>Talking about software. It is wise to not use the default Microsoft products like Outlook Express or Internet Explorer. Those are attacked the most because most of the users use them. (besides offering great ways of attacking them) Alternatives would be <a title="firefox" href="http://www.mozilla.org/">Firefox</a> or <a target="_blank" title="opera" href="http://www.opera.com/">Opera</a> for Internet Explorer and <a target="_blank" title="thunderbird" href="http://www.mozilla.org/">Thunderbird</a> for Outlook Express.</p>
<p>You should install a anti-virus solution. I do use <a title="anti-vir" target="_blank" href="http://www.free-av.com/">Antivir</a> but others should be fine as well. The most important aspect is that you keep the definition files up to date. If the software offers automatic updates I suggest you make it update the files once a day.</p>
<p>Firewalls. I do not use them. Well, not  a software based firewall that is. I do have a hardware firewall which is all I need. I think that firewalls give the user a false sense of security. They are highly complex and require lots of attention to secure the system. It is not enough to simply install one and click on accept / deny every time a program wants to connect to the internet.</p>
<p>To secure the system you have to add all the tools that should have internet access to the firewall rules with exactly the ports they need. You should close every other port that is not needed by those applications. A good freeware that displays the list of currently open ports is <a title="currports" target="_blank" href="http://www.nirsoft.net/utils/cports.html">currports</a>.</p>
<p>I think those are the most important steps. If you have more let me know them.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/firewall/" title="firewall" rel="tag">firewall</a>, <a href="http://www.ghacks.net/tag/ports/" title="ports" rel="tag">ports</a>, <a href="http://www.ghacks.net/tag/secure/" title="secure" rel="tag">secure</a>, <a href="http://www.ghacks.net/tag/services/" title="services" rel="tag">services</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/xp/" title="xp" rel="tag">xp</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/10/10/xp-keep-per-user-display-settings/" title="XP Keep Per User Display Settings (October 10, 2007)">XP Keep Per User Display Settings</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/11/01/why-is-nvsvc32exe-running-on-my-system/" title="Why is nvsvc32.exe running on my system ? (November 1, 2007)">Why is nvsvc32.exe running on my system ?</a> (1)</li>
	<li><a href="http://www.ghacks.net/2005/11/06/who-is-connected-to-your-pc-right-now/" title="Who is connected to your pc right now ? (November 6, 2005)">Who is connected to your pc right now ?</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/25/vista-part-3/" title="Vista Part 3 (July 25, 2008)">Vista Part 3</a> (19)</li>
	<li><a href="http://www.ghacks.net/2007/02/10/unknown-device-identifier/" title="Unknown Device Identifier (February 10, 2007)">Unknown Device Identifier</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/01/11/secure-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test your Anti-virus program</title>
		<link>http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/</link>
		<comments>http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 16:07:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[av]]></category>
		<category><![CDATA[eicar]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[virus-scanner]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/</guid>
		<description><![CDATA[Do you know that your anti-virus solution is working ? You could try to test your anti-virus program against the EICAR (European Expert Group for IT-Security) test file to see if it reacts the way it should. All you need to do is create the testfile and scan it with your virus scanner. If the scanner detects something it is working as intended, if it does not you should consider changing immediately to a more reliable one.]]></description>
			<content:encoded><![CDATA[<p>Do you know that your anti-virus solution is working ? You could try to test your anti-virus program against the <a href="http://www.eicar.org/anti_virus_test_file.htm" target="_blank">EICAR</a> (European Expert Group for IT-Security) test file to see if it reacts the way it should. All you need to do is create the testfile and scan it with your virus scanner. If the scanner detects something it is working as intended, if it does not you should consider changing immediately to a more reliable one.</p>
<p>Creating the file is pretty simple. Just create a new text file and paste the following line of code into it: X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*</p>
<p>Save the file and rename it to test.com. When executed it displays the message EICAR-STANDARD-ANTIVIRUS-TEST-FILE. No harm will be done to your system if you accidentally execute the file. To test your virus scanner right-click the file and select to test it with your software. </p>
<p><span id="more-1056"></span> </p>
<p>You could also pack it and test it or send it to your email account to test the interaction between virus scanner and email client. After the test finishes you do know if your virus scanner is working as intended and able to detect viruses on your system. This does not necessarily mean that it will detect every virus that exists but it means that it is working. </p>
<p><a href="http://www.anrdoezrs.net/click-2341002-1110836" target="_blank">Kaspersky Anti-Virus Products</a><br />
<img src="http://www.tqlkg.com/image-2341002-1110836" width="1" height="1" border="0"/></p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/av/" title="av" rel="tag">av</a>, <a href="http://www.ghacks.net/tag/eicar/" title="eicar" rel="tag">eicar</a>, <a href="http://www.ghacks.net/tag/test/" title="test" rel="tag">test</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a>, <a href="http://www.ghacks.net/tag/virus-scanner/" title="virus-scanner" rel="tag">virus-scanner</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/01/06/antivirus-test/" title="Antivirus Test (January 6, 2006)">Antivirus Test</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/" title="AVG-Antivirus will continue to be free (December 18, 2006)">AVG-Antivirus will continue to be free</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/03/14/virus-total-uploader/" title="Virus Total Uploader (March 14, 2008)">Virus Total Uploader</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/01/12/test-avira-antivir-personaledition-premium-for-6-months/" title="Test Avira AntiVir PersonalEdition Premium for 6 months (January 12, 2008)">Test Avira AntiVir PersonalEdition Premium for 6 months</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>AVG-Antivirus will continue to be free</title>
		<link>http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/</link>
		<comments>http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/#comments</comments>
		<pubDate>Mon, 18 Dec 2006 07:47:30 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivir]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[avg free]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[grisoft]]></category>
		<category><![CDATA[scan]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/</guid>
		<description><![CDATA[I received some emails in the last days of visitors to my site who thought that AVG free would cease to exit on 15. of January 2007. I would like to clear the confusion right away by saying that on this date support for AVG free 7.1 will end but AVG free 7.5 by Grisoft will be available and support is guaranteed. Or as the Grisoft themselves announced it:]]></description>
			<content:encoded><![CDATA[<p>I received some emails in the last days of visitors to my site who thought that AVG free would cease to exit on 15. of January 2007. I would like to clear the confusion right away by saying that on this date support for AVG free 7.1 will end but AVG free 7.5 by Grisoft will be available and support is guaranteed. Or as the <a target="_blank" title="grisoft avg free" href="http://free.grisoft.com/doc/1/lng/us/tpl/v5">Grisoft themselves</a> announced it:</p>
<p><em>GRISOFT is announcing a new version of the AVG Anti-Virus Free Edition. This new 7.5 version with improved performance and full compatibility with the latest Windows Vista version is available. Users that are using AVG Free 7.1 will be provided with a specific dialog, within the next few weeks, with the opportunity to choose the right option fulfilling their needs. AVG Free 7.1 version will be discontinued on 15th of Jan 2007. </em></p>
<p><span id="more-1017"></span>In case that you are still looking for an antivirus solution other than AVG Free I recommend <a target="_blank" title="free av" href="http://www.free-av.com/">Antivir</a> which is completely free for personal use. I have been using Antivir for some time now and have not encountered serious issues as of now. I would say that a successful solution depends more on the user behind the keys than on the antivirus program that he is using.</p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivir/" title="antivir" rel="tag">antivir</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/avg-free/" title="avg free" rel="tag">avg free</a>, <a href="http://www.ghacks.net/tag/free/" title="free" rel="tag">free</a>, <a href="http://www.ghacks.net/tag/freeware/" title="freeware" rel="tag">freeware</a>, <a href="http://www.ghacks.net/tag/grisoft/" title="grisoft" rel="tag">grisoft</a>, <a href="http://www.ghacks.net/tag/scan/" title="scan" rel="tag">scan</a>, <a href="http://www.ghacks.net/tag/trojan/" title="trojan" rel="tag">trojan</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/01/06/antivirus-test/" title="Antivirus Test (January 6, 2006)">Antivirus Test</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/01/12/test-avira-antivir-personaledition-premium-for-6-months/" title="Test Avira AntiVir PersonalEdition Premium for 6 months (January 12, 2008)">Test Avira AntiVir PersonalEdition Premium for 6 months</a> (10)</li>
	<li><a href="http://www.ghacks.net/2005/12/02/clam-win-antivirus/" title="Clam Win Antivirus (December 2, 2005)">Clam Win Antivirus</a> (3)</li>
	<li><a href="http://www.ghacks.net/2005/12/10/astalavista-top-10-freeware-tools/" title="Astalavista Top 10 Freeware Tools (December 10, 2005)">Astalavista Top 10 Freeware Tools</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/16/anti-virus-software-removal-tools-overview/" title="Anti Virus Software Removal Tools Overview (April 16, 2009)">Anti Virus Software Removal Tools Overview</a> (10)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Antivirus Test</title>
		<link>http://www.ghacks.net/2006/01/06/antivirus-test/</link>
		<comments>http://www.ghacks.net/2006/01/06/antivirus-test/#comments</comments>
		<pubDate>Fri, 06 Jan 2006 06:33:04 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[av]]></category>
		<category><![CDATA[scan]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=269</guid>
		<description><![CDATA[Everyone seems to favor a different antivirus software and its hard to make a choice because of this. A little test from the guys at <a href="http://www.overclockers.com/articles1260/" target="_blank">overclockers.com</a> might help you in your decision. They tested Desktop and Online Antivirus solutions and give recommendations at the end.]]></description>
			<content:encoded><![CDATA[<p>Everyone seems to favor a different antivirus software and its hard to make a choice because of this. A little test from the guys at overclockers.com might help you in your decision. They tested Desktop and Online Antivirus solutions and give recommendations at the end.</p>
<p>They used one virus file which is about 50 megs unzipped and contains more than 10000 virii. The software that found the most got their recommendation which is not the best criteria if you ask me. There should be other factors like system resource use (never use Norton if you want a fast system), updates, type of virii found aso. But its a good test to see how your favorite AV handles this infested files.</p>
<p><span id="more-269"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/antivirus/" title="antivirus" rel="tag">antivirus</a>, <a href="http://www.ghacks.net/tag/av/" title="av" rel="tag">av</a>, <a href="http://www.ghacks.net/tag/scan/" title="scan" rel="tag">scan</a>, <a href="http://www.ghacks.net/tag/trojan/" title="trojan" rel="tag">trojan</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/" title="AVG-Antivirus will continue to be free (December 18, 2006)">AVG-Antivirus will continue to be free</a> (2)</li>
	<li><a href="http://www.ghacks.net/2007/01/01/test-your-anti-virus-program/" title="Test your Anti-virus program (January 1, 2007)">Test your Anti-virus program</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/01/12/test-avira-antivir-personaledition-premium-for-6-months/" title="Test Avira AntiVir PersonalEdition Premium for 6 months (January 12, 2008)">Test Avira AntiVir PersonalEdition Premium for 6 months</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/02/05/free-kaspersky-anti-virus-for-1-year/" title="Free Kaspersky Anti-Virus for 1 year (February 5, 2008)">Free Kaspersky Anti-Virus for 1 year</a> (59)</li>
	<li><a href="http://www.ghacks.net/2005/12/02/clam-win-antivirus/" title="Clam Win Antivirus (December 2, 2005)">Clam Win Antivirus</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/01/06/antivirus-test/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Clam Win Antivirus</title>
		<link>http://www.ghacks.net/2005/12/02/clam-win-antivirus/</link>
		<comments>http://www.ghacks.net/2005/12/02/clam-win-antivirus/#comments</comments>
		<pubDate>Fri, 02 Dec 2005 08:36:20 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[anitvirus]]></category>
		<category><![CDATA[anti virus]]></category>
		<category><![CDATA[clam]]></category>
		<category><![CDATA[scanner]]></category>
		<category><![CDATA[trojan]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=194</guid>
		<description><![CDATA[After a lot of people told me that I forgot one of the best anti-virus freeware products out there I decided to take a look at Clam Win to get a better judgement on the claims made. The good thing besides that its free is that it´s also Open Source which makes it more transparent than the rest of the free antivirus programs.]]></description>
			<content:encoded><![CDATA[<p>After a lot of people told me that I forgot one of the best anti-virus freeware products out there I decided to take a look at Clam Win to get a better judgment on the claims made. The good thing besides that its free is that it´s also Open Source which makes it more transparent than the rest of the free antivirus programs.</p>
<p>The program is easy to download and install which is also a plus, just download, double click on the downloaded tool and you are ready to go. You have the option to include different languages, the source and add windows explorer and outlook integration. I´am not using Outlook so I removed this option and left everything else untouched for now.</p>
<table>
<tr>
<td><img src="http://www.ghacks.net/files/screens/200512/c1.jpg" alt="clam anti virus antivirus 1" />
</td>
<td><img src="http://www.ghacks.net/files/screens/200512/c2.jpg" alt="clam anti virus antivirus 1" />
</td>
</tr>
</table>
<p><span id="more-194"></span></p>
<p>The user interface is a basic one, you don´t have all the nifty graphics most other antivirus programs use. Clam is simply in that way, but its also fast due to this. I don´t care about looks if a program does what I expect it to do, but I know there are lots of people who like a resource eating monster like Symantec Internet Security more than a freeware program without the cool animated effects.</p>
<p>You have lots of configuration options, you can set filters, email alerts, schedule scans and use a proxy for the automatic internet updates if you like. Automatic updates are a great plus for Clam, my current antivirus software that I use (AVG) does not have automatic updates, you have to start the updates manually which is a great hassle. Especially when you don´t know if there has been a update at all.</p>
<p>What I don´t like about Clam is that its only having a plugin for outlook which is the most used email software of course but should not be used by anyone serious about making his pc more secure. </p>
<p>I can recommend <a href="http://www.clamav.net/" target="_Blank">Clam Win</a> especially to users of Microsoft Outlook and users who tend to forgot to check for internet updates of their antivirus software. Resources accessed are minimal which is also a good thing for an anti-virus product.</p>

	Tags: <a href="http://www.ghacks.net/tag/anitvirus/" title="anitvirus" rel="tag">anitvirus</a>, <a href="http://www.ghacks.net/tag/anti-virus/" title="anti virus" rel="tag">anti virus</a>, <a href="http://www.ghacks.net/tag/clam/" title="clam" rel="tag">clam</a>, <a href="http://www.ghacks.net/tag/scanner/" title="scanner" rel="tag">scanner</a>, <a href="http://www.ghacks.net/tag/trojan/" title="trojan" rel="tag">trojan</a>, <a href="http://www.ghacks.net/tag/virus/" title="virus" rel="tag">virus</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/12/18/avg-antivirus-will-continue-to-be-free/" title="AVG-Antivirus will continue to be free (December 18, 2006)">AVG-Antivirus will continue to be free</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/03/06/norton-antibot-free-1-year-license/" title="Norton Antibot Free 1 Year License (March 6, 2008)">Norton Antibot Free 1 Year License</a> (15)</li>
	<li><a href="http://www.ghacks.net/2007/03/13/cant-delete-virus-try-killbox/" title="Can&#8217;t delete virus ? Try Killbox (March 13, 2007)">Can&#8217;t delete virus ? Try Killbox</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/11/10/avg-8-update-marked-user32dll-as-virus-infected/" title="AVG 8 Update Marked User32.dll As Virus Infected (November 10, 2008)">AVG 8 Update Marked User32.dll As Virus Infected</a> (25)</li>
	<li><a href="http://www.ghacks.net/2006/01/06/antivirus-test/" title="Antivirus Test (January 6, 2006)">Antivirus Test</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2005/12/02/clam-win-antivirus/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
