X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/3fe7dc93f5282f347387c283ea7f463e650c8736..c06c1713af2db485d55a91073bbc5b63b6aa8c0b:/login/index.php diff --git a/login/index.php b/login/index.php index 1d73e77..56dc0a7 100644 --- a/login/index.php +++ b/login/index.php @@ -1,6 +1,5 @@ - id) && $user->password_verify($_POST['password'])) + $hash_needs_updating = false; + if (isset($user->id) && $user->password_verify($_POST['password'], $hash_needs_updating)) { + /* SUCCESSFUL LOGIN */ + if ($hash_needs_updating) + { + /* Set password again so it is freshly hashed */ + $hash = PanelUser::password_hash($_POST['password']); + $ar = ["update_pass_conf"=>$hash]; + $user->update_core_info($ar); + unset($ar); + unset($hash); + } + panel_start_session($user); $_SESSION['id'] = $user->id; - header('Location: ' . $redirect); $user->add_meta("last_login", date("Y-m-d H:i:s")); Hook::run(HOOKTYPE_USER_LOGIN, $user); + + /* Middle of install? Override redirect: */ + if (!isset($config['unrealircd']) || empty($config['unrealircd']['host'])) + $redirect = get_config("base_url")."settings/install2.php"; + header('Location: ' . $redirect); die(); } else { + /* LOGIN FAILED */ $fail = [ "login" => htmlspecialchars($_POST['username']), "IP" => $_SERVER['REMOTE_ADDR'] @@ -149,4 +165,4 @@ if (!empty($_POST)) }); -