Noupe Editorial Team February 17th, 2008

WordPress Security Tips and Hacks

We all agree that having a secure wordpress weblog should be our first priorities when keeping a successful blog. In this post we’d like you to share your knowledge and help us create the Wordpress Security guide to keep the bad guys out.

Below are 10 security tips that you can easily implement on your WordPress blog. Please share one or more life-savers you use permanently to help protect yourself from WordPress security issues.


1) Nobody should be allowed to search your entire server.


  • WPdesigner advices us to NOT use this search code in the search.php
    <?php echo $_SERVER ['PHP_SELF']; ?>

    Nobody should be allowed to search your entire server, or? Use this one instead:

    <?php bloginfo ('home'); ?>
  • Block WP- folders from being indexed by search engines, the best way to block them in your robots.txt file. Add the following line to your list:
    Disallow: /wp-* 

2) Directories should not be left open for public browsing

There is a potential problem letting people know what plugins you have, or what versions they are. If there is some known exploit that is linked to a plugin, it could be easy enough for someone to use it to their advantage. Make an empty wp-content/plugins/index.html file or just add this line in your .htaccess file in your root:

Options All -Indexes

3) Drop the version string in your Meta Tags

A large number of WordPress themes have the WordPress Meta Tag that show the version of WordPress that is running on your blog which is an easy way to get your blog prone to hackers if you didn't upgrade to the security-enhanced file permissions on both which is pointed out by Matt Cutts. Another solution involves a plugin that sets up a secondary new version.

This tag is in the header.php file that displays your current version of wordpress.

  1. <meta content="WordPress &lt;?php bloginfo('version'); ? /&gt;" name="generator" />

4) Protecting your Wordpress wp-admin folder

Attackers can use bots for a brute force style of attack that simply guesses the admin password until they come up with the correct one and login. There are a couple of solutions out there, we will highlight each below.

  • Limit access to wp-admin folder by IP address- This solution is to restrict which IP’s can access the wp-admin folder via .htaccess. This has one drawback is you may have to update your .htaccess folder if your internet provider assigns you a dynamic IP address, you move to another location or you have authors at other locations.
  • AskApache Password Protect- The plugin is simple, it adds a 2nd layer of security to your blog by requiring a username and password to access anything in the /wp-admin/ folder. All you have to do is choose a username and password and you are done. It writes the .htaccess file, without messing it up. It also encrypts your password and creates the .htpasswd file, as well as setting the correct security-enhanced file permissions on both.
  • Login Lockdown plugin- records the IP address and timestamp of every failed WordPress 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.

5) Stay up to date

You need to keep your on your plugin/widget, theme, and Wordpress versions updated. Also, subscribing to the plugin/widget/theme Author's RSS feeds makes keeping up with them much easier.


6) Take regular backups of your site and Database

You always have to take regular backups of your file directories as well as the database. WordPress Database Backup plugin creates backups of your core WordPress tables as well as other tables of your choice in the same database.


7) Update your wordpress to latest version

Probably the first thing you should do! Install the Instant Upgrade Plugin or the Wordpress Automatic Upgrade Plugin. Make sure you back everything up before performing the upgrades.


8 ) Use SSH/Shell Access instead of FTP

It is one of the best tips i found here.If someone gets a hold of your FTP login information (which is usually not encrypted and easy to get), they can manipulate your files and add spam to your site without you even knowing about it! Using SSH, everything is encrypted including the transfer of files, etc.


9)Stop worrying about your wp-config.php file

Keep your database username and password Safe by adding the following to the .htaccess file at the top level of your WordPress install:


<FilesMatch ^wp-config.php$>
deny from all
</FilesMatch>

This will make it harder for your database username and password to fall into the wrong hands in the event of a server problem.


Protect Your Blog With a Solid Password

Creating a strong password that is also memorable is one of the easiest defenses against being hacked. There are a lot of online password strength checker that you could check.

Also you might check lorelle's article on blogherald called Protect Your Blog With a Solid Password, offering tips and tricks to help create a strong password that is also memorable, and how to deal with all the myriad passwords we seem to accumulate online.

Noupe Editorial Team

The jungle is alive: Be it a collaboration between two or more authors or an article by an author not contributing regularly. In these cases you find the Noupe Editorial Team as the ones who made it. Guest authors get their own little bio boxes below the article, so watch out for these.

82 comments

    1. This is a great list of things to do to secure your WordPress site…

      I recently had some security problems with my WordPress sites, and ended up doing a lot of research into securing WordPress sites…

      I have now written up my experiences in a WordPress Security Checklist which can be downloaded for free on http://www.wpsecuritychecklist.com.

      My checklist has a few more items and detailed steps for how to get the job done.

      Hopefully the checklist can help other people securing their WordPress sites…

  1. Noupe, that’s because Milo saw your unedited post. You only changed it once you had a comment in regards to stealing content from another user. SP also stands for Small Potato, the owner/author of WPDesigner.

    Robert, I completely agree with you. I just find it ironic that it’s a resource to help you “craft clean usable websites.” Which is probably why I almost never view this site with css enabled and the ads disabled. Too much garbage littering what the site is truly about: it’s content.

    You have almost the same amount of space delegated to ads as there are for content. Horrible placement, that’s for sure.

  2. Jordan
    The link to wpdesigner’s website was placed the first time this post was published and the link was originally there.
    Noupe.com is not stealing other people stuff, if you have ever checked our previous posts you will find it clearly that we always add links and credits to original sources.
    Our site’s focus is to inform our readers about the latest tips and techniques in web-design and we never say that these tips are ours unless they realy are.
    P.S i like your website’s design http://www.atourworst.org it reminds me of http://www.redcrownstudio.com Using almost the same colors, same right placement of the logo, same footer, same navigation bar. Overall the same look and feel

  3. This is a very important step for blogs, that I missed. I was infected with a trojan virus, and I didn’t see it ( i work on a mac) but when PC users visited my posts.. there were some serious problems, with a virus trying to infect their machines, so I have learned my lessson, fixed the problem said sorry to the my great visitors and now security is a must.

    These tips have been vital to my blog.

    Thank you

    Chad

  4. I would also add that a WP plugin developer should add something along the lines of:

    [code]
    if(preg_match(‘#’ . basename(__FILE__) . ‘#’, $_SERVER[‘PHP_SELF’])){
    header($_SERVER[‘HTTP_HOST’]);
    exit();
    }
    [/code]

    to the top of there plugins to help with the security.

  5. Great article, but shouldn’t item #9 be:

    deny from all

    ?

    The instruction as listed on the post generates an INternal Server Error every time.

  6. *Sorry, forgot to wrap in code tags

    Great article, but shouldn’t item #9 be:

    deny from all

    [code]

    deny from all

    [/code]

    The instruction as listed on the post generates an Internal Server Error every time.

  7. really nice list here. as for the ssh tip – bravo. it’s one of those really nice things that is super convenient as well as secure. soon, you find yourself using ssh for nearly every server admin task you can think of.

  8. Thank you for the tips. I’ve been looking for something like this post for a while. You really made it simple and basic.

    Thanks again,

    Monica

  9. Great tips. I recently let my blogs go without an update for 6 months. I came back to them to find numerous parts hacked. Adsense ads had different affiliate IDs, pharmacy and spam through posts and comments. Even folders full of spam files on the server. Basically every possible hack had been done to them.

    WordPress is a high profile app and blackhats are always looking for the exploits then scanning the web for people who have unpatched blogs. Not safe.

  10. Hi.

    Thanks for the wonderful tips. One of my sites got hacked, so I was really worried and searching for how I could make blogs more secure and hence stumbled upon your site.

    Thanks!
    Mnis

  11. It should be added that a “disallow” in robots.txt does not provide any security at all. A malicious bot can simply choose to ignore it and your server will be helpless.

    Even people with the best of intentions can sting you by accident. There are programs which can act like bots, but adhere only to the rules for browsers. wget and curl are two examples.

    If somebody wants to download all your articles for off-line reading and uses such a downloader clumsily set to follow each and every internal link it finds at your site, you may just be in trouble.

    Both wget and curl will only stop if they encounter either a 404 (not found) or a 403 (forbidden). In that they behave like browsers who also don’t look at robots.txt.

    So – if any of your internal links lead into sensitive territory, make sure the target is password protected.

  12. Hi, Thanks for the great write-up:

    Regarding 9, if I put that code in .htaccess, it does not allow me to log in as well.

    Is that the correct command? Could you confirm?

    Also, to disable the directory browsing, you mentioned “Options All -Indexes” command. Would this disable the search engine crawling as well?

    Thanks again, JK

  13. Most of the people left their blog directory scannable in serahc engine and publicly browsable. This is big security hole for any blog…..

  14. As far as passwords are concerned, I highly recommend a password manager like KeePass Password Safe.

    It generates passwords and maintains them in a secure database. I don’t even try to make passwords memorable or reasonably short (most my passwords are now 25+ characters of completely random garbage).

    The auto-type function means just hitting a key-combination and having it find the proper password and using it.

    You, of course, now have to protect your password safe from loss. Not because it isn’t secure, but because you are depending on it. That’s fine by me.

    There are several of these types of programs. I chose KeePass because it also has a Linux version (KeePassX).

  15. Thanks for the tips! With all the hackers out there it is important to be safe. I will take some extra measures to protect my wordpress blogs.

  16. I’m always searching for things about topics that I don’t know about. It’s tough to find things that you do not know about, because what do you search for? ;) Your blog is the type of thing I love to read about regarding something new to me. Nice share! Thanks.

  17. Hi there, I tried to follow the steps you mentioned, and I did great with changing passwords, but I really messed up my wp_config.php and deleted a bunch of code out the header.php. I actually ended up seeking help from WPSecurity.com. They were great and fixed everything for me, but I have come to the conclusion that I’m just not meant to mess with this stuff myself. Oh my head.

  18. Llegué a tu blog y todo el contenido me pareció genial. Me la pasé leyendo un rato largo. Agregaré la dirección a mi lector de noticias. Si no estás haciendo nada interesante, date una vuelta por mi blog. Nos mantenemos en contacto!

  19. Very useful list. Thanks for sharing.

    However you can apply few more useful tips on wordpress security like not to use default administrator account.

    Read more here
    shoutmeloud.com/10-useful-facebook-tools-and-tips-for-bloggers.html

  20. Very useful list. Thanks for sharing.

    However you can apply few more useful tips on wordpress security like not to use default administrator account.

    Read more here
    shoutmeloud.com/wordpress-security-7-essential-tips.html

  21. Hi Thanks for giving us those tips. Having a strong password is great and easy way to protect our site. But even though we have security measures, we cannot still guarantee a 100% bug free website. So making a backup is still the best.

  22. Thanks a lot for sharing. You have done a brilliant job. Your article is truly relevant to my study at this moment, and I am really happy I discovered your website. However, I would like to see more details about this topic.

  23. Concerning security programs, particularly for companies, I have to agree with what you have said completely. You can find so quite a few alternatives in the marketplace, it truly is significant for any expert to be aware what is very bestfor their situation plus particular office building. The remarks you’re supplying continue to be a terrific assist to businesses plus security professionals similarly. Thank you again!

  24. Have you considered adding some relevant links to the article? I think it will really enhance viewers’ understanding.

  25. After implemented the above security steps the wordpres plugins don’t update. The server end is OK. File permission is OK. Even when i undo the taken security steps still the wp plugins don’t update. Whats the solutions? Anyone can help?
    N.B.: The host support guy says, the server configuration is OK.

  26. this is my stop thanks dear good work i have read lots of post regarding Word press Security found very useful for me thanks dear

  27. I will always use different passwords for all my blogs, each password containing a series of 6 letters and 6 numbers. There is some great advice here so thank you.

  28. Another quick tip for the less technical folks out there: create a second full administrative user with a nice login name and delete the generic “admin” account (and by doing so with WordPress 3 and above you’ll even have the possibility to rename all the posts signed as “admin” to your “new you”).

  29. 8. I think this is among the most important information for me. And i am glad reading your article. But want to remark on some general things, The website style is great, the articles is really excellent : D. Good job, cheers

  30. Pretty good write-up – goes good with some other lists of security tips.

    One thing I run into a lot is people who think that there’s no such thing as security through obscurity – however that perspective most likely comes from a skewed perception. So people might want to read WordPress Security Through Obscurity? to gain some clarity.

  31. This unique blog is obviously cool as well as diverting. I have chosen a bunch of useful stuff out of this blog. I’d love to return over and over again. Cheers!

  32. What I have often told people today is that when looking for a good online electronics retail outlet, there are a few issues that you have to consider. First and foremost, you should really make sure to choose a reputable as well as reliable shop that has got great evaluations and ratings from other people and industry experts. This will ensure you are handling a well-known store that gives good program and support to it’s patrons. Many thanks sharing your thinking on this web site.

  33. Protecting your blog with a strong password is probably the best tip. In fact, you should choose a strong password for all your logins. The last thing you need is for someone to hack into your WordPress blog because they were able to guess your password.

  34. I’ve been using the Options All -Indexes directive (and one to protect wp-config) in the htaccess file for my sites for quite a while. From time to time however they disappear and only my permalink redirect directives remain.

    I think this occurs either when I turn on/off directory password protection from cpanel (which updates the htaccess) or update my permalinks within WP (ditto). So if you’ve done either of those it wouldn’t hurt to check your htaccess file is still correct.

    1. Oops – the disappearing htaccess updates was my own fault.
      I was putting them between the BEGIN/END that WordPress uses. Moving them outside the BEGIN/END makes them permanent.

  35. Thanks for the security tips, being a newbie, would like to rely on plugins as per now..some of them are unknown to me, will surely check them out.. :)

  36. Thank you so much for the tips. I never though about my blog security but I am starting today after your reading your post.

  37. Well i am aware most of the tips here but the one “Nobody should be allowed to search your entire server” is new and seems to be important for me.
    Thanks

Leave a Reply

Your email address will not be published. Required fields are marked *