SludgeMeister
08-18-2006, 06:38 PM
Well...Joomla and various components it uses seem to be getting hit heavily lately. Numerous reports are popping up about sites being hit (primarily through exploits in 3rd party components).
However, the biggest statement that seems to be popping up is to make sure that Register Globals is set to "off"....Of course, this has always been the practice for alot of us but what I didn't actually realise is that Joomla itself emulates Register Globals as ON.
Websmurf posted this on the Joomla forum earlier:
After being hacked through facileforms today, with register globals off, i've done a bit of research.
If you have register globals off, make sure your globals.php file is configured like this:
define( 'RG_EMULATION', 0 );
in stead of with the default:
define( 'RG_EMULATION', 1 );
Else, Joomla will emulate register globals on, and the effect of register globals off will be gone..
So even with Register Globals set off in server, Joomla in its very special way of doing things counteracts that....So needs to be modified also.
Community Builder has also released a security update recently.
T.
However, the biggest statement that seems to be popping up is to make sure that Register Globals is set to "off"....Of course, this has always been the practice for alot of us but what I didn't actually realise is that Joomla itself emulates Register Globals as ON.
Websmurf posted this on the Joomla forum earlier:
After being hacked through facileforms today, with register globals off, i've done a bit of research.
If you have register globals off, make sure your globals.php file is configured like this:
define( 'RG_EMULATION', 0 );
in stead of with the default:
define( 'RG_EMULATION', 1 );
Else, Joomla will emulate register globals on, and the effect of register globals off will be gone..
So even with Register Globals set off in server, Joomla in its very special way of doing things counteracts that....So needs to be modified also.
Community Builder has also released a security update recently.
T.