Vergleich inc/datahandlers/login.php - 1.8.2 - 1.8.26

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 41Zeile 41
	 */
public $login_data = array();


	 */
public $login_data = array();


 
	/**
* @var bool
*/

	public $captcha_verified = true;

	public $captcha_verified = true;

	





/**
* @var bool|captcha
*/

	private $captcha = false;


	private $captcha = false;


 
	/**
* @var int
*/

	public $username_method = null;


	public $username_method = null;


 
	/**
* @param int $check_captcha
*/

	function verify_attempts($check_captcha = 0)

	function verify_attempts($check_captcha = 0)

	{
global $db, $mybb;

$user = &$this->data;


	{
global $db, $mybb;

$user = &$this->data;


		if($check_captcha)
{
if(!isset($mybb->cookies['loginattempts']))

		if($check_captcha)
{
if(!isset($mybb->cookies['loginattempts']))

Zeile 66Zeile 78
			}
}
}

			}
}
}







/**
* @return bool
*/

	function verify_captcha()
{
global $db, $mybb;


	function verify_captcha()
{
global $db, $mybb;


		$user = &$this->data;


		$user = &$this->data;


		if($user['imagestring'] || $mybb->settings['captchaimage'] != 1)
{
// Check their current captcha input - if correct, hide the captcha input area

		if($user['imagestring'] || $mybb->settings['captchaimage'] != 1)
{
// Check their current captcha input - if correct, hide the captcha input area

Zeile 93Zeile 108
				$this->captcha_verified = true;
return true;
}

				$this->captcha_verified = true;
return true;
}

		}

		}

		else if($mybb->input['quick_login'] == 1 && $mybb->input['quick_password'] && $mybb->input['quick_username'])
{
$this->set_error('regimagerequired');
return false;
}
else

		else if($mybb->input['quick_login'] == 1 && $mybb->input['quick_password'] && $mybb->input['quick_username'])
{
$this->set_error('regimagerequired');
return false;
}
else

		{

		{

			$this->set_error('regimageinvalid');

			$this->set_error('regimageinvalid');

			return false;
}

			return false;
}

	}


	}


 
	/**
* @return bool
*/

	function verify_username()
{
$this->get_login_data();

if(!$this->login_data['uid'])

	function verify_username()
{
$this->get_login_data();

if(!$this->login_data['uid'])

		{
$this->invalid_combination();
return false;
}



		{
$this->invalid_combination();
return false;
}

return true;

	}


	}


 
	/**
* @param bool $strict
*
* @return bool
*/

	function verify_password($strict = true)
{

	function verify_password($strict = true)
{

		global $db, $mybb;

		global $db, $mybb, $plugins;


$this->get_login_data();

if(empty($this->login_data['username']))
{
// Username must be validated to apply a password to


$this->get_login_data();

if(empty($this->login_data['username']))
{
// Username must be validated to apply a password to

			$this->invalid_combination();
return false;
}

$user = &$this->data;






			$this->invalid_combination();
return false;
}

$args = array(
'this' => &$this,
'strict' => &$strict,
);

$plugins->run_hooks('datahandler_login_verify_password_start', $args);





		$password = md5($user['password']);

		$user = &$this->data;


if(!$this->login_data['uid'] || $this->login_data['uid'] && !$this->login_data['salt'] && $strict == false)


if(!$this->login_data['uid'] || $this->login_data['uid'] && !$this->login_data['salt'] && $strict == false)

		{

		{

			$this->invalid_combination();
}


			$this->invalid_combination();
}


Zeile 144Zeile 174
			if(!$this->login_data['salt'])
{
// Generate a salt for this user and assume the password stored in db is a plain md5 password

			if(!$this->login_data['salt'])
{
// Generate a salt for this user and assume the password stored in db is a plain md5 password

				$this->login_data['salt'] = generate_salt();
$this->login_data['password'] = salt_password($this->login_data['password'], $this->login_data['salt']);

$sql_array = array(
"salt" => $this->login_data['salt'],
"password" => $this->login_data['password']
);

$db->update_query("users", $sql_array, "uid = '{$this->login_data['uid']}'");

				$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'])

			}

if(!$this->login_data['loginkey'])

Zeile 167Zeile 191
			}
}


			}
}


		$salted_password = md5(md5($this->login_data['salt']).$password);

		$plugins->run_hooks('datahandler_login_verify_password_end', $args);





		if($salted_password != $this->login_data['password'])

		if(!verify_user_password($this->login_data, $user['password']))

		{
$this->invalid_combination(true);
return false;
}

		{
$this->invalid_combination(true);
return false;
}

 

return true;

	}


	}


 
	/**
* @param bool $show_login_attempts
*/

	function invalid_combination($show_login_attempts = false)
{
global $db, $lang, $mybb;

	function invalid_combination($show_login_attempts = false)
{
global $db, $lang, $mybb;

Zeile 189Zeile 218
		$login_text = '';
if($show_login_attempts)
{

		$login_text = '';
if($show_login_attempts)
{

			if($mybb->settings['failedlogincount'] != 0 && $mybb->settings['failedlogintext'] == 1)

			if($mybb->settings['failedlogincount'] != 0 && $mybb->settings['failedlogintext'] == 1 && $this->login_data['uid'] != 0)

			{

			{

				$logins = login_attempt_check(false) + 1;

				$logins = login_attempt_check($this->login_data['uid'], false) + 1;

				$login_text = $lang->sprintf($lang->failed_login_again, $mybb->settings['failedlogincount'] - $logins);
}
}

				$login_text = $lang->sprintf($lang->failed_login_again, $mybb->settings['failedlogincount'] - $logins);
}
}

Zeile 217Zeile 246
		$user = &$this->data;

$options = array(

		$user = &$this->data;

$options = array(

			'fields' => array('uid', 'username', 'password', 'salt', 'loginkey', 'coppauser', 'usergroup', 'loginattempts'),

			'fields' => '*',

			'username_method' => (int)$settings['username_method']
);


			'username_method' => (int)$settings['username_method']
);


Zeile 229Zeile 258
		$this->login_data = get_user_by_username($user['username'], $options);
}


		$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 237Zeile 269

$plugins->run_hooks('datahandler_login_validate_start', $this);



$plugins->run_hooks('datahandler_login_validate_start', $this);


		$this->verify_attempts($mybb->settings['captchaimage']);




		if(!defined('IN_ADMINCP'))
{
$this->verify_attempts($mybb->settings['captchaimage']);
}


if(array_key_exists('username', $user))


if(array_key_exists('username', $user))

		{

		{

			$this->verify_username();

			$this->verify_username();

		}

		}


if(array_key_exists('password', $user))


if(array_key_exists('password', $user))

		{

		{

			$this->verify_password();
}


			$this->verify_password();
}


Zeile 255Zeile 290
		if(count($this->get_errors()) > 0)
{
return false;

		if(count($this->get_errors()) > 0)
{
return false;

		}


		}


		return true;
}


		return true;
}


 
	/**
* @return bool true
*/

	function complete_login()
{
global $plugins, $db, $mybb, $session;

	function complete_login()
{
global $plugins, $db, $mybb, $session;





		$user = &$this->login_data;

$plugins->run_hooks('datahandler_login_complete_start', $this);

		$user = &$this->login_data;

$plugins->run_hooks('datahandler_login_complete_start', $this);





		// 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'],

Zeile 288Zeile 323
			$remember = -1;
}


			$remember = -1;
}


		my_setcookie("mybbuser", $user['uid']."_".$user['loginkey'], $remember, true);


		my_setcookie("mybbuser", $user['uid']."_".$user['loginkey'], $remember, true, "lax");


		if($this->captcha !== false)
{
$this->captcha->invalidate_captcha();

		if($this->captcha !== false)
{
$this->captcha->invalidate_captcha();