Jump to content

HELP Hack attempt (Guest -> id_operating_system = 1)


Jason Lee

Recommended Posts

Yup, it show on the index.php.

I found out in classes/Tools.php have this following code, can i remove it?

static public function displayError($string = 'Hack attempt', $htmlentities = true)
{
global $_ERRORS;

if (!is_array($_ERRORS))
return str_replace('"', '"', $string);
$key = md5(str_replace('\'', '\\\'', $string));
$str = (isset($_ERRORS) AND is_array($_ERRORS) AND key_exists($key, $_ERRORS)) ? ($htmlentities ? htmlentities($_ERRORS[$key], ENT_COMPAT, 'UTF-8') : $_ERRORS[$key]) : $string;
return str_replace('"', '"', stripslashes($str));
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...