<?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>1stwebdesigner - Graphic and Web Design Blog &#187; security</title>
	<atom:link href="http://www.1stwebdesigner.com/tag/security/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stwebdesigner.com</link>
	<description>1stwebdesigner is a design blog dedicated to bloggers, freelancers, web-developers and designers. Topics focus on web design and inspirational articles.</description>
	<lastBuildDate>Sun, 12 Feb 2012 13:09:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>9 WordPress Security Tips To Protect Your Website From Harm</title>
		<link>http://www.1stwebdesigner.com/wordpress/wordpress-security-tips-plugins/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/wordpress-security-tips-plugins/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 10:00:25 +0000</pubDate>
		<dc:creator>Christian Vasile</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[safe]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=57063</guid>
		<description><![CDATA[WordPress is the most popular Content Management System in the world, used by more than 60 million people around the globe. WordPress hosts more than half of the blogs itself. The popular CMS is used by huge companies and associations in the world such as TechCrunch, NBC, CNN, CBS or the National Football League of the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;" align="center">WordPress is the most popular Content Management System in the world, used by more than 60 million people around the globe. WordPress hosts more than half of the blogs itself. The popular CMS is used by huge companies and associations in the world such as TechCrunch, NBC, CNN, CBS or the National Football League of the US. There are more than 2.5 billion WordPress pages in the world, read by more than 300 million people daily, while around 500.000 new posts and 400.000 comments are posted each day.</p>
<p>This is huge and shows how important and widely used WordPress is. WordPress doesn’t show signs of slowing down either, so expect these numbers to increase dramatically in the near future. Therefore we also need to learn how to protect ourselves, because there is no popular web technology nowadays not targeted by hackers and robots.</p>
<p>Today I will talk about tips, tricks and plugins to keep your WordPress blog safe from hackers and robots. This doesn’t mean you have to do all of them, but using as many of them as possible is recommended.</p>
<p><span id="more-57063"></span></p>
<h2><strong>1. Always Update</strong></h2>
<p>Keeping your WordPress updated all the time is important, because the developers work to solve security issues as well and if they release an update, it is a good idea to update. It takes only a few seconds, is safe (because WordPress backs up your data before actually updating, so you can’t lose anything) and will help your blog run better and be compatible with more plugins too. When you update, do it through your dashboard or if you want to do it manually, do not download the update from another site than WordPress.org.</p>
<h2><strong>2. Strengthen your password</strong></h2>
<p>Now this shouldn’t be something new to you. If you’ve been on the internet for some time you know strong passwords are recommended. Include small and capital letters, numbers and different symbols to make your password not difficult, but impossible to guess. Once somebody has full access to your blog, it’s not yours anymore!</p>
<h2><strong>3. Keep an eye on file permission</strong></h2>
<p>It is a good idea to keep an eye on the file permissions. You have a link at the end of the article with a guide about what file permissions are and how should they be used. You can set file permission with FTP clients and FileZilla works just fine, so I recommend it.</p>
<h2><strong>4. Use .htaccess</strong></h2>
<p>The .htaccess file is available by default in your hosting folder. You can use this file to block different IPs and you can learn how to do this by following the links at the bottom of the article.</p>
<h2><strong>5. </strong><strong>Use SSL Encryption</strong></h2>
<p>SSL Encryption is used for encrypting data your blog sends. This means that nobody accessing your router can intercept the data you use, such as account credentials. This way your data is not only really difficult to intercept, but also to decrypt. The bad in general is that you have to pay for having an SSL encryption, but most of the services out there do a tremendous job and also help you set up the SSL server. However, for WordPress SSL encryption is free and you only have to add this particular line to your <em>wp-config.php:</em></p>
<p><strong>define (‘FORCE_SSL_ADMIN’, true);</strong></p>
<h2><strong>6. Always </strong><strong>Back-up</strong></h2>
<p>Backing up once a week is something I would like to recommend as well, because no matter how much you protect the blog, anything can happen. There are things you can’t even do anything about (like the host servers getting hijacked – which doesn’t really happen too often, but it is a possibility) and it is good to have a back-up which you can install again right away.</p>
<h2><strong>7. Protect the wp-config.php</strong></h2>
<p>This is one of the most important files in your WordPress folder, therefore you really have to protect it. You can hide it from public view by inserting few lines of code into your htaccess file:</p>
<p><strong>&lt;Files wp-config.php&gt;</strong></p>
<p><strong>order allow, deny</strong></p>
<p><strong>deny from all</strong></p>
<p><strong>&lt;/Files&gt;</strong></p>
<p>This prevents the wp-config.php file from being seen by public users and makes it therefore more difficult to spot for hackers and robots.</p>
<h2><strong>8. Never use &#8220;admin&#8221; as login</strong></h2>
<p>A common mistake is to use &#8220;admin&#8221; as the login username. When you install WordPress, right after the process is done create a new account and use that one as default. The &#8220;admin&#8221; account is quite dangerous to use because all the robots go for it.</p>
<h2><strong>9. Use an SFTP</strong></h2>
<p>Most of the time people upload files by using FTP, but you could use a Secure FTP (SFTP) so that the files you send are encrypted. You can find a detailed guide about how to do this <a title="Connect To Your WordPress Via Secure FTP" href="http://maketecheasier.com/connect-to-your-wordpress-account-via-secure-ftp/2009/03/09" target="_blank">here</a>.</p>
<p>Now we move onto plugins you can use to secure your WordPress.</p>
<h4><strong>1. </strong><strong><a title="Login Lockdown" href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank">Login Lockdown</a></strong></h4>
<p>You can use a plugin called Login Lockdown, but make sure you remember your password. Login Lockdown registers every failed login attempt and the IP of the person, and blocks the ability to login for a range of IPs if the number of failed logins exceeds the number you set. As a default setting, the plugin locks down IPs for an hour after 3 failed logins within 5 minutes. The IP addresses which have been blocked can be removed from the plugin panel in the WordPress dashboard.</p>
<div id="attachment_57089" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.1stwebdesigner.com/wordpress/wordpress-security-tips-plugins/attachment/login-lockdown/" rel="attachment wp-att-57089" target="_blank"><img class="size-full wp-image-57089 " title="Login Lockdown" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/10/login-lockdown.jpg" alt="" width="550" height="304" /></a><p class="wp-caption-text">Login Lockdown protects your WordPress login page from people trying to guess your password.</p></div>
<h4><strong>2. <a title="WP DB Backup" href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup</a></strong></h4>
<p>I told you earlier you should have backups for your database all the time. This is the plugin that I use for this purpose. It sends you backups on your e-mail or can also store them on the server. You can also set how often you wish the plugin to back up your data.</p>
<h4><strong>3. <a title="WP Security Scan" href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP Security Scan</a></strong></h4>
<p><strong></strong>Removing the version of WordPress you have should be a basic option, but WordPress makes it difficult. Therefore you need to use a plugin to remove the version of WordPress from the header of your PHP page. Why? Because knowing which version you have means hackers know the security issues you have, therefore this makes it easier for them to hack you.</p>
<p>With all these plugins and tips being listed, I only wish to tell you that WordPress, although very popular and widely used, is threatened all the time by hackers and robots. WordPress security is something that has been discussed long and you should take a look into it, because finding out your blog is hacked and having no backup is definitely not fun. Try to avoid this by backing up regularly and following my tips and you will find yourself less often in troubles.</p>
<h3><strong>Further reading</strong></h3>
<p>You can read more about this topic on the following links:</p>
<p><a title="Changing File Permissions" href="http://codex.wordpress.org/Changing_File_Permissions" target="_blank">Changing File Permissions</a> on WordPress.org</p>
<p><a title="Hardening WordPress" href="http://codex.wordpress.org/Hardening_WordPress" target="_blank">Hardening WordPress</a> on WordPress.org</p>
<p><a title="Block IPs with .htaccess" href="http://www.htaccesstools.com/block-ips/" target="_blank">Block IPs with .htaccess</a> on htaccesstools</p>
<p><a title="Wordpress Security Tips and Hacks" href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html" target="_blank">WordPress Security Tips and Hacks</a> on Noupe</p>
<p><a title="Wordpress Security" href="https://wpsecurity.net/" target="_blank">WordPress Security</a></p>
<p><a title="11 Best Ways to Improve WordPress Security" href="http://www.problogdesign.com/wordpress/11-best-ways-to-improve-wordpress-security/" target="_blank">11 Best Ways to Improve WordPress Security</a> on ProBlogDesign</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/wordpress-security-tips-plugins/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>A Beginner&#8217;s Guide to Secure Your Site from Web Trespassers</title>
		<link>http://www.1stwebdesigner.com/design/guide-secure-site-web-hackers/</link>
		<comments>http://www.1stwebdesigner.com/design/guide-secure-site-web-hackers/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 10:00:41 +0000</pubDate>
		<dc:creator>Rean John Uehara</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[exploits]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[Online Web]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=28064</guid>
		<description><![CDATA[Information is everything. The web is full of free information for everyone to use but there are things that webmasters don&#8217;t want people to know, things that should be kept away from prying eyes. Be it an exclusive section on your website for premium users or content that thousands of users use,  it is best [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/development/guide-secure-site-web-hackers/"><img class="alignleft size-full wp-image-28945" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/keep_out.jpg" alt="" width="150" height="150" /></a>Information is everything. The web is full of free information for everyone to use but there are things that webmasters don&#8217;t want people to know, things that should be kept away from prying eyes. Be it an exclusive section on your website for premium users or content that thousands of users use,  it is best that you stuff-up your arsenal to avoid things go awry.</p>
<p>There is no such thing as an unhackable website, there are just those who are close to it or are offline. It is important to know how attacks are made in order to plan ahead.<span id="more-28064"></span></p>
<h2>Attacker&#8217;s Point of View</h2>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/hack_target.jpg"><img class="aligncenter size-full wp-image-28946" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/hack_target.jpg" alt="" width="570" height="445" /></a></p>
<p style="text-align: center;"><em>Image by: <a href="http://www.sxc.hu/profile/bjearwicke">Benjamin Earwicker</a></em></p>
<p>First thing a hacker might want to know is information about your host and OS. From this they will learn of existing vulnerabilities, if there are, and hack their way in to your system. So choosing a web hosting that cares about security is very important, especially if you are on shared hosting where you are at the mercy of your host.</p>
<p>With today&#8217;s technology most websites have become more interactive where users can request and input data, personalize and manipulate the site. But interactivity provides loopholes in security. A good hacker will scan a target website thoroughly just to gain access to its server.</p>
<p>More below for in-depth discussion about attacks.</p>
<h2>When a Hacker Attacks</h2>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/sql_inject.jpg"><img class="aligncenter size-full wp-image-28947" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/sql_inject.jpg" alt="" width="570" height="380" /></a></p>
<p style="text-align: center;"><em>Image by: <a href="http://www.sxc.hu/profile/eddmun">eddmun</a></em></p>
<p>An experienced hacker does not attack blindly. When he attacks, he attacks with conviction (or curiosity). Usually they are armed with vital information that they can use to destabilize your site. Below are some of the most common forms of attacks:</p>
<ol>
<h3>
<li>Defacement</li>
</h3>
<p><em>Defacement </em>is common for government and celebrity websites as well as other innocent ones. Attacks like this can range from an act of retaliation to just simply for fun.</p>
<h3>
<li>Authorization Bypass</li>
</h3>
<p>A successful <em>authorization bypass </em>will make you shout &#8220;this is my  code, not yours!&#8221;  Some hackers would actually want to have a piece of  your code either to make a clone out of it or to destroy it.</p>
<h3>
<li>SQL Injection</li>
</h3>
<p>Then there is what we call <em>SQL injection<strong> </strong></em>where the attacker inserts SQL queries in unsuspecting forms to extract information from the database that is not usually available even to your users: passwords, e-mails, and things you don&#8217;t want people to know. How will it impact you if a hacker drops your most important table and you do not have any back-up? Ouch!</p>
<h3>
<li>Cross-site Scripting(XSS)</li>
</h3>
<p>Another form of attack is <em>Cross-site Scripting</em><strong> </strong>(XSS). Bad guy messes up with the good guys. What makes this kind of attack evil is it is easy to defend against but hard to detect. How will you defend if you are caught by surprise?</ol>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/cross_site_scripting.jpg"><img class="aligncenter size-full wp-image-28949" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/cross_site_scripting.jpg" alt="" width="570" height="429" /></a></p>
<p style="text-align: center;"><em>Image by: <a href="http://www.sxc.hu/profile/ctr">Ramasamy Chidambaram</a></em></p>
<p>I remember writing and submitting a simple script in an input field of a  friend&#8217;s website which caused all users to see a pop-up whenever they  load the homepage and be redirected to another website. Instant chaos.  Of course this matter is easily fixed by simple input validation.</p>
<p><img class="aligncenter size-full wp-image-28948" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/one_way_specify_exlude.jpg" alt="" width="570" height="419" /></p>
<p style="text-align: center;"><em>Image by: </em><em><a href="http://www.sxc.hu/profile/wikkedhill">wikkedhill</a></em></p>
<p>Perhaps the best way to validate user input is not by specifying the <em>should nots </em>but by telling what is only allowed. To specify is to exclude. Less time and effort. Neat.</p>
<h2><strong>Security Guy Should Know</strong></h2>
<p style="text-align: center;"><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/security_guy1.jpg"><img class="aligncenter size-full wp-image-28958" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/security_guy1.jpg" alt="" width="570" height="350" /></a></p>
<p style="text-align: center;"><em>Image by: <a href="http://www.sxc.hu/profile/julosstock">Julien Tromeur</a></em></p>
<p>There are many 3rd-party applications today, rate of birth is almost the same as Moore&#8217;s law. But is the guy in charge of security knowledgeable enough about these 3rd-party applications and the vulnerabilities they bring? If not, then trouble is looming, or you might opt to write your own modules.</p>
<p>Security guy should also know about Google Hack. Is Google still your friend? With advanced search query even the most seemingly impenetrable server text files can be harvested for everyone to see. By knowing what Robots.txt is, this form of attack can be stopped..for a while.</p>
<p>Run tests on your website using <em>vulnerability scanners</em> and <em>website security audit. </em>Try <a href="http://www.acunetix.com/vulnerability-scanner/">Acunetix</a> and <a href="http://www.beyondsecurity.com/">Beyond Security</a>&#8216;s vulnerability scanners.</p>
<p><em><a href="http://www.acunetix.com/"><img class="alignbottom size-full wp-image-28975" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/acunetix_web_security.jpg" alt="" width="570" height="404" /></a></em></p>
<p>You can download Acunetix and BeyondSecurity&#8217;s trial scanners and find out flaws in and out of your website.</p>
<p><a href="http://www.beyondsecurity.com/"><img class="alignbottom size-full wp-image-28977" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/beyond_security_vulnerability_scan.jpg" alt="" width="570" height="334" /></a></p>
<p>Although some good services do not come free, at least your website is secured.</p>
<p>If your CMS is WordPress refer to this comprehensive guide on <a href="http://codex.wordpress.org/Hardening_WordPress">Hardening WordPress</a>.</p>
<h2>Monitor Website Uptime</h2>
<p><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/monitor_cctv.jpg"><img class="aligncenter size-full wp-image-28959" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/monitor_cctv.jpg" alt="" width="570" height="428" /></a></p>
<p style="text-align: center;">Image by: <a href="http://www.sxc.hu/profile/coolchrisc">Chris Cockram</a></p>
<p>Is your website still working? Are people enjoying your services while you are away from your keyboard? You and security guy can&#8217;t be monitoring your website 24 hours a day just to maintain its availability (and stability), it&#8217;s just impossible. Let someone do the monitoring for you. <a href="http://www.siteuptime.com/">SiteUptime</a>&#8216;s service will alert you via SMS or e-mail if your website becomes unavailable. Some companies offering similar services are <a href="http://host-tracker.com/">HostTracker</a>, <a href="http://www.internetseer.com">Internetseer</a>, and <a href="http://www.internetseer.com">WebSitePulse</a>. Now every time you receive an SMS you will automatically think your website is down.</p>
<h2>Hacked? It&#8217;s Not the End</h2>
<p>If you feel like your security has been compromised, or really has been, do not act calmly. Connect to your FTP like your life is on the line and, if successful, change your password immediately to avoid further damage. Now you may breathe slowly. But in the event of failing to connect to your FTP you should immediately contact and notify the authorities for them to investigate the crime scene and your web host to regain your access as soon as possible.</p>
<p>I know it is hard to take your website offline, but in the case of your website being infected by a virus that attacks your visitors..take it offline, you must. Another way to take good care of them.</p>
<p>There are actually many forms of attacks, methodically these happen through FTP and through CGI vulnerabilities. It is wise to do research on your applications  for known vulnerabilities and if there are available patches. Always keep yourself, and your applications, updated!</p>
<h2>Prevention is Better Than Cure</h2>
<p>If you think you&#8217;ve done all what you can to secure your website but something still feels lacking, you might want to hire proven-and-tested security experts to try and break into your site, legally. They do not come cheap of course.</p>
<p>Below are experts in finding vulnerabilities, they offer almost the same services and boasts notable clients. Meet the good guys.</p>
<p><a href="http://www.securitybrigade.com/">Security Brigade</a></p>
<p><a href="http://www.securitybrigade.com/"><img class="aligncenter size-full wp-image-28968" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/security_brigade.jpg" alt="" width="570" height="237" /></a></p>
<h2>News and Updates</h2>
<p>Updates are made in order to patch-up loopholes and add features. Not aware that something is wrong with your current applications? A good way to know if your website is secured is to learn of the current exploits that users and developers from around the web has found. There you, or your security guy, can formulate what to do next to patch it up. A comprehensive, and current, list of exploits can be found at <a href="http://www.exploit-db.com/">Exploit-DB.com</a>. Prevention is better than cure, as they say.</p>
<p><a href="http://www.exploit-db.com/"><img class="aligncenter size-full wp-image-28961" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/03/exploit_database_php.jpg" alt="" width="570" height="260" /></a></p>
<p>Also, be up to date of the current attacks that happen globally. A good news site about cyber attacks and other security news is <a href="http://cyberinsecure.com/">CyberInsecure.com</a>. Another gem that I found is <a href="http://www.securityfocus.com/">SecurityFocus.com</a>, it provides easy browsing of hundreds of vendors&#8217; <a href="http://www.securityfocus.com/vulnerabilities">vulnerabilities</a>. Sleek.</p>
<p>A person who is always up to date is never caught off guard. Good luck to all!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/design/guide-secure-site-web-hackers/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>35 Security Plugins to Make Your WordPress Bulletproof</title>
		<link>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 21:00:58 +0000</pubDate>
		<dc:creator>Daniels Mekšs</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=20455</guid>
		<description><![CDATA[WordPress is the most popular blogging platform today. It’s being used by thousands of people all around the world. But because of the popularity, it’s getting more attention by hackers and spammers too. WordPress is very secure by itself, but there’s never too much ascertainable. For simple users,who don&#8217;t code a lot, plugins is the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/" target="_self"><img class="alignleft" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/preview-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Preview-wordpress-security-tools-tips-plugins" /></a>WordPress is the most popular blogging platform today. It’s being used by thousands of people all around the world. But because of the popularity, it’s getting more attention by hackers and spammers too. WordPress is very secure by itself, but there’s never too much ascertainable.</p>
<p>For simple users,who don&#8217;t code a lot, plugins is the best way to secure your blog. They’re free, easily usable and safe. This post assembles 35 best plugins to make your blog bulletproof. They’re each devised for different purposes, so you will get the best protection from each field.<span id="more-20455"></span></p>
<h2>Secure Your Login</h2>
<h2>1. <a href="http://wordpress.org/extend/plugins/semisecure-login-reimagined/" target="_blank">Semisecure Login Reimagined</a></h2>
<p>Semisecure Login Reimagined increases the security of the login process by using a combination of public and secret-key encryption to encrypt the password on the client-side when a user logs in. JavaScript is required to enable encryption. It is most useful for situations where SSL is not available, but the administrator wishes to have some additional security measures in place without sacrificing convenience.</p>
<p><a href="http://wordpress.org/extend/plugins/semisecure-login-reimagined/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/semisecure-login-reimagined-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Semisecure-login-reimagined-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a href="http://wordpress.org/extend/plugins/stealth-login/" target="_blank">Stealth Login</a></h2>
<p>This plugin allows you to create custom URLs for logging in, logging out, administration and registering for your WordPress blog. Instead of advertising your login URL on your homepage, you can create a URL of your choice that can be easier to remember than wp-login.php, for example you could set your login URL to <a target="_blank">http://www.myblog.com/login</a> for an easy way to login to your website.</p>
<p><a href="http://wordpress.org/extend/plugins/stealth-login/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/stealth-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Stealth-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a href="http://wordpress.org/extend/plugins/login-lockdown/" target="_blank">Login LockDown</a></h2>
<p>Login LockDown records the IP address and timestamp of every failed login attempt. If more than a certain number of attempts are detected within a short period of time from the same IP range, then the login function is disabled for all requests from that range. This helps to prevent brute force password discovery.</p>
<p><a href="http://wordpress.org/extend/plugins/login-lockdown/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/lockdown-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Lockdown-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a href="http://wordpress.org/extend/plugins/chap-secure-login/" target="_blank">Chap Secure Login</a></h2>
<p>Whenever you try to login into your website, you can use this plugin to transmit your password encrypted. The encryption process is done by the Chap protocol. By activating the Chap Secure Login plugin, the only information transmitted unencrypted is the username, password is hidden with a random number (nonce) generated by the session &#8211; and opportunely transformed by the MD5 algorithm. In the first login there will be an error, but don&#8217;t worry is only a technical error. Indeed in the next login&#8217;s operation, if the values are correct, there will not be errors.</p>
<p><a href="http://wordpress.org/extend/plugins/chap-secure-login/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/chap-secure-login-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Chap-secure-login-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Admin Area</h2>
<h2>1. <a href="http://wordpress.org/extend/plugins/admin-ssl-secure-admin/" target="_blank">Admin SSL</a></h2>
<p>Admin SSL secures login page, admin area, posts, pages &#8211; whatever you want &#8211; using Private or Shared SSL. Once you have activated the plugin, you have to go to the Admin SSL config page to enable SSL.</p>
<p><a href="http://wordpress.org/extend/plugins/admin-ssl-secure-admin/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/admin-ssl-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Admin-ssl-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Database</h2>
<h2>1. <a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup</a></h2>
<p>WP-DB-Backup allows you easily to back up your core WordPress database tables. You may also backup other tables in the same database.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-db-backup/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/databse-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Databse-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a href="http://wordpress.org/extend/plugins/remote-database-backup/" target="_blank">Remote Database Backup</a></h2>
<p>This plugin creates SQL dumps of your WordPress database. It is based on the WordPress Database Backup plugin (<a href="http://www.ilfilosofo.com/blog/wp-db-backup">http://www.ilfilosofo.com/blog/wp-db-backup</a>) &#8211; but it removes some of the security restrictions in the plugin to enable automated remote backups. You still need the admin user name and password to do a remote backup.</p>
<p><a href="http://wordpress.org/extend/plugins/remote-database-backup/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/remote-databse-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Remote-databse-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank">WP-DB Manager</a></h2>
<p>This plugin allows you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries. It supports automatic scheduling of backing up and optimizing of database.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-dbmanager/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/databse-manager-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Databse-manager-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a href="http://wordpress.designpraxis.at/plugins/backupwordpress/" target="_blank">BackUpWordPress</a></h2>
<p>BackUpWordPress is a backup &amp; recovery suite for your WordPress website. This plugin allows you to back up database tables as well as files and comes with a rich set of options.</p>
<p><a href="http://wordpress.designpraxis.at/plugins/backupwordpress/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a href="http://lastnightsdesigns.com/?page_id=264" target="_blank">WordPress 1 Click EZ Backup</a></h2>
<p>EZ Backup has been turned into a simple one click operation. Click the button and watch your files and database backup be created. You can create a backup of all your webspace files or backup just your wp-content folder all from this one plugin. Unlike the Full EZ Backup plugin this one does not require any special information such as usernames or passwords etc. This plugin costs $5.</p>
<h2>6. <a href="http://wordpress.org/extend/plugins/myeasybackup/" target="_blank">myEASYbackup</a></h2>
<p>This plugin allows you to back up, restore, migrate your WordPress installation, both files and mySQL tables with a single click. When performing a backup, myEASYbackup creates a compressed data set file that can be stored outside the WordPress installation directory. A list of all data sets on the server is also logged in the admin area.</p>
<p><a href="http://wordpress.org/extend/plugins/myeasybackup/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/my-easy-backup-wordpress-security-tools-tips-plugins.jpg" border="0" alt="My-easy-backup-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Spam</h2>
<h2>1. <a href="http://wordpress.org/extend/plugins/antispam-bee/" target="_blank">Antispam Bee</a></h2>
<p>AntispamBee protects blogs from digital rubbish. It is made up of sophisticated techniques and analyzes comments including pings. Also, for reasons of data privacy, the use of AntispamBee is a safe solution, as it is anonymous and registration-free.</p>
<p><a href="http://wordpress.org/extend/plugins/antispam-bee/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/antispam-bee-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Antispam-bee-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a href="http://wordpress.org/extend/plugins/nospamnx/" target="_blank">NoSpamNX</a></h2>
<p>NoSpamNX is the successor of Yawasp (Yet Another WordPress antispam plugin) and is a plugin to protect against automated comment spam (spambots). While Yawasp changed the names of the form fields in the comment template, NoSpamNX works without these modifications, but is equally effective. By eliminating the need for modifications the form field need maximum compatibility with other WordPress plugins or browser is ensured.</p>
<p><a href="http://wordpress.org/extend/plugins/nospamnx/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/no-spam-nx-wordpress-security-tools-tips-plugins.jpg" border="0" alt="No-spam-nx-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a href="http://akismet.com/" target="_blank">Akismet</a></h2>
<p>Automattic Kismet (Akismet for short) is a collaborative effort to make comment and trackback spam a non-issue and restore innocence to blogging, so you never have to worry about spam again.</p>
<p><a href="http://akismet.com/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/akismet-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Akismet-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a href="http://wordpress.org/extend/plugins/math-comment-spam-protection/" target="_blank">Math Comment Spam Protection</a></h2>
<p>Asks the visitor making the comment to answer a simple math question. This is intended to prove that the visitor is a human being and not a spam robot. Example of such question: What is the sum of 2 and 9?</p>
<p><a href="http://wordpress.org/extend/plugins/math-comment-spam-protection/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/math-comment-spam-protection-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Math-comment-spam-protection-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a href="http://wordpress.org/extend/plugins/defensio-anti-spam/" target="_blank">Defensio Anti-Spam</a></h2>
<p>Defensio is an advanced spam filtering web service that learns and adapts to your behaviors and those of your readers. Advanced features such as support for OpenID, detailed statistics, charts, RSS feed of our comments (innocent and spam) and counter widget are also available.</p>
<p><a href="http://wordpress.org/extend/plugins/defensio-anti-spam/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/defensio-anti-spam-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Defensio-anti-spam-wordpress-security-tools-tips-plugins" /></a></p>
<h2>6. <a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/" target="_blank">SI CAPTCHA Anti-Spam</a></h2>
<p>Adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, login, or all. In order to post comments or register, users will have to type in the code shown on the image. This prevents spam from automated bots. Adds security. Works great with Akismet. Also is fully WP, WPMU, and BuddyPress compatible.</p>
<p><a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/captcha-anti-spam-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Captcha-anti-spam-wordpress-security-tools-tips-plugins" /></a></p>
<h2>7. <a href="http://wordpress.org/extend/plugins/wp-recaptcha/" target="_blank">reCAPTCHA</a></h2>
<p>reCAPTCHA is an anti-spam method originating from <a href="http://www.cmu.edu/index.shtml" target="_blank">Carnegie Mellon University</a> which uses CAPTCHAs in a genius way. Instead of randomly generating useless characters which users grow tired of continuously typing in, risking the possibility that spammers will eventually write sophisticated spam bots which use OCR libraries to read the characters, reCAPTCHA uses a different approach.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-recaptcha/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/recaptcha-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Recaptcha-wordpress-security-tools-tips-plugins" /></a></p>
<h2>8. <a href="http://perishablepress.com/press/2010/07/14/blackhole-bad-bots/" target="_blank">Blackhole</a></h2>
<p>Blackhole is a trap for bad bots. The concept is simple: include a hidden link to a robots.txt-forbidden directory somewhere on your pages. Bots that ignore or disobey your robots rules will crawl the link and fall into the trap, which then performs a WHOIS Lookup and records the event in the blackhole data file. Once added to the blacklist data file, bad bots immediately are denied access to your site.</p>
<p><a href="http://perishablepress.com/press/2010/07/14/blackhole-bad-bots/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/blackhole-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Blackhole-wordpress-security-tools-tips-plugins" /></a></p>
<h2>9. <a href="http://wordpress.org/extend/plugins/invisible-defender/" target="_blank">Invisible Defender</a></h2>
<p>This plugin protects registration, login and comment forms from spambots by adding two extra fields hidden by CSS. This approach gave me 100% anti-spam protection on one of my sites.</p>
<h2>Other</h2>
<h2>1. <a href="http://wordpress.org/extend/plugins/secure-wordpress/" target="_blank">Secure WordPress</a></h2>
<p>Little help to secure your WordPress installation. This plugin removes error information on login page, adds index.html to plugin directory, removes the wp-version, except in admin area.</p>
<p><a href="http://wordpress.org/extend/plugins/secure-wordpress/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/secure-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Secure-wordpress-security-tools-tips-plugins" /></a></p>
<h2>2. <a href="http://wordpress.org/extend/plugins/wp-security-scan/" target="_blank">WP Security Scan</a></h2>
<p>This plugin will scan your WordPress installation for security vulnerabilities and it will suggest some corrective actions.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-security-scan/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/security-scan-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Security-scan-wordpress-security-tools-tips-plugins" /></a></p>
<h2>3. <a href="http://wordpress.org/extend/plugins/askapache-password-protect/" target="_blank">AskApache Password Protect</a></h2>
<p>This plugin doesn&#8217;t control WordPress or mess with your database, instead it utilizes fast, tried-and-true built-in Security features to add multiple layers of security to your blog. This plugin is specifically designed and regularly updated specifically to stop automated and unskilled attackers attempts to exploit vulnerabilities on your blog resulting in a hacked site.</p>
<p><a href="http://wordpress.org/extend/plugins/askapache-password-protect/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/ask-apache-password-protect-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Ask-apache-password-protect-wordpress-security-tools-tips-plugins" /></a></p>
<h2>4. <a href="http://wordpress.org/extend/plugins/tac/" target="_blank">TAC (Theme Authenticity Checker)</a></h2>
<p>TAC stands for Theme Authenticity Checker. Currently, TAC searches the source files of every installed theme for signs of malicious code. If such code is found, TAC displays the path to the theme file, the line number, and a small snippet of the suspect code. As of v1.3  TAC also searches for and displays static links.</p>
<p><a href="http://wordpress.org/extend/plugins/tac/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/theme-authenticity-checker-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Theme-authenticity-checker-wordpress-security-tools-tips-plugins" /></a></p>
<h2>5. <a href="http://wordpress.org/extend/plugins/http-authentication/" target="_blank">HTTP Authentication</a></h2>
<p>The HTTP Authentication plugin allows you to use existing means of authenticating people to WordPress. This includes Apache&#8217;s basic HTTP authentication module and many others.</p>
<h2>6. <a href="http://wordpress.org/extend/plugins/antivirus/" target="_blank">AntiVirus</a></h2>
<p>Viruses, worms and malware exist for WordPress and could easily attack your WordPress installation. AntiVirus for WordPress monitors malicious injections and warns you of any possible attacks. It also has multilingual support.</p>
<p><a href="http://wordpress.org/extend/plugins/antivirus/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/antivirusl-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Antivirus-wordpress-security-tools-tips-plugins" /></a></p>
<h2>7. <a href="http://wordpress.org/extend/plugins/secure-files/" target="_blank">Secure Files</a></h2>
<p>This plugin allows you to upload and download files from outside of your web document root for security purposes. It can be used to can restrict file downloads to users that are logged in, or have a certain user level.</p>
<h2>8. <a href="http://wordpress.org/extend/plugins/replace-wp-version/" target="_blank">Replace WP-Version</a></h2>
<p>Security your WordPress-Installation and eliminate or replace your wp-version and database-version on easy way with a small plugin. If you&#8217;re running an older version of WordPress, anyone can view source to see what attacks might work against your blog. This plugin replaces the WP-version with a random string &lt; WP 2.4 and eliminate WP-version &gt; WP 2.4.</p>
<h2>9. <a href="http://wordpress.org/extend/plugins/wp-email-guard/" target="_blank">WP Email Guard</a></h2>
<p>WP Email Guard protects your email addresses included on any post or page from being crawled by spammers. It converts every email written within your post body into a JavaScript code, so the emails is readable and can be clicked by humans only. Spammers can&#8217;t crawl JavaScript.</p>
<h2>10. <a href="http://wordpress.org/extend/plugins/wordpress-file-monitor/" target="_blank">WordPress File Monitor</a></h2>
<p>Monitors your WordPress installation for added/deleted/changed files. When a change is detected an email alert can be sent to a specified address.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-file-monitor/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/file-monitor-wordpress-security-tools-tips-plugins.jpg" border="0" alt="File-monitor-wordpress-security-tools-tips-plugins" /></a></p>
<h2>11. <a href="http://wordpress.org/extend/plugins/wp-dephorm/" target="_blank">WP Dephorm</a></h2>
<p>WP-Dephorm protects your users from the prying eyes of phorm. This is achieved by setting a cookie to opt out of the phorm information mining. Your blog viewers will not have their information stored and used in marketing campaigns whilst viewing your site.</p>
<h2>12. <a href="http://wordpress.org/extend/plugins/wordpress-firewall/" target="_blank">WordPress Firewall</a></h2>
<p>This WordPress plugin investigates web requests with simple WordPress-specific heuristics to identify and stop most obvious attacks. There exist a few powerful generic modules that do this; but they&#8217;re not always installed on web servers, and difficult to configure.</p>
<p><a href="http://wordpress.org/extend/plugins/wordpress-firewall/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/firewall-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Firewall-wordpress-security-tools-tips-plugins" /></a></p>
<h2>13. <a href="http://wordpress.org/extend/plugins/secure-contact-form/" target="_blank">Secure Contact</a></h2>
<p>SecureContact is a drop in form for users to contact you, based on the WP Contact Form plugin by Ryan Duff. It offers enhanced security by using captcha images.</p>
<h2>14. <a href="http://wordpress.org/extend/plugins/si-contact-form/" target="_blank">Fast and Secure Contact Form</a></h2>
<p>Fast and secure contact form for WordPress. This contact form lets your visitors send you a quick E-mail message. Blocks all common spammer tactics. Spam is no longer a problem. Includes a CAPTCHA and Akismet support. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent. Super customizable.</p>
<p><a href="http://wordpress.org/extend/plugins/si-contact-form/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/fast-secure-contact-form-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Fast-secure-contact-form-wordpress-security-tools-tips-plugins" /></a></p>
<h2>15. <a href="http://wordpress.org/extend/plugins/ultimate-security-check/" target="_blank">Ultimate Security Check</a></h2>
<p>The Ultimate Security Check plugin helps you identify security problems with your WordPress installation. It scans your blog for hundreds of known threats, then give you a security “grade” based on how well you have protected yourself.</p>
<h2>16. <a href="http://wordpress.org/extend/plugins/content-security-policy/" target="_blank">Content Security Policy</a></h2>
<p>Content Security Policy prevents content injection attacks by allowing admins to specify which sites they trust to serve JavaScript and other types of content in their site. Any content which is not explicitly allowed by the policy will be blocked from loading.</p>
<p><a href="http://wordpress.org/extend/plugins/content-security-policy/"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/07/wordpress-security/content-security-policy-wordpress-security-tools-tips-plugins.jpg" border="0" alt="Content-security-policy-wordpress-security-tools-tips-plugins" /></a></p>
<h2>Further Resources</h2>
<ul>
<li><a href="http://www.catswhocode.com/blog/top-10-ways-to-stop-spam-in-wordpress" target="_blank">Top 10 ways to stop spam in WordPress</a></li>
<li><a href="http://www.noupe.com/how-tos/wordpress-security-tips-and-hacks.html" target="_blank">WordPress Security Tips and Hacks</a></li>
<li><a href="http://sixrevisions.com/wordpress/12-essential-security-tips-and-hacks-for-wordpress/" target="_blank">12 Essential Security Tips and Hacks for WordPress</a></li>
<li><a href="http://www.wpbeginner.com/wp-tutorials/11-vital-tips-and-hacks-to-protect-your-wordpress-admin-area/" target="_blank">13 Vital Tips and Hacks to Protect Your WordPress Admin Area</a></li>
<li><a href="http://speckyboy.com/2009/09/22/20-powerful-wordpress-security-plugins-and-some-tips-and-tricks/" target="_blank">20+ Powerful WordPress Security Plugins and Some Tips and Tricks</a></li>
<li><a href="http://maketecheasier.com/11-ways-to-secure-your-wordpress-blog/2008/08/12" target="_blank">11 Ways To Secure Your WordPress Blog</a></li>
<li><a href="http://www.problogdesign.com/wordpress/10-things-to-do-after-installing-wordpress/" target="_blank">10 Things to do After Installing WordPress</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/security-plugins-wordpress-bulletproof/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
	</channel>
</rss>

