Zeile 71 | Zeile 71 |
---|
{ $mybb->cookies['loginattempts'] = 0; }
|
{ $mybb->cookies['loginattempts'] = 0; }
|
if($mybb->settings['failedcaptchalogincount'] > 0 && ($user['loginattempts'] > $mybb->settings['failedcaptchalogincount'] || (int)$mybb->cookies['loginattempts'] > $mybb->settings['failedcaptchalogincount']))
| if($mybb->settings['failedcaptchalogincount'] > 0 && (isset($user['loginattempts']) && $user['loginattempts'] > $mybb->settings['failedcaptchalogincount'] || (int)$mybb->cookies['loginattempts'] > $mybb->settings['failedcaptchalogincount']))
|
{ $this->captcha_verified = false; $this->verify_captcha();
| { $this->captcha_verified = false; $this->verify_captcha();
|
Zeile 128 | Zeile 128 |
---|
{ $this->get_login_data();
|
{ $this->get_login_data();
|
if(!$this->login_data['uid'])
| if(empty($this->login_data) || !$this->login_data['uid'])
|
{ $this->invalid_combination(); return false;
| { $this->invalid_combination(); return false;
|
Zeile 171 | Zeile 171 |
---|
if($strict == true) {
|
if($strict == true) {
|
if(!$this->login_data['salt']) { // Generate a salt for this user and assume the password stored in db is a plain md5 password $password_fields = create_password($this->login_data['password']); $this->login_data = array_merge($this->login_data, $password_fields); $db->update_query("users", $password_fields, "uid = '{$this->login_data['uid']}'"); }
| |
if(!$this->login_data['loginkey']) { $this->login_data['loginkey'] = generate_loginkey();
| if(!$this->login_data['loginkey']) { $this->login_data['loginkey'] = generate_loginkey();
|
Zeile 211 | Zeile 203 |
---|
// Don't show an error when the captcha was wrong! if(!$this->captcha_verified)
|
// Don't show an error when the captcha was wrong! if(!$this->captcha_verified)
|
{
| {
|
return; }
| return; }
|
Zeile 242 | Zeile 234 |
---|
function get_login_data() { global $db, $settings;
|
function get_login_data() { global $db, $settings;
|
$user = &$this->data;
| $user = &$this->data;
|
$options = array( 'fields' => '*',
| $options = array( 'fields' => '*',
|
Zeile 254 | Zeile 246 |
---|
{ $options['username_method'] = (int)$this->username_method; }
|
{ $options['username_method'] = (int)$this->username_method; }
|
|
|
$this->login_data = get_user_by_username($user['username'], $options); }
/** * @return bool
|
$this->login_data = get_user_by_username($user['username'], $options); }
/** * @return bool
|
*/
| */
|
function validate_login() { global $plugins, $mybb;
| function validate_login() { global $plugins, $mybb;
|
Zeile 309 | Zeile 301 |
---|
// Login to MyBB my_setcookie('loginattempts', 1); my_setcookie("sid", $session->sid, -1, true);
|
// Login to MyBB my_setcookie('loginattempts', 1); my_setcookie("sid", $session->sid, -1, true);
|
$ip_address = $db->escape_binary($session->packedip); $db->delete_query("sessions", "ip = {$ip_address} AND sid != '{$session->sid}'");
| |
$newsession = array( "uid" => $user['uid'],
| $newsession = array( "uid" => $user['uid'],
|