How To Optimize Joomla Security

CheapASPNETHostingReview.com | Best and cheap Joomla Hosting. Joomla! is a great CMS that is used worldwide. For this reason, hackers often try to find a way to hack a Joomla! website. Here are 7 tips to optimize your Joomla! security, preventing your Joomla! website getting hacked.
Always remember to make a regular backup of your website and database. If you still get hacked, you can always get back to an older version of your website. Make sure you find out which extension caused the vulnerability and un-install it.

Joomla-Logo

Change the default database prefix (jos_)

Most SQL injections that are written to hack a Joomla! website, try to retrieve data from the jos_users table. This way, they can retrieve the username and password from the super administrator of the website. Changing the default prefix into something random, will prevent (most / all) SQL injections.
You can set the database prefix when installing your Joomla! website. If you’ve already installed Joomla! and want to change your prefix, do the following:

  •     Log on to your Joomla! back-end.
  •     Go to your global configuration and search for the database
  •     Change your database prefix (Example: fdasqw_) and press Save.
  •     Go to phpMyAdmin to access your database.
  •     Go to export, leave all default values and press Start. Exporting the database can take a while.
  •     When done, select all code and copy it to notepad (or any other text editor)
  •     In phpMyAdmin, select all tables and delete them
  •     In notepad, do a Search & replace (Ctrl + H). Set the searchterm to jos_ and change it into your new prefix (Example: fdasqw_). Press “Replace all”.
  •     Select everything in your notepad file and copy it. In phpMyAdmin, go to SQL, paste the queries and press Start.

Remove version number / name of extensions

Most vulnerabilities only occur in a specific release of a specific extension. Showing MyExtension version 2.14 is a really bad thing. You can modify this message to only the name of the extension by doing the following:

  • Retrieve all files of the extension from your server.
  • Open up Dreamweaver.
  • Load any file from the extension that you just downloaded to your local machine.
  • Use the Search function and set the search to Search through specified folder. Navigate to the folder where you   downloaded the exploit to.
  • Set the search term to “MyExtension version 2.14” and press OK.
  • When found the correct file, remove the version number.
  • Upload the changed file to your server and check if the changes are made.

Use a SEF component

Most hackers use the Google inurl: command to search for a vulnerable exploit. Use Artio, SH404SEF or another SEF component to re-write your URL’s and prevent hackers from finding the exploits.
Additionally, you’ll get a higher rank in Google when using search engine friendly URL’s.

Keep Joomla! and extensions up to date

This one is pretty obvious. Always check for the latest versions of Joomla! and the extensions you’re using. Many vulnerabilities are resolved most of the times in later versions.

Use the correct CHMOD for each folder and file

Setting files or folders to a CHMOD of 777 or 707 is only necessary when a script needs to write to that file or directory. All other files should have the following configuration:

  •     PHP files: 644
  •     Config files: 666
  •     Other folders: 755

Delete leftover files

When you installed an extension that you didn’t like, don’t set the extension to unbublished. If you do, the vulnerable files will still be on your website. So simply use the un-install function to totally get rid of the extension.

Change your .htaccess file

Add the following lines to your .htaccess file to block out some common exploits.