<?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>Security FAQs</title>
	<atom:link href="http://www.security-faqs.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.security-faqs.com</link>
	<description>Security FAQs - answers to common questions about antivirus and other infosec issues.</description>
	<lastBuildDate>Mon, 06 Sep 2010 09:27:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>What Does A Virus Signature Look Like And Which Software Do I Need To See One?</title>
		<link>http://www.security-faqs.com/what-does-a-virus-signature-look-like-and-which-software-do-i-need-to-see-one.html</link>
		<comments>http://www.security-faqs.com/what-does-a-virus-signature-look-like-and-which-software-do-i-need-to-see-one.html#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:00:45 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Malware]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20728</guid>
		<description><![CDATA[Singing the praises of IDA Pro.<p><a href="http://www.security-faqs.com/what-does-a-virus-signature-look-like-and-which-software-do-i-need-to-see-one.html">What Does A Virus Signature Look Like And Which Software Do I Need To See One?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-remove-the-koobface-virus-from-my-computer.html' rel='bookmark' title='Permanent Link: How Can I Remove The Koobface Virus From My Computer?'>How Can I Remove The Koobface Virus From My Computer?</a></li>
<li><a href='http://www.security-faqs.com/8-questions-you-have-to-ask-before-buying-anti-virus-software.html' rel='bookmark' title='Permanent Link: 8 Questions You Must Ask Before Buying Anti-Virus Software'>8 Questions You Must Ask Before Buying Anti-Virus Software</a></li>
<li><a href='http://www.security-faqs.com/using-software-to-recover-your-data.html' rel='bookmark' title='Permanent Link: How Can I Use Software To Recover My Data?'>How Can I Use Software To Recover My Data?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>When people hear the word virus they tend to freeze up more than normal.</p>
<p>They do not know what a <a title="there are different types of viruses" href="http://www.security-faqs.com/what-everybody-ought-to-know-about-detecting-computer-viruses.html">virus</a> consists of so they put bad thoughts into their mind about how it is some kind of weird mechanism.</p>
<p>Their thoughts float to ideas like a biological virus creeping through their computer.</p>
<p>That is not the case at all though &#8211; a virus is just like a normal program.</p>
<p>The only difference is that it goes through your computer looking to do bad things to it which it is able to do in two different ways &#8211; through either bending the rules of what is allowed on the machine or by breaking the rules altogether and finding an exploit in the machine.</p>
<p>There is a slight but subtle difference between the two methods and that difference matters.</p>
<p>If the software that is being run allows the virus to do bad things to the computer then that means that it is a sloppy written program.</p>
<p>If the virus is able to do the bad things to the computer because it has found an exploit then that is another matter all together.</p>
<p>That goes beyond a sloppily written program and borders on carelessness.</p>
<div id="attachment_20748" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20748" title="virus signatures and IDA Pro" src="http://www.security-faqs.com/wp-content/uploads/2010/09/internet-security1.gif" alt="virus signatures and IDA Pro" width="538" height="102" />
	<p class="wp-caption-text">virus signatures and IDA Pro</p>
</div>
<p>Most companies have code review boards that try to make sure that this kind of thing doesn&#8217;t happen.</p>
<p>Sure, everyone makes mistakes, but this is kind of a big one.</p>
<p>If a virus is nothing but a normal program then how can someone tell they have been infected?</p>
<p>And how is the antivirus program on my system able to distinguish between an infection and a safe program?</p>
<p>In the following paragraphs I will take a look at this question and show you how you and your software is able to tell when a virus infection is going on in your computer.</p>
<h2>You Don&#8217;t Need A Microscope To Read A Virus</h2>
<p>When you are looking at a virus, you do not need a microscope or any special piece of hardware.</p>
<p>There are several software programs that anyone can run on their computer to see the insides of a virus; there are many programs both free, open sourced and premium that will allow you to do this.</p>
<p>One of the most popular pieces of software is one that is called IDA Pro.</p>
<p>It is very popular with both side of the security community.</p>
<p>There is no other software out there that will give you such a detailed graphical representation of the programs on your computer and it is able to read many different formats as well.</p>
<p>While you are in your x86 based computer you will be able to read the byte code from other CPU based computers.</p>
<p>This is amazing because this type of software is not supposed to be able to run on your type of computer but thanks to IDA Pro it can.</p>
<p>But, as I said before, there is more software out there that will do the same thing but IDA Pro is the best in my opinion.</p>
<p>It does have a steeper learning curve than the other software out there but once you learn it you will be off and running.</p>
<h3>Virus Signatures</h3>
<p>When I say signature what I mean is what the software is accessing at the time.</p>
<p>There are different functions that reside in your computer; to be able to interact with your computer a program must be able to access these functions.</p>
<p>There are some functions that are fairly benign and there are some functions that can cause a little damage if a program got hold of them.</p>
<p>Functions like this are usually in the kernel of the operating system.</p>
<p>No user access programs are supposed to have access to this level of the kernel which means that the virus was able to use an exploit to get there and cause a corruption.</p>
<p>If that is the case then the rest of the system can be in real trouble.</p>
<p>So when a researcher is looking at the program and seeing what functions it accesses, he is making sure that the program is not able to do considerable damage.</p>
<p>The thing about a virus is that it doesn&#8217;t have to go kernel deep to cause damage, all it has to do is to be able to disrupt your computer in some manner.</p>
<p>If that means that it is able to throw pop ups at you every five minutes to get you to buy some <a title="how to identify fake antivirus software" href="http://www.security-faqs.com/how-to-identify-and-avoid-anti-virus-scams.html">fake antivirus software</a> then that is what it will do.</p>
<p>That doesn&#8217;t take a lot of skill and is easy to fix if the person knows what they are doing.</p>
<p><strong>A Virus Is Not The Only Program That Leaves A Signature</strong></p>
<p>All programs leave a signature of some kind and that includes other types of malware as well; a virus is not the only one.</p>
<p>Security researchers are able to tell the difference between the threats because of looking at the signatures.</p>
<p>It is a hard job to be able to stare at assembly language all day trying to find the threats on your computer but security researchers are the kind of guys who love doing it.</p>
<p><a href="http://www.security-faqs.com/what-does-a-virus-signature-look-like-and-which-software-do-i-need-to-see-one.html">What Does A Virus Signature Look Like And Which Software Do I Need To See One?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-remove-the-koobface-virus-from-my-computer.html' rel='bookmark' title='Permanent Link: How Can I Remove The Koobface Virus From My Computer?'>How Can I Remove The Koobface Virus From My Computer?</a></li>
<li><a href='http://www.security-faqs.com/8-questions-you-have-to-ask-before-buying-anti-virus-software.html' rel='bookmark' title='Permanent Link: 8 Questions You Must Ask Before Buying Anti-Virus Software'>8 Questions You Must Ask Before Buying Anti-Virus Software</a></li>
<li><a href='http://www.security-faqs.com/using-software-to-recover-your-data.html' rel='bookmark' title='Permanent Link: How Can I Use Software To Recover My Data?'>How Can I Use Software To Recover My Data?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/what-does-a-virus-signature-look-like-and-which-software-do-i-need-to-see-one.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Are The 3 Ways That Someone Could Use Social Engineering To Get Your Password From You?</title>
		<link>http://www.security-faqs.com/what-are-the-3-ways-that-someone-could-use-social-engineering-to-get-your-password-from-you.html</link>
		<comments>http://www.security-faqs.com/what-are-the-3-ways-that-someone-could-use-social-engineering-to-get-your-password-from-you.html#comments</comments>
		<pubDate>Sun, 05 Sep 2010 07:00:57 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Password Security]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20034</guid>
		<description><![CDATA[People forget that a lot of hackers also have to use the social engineering part of the discipline to be able to trick you and get what they want.<p><a href="http://www.security-faqs.com/what-are-the-3-ways-that-someone-could-use-social-engineering-to-get-your-password-from-you.html">What Are The 3 Ways That Someone Could Use Social Engineering To Get Your Password From You?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/how-do-i-protect-my-business-from-a-social-engineering-attack.html' rel='bookmark' title='Permanent Link: How Do I Protect My Business From A Social Engineering Attack?'>How Do I Protect My Business From A Social Engineering Attack?</a></li>
<li><a href='http://www.security-faqs.com/how-far-would-you-dare-to-trust-the-social-networks-that-you-use.html' rel='bookmark' title='Permanent Link: How Far Would You Dare To Trust The Social Networks That You Use?'>How Far Would You Dare To Trust The Social Networks That You Use?</a></li>
<li><a href='http://www.security-faqs.com/how-can-i-formulate-a-strong-and-safe-password.html' rel='bookmark' title='Permanent Link: How Can I Formulate A Strong Password And Keep It Safe?'>How Can I Formulate A Strong Password And Keep It Safe?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>When most people think of hacking they usually only think about the technical aspects of the act.</p>
<p>They see images on the television of people sitting behind their computers and working through the night time hours and they think that is all it is.</p>
<p>But there is another part of hacking that does not get that much recognition from the general populace.</p>
<p>People forget that a lot of hackers also have to use the <a title="how can you protect your business from a social engineering attack?" href="http://www.security-faqs.com/how-do-i-protect-my-business-from-a-social-engineering-attack.html">social engineering</a> part of the discipline to be able to trick you and get what they want.</p>
<p>Most of the attacks that you see on the internet are not technical in nature.</p>
<p>They may use a little bit of technology but they are mainly trying to fool you into doing something that they want you to do.</p>
<p>In this article I will take a look at the ways that hackers will try to get important data from you.</p>
<p>Hopefully by being exposed to some of their techniques, you will be able to recognize it and then stop them.</p>
<div id="attachment_20353" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20353" title="protect your passwords from social engineering attacks" src="http://www.security-faqs.com/wp-content/uploads/2010/08/password-security.gif" alt="protect your passwords from social engineering attacks" width="538" height="102" />
	<p class="wp-caption-text">protect your passwords from social engineering attacks</p>
</div>
<h2>Fake Web Sites</h2>
<p>A lot of the attacks that you will see coming are based on having a fake web site on the internet.</p>
<p>The general populace knows nothing about what goes into making a web site; they think that it is harder than it really is so they will take a look at a web site that they go to and not bother to look at the URL of the site.</p>
<p>If it looks like the site that they usually go to that is good enough for them.</p>
<p>But it is really not good enough.</p>
<p>It is easy for an attacker to duplicate the look and feel of a popular web site.</p>
<p>This is why you must check the URL of a site before you log on.</p>
<p>If not then you are asking for trouble.</p>
<p>The URL is the address that you type in at the top of your browser.</p>
<p>When you click a link you get directed to a web site so you do not have to type the address in but it still shows up &#8211; make sure that you are on the right address and everything should be fine.</p>
<h3>Fake Emails</h3>
<p>Another way they will try to get you is by sending fake emails to your email account.</p>
<p>The emails will look official and seems as if they have all of the proper information on them.</p>
<p>This again is not hard to duplicate.</p>
<p>So when you get an email that claims that it is an official correspondence then you should look at it with some skepticism.</p>
<p>If it has a link that it wants you to follow then do not click it.</p>
<p>Type in the URL address in the address bar that it wants you to go to.</p>
<p>This way they are not able to mask the link request.</p>
<p>Masking the link request means that they are showing one address but they are trying to send you to another.</p>
<p>If you follow that rule then you should be fine.</p>
<p><strong>Through Your Social Media Account</strong></p>
<p>Most people expect attacks in their email but they do not expect it in their Facebook account.</p>
<p>This is the new home for hackers and they are using every trick in the book to get all of the information that they can.</p>
<p>You have to be real careful when it comes to clicking links that are in your social network.</p>
<p>Even people that you consider friends may have had their account hacked and will send you a dangerous link.</p>
<p>Always be on guard when you are using a social media network account.</p>
<p>There are a dozen ways in which people will try to get your username and <a title="password best practices" href="http://www.security-faqs.com/password-and-security-best-practices.html">password</a> from you.</p>
<p>Make sure that you are always on alert and you should not have a problem.</p>
<p><a href="http://www.security-faqs.com/what-are-the-3-ways-that-someone-could-use-social-engineering-to-get-your-password-from-you.html">What Are The 3 Ways That Someone Could Use Social Engineering To Get Your Password From You?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/how-do-i-protect-my-business-from-a-social-engineering-attack.html' rel='bookmark' title='Permanent Link: How Do I Protect My Business From A Social Engineering Attack?'>How Do I Protect My Business From A Social Engineering Attack?</a></li>
<li><a href='http://www.security-faqs.com/how-far-would-you-dare-to-trust-the-social-networks-that-you-use.html' rel='bookmark' title='Permanent Link: How Far Would You Dare To Trust The Social Networks That You Use?'>How Far Would You Dare To Trust The Social Networks That You Use?</a></li>
<li><a href='http://www.security-faqs.com/how-can-i-formulate-a-strong-and-safe-password.html' rel='bookmark' title='Permanent Link: How Can I Formulate A Strong Password And Keep It Safe?'>How Can I Formulate A Strong Password And Keep It Safe?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/what-are-the-3-ways-that-someone-could-use-social-engineering-to-get-your-password-from-you.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Kernel Hackers And Network Hackers &#8211; Which Should Worry Me The Most?</title>
		<link>http://www.security-faqs.com/kernel-hackers-and-network-hackers-which-should-worry-me-the-most.html</link>
		<comments>http://www.security-faqs.com/kernel-hackers-and-network-hackers-which-should-worry-me-the-most.html#comments</comments>
		<pubDate>Sat, 04 Sep 2010 07:00:07 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=19532</guid>
		<description><![CDATA[When you are trying to secure your network you have to worry about both types of hackers.<p><a href="http://www.security-faqs.com/kernel-hackers-and-network-hackers-which-should-worry-me-the-most.html">Kernel Hackers And Network Hackers &#8211; Which Should Worry Me The Most?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/do-i-still-have-to-worry-about-boot-sector-viruses-on-my-computer.html' rel='bookmark' title='Permanent Link: Do I Still Have To Worry About Boot Sector Viruses On My Computer?'>Do I Still Have To Worry About Boot Sector Viruses On My Computer?</a></li>
<li><a href='http://www.security-faqs.com/would-you-be-liable-if-a-hacker-attacked-your-network.html' rel='bookmark' title='Permanent Link: Would You Be Liable If A Hacker Attacked Your Network?'>Would You Be Liable If A Hacker Attacked Your Network?</a></li>
<li><a href='http://www.security-faqs.com/what-does-the-term-blended-threat-mean-and-how-can-it-affect-the-security-of-your-system.html' rel='bookmark' title='Permanent Link: What Does The Term &#8216;Blended Threat&#8217; Mean And How Can It Affect The Security Of Your System?'>What Does The Term &#8216;Blended Threat&#8217; Mean And How Can It Affect The Security Of Your System?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>The word hacker is used in general terms these days; and even that general term is wrong.</p>
<p>When people hear the word hacker they automatically think of a cyber criminal but this is not what it is &#8211; a hacker is someone who wants to know how something works.</p>
<p>In the world of computers this can apply to a lot of things.</p>
<p>The two main activities of computer hackers are to focus on the kernel, meaning the operating system, and the network hackers.</p>
<p>Network hackers are people who focus on the Internet and the inner workings of it.</p>
<div id="attachment_20408" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20408" title="kernel hackers and network hackers" src="http://www.security-faqs.com/wp-content/uploads/2010/08/hacking3.gif" alt="kernel hackers and network hackers" width="538" height="102" />
	<p class="wp-caption-text">kernel hackers and network hackers</p>
</div>
<p>I will give a fuller description of both of these activities and then show you which one you should really worry about -</p>
<h2>What Is A Kernel Hacker?</h2>
<p>The term kernel hacker can have two different meanings.</p>
<p>One of the meanings is someone who works on an operating system to be used by other people.</p>
<p>An example of this is someone who codes for the Linux kernel.</p>
<p>Another meaning for the term kernel hacker is someone who tries to <a title="kernel hackers look to exploit many different operating systems" href="http://www.security-faqs.com/hackers-looking-to-exploit-windows-7-already.html">find holes in an operating system</a>.</p>
<p>This is the type of kernel hacker that I will talk about in this article.</p>
<p>When there are millions of lines of code in a piece of software then you have the potential for there to be holes in there.</p>
<p>Actually, there is more than a potential; it will almost certainly happen.</p>
<p>So kernel hackers go through the operating system with a debugger and try to find any hole that can be exploited.</p>
<p>These are the type of people that can find the holes that can really damage your system.</p>
<h3>What Is A Network Hacker?</h3>
<p>A network hacker is someone who concentrates on finding holes in the network layer.</p>
<p>The more that we use the internet for our everyday life, the more people who hack on the network are able to do damage.</p>
<p>There are several layers of the network that security administrators must worry about securing.</p>
<p>When you have someone that knows the network as intimately as your average network hacker then they can find a lot of holes that they are able to exploit.</p>
<p>A network hacker can find holes in the router, the <a title="protect your computer with a firewall" href="http://www.security-faqs.com/protecting-your-computers-with-a-personal-firewall.html">firewall</a>, and the actual browser that someone uses to browse the internet.</p>
<p>A network has more layers to worry about than the kernel hacker but the kernel hacker’s layer is a lot more technical and complex.</p>
<p><strong>Both Types Of Hacker Pose A Threat</strong></p>
<p>When you are trying to secure your network you have to worry about both types of hackers.</p>
<p>They both can cause a lot of damage.</p>
<p>When it comes to who is more dangerous than the other the fact is you will have to deal with a network hacker more since kernel hacking is a lot harder to find exploits.</p>
<p>The network layer is everywhere and you have to worry about the dangers every day.</p>
<p><a href="http://www.security-faqs.com/kernel-hackers-and-network-hackers-which-should-worry-me-the-most.html">Kernel Hackers And Network Hackers &#8211; Which Should Worry Me The Most?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/do-i-still-have-to-worry-about-boot-sector-viruses-on-my-computer.html' rel='bookmark' title='Permanent Link: Do I Still Have To Worry About Boot Sector Viruses On My Computer?'>Do I Still Have To Worry About Boot Sector Viruses On My Computer?</a></li>
<li><a href='http://www.security-faqs.com/would-you-be-liable-if-a-hacker-attacked-your-network.html' rel='bookmark' title='Permanent Link: Would You Be Liable If A Hacker Attacked Your Network?'>Would You Be Liable If A Hacker Attacked Your Network?</a></li>
<li><a href='http://www.security-faqs.com/what-does-the-term-blended-threat-mean-and-how-can-it-affect-the-security-of-your-system.html' rel='bookmark' title='Permanent Link: What Does The Term &#8216;Blended Threat&#8217; Mean And How Can It Affect The Security Of Your System?'>What Does The Term &#8216;Blended Threat&#8217; Mean And How Can It Affect The Security Of Your System?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/kernel-hackers-and-network-hackers-which-should-worry-me-the-most.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The Best Antivirus Programs For 2011 &#8211; Kaspersky Antivirus 2011</title>
		<link>http://www.security-faqs.com/the-best-antivirus-programs-for-2011-kaspersky-antivirus-2011.html</link>
		<comments>http://www.security-faqs.com/the-best-antivirus-programs-for-2011-kaspersky-antivirus-2011.html#comments</comments>
		<pubDate>Fri, 03 Sep 2010 07:00:42 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Best Antivirus 2011]]></category>
		<category><![CDATA[Kaspersky]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20599</guid>
		<description><![CDATA[Having a mode for gamers earns Kaspersky some brownie points but what else do I think of their 2011 antivirus program?<p><a href="http://www.security-faqs.com/the-best-antivirus-programs-for-2011-kaspersky-antivirus-2011.html">The Best Antivirus Programs For 2011 &#8211; Kaspersky Antivirus 2011</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/kaspersky-release-their-2011-internet-security-and-antivirus-products.html' rel='bookmark' title='Permanent Link: Kaspersky Release Their 2011 Internet Security And Antivirus Products'>Kaspersky Release Their 2011 Internet Security And Antivirus Products</a></li>
<li><a href='http://www.security-faqs.com/which-2010-antivirus-programs-are-the-fastest.html' rel='bookmark' title='Permanent Link: Which 2010 Antivirus Programs Are The Fastest?'>Which 2010 Antivirus Programs Are The Fastest?</a></li>
<li><a href='http://www.security-faqs.com/the-top-5-antivirus-programs-for-windows-7.html' rel='bookmark' title='Permanent Link: The Top 5 Antivirus Programs For Windows 7'>The Top 5 Antivirus Programs For Windows 7</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>Like other antivirus packages from the leading security vendors, <a href="http://www.security-faqs.com/kaspersky">Kaspersky Anti-Virus</a> is a very comprehensive antivirus solution which offers real-time protection against the usual suspects, i.e.</p>
<ul>
<li>Viruses</li>
<li>Worms</li>
<li>Spyware</li>
<li>Bots</li>
<li>Trojans</li>
</ul>
<p>Kaspersky Labs are rightly well known in the security arena and this latest incarnation of their antivirus software will do their reputation no harm at all.</p>
<div id="attachment_20602" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20602" title="Kaspersky antivirus 2011 has an easy installation" src="http://www.security-faqs.com/wp-content/uploads/2010/08/Kaspersky-antivirus-2011-has-an-easy-installation.gif" alt="Kaspersky antivirus 2011 has an easy installation" width="538" height="420" />
	<p class="wp-caption-text">Kaspersky antivirus 2011 has an easy installation</p>
</div>
<p><strong>Easy Installation</strong></p>
<p>To be fair, most antivirus programs can be installed quite easily, and Kaspersky Antivirus 2011 is no exception.</p>
<p>All you need to do is follow the sort of setup wizard that you have probably seen many, many times before with just about every program you&#8217;ve installed on your Windows computer.</p>
<p>You get to choose between a standard or custom install; the standard installation will do just fine for almost all users.</p>
<p>Once installed you will want to run the update immediately and then you are good to go and will be safe from all manner of threats.</p>
<p><strong>Simple To Use</strong></p>
<p>I&#8217;ve tried many antivirus programs over the last few years and most of the ones I&#8217;ve looked at have been good or at least ok.</p>
<p>Some, however, have been a nightmare to get to grips with, despite the fact that I like to think I know what I&#8217;m doing.</p>
<p>Thats been down to poor interfaces that leave the user wondering what on earth they should be doing with the program.</p>
<p>Fortunately, Kaspersky Antivirus 2011 doesn&#8217;t fall into that category &#8211; it is, in fact, very easy to navigate around and has a straightforward and simple interface.</p>
<p>The main screen that you will see in this program is the dashboard which displays navigational tabs on the left hand side; these tabs lead to the main features that you will want to use -</p>
<ul>
<li>Scan</li>
<li>Update Centre</li>
<li>Tools</li>
<li>Quarantine</li>
<li>Reports</li>
<li>Scheduler</li>
</ul>
<p>Advanced users will find plenty to tinker with in there but basic users need not be worried that running a scan or updating their virus definitions will be beyond them.</p>
<p><strong>Features And Benefits</strong></p>
<p>Unlike some free antivirus programs, <a href="http://www.security-faqs.com/kaspersky">Kaspersky Antivirus 2011</a> is fully featured as I&#8217;m sure you would expect.</p>
<p>It also has one interesting key feature &#8211; the <strong>virtual keyboard</strong>.</p>
<p>Naturally, a virtual keyboard isn&#8217;t something you would want to be using all the time <em>(I have one on my laptop and it isn&#8217;t fun to use for long periods of time)</em> but it does add another layer of security when it comes to typing in sensitive information such as online banking passwords, etc.</p>
<p>This is because it will effectively freeze out any keylogging programs that may have crept onto your system.</p>
<p>Some of the other features include the ability to schedule future scans as well as determining how deep those scans should be.</p>
<p>And when you do run a scan you may be pleasantly surprised by how quick it is as Kaspersky use iSwift technology which will vary the speed of the scan according to what demands are being placed on the syste,, i.e., if you are not doing anything else on your computer then the scan will be quicker and, conversely, it will be slower if you are multitasking at that time.</p>
<p>Another feature, iChecker, allows for scanning of only those files that are new, or that have been changed since the last scan, which again decreases the time taken.</p>
<p>Kaspersky Antivirus 2011 also comes with a Gamer mode which is a feature that I personally like as there is nothing worse than having a notification pop up on your screen when you are frantically trying to kill your online mates in the latest online shooter!</p>
<div id="attachment_20604" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20604" title="Kaspersky offers a Gamer mode" src="http://www.security-faqs.com/wp-content/uploads/2010/08/Kaspersky-offers-a-Gamer-mode.gif" alt="Kaspersky offers a Gamer mode" width="538" height="420" />
	<p class="wp-caption-text">Kaspersky offers a Gamer mode</p>
</div>
<p><strong>Scope Of Protection</strong></p>
<p>As mentioned at the very beginning of this review, Kaspersky Antivirus protects your machine from a large range of threats such as -</p>
<ul>
<li>Viruses</li>
<li>Worms</li>
<li>Spyware</li>
<li>Bots</li>
<li>Trojans</li>
</ul>
<p>but there is a lot more to it than just that.</p>
<p><a href="http://www.security-faqs.com/kaspersky">Kaspersky Antivirus 2011</a> offers you protection from other threats too, such as -</p>
<ul>
<li>Keyloggers <em>(see the virtual keyboard comments above)</em></li>
<li>Browser exploits</li>
<li>Operating system exploits</li>
<li>Adware</li>
<li>and other malicious scripts</li>
</ul>
<div id="attachment_20605" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20605" title="Kaspersky antivirus 2011 offers effective scanning" src="http://www.security-faqs.com/wp-content/uploads/2010/08/Kaspersky-antivirus-2011-offers-effective-scanning.gif" alt="Kaspersky antivirus 2011 offers effective scanning" width="538" height="450" />
	<p class="wp-caption-text">Kaspersky antivirus 2011 offers effective scanning</p>
</div>
<p><strong>Regular Updates</strong></p>
<p>A staggeringly large number of new threats are released every week.</p>
<p>For an antivirus program to combat these new threats, as well as the numerous variations of existing ones, it needs to be updated frequently.</p>
<p>Kaspersky Antivirus has that covered because it updates itself hour in order to ensure that your computer is well protected.</p>
<p>Such updates are performed automatically which is never a bad thing as I know far too many people who would forget if it was left to them to keep their security software up to date.</p>
<p>For those of you who prefer manual updates that option is still possible as well.</p>
<p>If an update goes pear then you don&#8217;t need to panic as you can revert back to the previous working version of the database via the update centre tab.</p>
<div id="attachment_20615" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20615" title="Kaspersky antivirus updates hourly" src="http://www.security-faqs.com/wp-content/uploads/2010/08/Kaspersky-antivirus-updates-hourly.gif" alt="Kaspersky antivirus updates hourly" width="538" height="420" />
	<p class="wp-caption-text">Kaspersky antivirus updates hourly</p>
</div>
<p><strong>My Opinion</strong></p>
<p>After playing with several free antivirus programs over the last month or two it was quite refreshing to get into a program that was familiar to me, fully featured and easy to use.</p>
<p><a href="http://www.security-faqs.com/kaspersky-av-2011" target="_top"> <img class="alignleft" src="http://www.tqlkg.com/image-3745244-10751223" border="0" alt="Kaspersky Anti-Virus 2011" width="300" height="250" /></a>Everybody&#8217;s needs are different of course and I have always said that the best antivirus program for one person isn&#8217;t necessarily the best choice for someone else.</p>
<p>For me, Kaspersky Antivirus 2011 would certainly be good enough and the gaming mode is a feature that all the vendors should include by default in my opinion &#8211; not having notifications during gaming sessions is a big deal for those of us who like to get immersed in what we are doing.</p>
<p>I&#8217;ll be looking at other paid antivirus programs over the coming weeks which may or may not be better than Kaspersky but, for now, I&#8217;m happy with the antivirus program I have running on my laptop.</p>
<p><a href="http://www.security-faqs.com/the-best-antivirus-programs-for-2011-kaspersky-antivirus-2011.html">The Best Antivirus Programs For 2011 &#8211; Kaspersky Antivirus 2011</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/kaspersky-release-their-2011-internet-security-and-antivirus-products.html' rel='bookmark' title='Permanent Link: Kaspersky Release Their 2011 Internet Security And Antivirus Products'>Kaspersky Release Their 2011 Internet Security And Antivirus Products</a></li>
<li><a href='http://www.security-faqs.com/which-2010-antivirus-programs-are-the-fastest.html' rel='bookmark' title='Permanent Link: Which 2010 Antivirus Programs Are The Fastest?'>Which 2010 Antivirus Programs Are The Fastest?</a></li>
<li><a href='http://www.security-faqs.com/the-top-5-antivirus-programs-for-windows-7.html' rel='bookmark' title='Permanent Link: The Top 5 Antivirus Programs For Windows 7'>The Top 5 Antivirus Programs For Windows 7</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/the-best-antivirus-programs-for-2011-kaspersky-antivirus-2011.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Look Into The World Of A Security Expert And See How They Are Able To Find The Bad Guys</title>
		<link>http://www.security-faqs.com/look-into-the-world-of-a-security-expert-and-see-how-they-are-able-to-find-the-bad-guys.html</link>
		<comments>http://www.security-faqs.com/look-into-the-world-of-a-security-expert-and-see-how-they-are-able-to-find-the-bad-guys.html#comments</comments>
		<pubDate>Thu, 02 Sep 2010 07:00:17 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Internet Security]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20724</guid>
		<description><![CDATA[To do this kind of work you need to be both dedicated and passionate about what you do.<p><a href="http://www.security-faqs.com/look-into-the-world-of-a-security-expert-and-see-how-they-are-able-to-find-the-bad-guys.html">Look Into The World Of A Security Expert And See How They Are Able To Find The Bad Guys</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/how-th3j35t3r-and-other-hackers-are-using-their-skills-to-bring-real-world-bad-guys-to-book.html' rel='bookmark' title='Permanent Link: How th3j35t3r And Other Hackers Are Using Their Skills To Bring Real World Bad Guys To Book'>How th3j35t3r And Other Hackers Are Using Their Skills To Bring Real World Bad Guys To Book</a></li>
<li><a href='http://www.security-faqs.com/how-do-the-bad-guys-use-bittorrent-to-spread-their-malware.html' rel='bookmark' title='Permanent Link: How Do The Bad Guys Use BitTorrent To Spread Their Malware?'>How Do The Bad Guys Use BitTorrent To Spread Their Malware?</a></li>
<li><a href='http://www.security-faqs.com/does-the-computer-security-expert-in-your-office-know-what-they-are-doing.html' rel='bookmark' title='Permanent Link: Does The Computer Security Expert In Your Office Know What They Are Doing?'>Does The Computer Security Expert In Your Office Know What They Are Doing?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>The internet is a large and vast place.</p>
<p>Luckily for us, it is easy to navigate around.</p>
<p>We have places that will help us navigate the net such as Google and other link providers.</p>
<p>Search engines are not the only places that index the links of web sites though as you have places such as directories, which Yahoo used to be, that also do it.</p>
<div id="attachment_20736" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20736" title="uncovering the bad guys isn't as easy as you many think" src="http://www.security-faqs.com/wp-content/uploads/2010/09/internet-security.gif" alt="uncovering the bad guys isn't as easy as you many think" width="538" height="102" />
	<p class="wp-caption-text">uncovering the bad guys isn&#39;t as easy as you many think</p>
</div>
<p><strong>In Cyberspace, No-One Can Hear You Lurk</strong></p>
<p>But there is also another part of the internet that few people know about.</p>
<p>It is where people who do not want to be found lurk at.</p>
<p>It is called the darknet and it is a part of the internet that is never indexed.</p>
<p>This is where you will find the most exciting parts of the internet.</p>
<p>To quote the movie &#8220;Hackers&#8221;, these are where the keyboard samurai (aka &#8216;hackers&#8217;) like to hang out at.</p>
<p>This is especially true for black hat hackers but even though these places are secret, there are still a group of people who know how to find them and try to stop the bad guys before they launch their next terrible attack.</p>
<p>Security experts know full well about these dark pools.</p>
<p>Even though they are on a part of the internet that most people do not go down, it is still part of the normal net.</p>
<p>It uses the same IP addresses that every other site uses.</p>
<p>If you are going to be a <a title="is your computer security guy really an expert?" href="http://www.security-faqs.com/does-the-computer-security-expert-in-your-office-know-what-they-are-doing.html">computer security expert</a> then you must be able to venture down these dark holes; if you want to be able to stop the next big attack then this is the place that you have to be &#8211; you are not going to find out anything lurking on Yahoo messenger.</p>
<p>Instead, you have to be where the action is and most of the time this in the darknet.</p>
<p>But the dark net is not the only place where you are going to find the bad guys and it is not the only way that you can track them down either.</p>
<p>Sometimes you have to do a little bit of digital forensics to be able to find where the bad guys are at.</p>
<p>You can do that by learning how to read the code that they put out there for their attacks.</p>
<h2>Reading The Code</h2>
<p>Most programmers and even some hackers do not know that there is an art to reading code after it has been compiled.</p>
<p>The whole purpose of compiling a program is so that it gets translated into machine code and it is able to run faster.</p>
<p>Of course not all program languages follow this paradigm.</p>
<p>The ones that don’t are what you would call an interpreted language; those are languages that are made so that the person can write the code quick and easily and not have to worry about the time it takes the compiler to go through its paces.</p>
<p>Most hackers use a compiled language such as C or C++ because they are able to make the programs smaller and fit into less memory on the machine they are attacking.</p>
<p>The less memory you are taking up, the less likely someone is going to notice you are there.</p>
<p>Also, with these types of compiled languages you are able to control the memory which makes it easier to form an attack.</p>
<p>Since the languages are compiled, to be able to read them a security expert has to use a program called a decompiler.</p>
<h3>The Decompiler In Action</h3>
<p>When some people hear the word decompiler they believe that it is going to show the source code of the program again.</p>
<p>That is not what happens.</p>
<p>The decompiler allows you to see the assembly code that the program is running on.</p>
<p>From there <a title="both security pros AND hackers need a knowledge of assembly language" href="http://www.security-faqs.com/how-important-is-knowing-assembly-language-to-both-a-hacker-and-a-security-researcher.html">a security expert who is good at assembly</a> will be able to see little signatures that might give away who the hacker is or at least where the attack came from.</p>
<p>They can do this by seeing if the person used certain functions, if there are any strings in a foreign language and other little things that can tell more about the person who made the program.</p>
<p>Work such as this is long and tedious and is only done by people who love the job as there is so much to study before you can get to this point.</p>
<p>You have to have good working knowledge of software program construction, the operating system, and the processor underneath.</p>
<p>These factors all form together for you to be able to find out some things about the program.</p>
<p><strong>Finding The Bad Guys</strong></p>
<p>Finding out what is inside the program is only the first step.</p>
<p>Next you must be able to find out how the program was delivered in the first place.</p>
<p>What nodes on the internet did it take to get here?</p>
<p>This is when the attacker is finally caught.</p>
<p>In this stage of operation, everything can be exposed.</p>
<p>The network is the most telling of the whole process but you may have to deal with other countries to find out who did it.</p>
<p>Hopefully you now realise that there is a lot that goes on when trying to find the bad guys.</p>
<p>It is hard work but some people love it.</p>
<p><a href="http://www.security-faqs.com/look-into-the-world-of-a-security-expert-and-see-how-they-are-able-to-find-the-bad-guys.html">Look Into The World Of A Security Expert And See How They Are Able To Find The Bad Guys</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/how-th3j35t3r-and-other-hackers-are-using-their-skills-to-bring-real-world-bad-guys-to-book.html' rel='bookmark' title='Permanent Link: How th3j35t3r And Other Hackers Are Using Their Skills To Bring Real World Bad Guys To Book'>How th3j35t3r And Other Hackers Are Using Their Skills To Bring Real World Bad Guys To Book</a></li>
<li><a href='http://www.security-faqs.com/how-do-the-bad-guys-use-bittorrent-to-spread-their-malware.html' rel='bookmark' title='Permanent Link: How Do The Bad Guys Use BitTorrent To Spread Their Malware?'>How Do The Bad Guys Use BitTorrent To Spread Their Malware?</a></li>
<li><a href='http://www.security-faqs.com/does-the-computer-security-expert-in-your-office-know-what-they-are-doing.html' rel='bookmark' title='Permanent Link: Does The Computer Security Expert In Your Office Know What They Are Doing?'>Does The Computer Security Expert In Your Office Know What They Are Doing?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/look-into-the-world-of-a-security-expert-and-see-how-they-are-able-to-find-the-bad-guys.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How Can I Create A Secured Computer Environment For My Child?</title>
		<link>http://www.security-faqs.com/how-can-i-create-a-secured-computer-environment-for-my-child.html</link>
		<comments>http://www.security-faqs.com/how-can-i-create-a-secured-computer-environment-for-my-child.html#comments</comments>
		<pubDate>Wed, 01 Sep 2010 07:00:46 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Child Safety]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20028</guid>
		<description><![CDATA[There are so many dangerous images and pieces of text that the child could encounter during their web surfing session so you need to make sure that you have the right software to prevent this from happening.<p><a href="http://www.security-faqs.com/how-can-i-create-a-secured-computer-environment-for-my-child.html">How Can I Create A Secured Computer Environment For My Child?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-check-what-my-child-is-doing-on-their-computer.html' rel='bookmark' title='Permanent Link: How Can I Check What My Child Is Doing On Their Computer?'>How Can I Check What My Child Is Doing On Their Computer?</a></li>
<li><a href='http://www.security-faqs.com/what-tools-will-my-kids-need-to-surf-the-internet-safely.html' rel='bookmark' title='Permanent Link: What Tools Will My Kids Need To Surf The Internet Safely?'>What Tools Will My Kids Need To Surf The Internet Safely?</a></li>
<li><a href='http://www.security-faqs.com/safe-surfing-for-young-kids-with-the-kidoz-child-safe-browser.html' rel='bookmark' title='Permanent Link: Safe Surfing For Young Kids With The Kido&#8217;z Child-Safe Browser'>Safe Surfing For Young Kids With The Kido&#8217;z Child-Safe Browser</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>More and more kids are starting to use the home computer at younger ages.</p>
<p>They see their parents or maybe their older siblings using the computer and they want to do it as well.</p>
<p>The computer can be a fascinating device because of everything that it can do and this is especially true through the eyes of a child.</p>
<p>So you should make sure that your child is able to use your computer when they get on it.</p>
<div id="attachment_20418" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20418" title="creating a secured computer environment for your child" src="http://www.security-faqs.com/wp-content/uploads/2010/09/child-safety.gif" alt="creating a secured computer environment for your child" width="538" height="102" />
	<p class="wp-caption-text">creating a secured computer environment for your child</p>
</div>
<p>This means that the child should be relatively safe when they use the device.</p>
<p>There are so many <a title="stop your kids watching porn on the internet" href="http://www.security-faqs.com/how-do-i-stop-my-kids-watching-porn-on-the-internet.html">dangerous images and pieces of text</a> that the child could encounter during their web surfing session so you need to make sure that you have the right software to prevent this from happening.</p>
<p>In this article I will show you the many tools that you can use to keep kids safe while they surf the internet.</p>
<h2>Software That Can Monitor Your Child</h2>
<p>From third party software to programs that are built into Windows, there are many ways that you can make sure that your child is safe when they use the internet.</p>
<p>You have software that will monitor the child&#8217;s progress and it will send a screenshot to your email address every 15 minutes.</p>
<p>This allows you to see what sites your child is visiting without you having to hover over their shoulders.</p>
<p style="text-align: center;"><a href="http://www.security-faqs.com/webwatcher" target="_top"><br />
<img class="aligncenter" src="http://www.lduhtrp.net/image-3745244-10687120" border="0" alt="WebWatcher-Get 40% Off" width="300" height="250" /></a></p>
<p>There is also software that will allow you to create a white list of what sites your child is allow to visit when they get on the computer.</p>
<p>This way, they can only go where you say they can go.</p>
<p>This is especially effective for children who are really young and want to use the computer.</p>
<p>White list software will not work with older kids because there are too many ways to get around the limitation of the software, or they will just surf the web at a friend’s house since they cannot go to the web sites that they want to at home.</p>
<h3>Physically Check What Your Child Is Doing</h3>
<p>You do not have to stand right over your child as they use the internet but you should walk by the computer every 15 minutes to make sure that they are <a title="as a responsible parent you should check what your child is doing on their computer" href="http://www.security-faqs.com/how-can-i-check-what-my-child-is-doing-on-their-computer.html">not doing anything wrong</a>.</p>
<p>Most kids will not attempt to go to a web site that they should not be on if they know that their parent will walk by at anytime.</p>
<p>Make sure that the walk bys are sporadic.</p>
<p>You do not want the kids to have your pattern to walk by the computer timed so that they can do the bad things when you are not there.</p>
<p>If they are not able to time when you are coming then there is less chance of them trying to go to somewhere on the internet that they are not supposed to be at.</p>
<p>The main key for keeping your child secured on the internet is to make sure that you always know what they are doing.</p>
<p>Teenagers may have a right to surf the web without you knowing everything but a child does not have those same rights.</p>
<p>Your job is to keep them protected and you can only do that by making sure that you monitor them.</p>
<p><a href="http://www.security-faqs.com/how-can-i-create-a-secured-computer-environment-for-my-child.html">How Can I Create A Secured Computer Environment For My Child?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-check-what-my-child-is-doing-on-their-computer.html' rel='bookmark' title='Permanent Link: How Can I Check What My Child Is Doing On Their Computer?'>How Can I Check What My Child Is Doing On Their Computer?</a></li>
<li><a href='http://www.security-faqs.com/what-tools-will-my-kids-need-to-surf-the-internet-safely.html' rel='bookmark' title='Permanent Link: What Tools Will My Kids Need To Surf The Internet Safely?'>What Tools Will My Kids Need To Surf The Internet Safely?</a></li>
<li><a href='http://www.security-faqs.com/safe-surfing-for-young-kids-with-the-kidoz-child-safe-browser.html' rel='bookmark' title='Permanent Link: Safe Surfing For Young Kids With The Kido&#8217;z Child-Safe Browser'>Safe Surfing For Young Kids With The Kido&#8217;z Child-Safe Browser</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/how-can-i-create-a-secured-computer-environment-for-my-child.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3 Reasons Why Hackers Love To Use Celebrities During Their Attacks</title>
		<link>http://www.security-faqs.com/3-reasons-why-hackers-love-to-use-celebrities-during-their-attacks.html</link>
		<comments>http://www.security-faqs.com/3-reasons-why-hackers-love-to-use-celebrities-during-their-attacks.html#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:00:25 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20367</guid>
		<description><![CDATA[Hackers know that if they use a celebrity in their attack methods that they will be able to get more people to click on the item.<p><a href="http://www.security-faqs.com/3-reasons-why-hackers-love-to-use-celebrities-during-their-attacks.html">3 Reasons Why Hackers Love To Use Celebrities During Their Attacks</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/hackers-using-the-news-of-fake-celebrity-deaths-to-their-own-advantage.html' rel='bookmark' title='Permanent Link: Hackers Use The News Of Fake Celebrity Deaths To Their Own Advantage'>Hackers Use The News Of Fake Celebrity Deaths To Their Own Advantage</a></li>
<li><a href='http://www.security-faqs.com/current-news-events-are-the-playground-of-hackers.html' rel='bookmark' title='Permanent Link: Why Are Current News Events The Playground Of Hackers?'>Why Are Current News Events The Playground Of Hackers?</a></li>
<li><a href='http://www.security-faqs.com/how-is-a-botnet-able-to-grow-so-quickly.html' rel='bookmark' title='Permanent Link: How Is A Botnet Able To Grow So Quickly?'>How Is A Botnet Able To Grow So Quickly?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>The use of celebrities to sell an item is something that we have gotten use to in this day and age.</p>
<p>We see them on billboards, on ads in magazines, and in commercials.</p>
<p>They are everywhere and that is for good reason.</p>
<p>That is because having a celebrity that is promoting your product will bring attention from both their fans and the people who hate them.</p>
<p>It is a win win proposition.</p>
<div id="attachment_20401" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20401" title="why do hackers love celebrities so much?" src="http://www.security-faqs.com/wp-content/uploads/2010/08/hacking2.gif" alt="why do hackers love celebrities so much?" width="538" height="102" />
	<p class="wp-caption-text">why do hackers love celebrities so much?</p>
</div>
<p>This piece of marketing is something that hackers have picked up on.</p>
<p>They know that if they <a title="celebrity death hoaxes are a popular tactic amongst hackers" href="http://www.security-faqs.com/hackers-using-the-news-of-fake-celebrity-deaths-to-their-own-advantage.html">use a celebrity in their attack methods</a> that they will be able to get more people to click on the item.</p>
<p>The more popular the celebrity, the more people will click on the link or program.</p>
<p>Or, at the very least, they will notice it.</p>
<p>But there is more to the attacks than just using a celebrity.</p>
<p>I will take a look at why these types of attacks that use a celebrity picture are so effective.</p>
<h2>The Trust Factor</h2>
<p>The one thing that people think of when they see the celebrity of choice is that they are promoting the product.</p>
<p>If you are a fan of the celebrity then you will think that the product is good and there will be nothing wrong with it.</p>
<p>The trust factor is something that the hacker cannot gain on his own so by using the celebrity picture it gives him an edge.</p>
<p>Some people will blame the celebrity even after the virus is exposed because they will really think that they are promoting that particular product.</p>
<p>Most people are not computer savvy and they do not realize the many tricks that people on the internet will use to try and fool them.</p>
<h3>The Rate Of Infection</h3>
<p>With a celebrity picture being used on the malware the hacker will be sure that the virus is able to spread at a faster rate than it normally would.</p>
<p>This is especially true if they place a scandalous headline next to the image or file as well.</p>
<p>If you are a black hat hacker, to capture the most people before the white hat hackers figure out what you are doing, you need to be able to have the virus spread as quickly as possible.</p>
<p>Having anything that makes the infection happen quicker is quite helpful in this regard.</p>
<p>A picture along with a salacious headline is sure to do this.</p>
<p><strong>The Prestige</strong></p>
<p>In the past a hacker used to do attacks so that they could see their name become popular among their peers.</p>
<p>Now the incentive is more monetary based but they still like to get a little recognition from the attack as well.</p>
<p>When they use a celebrity in the attack there is more of a chance that the attack will be <a title="conversely, hackers will also use current news events for their attacks" href="http://www.security-faqs.com/current-news-events-are-the-playground-of-hackers.html">noticed on the news</a>.</p>
<p>The news loves to cover any story that has to do with a celebrity, even if they are not directly involved with it.</p>
<p>If a hacker wants to get their attack noticed then there is no better way to do it.</p>
<p>Using a celebrity image during an attack can have many advantages for a hacker.</p>
<p>If you are a normal user then you should really be careful when you see an image of your favorite star.</p>
<p><a href="http://www.security-faqs.com/3-reasons-why-hackers-love-to-use-celebrities-during-their-attacks.html">3 Reasons Why Hackers Love To Use Celebrities During Their Attacks</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/hackers-using-the-news-of-fake-celebrity-deaths-to-their-own-advantage.html' rel='bookmark' title='Permanent Link: Hackers Use The News Of Fake Celebrity Deaths To Their Own Advantage'>Hackers Use The News Of Fake Celebrity Deaths To Their Own Advantage</a></li>
<li><a href='http://www.security-faqs.com/current-news-events-are-the-playground-of-hackers.html' rel='bookmark' title='Permanent Link: Why Are Current News Events The Playground Of Hackers?'>Why Are Current News Events The Playground Of Hackers?</a></li>
<li><a href='http://www.security-faqs.com/how-is-a-botnet-able-to-grow-so-quickly.html' rel='bookmark' title='Permanent Link: How Is A Botnet Able To Grow So Quickly?'>How Is A Botnet Able To Grow So Quickly?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/3-reasons-why-hackers-love-to-use-celebrities-during-their-attacks.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Antivirus Trials &#8211; Make Sure Your Protection Doesn&#8217;t Run Out</title>
		<link>http://www.security-faqs.com/antivirus-trials-make-sure-your-protection-doesnt-run-out.html</link>
		<comments>http://www.security-faqs.com/antivirus-trials-make-sure-your-protection-doesnt-run-out.html#comments</comments>
		<pubDate>Mon, 30 Aug 2010 07:00:28 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Antivirus]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20365</guid>
		<description><![CDATA[Some people feel that the demo software installed on their new computer is the best way to go because the manufacturer of the computer chose the company but that may not be the best choice.<p><a href="http://www.security-faqs.com/antivirus-trials-make-sure-your-protection-doesnt-run-out.html">Antivirus Trials &#8211; Make Sure Your Protection Doesn&#8217;t Run Out</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/why-shouldnt-i-install-more-than-one-antivirus-program-at-a-time.html' rel='bookmark' title='Permanent Link: Why Shouldn&#8217;t I Install More Than One Antivirus Program At A Time?'>Why Shouldn&#8217;t I Install More Than One Antivirus Program At A Time?</a></li>
<li><a href='http://www.security-faqs.com/which-free-antivirus-solution-should-you-use.html' rel='bookmark' title='Permanent Link: Which Free Antivirus Solution Should You Use?'>Which Free Antivirus Solution Should You Use?</a></li>
<li><a href='http://www.security-faqs.com/the-top-10-free-antivirus-2010-4.html' rel='bookmark' title='Permanent Link: The Top 10 Free Antivirus 2010 &#8211; MSE &#8211; Microsoft Security Essentials'>The Top 10 Free Antivirus 2010 &#8211; MSE &#8211; Microsoft Security Essentials</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>Antivirus is important software to have on your computer, especially in this day and age.</p>
<p>That is why whenever you purchase a new computer you will see trial versions of some of the most popular software packages out there.</p>
<p>I am sure that we have all seen the MacAfee or Norton antivirus trials that are already installed in brand new computers.</p>
<p>This is both a good thing and a bad thing.</p>
<div id="attachment_20397" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20397" title="don't let your antivirus trial run out!" src="http://www.security-faqs.com/wp-content/uploads/2010/08/antivirus4.gif" alt="don't let your antivirus trial run out!" width="538" height="102" />
	<p class="wp-caption-text">don&#39;t let your antivirus trial run out!</p>
</div>
<p>It can be good because that means you have an antivirus product already working on your computer without you having to do much of anything.</p>
<p>It can be bad because you might be fooled into having a false sense of security because you think that you already have a <a title="the best antivirus 2010" href="http://www.security-faqs.com/the-best-10-antivirus-programs-for-2010.html">full product</a> running on your computer.</p>
<p>But that is not the case; the product is actually a timed trial and you have to purchase the product to keep it running.</p>
<p>This has fooled a lot of people over the years.</p>
<p>You should be sure that you do not get tricked by this as well.</p>
<h2>When You First Purchase The Computer</h2>
<p>Now that you have a warning that this type of thing can happen, you need to make sure that you are prepared for it.</p>
<p>You can do this in several ways.</p>
<p>The first way is that you can make sure that you purchase the software as soon as you have everything running on your computer.</p>
<p>Most trial antivirus software will give you up to a month to make a purchase but you can try it for free for a week and make a decision based off of that.</p>
<p>That way you can see if you like it and if you do not then you can try another option.</p>
<p>You do not have to pay for a good working antivirus if you do not want to.</p>
<p>I have to say that the cost of the software should be a secondary concern to how well it works but if you cannot afford it then there are several <a title="free antivirus programs" href="http://www.security-faqs.com/the-top-10-free-antivirus-programs-2010">free antivirus programs</a> out there.</p>
<p>Before you pick another option, whether it is paid for or free, you should read reviews about the product to see how well it works.</p>
<p>This antivirus software is going to be your first line of defense against the bad guys so you should be sure that it will work and stop them in their tracks.</p>
<h3>Choosing The Vendor That The Computer Manufacturer Chose</h3>
<p>Some people feel that the demo software is the best way to go because the manufacturer of the computer chose the company.</p>
<p>That is not necessarily the case.</p>
<p>A particular antivirus trial may have been picked by the manufacturer because the vendor paid them to do so.</p>
<p>Make your own decision of what software you want on the computer.</p>
<p>You must remember that the antivirus that comes installed on your system is only a timed trial version of the software.</p>
<p>If you want to be sure that it is going to work later on either pay for it right away or find an alternative.</p>
<p><a href="http://www.security-faqs.com/antivirus-trials-make-sure-your-protection-doesnt-run-out.html">Antivirus Trials &#8211; Make Sure Your Protection Doesn&#8217;t Run Out</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/why-shouldnt-i-install-more-than-one-antivirus-program-at-a-time.html' rel='bookmark' title='Permanent Link: Why Shouldn&#8217;t I Install More Than One Antivirus Program At A Time?'>Why Shouldn&#8217;t I Install More Than One Antivirus Program At A Time?</a></li>
<li><a href='http://www.security-faqs.com/which-free-antivirus-solution-should-you-use.html' rel='bookmark' title='Permanent Link: Which Free Antivirus Solution Should You Use?'>Which Free Antivirus Solution Should You Use?</a></li>
<li><a href='http://www.security-faqs.com/the-top-10-free-antivirus-2010-4.html' rel='bookmark' title='Permanent Link: The Top 10 Free Antivirus 2010 &#8211; MSE &#8211; Microsoft Security Essentials'>The Top 10 Free Antivirus 2010 &#8211; MSE &#8211; Microsoft Security Essentials</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/antivirus-trials-make-sure-your-protection-doesnt-run-out.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Who Can I Trust With My Password?</title>
		<link>http://www.security-faqs.com/who-can-i-trust-with-my-password.html</link>
		<comments>http://www.security-faqs.com/who-can-i-trust-with-my-password.html#comments</comments>
		<pubDate>Sun, 29 Aug 2010 07:00:15 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Internet Security]]></category>
		<category><![CDATA[Password Security]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=20030</guid>
		<description><![CDATA[When it comes to our web based accounts, we are going to need someone that we trust to be able to access our accounts just in case something happens to us.<p><a href="http://www.security-faqs.com/who-can-i-trust-with-my-password.html">Who Can I Trust With My Password?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-formulate-a-strong-and-safe-password.html' rel='bookmark' title='Permanent Link: How Can I Formulate A Strong Password And Keep It Safe?'>How Can I Formulate A Strong Password And Keep It Safe?</a></li>
<li><a href='http://www.security-faqs.com/does-password-protecting-a-pdf-file-really-make-it-secure.html' rel='bookmark' title='Permanent Link: Does Password Protecting A PDF File Really Make It Secure?'>Does Password Protecting A PDF File Really Make It Secure?</a></li>
<li><a href='http://www.security-faqs.com/adopting-poor-password-security-is-like-laying-all-your-cards-on-the-table.html' rel='bookmark' title='Permanent Link: Adopting Poor Password Security Is Like Laying All Your Cards On The Table'>Adopting Poor Password Security Is Like Laying All Your Cards On The Table</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>We all have someone that we trust.</p>
<p>Even though there are some people in the world that trust no-one, for the most part we all have at least one person that we put our faith in.</p>
<p>Most of us have more than one.</p>
<p>When it comes to our web based accounts, we are going to need someone that we trust to be able to access our accounts just in case something happens to us.</p>
<p>Even in the digital age, people still get sick, or worse.</p>
<p>Just like you would have someone handle your real life affairs, you are going to need someone to handle your online affairs as well.</p>
<p>This is a new area that we are in since we never had to worry about this problem before.</p>
<p>So let’s talk about the requirements that someone should have if you are going to give them all of this power.</p>
<div id="attachment_20393" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20393" title="can you trust anyone with your password?" src="http://www.security-faqs.com/wp-content/uploads/2010/08/password-security1.gif" alt="can you trust anyone with your password?" width="538" height="102" />
	<p class="wp-caption-text">can you trust anyone with your password?</p>
</div>
<h2>Who Can You Trust With Your Passwords?</h2>
<p>The first thing that you want to look at when it comes to this question is whether you trust this person with your life.</p>
<p>You are giving them a lot of power over you and you must make sure that they are willing to use this power responsibly.</p>
<p>It should be someone that you have known for a long time.</p>
<p>Even though it doesn&#8217;t seem like it at the time, a lot of friendships do not last for a long time.</p>
<p>They may last for a couple of years but that is it.</p>
<p>You will have many friends over your lifetime; very few of them will be people that you know for over a decade.</p>
<p>So it may be better to give it to a trusted family member for safe keeping.</p>
<p>These are people who you have known all of your life and you will probably know them in the future as well but you should not give it to just any family member though; it should be someone that you trust immensely.</p>
<p>It might work out better for you if you split the responsibility of the password and the username between different people &#8211; this way no-one is tempted to open your accounts before you need them to.</p>
<p>You can give one person the usernames of the different accounts that you have and give them explicit instructions on when you need them to open it and you can do the same for the person that is holding the <a title="this is the only time you should break password rule number one" href="http://www.security-faqs.com/secure-your-online-passwords-with-these-5-tips.html">password</a>.</p>
<h3>Which Web Sites Should They Have Access To?</h3>
<p>They do not need access to every web site that you visit &#8211; some of the sites may be very private and you do not want anyone to know that you visit them, but they do need access to the important web sites that you visit.</p>
<p>They may need your bank web site and your brokerage web site as well.</p>
<p>They basically need all the sites that you or a family member might need access to for important matters to if you are not able to do it.</p>
<p>If anything was to happen to you, you must make sure that you have someone that is able to take over.</p>
<p>This way, you will have the peace of mind that even if you are not able to in person, you will still be able to take care of you and your family&#8217;s needs.</p>
<p><a href="http://www.security-faqs.com/who-can-i-trust-with-my-password.html">Who Can I Trust With My Password?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/how-can-i-formulate-a-strong-and-safe-password.html' rel='bookmark' title='Permanent Link: How Can I Formulate A Strong Password And Keep It Safe?'>How Can I Formulate A Strong Password And Keep It Safe?</a></li>
<li><a href='http://www.security-faqs.com/does-password-protecting-a-pdf-file-really-make-it-secure.html' rel='bookmark' title='Permanent Link: Does Password Protecting A PDF File Really Make It Secure?'>Does Password Protecting A PDF File Really Make It Secure?</a></li>
<li><a href='http://www.security-faqs.com/adopting-poor-password-security-is-like-laying-all-your-cards-on-the-table.html' rel='bookmark' title='Permanent Link: Adopting Poor Password Security Is Like Laying All Your Cards On The Table'>Adopting Poor Password Security Is Like Laying All Your Cards On The Table</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/who-can-i-trust-with-my-password.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Hotels And Hackers &#8211; What Do You Need To Know?</title>
		<link>http://www.security-faqs.com/hotels-and-hackers-what-do-you-need-to-know.html</link>
		<comments>http://www.security-faqs.com/hotels-and-hackers-what-do-you-need-to-know.html#comments</comments>
		<pubDate>Sat, 28 Aug 2010 07:00:31 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Hacking]]></category>

		<guid isPermaLink="false">http://www.security-faqs.com/?p=19243</guid>
		<description><![CDATA[Black hat and white hat hackers all know about the different targets that the black hats like to hit and there are some places that are easier to hit than others...<p><a href="http://www.security-faqs.com/hotels-and-hackers-what-do-you-need-to-know.html">Hotels And Hackers &#8211; What Do You Need To Know?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>



Related posts:<ol><li><a href='http://www.security-faqs.com/electronic-keycards-at-hoax-hotel.html' rel='bookmark' title='Permanent Link: Electronic Keycards At Hoax Hotel'>Electronic Keycards At Hoax Hotel</a></li>
<li><a href='http://www.security-faqs.com/will-biometrics-eradicate-credit-card-fraud.html' rel='bookmark' title='Permanent Link: Will Biometrics Eradicate Credit Card Fraud?'>Will Biometrics Eradicate Credit Card Fraud?</a></li>
<li><a href='http://www.security-faqs.com/how-are-the-professional-hackers-protecting-themselves-at-defcon-this-week.html' rel='bookmark' title='Permanent Link: How Are The Professional Hackers Protecting Themselves At Defcon This Week?'>How Are The Professional Hackers Protecting Themselves At Defcon This Week?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p></p><p>Black hat and white hat hackers all know about the different targets that the black hats like to hit.</p>
<p>There are some places that are easier to hit than others.</p>
<p>When you are talking about hacking on the web one of the favorite places to go is social media web sites.</p>
<p>There is a large target base and they are mostly people who are not what you would call web savvy &#8211; it is easier to lay out  attacks on a group like this.</p>
<p>In real life, a place that hackers like to hit at is hotels.</p>
<p>Hotels are a beacon of financial transactions and there are plenty of ways that a smart hacker can take advantage of the situation.</p>
<p>In this article I will talk about what is at risk when you go to a hotel.</p>
<div id="attachment_20386" class="wp-caption aligncenter" style="width: 538px">
	<img class="size-full wp-image-20386" title="credit cards are a juicy target" src="http://www.security-faqs.com/wp-content/uploads/2010/08/hacking1.gif" alt="credit cards are a juicy target" width="538" height="102" />
	<p class="wp-caption-text">credit cards are a juicy target</p>
</div>
<h2>Credit Cards Are Popular In Hotels</h2>
<p>When you are at a hotel the item that hackers are after the most is your <a title="watch out for credit card fraud" href="http://www.security-faqs.com/what-exactly-is-credit-card-fraud.html">credit card number</a>.</p>
<p>You use your credit card so many times when you are at a place like this that you can easily slip up and have someone get the number.</p>
<p>They must do it smoothly because if you know that someone might have gotten the number you will just call for a new credit card and the number will be useless so they will do things like use a fake scanner when you are at the hotel restaurant or use a Wi Fi scanner to pick up the data that is being transmitted by the credit card machine.</p>
<p>A lot of these machines are wireless and the places that use them do not bother to secure them.</p>
<p>If you are using your debit card at some of the ATM machines that are there you must be careful as well.</p>
<p>There is a piece of equipment that black hat hackers can use to put on the <a title="ATMs may not be as secure as you think" href="http://www.security-faqs.com/how-could-a-new-atm-rootkit-turn-the-world-of-banking-on-its-head.html">ATM machine</a> that makes it look normal but in reality it will steal your data.</p>
<p>The piece looks just like a normal extension but it is actually a second data reader.</p>
<p>So, instead of swiping your card in one reader, you are swiping it in two.</p>
<p>This can happen in more than just a hotel but it happens a lot in them.</p>
<h3>Your Wi Fi Access</h3>
<p>Even when you are not using your credit card at the hotel for it to be exposed there is still another place where they can get your information.</p>
<p>Most people, when they go to a hotel, will use the hotel’s <a title="Wi Fi hotspots can be a risk too" href="http://www.security-faqs.com/what-are-the-signs-that-your-security-might-be-in-danger-at-a-wi-fi-hot-spot.html">Wi Fi hotspot</a> to get internet access.</p>
<p>Black hat hackers are able to intercept data on here as well.</p>
<p>There are plenty of programs that will allow them to sniff the data traffic that is going over the network and use it to their advantage.</p>
<p>When you are at a hotel you must be careful when it comes to your data.</p>
<p>The bad guys are there lurking, waiting for you to slip up.</p>
<p><a href="http://www.security-faqs.com/hotels-and-hackers-what-do-you-need-to-know.html">Hotels And Hackers &#8211; What Do You Need To Know?</a> is a post from: <a href="http://www.security-faqs.com">Security FAQs</a></p>


<p>Related posts:<ol><li><a href='http://www.security-faqs.com/electronic-keycards-at-hoax-hotel.html' rel='bookmark' title='Permanent Link: Electronic Keycards At Hoax Hotel'>Electronic Keycards At Hoax Hotel</a></li>
<li><a href='http://www.security-faqs.com/will-biometrics-eradicate-credit-card-fraud.html' rel='bookmark' title='Permanent Link: Will Biometrics Eradicate Credit Card Fraud?'>Will Biometrics Eradicate Credit Card Fraud?</a></li>
<li><a href='http://www.security-faqs.com/how-are-the-professional-hackers-protecting-themselves-at-defcon-this-week.html' rel='bookmark' title='Permanent Link: How Are The Professional Hackers Protecting Themselves At Defcon This Week?'>How Are The Professional Hackers Protecting Themselves At Defcon This Week?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.security-faqs.com/hotels-and-hackers-what-do-you-need-to-know.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
