Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;
    }      
share|improve this question

3 Answers

up vote 4 down vote accepted

Just append this to your condition:

elseif(stristr($password, $username) !== false) // password contains username
{
    $error .= $lang['46'];  
}
share|improve this answer
somehow your script have managed to not to work for me ^_-. what i have done is that added password not equal to username and must contain atleast one number or special character. !preg_match("#[0-9\W]+#", $password) – asimkhan0001 Jun 6 '12 at 11:33

The easiest thing is going to be stripos:

$username = "Corbin";
$password = "mynameiscorbin";
if (stripos($password, $username) !== false) {
    //password contains username
}
share|improve this answer
thanks corbin i have also tried stripos – asimkhan0001 Jun 6 '12 at 11:35

I think you are looking for stripos().

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.