This is my code. i am trying to add one more step that if entered password contains entered username then it returns error that pass cannot contain username. i am talking about 'contains', and not wholy the password. in that case i could simply do elseif($password == "$user_username") $error .= $lang['46'];}
Also i will be thank full to you if you can tell me vulnerablties in my script
$user_username = cleanit($_REQUEST['username']);
STemplate::assign('user_username',$user_username);
$password = cleanit($_REQUEST['password']);
STemplate::assign('password',$password);
if($user_username == "")
{
$error .= $lang['41']; //Error: Please enter your username
}
elseif(strlen($user_username) < 4) //Your username should have 4 chars
{
$error .= $lang['42'];
}
elseif(!preg_match("/^[a-zA-Z0-9]*$/i",$user_username)) //name only contains letters and numbers
{
$error .= $lang['43'];
}
elseif(!verify_email_username($user_username)) //username already taken
{
$error .= $lang['44'];
}
elseif($password == "") //no password entered
{
$error .= $lang['45'];
}
if($error == "")
{
$SID = intval($_SESSION['USERID']);
$pw = md5($password);
$query="UPDATE members SET username='".mysql_real_escape_string($user_username)."', password='".mysql_real_escape_string($pw)."', pwd='".mysql_real_escape_string($password)."' WHERE USERID='".mysql_real_escape_string($SID)."'";
$result=$conn->execute($query);
$_SESSION['USERNAME']=$user_username;
header("Location:$config[baseurl]/welcome");exit;
}
