<?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 Archives - OmniSOS - Elite WordPress Security</title>
	<atom:link href="https://omnisos.com/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>https://omnisos.com/tag/security/</link>
	<description>Shielding Attacks, Thwarting Intruders, Saving Your Site!</description>
	<lastBuildDate>Wed, 29 Oct 2014 17:25:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>What exactly is Malware?</title>
		<link>https://omnisos.com/kb/malware/</link>
					<comments>https://omnisos.com/kb/malware/#respond</comments>
		
		<dc:creator><![CDATA[Staff]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 22:22:18 +0000</pubDate>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[breach]]></category>
		<category><![CDATA[code injection]]></category>
		<category><![CDATA[command injection]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[malicious]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[remote file inclusion]]></category>
		<category><![CDATA[RFI]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[user input validation]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[whitelist]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=555</guid>

					<description><![CDATA[<p>Malware (Virus) is a very broad term, and there are many different ways that malware can be injected into a website. One common way that malware is inserted is by...</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/malware/">What exactly is Malware?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Malware (Virus)</strong> is a very broad term, and there are many different ways that malware can be injected into a website. One common way that malware is inserted is by a File Inclusion vulnerability. With this vulnerability, the hacker will insert a malicious script into the site by editing the PHP. This is normally performed by using methods similar to Code Injections. As a result, creating secure user input validation will also mitigate this vulnerability, along with coding the PHP to eliminate the possibility of Remote File Inclusion (RFI). Malware can also be inserted by gaining login access, so many other security measures must be taken to mitigate this risk. Oftentimes, the hacker&#8217;s goal is to insert malware, no matter what vulnerability he/she is using to gain access.</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/malware/">What exactly is Malware?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/kb/malware/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What are Code Injections?</title>
		<link>https://omnisos.com/kb/code-injections/</link>
					<comments>https://omnisos.com/kb/code-injections/#respond</comments>
		
		<dc:creator><![CDATA[Staff]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 22:16:48 +0000</pubDate>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[code injection]]></category>
		<category><![CDATA[command injection]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[LFI]]></category>
		<category><![CDATA[local file inclusion]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[remote file inclusion]]></category>
		<category><![CDATA[RFI]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[user input]]></category>
		<category><![CDATA[validation]]></category>
		<category><![CDATA[whitelist]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=552</guid>

					<description><![CDATA[<p>Code Injections (such as SQL Injections and command injections) are attacks that inject code into a server or database to unexpectedly execute commands or to insert malware. The most common...</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/code-injections/">What are Code Injections?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Code Injections (such as SQL Injections and command injections)</strong> are attacks that inject code into a server or database to unexpectedly execute commands or to insert malware. The most common form of Code Injection a hacker will use is to use special command line characters in a normal user input box to trick the server into executing the following command. This vulnerability is used for a wide range of malicious activity, which makes it particularly dangerous. These commands can be injected through any average text input box. The most effective way to prevent Code Injection is to create secure user input validation (such as a whitelist that allows only &#8220;innocent&#8221; characters, like letters and numbers), and to implement a secure firewall.</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/code-injections/">What are Code Injections?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/kb/code-injections/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is a Brute-Force Attack?</title>
		<link>https://omnisos.com/kb/brute-force/</link>
					<comments>https://omnisos.com/kb/brute-force/#respond</comments>
		
		<dc:creator><![CDATA[Staff]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 22:08:48 +0000</pubDate>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[breach]]></category>
		<category><![CDATA[brute-force]]></category>
		<category><![CDATA[crack]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[passcode]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vulnerability]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=549</guid>

					<description><![CDATA[<p>Brute-Force attacks (also called an Exhaustive Key Search) are used with the intention of gaining access to the server or website by guessing the login authentication. Hackers who use this...</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/brute-force/">What is a Brute-Force Attack?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Brute-Force attacks (also called an Exhaustive Key Search)</strong> are used with the intention of gaining access to the server or website by guessing the login authentication. Hackers who use this method typically have several computers with very fast hardware which use an algorithm to guess the password. These machines can guess thousands to millions of passwords per minute, and they will typically guess every possible password. This can be a very dangerous attack if security measures are not set up properly. The best way to prevent a successful Brute-Force attack is to prevent access to the login page after a certain amount of failed login attempts (implemented into most firewalls), to have a strong, secure password, and to set up two factor authentication. Two factor authentication uses a password, and also sends a verification code to the user&#8217;s cell phone. This makes it virtually impossible for Brute-Force attacks to be successful.</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/brute-force/">What is a Brute-Force Attack?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/kb/brute-force/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>DDoS &#8211; What does it stand for?</title>
		<link>https://omnisos.com/kb/ddos/</link>
					<comments>https://omnisos.com/kb/ddos/#respond</comments>
		
		<dc:creator><![CDATA[Staff]]></dc:creator>
		<pubDate>Tue, 28 Oct 2014 21:56:09 +0000</pubDate>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[ddos]]></category>
		<category><![CDATA[denial of service]]></category>
		<category><![CDATA[distributed denial of service]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[overload]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=545</guid>

					<description><![CDATA[<p>Distributed Denial of Service (DDoS) attacks stress the server in several ways, with the intention of slowing it down or crashing the server itself. Hackers who use DDoS attacks are...</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/ddos/">DDoS &#8211; What does it stand for?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Distributed Denial of Service (DDoS)</strong> attacks stress the server in several ways, with the intention of slowing it down or crashing the server itself. Hackers who use DDoS attacks are not necessarily trying to gain access to the website. Their main goal is to make the website inaccessible to its users. It is often unknown why hackers would use an attack like this. In the past, many DDoS attacks have been targeted at large companies. However, it is now much more common for these attacks to be directed at smaller websites, posing a threat to many normal websites on the internet. Having a secure and advanced firewall is one of the best methods for preventing DDoS attacks.</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/ddos/">DDoS &#8211; What does it stand for?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/kb/ddos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Can Weak Security Ruin Your SEO Efforts?</title>
		<link>https://omnisos.com/articles/can-weak-security-ruin-your-seo-efforts/</link>
					<comments>https://omnisos.com/articles/can-weak-security-ruin-your-seo-efforts/#respond</comments>
		
		<dc:creator><![CDATA[Charlie Tobler]]></dc:creator>
		<pubDate>Wed, 22 Oct 2014 23:36:10 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[blacklist]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[repair]]></category>
		<category><![CDATA[seach]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[virus]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=288</guid>

					<description><![CDATA[<p>Search Engine Optimization (SEO) is an ever-increasing aspect of the web industry, and for good reason. Search engines have become an important part of our lives. We search for information,...</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/articles/can-weak-security-ruin-your-seo-efforts/">Can Weak Security Ruin Your SEO Efforts?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Search Engine Optimization (SEO) is an ever-increasing aspect of the web industry, and for good reason. Search engines have become an important part of our lives. We search for information, businesses, reviews… Everything. And without SEO, your potential customers, readers, etc, most likely won&#8217;t be able to find your website. That means lost traffic, which means lost business. That is why SEO is of such importance to the web industry, and to business in general.</p>
<p>Unfortunately, it is so easy to forget one of the most integral aspects of SEO: Security. How does security affect search engine rankings?</p>
<p>The search engines rank websites based on relevant, quality content, because this is of most value to the one searching. The search engine has the ability to crawl your site, so it can find your content and determine if it is relevant to the search. Whichever sites the search engine thinks will be of most value are displayed at the top of results.</p>
<p>Makes sense, right? This is where site security comes in.</p>
<p>Let&#8217;s say your site has been hacked, and the hackers use your site to send and host spam, or to redirect to an explicit website. When the search engine crawls your site, it will find malicious activity. Red flags to the search engine! The search engine is responsible for showing relevant, SAFE, results to its users. When a site is compromised by malware, it doesn&#8217;t look safe to the search engine anymore. And this will show itself in lower rankings, or an even worse scenario: the search engine blacklisting your site. In this case, the search engine has deemed your site dangerous enough to blacklist it. This is bad for both brand reputation, and lost revenue and/or readership. This is something you want to mitigate.</p>
<p>Is this repairable? Yes! Our premium plans feature an added blacklist repair tool which works with our robust Anti-virus service to clean the malware from your site and even remove your site from the blacklist directories.</p>
<p>Hopefully, I have successfully communicated just how essential the security of your website is to its search engine optimization. You can&#8217;t afford to be without an Elite Security protocol, such as OmniSOS.</p>
<p>Check out our <a href="/compare-plans/">plans</a> to determine which package is right for you!</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/articles/can-weak-security-ruin-your-seo-efforts/">Can Weak Security Ruin Your SEO Efforts?</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/articles/can-weak-security-ruin-your-seo-efforts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create a Secure Password</title>
		<link>https://omnisos.com/kb/how-to-create-a-secure-password/</link>
					<comments>https://omnisos.com/kb/how-to-create-a-secure-password/#respond</comments>
		
		<dc:creator><![CDATA[Jeff Tobler]]></dc:creator>
		<pubDate>Wed, 15 Oct 2014 21:50:33 +0000</pubDate>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[password generator]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">http://omnisos.com/?p=88</guid>

					<description><![CDATA[<p>Passwords are a pain. We want it simple, easy to remember, and hassle-free. The problem with that is that simple passwords are easily cracked these days by the bad guys....</p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/how-to-create-a-secure-password/">How to Create a Secure Password</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Passwords are a pain. We want it simple, easy to remember, and hassle-free. The problem with that is that simple passwords are easily cracked these days by the bad guys.</p>
<p>Therefore, learn what makes a great password:</p>
<ul>
<li>No proper or common names</li>
<li>Use a mixture of capital letters and lowercase</li>
<li>Include numbers and/or special characters</li>
<li>Use symbols (#$%@!, etc.)</li>
<li>And use 8 characters or longer</li>
</ul>
<p>I found a great little password generator here. Play around with it and see what you think. They offer two types: Mnemonic (easy-to-remember) passwords and random combinations which are harder to remember but also harder to crack.</p>
<h2>Mnemonic Generator</h2>
<p><iframe loading="lazy" src="http://www.newpasswordgenerator.com/generate.php?type=1&#038;length=6&#038;digits=4" width="300" height="120" scrolling="no" frameborder="0"><br />
</iframe></p>
<h2>Random Generator</h2>
<p><iframe loading="lazy" src="http://www.newpasswordgenerator.com/generate.php?type=0&#038;length=10&#038;digits=4&#038;uppercase=1&#038;lowercase=1&#038;numbers=1" width="300" height="120" scrolling="no" frameborder="0"><br />
</iframe></p>
<p>The post <a rel="nofollow" href="https://omnisos.com/kb/how-to-create-a-secure-password/">How to Create a Secure Password</a> appeared first on <a rel="nofollow" href="https://omnisos.com">OmniSOS - Elite WordPress Security</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://omnisos.com/kb/how-to-create-a-secure-password/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
