How to Control Bandwidth in Linux?
Trickle and WonderShaper: When we start working on a lot of machines specifically Linux servers.…
When you discover that your Joomla is under attack, you should first go through the weblogs. You might discover suspicious client requests there for eg:
192.168.0.1 – – [29/Oct/2008:06:07:30 -0500] “GET /index.php?live_site=domain.com/1.txt?? HTTP/1.1” 200 10864 “-” “Firefox”
But there are times when its extremely difficult to trace and decode an attack on your website. It might take the skills and time of an expert developer to successfully trace an attack. Hopefully the below points might prove helpful to prevent any attacks on your Joomla website
PHP configuration: check ‘- allow_url_include’. If this directive is ‘on’, it is easy to add remote code to your Joomla script. Turn this off too.
using the default table prefix _jos. This allows MySQL injections. You have to make changes so that your table prefix cannot easily decoded through this component.
RG_EMULATION turned on in Joomla 1.0.* – this directive emulates register_globals locally. This directive should be disabled. When enabled a warning will be displayed right after you log in to your Joomla admin panel. To disable it, you can add the following somewhere in the middle of the configuration.php file:
if(!defined(‘RG_EMULATION’)) { define( ‘RG_EMULATION’, 0 ); }
Explore more hosting insights, tips and industry updates.
Trickle and WonderShaper: When we start working on a lot of machines specifically Linux servers.…
When browsing the internet you have gotten the occasional popup informing you that the site.…
In this guide, you will explore how to resolve memory limit issues in WordPress and…