hi
in the config.php file we test for authenticated user. (i've added ck finder)
function CheckAuthentication()
{
return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized'];
}
I would like to test if an unauthorised user can access/delete files. How can I test for this?
Thanks
in the config.php file we test for authenticated user. (i've added ck finder)
function CheckAuthentication()
{
return isset($_SESSION['IsAuthorized']) && $_SESSION['IsAuthorized'];
}
I would like to test if an unauthorised user can access/delete files. How can I test for this?
Thanks

Re: security test