How To Secure Your WordPress Site

This article describes several ways to enhance the security of your WordPress site.

Essential WordPress security measures

There are several essential steps you should take to enhance the security of a WordPress site:

Strong WordPress Passwords

Use a strong password for all administrator accounts, and change passwords periodically. Strong passwords are not easily guessed. To break into an account with stong passwords, hackers use a brute force attack. Stopping brute force attacks is covered below.

If your site has been compromised (or you even suspect that it has been compromised), you must also change the security keys in the wp-config.php file that are used to encrypt cookies. Simply changing passwords is not enough, because an attacker may still have a valid cookie and be able to access your site.

For more information about how to configure security keys in the wp-config.php file, please visit http://codex.wordpress.org/Editing_wp-config.php#Security_Keys.

Unique WordPress Username

Do not use the default admin username for the adminstrator. Instead, create a user with a different username, assign the administrative role to it, and then delete the default admin administrator.

Update WordPress, Plugins and Themes

WordPress is updated regularly to address known vulnerabilities. Running old versions of WordPress makes it easy for hackers to gain access to your site. Run updates regularly to make sure WordPress and all related plugins are up to date. For more information about how to update WordPress, please see this article.

Delete Unused WordPress Plugins and Themes

Even though unused plugins and themes are disabled, that code is still visible on the Internet and can be a target for hackers. Be sure to delete any unused themes or plugins in order to reduce the opportunity for hackers to gain access to your site.

Regular Backups

Make regular backups of your WordPress site. Backups will not prevent a site from being compromised but they do help get a site back online quickly in case of compromise. You can use Softaculous to back up, restore, and update your WordPress site from one convenient interface. For more information about how to do this, please see this article.

Defending against WordPress brute force attacks

A brute force attack is a simplistic type of attack where a user or script tries to gain access to a site by repeatedly guessing different username and password combinations. Unfortunately, many people have username and password combinations that are easily guessed, so brute force attacks are often effective.

If your WordPress site experiences a brute force attack, you may notice that the site responds slowly, or not at all. Additionally, you may be unable to log in. This is because the flood of login attempts during a brute force attack causes numerous PHP and MySQL calls. These calls increase server load and adversely affect website performance.

There are several measures you can take to defend against brute force attacks on your site:

Method #1: Password-protect the WordPress login page

WordPress uses the wp-login.php file for logins. By adding password protection to this file, you add another layer of security to your site. Users must enter a username and password before they can even access the wp-login.php file to log in to WordPress.

To set up password protection for the WordPress login page, follow these steps:

  1. Use your web browser to go to http://www.htaccesstools.com/htpasswd-generator.
  2. In the Username text box, type a username.
  3. In the Password text box, type a password for the user.
  4. Click Create .htpasswd file, and then copy the line of text. The line of text should contain the username you specified, followed by a colon (:), and then the encrypted password. For example:
    username:$apr1$IUQgDA6U$qbXb9wEnjirNCqxezpjoe5
  5. Create a file named .wp-password in your A2 Hosting account's home directory (/home/username, where username represents your A2 Hosting account username). Paste the line of text from the previous step into the file. There are two ways you can create and edit this file:

    Make sure that the .wp-password filename begins with a period (.).
  6. Save the .wp-password file and exit the text editor.
  7. Create an .htaccess file in the directory where you installed WordPress:

    • If you installed WordPress in the domain's document root, then this directory is /home/username/public_html, where username represents your A2 Hosting account username.
    • If you installed WordPress in a subdirectory or subdomain, then this directory is /home/username/public_html/directory, where directory represents the WordPress location.
  8. Copy and paste the following text into the .htaccess file:

    # Prevent Apache from serving .ht* files:
    <FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    </FilesMatch>
    
    ErrorDocument 401 "401 Unauthorized"
    ErrorDocument 403 "403 Forbidden"
    
    # Protect wp-login.php:
    <Files wp-login.php>
    AuthUserFile /home/A2-USERNAME/.wp-password
    AuthName "Please log in"
    AuthType Basic
    require user WP-USERNAME
    </Files>
  9. In the .htaccess file, make the following changes:

    • Replace A2-USERNAME with your A2 Hosting account (cPanel) username.
    • Replace WP-USERNAME with the username that you specified in step 2.
    If you want to display a login message different from “Please log in”, you can change the AuthName directive's value to whatever text you want.
  10. Save the .htaccess file and exit the text editor.
  11. Use your web browser to go to the WordPress login page (for example, http://www.example.com/wp-admin, where example.com represents your domain name).
  12. You should be prompted to type a username and password. Type the username and password combination that you specified in steps 2 and 3. The WordPress login page should appear, and you can now log in to WordPress as you normally do.
Method #2: Block IP addresses from accessing the WordPress login page

Another way to counter brute force attacks is by blocking IP addresses. With this configuration, you can allow one (or several) IP addresses to access the WordPress login page, and block everything else.

If you enable IP address blocking and also use Cloudflare, make sure you test site logins thoroughly. On some server configurations, the combination of Cloudflare and IP address blocking may prevent logins from working correctly.

To prevent IP addresses from accessing the login page, follow these steps:

  1. Create an .htaccess file in the directory where you installed WordPress:
    • If you installed WordPress in the domain's document root, then this directory is /home/username/public_html, where username represents your A2 Hosting account username.
    • If you installed WordPress in a subdirectory or subdomain, then this directory is /home/username/public_html/directory, where directory represents the WordPress location.
    If you already followed the steps to set up password protection for the login page, use the same .htaccess file that you created in that procedure.
  2. Copy and paste the following text into the .htaccess file:

    <Files wp-login.php>
    order deny,allow
    allow from xxx.xxx.xxx.xxx
    deny from all
    </Files>
  3. In the .htaccess file, replace xxx.xxx.xxx.xxx with the IP address that you want to allow for WordPress logins. All other IP addresses will be blocked from accessing the wp-login.php page.

    • To grant access to multiple IP addresses, you can add multiple allow from lines.
    • To determine your current IP address, you can visit http://ipfinder.us.
  4. Save the .htaccess file and exit the text editor.
  5. Test your WordPress site to make sure that it still functions correctly, and that you can access the administration login page.
Method #3: Change the WordPress login URL

The default WordPress login page is wp-login.php, and a basic WordPress installation does not allow you to change this location. However, the Rename wp-login.php plugin allows you to change the WordPress login URL. Doing so can reduce the impact of brute force attacks, which are usually scripts that are programmed to hit the wp-login.php page over and over again with login attempts.

When you change the WordPress login URL, anyone who tries to access the wp-login.php page or wp-admin directory receives a “404 Not Found” error message.

To change the WordPress login URL, follow these steps:

  1. Log in to your WordPress site.
  2. Click Plugins, and then click Add New.
  3. In the Search text box, type rename wp-login, and then click Search Plugins.
  4. The Rename wp-login.php plugin appears in the list of search results.
  5. Under Rename wp-login.php, click Install Now, and then click OK to start the installation.
  6. After the plugin installation finishes, click Activate Plugin. The Permalink Settings page appears.
  7. Under Common Settings, select a permalink structure for your site.
    You cannot use the default permalink structure with the Rename wp-login.php plugin.
  8. Under Login, in the Rename wp-login.php text box, type a URL for the login page, or accept the default value of login.
  9. Click Save Changes. The new WordPress login URL appears near the top of the Permalink Settings page.
  10. Test your WordPress site to make sure that it still functions correctly, and that you can access the login page using the new URL. Additionally, if you try to access wp-login.php or wp-admin, you should receive a “404 Not Found” error message.
Method #4: Enable Cloudflare for your site

Cloudflare is a content delivery network (CDN) that can block malicious requests before they reach your site. For example, Cloudflare-enabled sites were significantly protected during a large-scale WordPress brute force attack that occurred in April 2013.

Cloudflare works by routing traffic to your website through its own network. As a result, Cloudflare is able to block certain types of malicious requests. Cloudflare also increases website performance by leveraging its worldwide server network to deliver content to users more efficiently.

For general information about Cloudflare, please see these articles. For instructions about how to enable Cloudflare for your site, please see this article.

If you enable Cloudflare and also use the IP address blocking method described in this article, make sure you test site logins thoroughly. On some server configurations, the combination of Cloudflare and IP address blocking may prevent logins from working correctly.

 

Get WordPress Hosting

Article Details

  • Level: Intermediate

Other Articles in This Category

Show More

Did you find this article helpful? Then you'll love our support. Experience the A2 Hosting difference today and get a pre-secured, pre-optimized website. Check out our web hosting plans today.

We use cookies to personalize the website for you and to analyze the use of our website. You consent to this by clicking on "I consent" or by continuing your use of this website. Further information about cookies can be found in our Privacy Policy.