LogInOut.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. <?php
  2. /**
  3. * This file is concerned pretty entirely, as you see from its name, with
  4. * logging in and out members, and the validation of that.
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2014 Simple Machines and individual contributors
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('No direct access...');
  17. /**
  18. * Ask them for their login information. (shows a page for the user to type
  19. * in their username and password.)
  20. * It caches the referring URL in $_SESSION['login_url'].
  21. * It is accessed from ?action=login.
  22. * @uses Login template and language file with the login sub-template.
  23. * @uses the protocol_login sub-template in the Wireless template,
  24. * if you are using a wireless device
  25. */
  26. function Login()
  27. {
  28. global $txt, $context, $scripturl, $user_info;
  29. // You are already logged in, go take a tour of the boards
  30. if (!empty($user_info['id']))
  31. redirectexit();
  32. // In wireless? If so, use the correct sub template.
  33. if (WIRELESS)
  34. $context['sub_template'] = WIRELESS_PROTOCOL . '_login';
  35. // Otherwise, we need to load the Login template/language file.
  36. else
  37. {
  38. loadLanguage('Login');
  39. loadTemplate('Login');
  40. $context['sub_template'] = 'login';
  41. if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest')
  42. {
  43. $context['from_ajax'] = true;
  44. $context['template_layers'] = array();
  45. }
  46. }
  47. // Get the template ready.... not really much else to do.
  48. $context['page_title'] = $txt['login'];
  49. $context['default_username'] = &$_REQUEST['u'];
  50. $context['default_password'] = '';
  51. $context['never_expire'] = false;
  52. // Add the login chain to the link tree.
  53. $context['linktree'][] = array(
  54. 'url' => $scripturl . '?action=login',
  55. 'name' => $txt['login'],
  56. );
  57. // Set the login URL - will be used when the login process is done (but careful not to send us to an attachment).
  58. if (isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0)
  59. $_SESSION['login_url'] = $_SESSION['old_url'];
  60. else
  61. unset($_SESSION['login_url']);
  62. // Create a one time token.
  63. createToken('login');
  64. }
  65. /**
  66. * Actually logs you in.
  67. * What it does:
  68. * - checks credentials and checks that login was successful.
  69. * - it employs protection against a specific IP or user trying to brute force
  70. * a login to an account.
  71. * - upgrades password encryption on login, if necessary.
  72. * - after successful login, redirects you to $_SESSION['login_url'].
  73. * - accessed from ?action=login2, by forms.
  74. * On error, uses the same templates Login() uses.
  75. */
  76. function Login2()
  77. {
  78. global $txt, $scripturl, $user_info, $user_settings, $smcFunc;
  79. global $cookiename, $modSettings, $context, $sc, $sourcedir;
  80. // Load cookie authentication stuff.
  81. require_once($sourcedir . '/Subs-Auth.php');
  82. if (isset($_GET['sa']) && $_GET['sa'] == 'salt' && !$user_info['is_guest'])
  83. {
  84. if (isset($_COOKIE[$cookiename]) && preg_match('~^a:[34]:\{i:0;i:\d{1,7};i:1;s:(0|40):"([a-fA-F0-9]{40})?";i:2;[id]:\d{1,14};(i:3;i:\d;)?\}$~', $_COOKIE[$cookiename]) === 1)
  85. list (, , $timeout) = @unserialize($_COOKIE[$cookiename]);
  86. elseif (isset($_SESSION['login_' . $cookiename]))
  87. list (, , $timeout) = @unserialize($_SESSION['login_' . $cookiename]);
  88. else
  89. trigger_error('Login2(): Cannot be logged in without a session or cookie', E_USER_ERROR);
  90. $user_settings['password_salt'] = substr(md5(mt_rand()), 0, 4);
  91. updateMemberData($user_info['id'], array('password_salt' => $user_settings['password_salt']));
  92. setLoginCookie($timeout - time(), $user_info['id'], sha1($user_settings['passwd'] . $user_settings['password_salt']));
  93. redirectexit('action=login2;sa=check;member=' . $user_info['id'], $context['server']['needs_login_fix']);
  94. }
  95. // Double check the cookie...
  96. elseif (isset($_GET['sa']) && $_GET['sa'] == 'check')
  97. {
  98. // Strike! You're outta there!
  99. if ($_GET['member'] != $user_info['id'])
  100. fatal_lang_error('login_cookie_error', false);
  101. $user_info['can_mod'] = allowedTo('access_mod_center') || (!$user_info['is_guest'] && ($user_info['mod_cache']['gq'] != '0=1' || $user_info['mod_cache']['bq'] != '0=1' || ($modSettings['postmod_active'] && !empty($user_info['mod_cache']['ap']))));
  102. if ($user_info['can_mod'] && isset($user_settings['openid_uri']) && empty($user_settings['openid_uri']))
  103. {
  104. $_SESSION['moderate_time'] = time();
  105. unset($_SESSION['just_registered']);
  106. }
  107. // Some whitelisting for login_url...
  108. if (empty($_SESSION['login_url']))
  109. redirectexit();
  110. elseif (!empty($_SESSION['login_url']) && (strpos('http://', $_SESSION['login_url']) === false && strpos('https://', $_SESSION['login_url']) === false))
  111. {
  112. unset ($_SESSION['login_url']);
  113. redirectexit();
  114. }
  115. else
  116. {
  117. // Best not to clutter the session data too much...
  118. $temp = $_SESSION['login_url'];
  119. unset($_SESSION['login_url']);
  120. redirectexit($temp);
  121. }
  122. }
  123. // Beyond this point you are assumed to be a guest trying to login.
  124. if (!$user_info['is_guest'])
  125. redirectexit();
  126. // Are you guessing with a script?
  127. checkSession();
  128. $tk = validateToken('login');
  129. spamProtection('login');
  130. // Set the login_url if it's not already set (but careful not to send us to an attachment).
  131. if ((empty($_SESSION['login_url']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'dlattach') === false && preg_match('~(board|topic)[=,]~', $_SESSION['old_url']) != 0) || (isset($_GET['quicklogin']) && isset($_SESSION['old_url']) && strpos($_SESSION['old_url'], 'login') === false))
  132. $_SESSION['login_url'] = $_SESSION['old_url'];
  133. // Been guessing a lot, haven't we?
  134. if (isset($_SESSION['failed_login']) && $_SESSION['failed_login'] >= $modSettings['failed_login_threshold'] * 3)
  135. fatal_lang_error('login_threshold_fail', 'critical');
  136. // Set up the cookie length. (if it's invalid, just fall through and use the default.)
  137. if (isset($_POST['cookieneverexp']) || (!empty($_POST['cookielength']) && $_POST['cookielength'] == -1))
  138. $modSettings['cookieTime'] = 3153600;
  139. elseif (!empty($_POST['cookielength']) && ($_POST['cookielength'] >= 1 || $_POST['cookielength'] <= 525600))
  140. $modSettings['cookieTime'] = (int) $_POST['cookielength'];
  141. loadLanguage('Login');
  142. // Load the template stuff - wireless or normal.
  143. if (WIRELESS)
  144. $context['sub_template'] = WIRELESS_PROTOCOL . '_login';
  145. else
  146. {
  147. loadTemplate('Login');
  148. $context['sub_template'] = 'login';
  149. }
  150. // Set up the default/fallback stuff.
  151. $context['default_username'] = isset($_POST['user']) ? preg_replace('~&amp;#(\\d{1,7}|x[0-9a-fA-F]{1,6});~', '&#\\1;', $smcFunc['htmlspecialchars']($_POST['user'])) : '';
  152. $context['default_password'] = '';
  153. $context['never_expire'] = $modSettings['cookieTime'] == 525600 || $modSettings['cookieTime'] == 3153600;
  154. $context['login_errors'] = array($txt['error_occured']);
  155. $context['page_title'] = $txt['login'];
  156. // Add the login chain to the link tree.
  157. $context['linktree'][] = array(
  158. 'url' => $scripturl . '?action=login',
  159. 'name' => $txt['login'],
  160. );
  161. if (!empty($_POST['openid_identifier']) && !empty($modSettings['enableOpenID']))
  162. {
  163. require_once($sourcedir . '/Subs-OpenID.php');
  164. if (($open_id = smf_openID_validate($_POST['openid_identifier'])) !== 'no_data')
  165. return $open_id;
  166. }
  167. // You forgot to type your username, dummy!
  168. if (!isset($_POST['user']) || $_POST['user'] == '')
  169. {
  170. $context['login_errors'] = array($txt['need_username']);
  171. return;
  172. }
  173. // Hmm... maybe 'admin' will login with no password. Uhh... NO!
  174. if ((!isset($_POST['passwrd']) || $_POST['passwrd'] == '') && (!isset($_POST['hash_passwrd']) || strlen($_POST['hash_passwrd']) != 40))
  175. {
  176. $context['login_errors'] = array($txt['no_password']);
  177. return;
  178. }
  179. // No funky symbols either.
  180. if (preg_match('~[<>&"\'=\\\]~', preg_replace('~(&#(\\d{1,7}|x[0-9a-fA-F]{1,6});)~', '', $_POST['user'])) != 0)
  181. {
  182. $context['login_errors'] = array($txt['error_invalid_characters_username']);
  183. return;
  184. }
  185. // And if it's too long, trim it back.
  186. if ($smcFunc['strlen']($_POST['user']) > 80)
  187. {
  188. $_POST['user'] = $smcFunc['substr']($_POST['user'], 0, 79);
  189. $context['default_username'] = preg_replace('~&amp;#(\\d{1,7}|x[0-9a-fA-F]{1,6});~', '&#\\1;', $smcFunc['htmlspecialchars']($_POST['user']));
  190. }
  191. // Are we using any sort of integration to validate the login?
  192. if (in_array('retry', call_integration_hook('integrate_validate_login', array($_POST['user'], isset($_POST['hash_passwrd']) && strlen($_POST['hash_passwrd']) == 40 ? $_POST['hash_passwrd'] : null, $modSettings['cookieTime'])), true))
  193. {
  194. $context['login_errors'] = array($txt['login_hash_error']);
  195. $context['disable_login_hashing'] = true;
  196. return;
  197. }
  198. // Load the data up!
  199. $request = $smcFunc['db_query']('', '
  200. SELECT passwd, id_member, id_group, lngfile, is_activated, email_address, additional_groups, member_name, password_salt,
  201. openid_uri, passwd_flood
  202. FROM {db_prefix}members
  203. WHERE ' . ($smcFunc['db_case_sensitive'] ? 'LOWER(member_name) = LOWER({string:user_name})' : 'member_name = {string:user_name}') . '
  204. LIMIT 1',
  205. array(
  206. 'user_name' => $smcFunc['db_case_sensitive'] ? strtolower($_POST['user']) : $_POST['user'],
  207. )
  208. );
  209. // Probably mistyped or their email, try it as an email address. (member_name first, though!)
  210. if ($smcFunc['db_num_rows']($request) == 0 && strpos($_POST['user'], '@') !== false)
  211. {
  212. $smcFunc['db_free_result']($request);
  213. $request = $smcFunc['db_query']('', '
  214. SELECT passwd, id_member, id_group, lngfile, is_activated, email_address, additional_groups, member_name, password_salt, openid_uri,
  215. passwd_flood
  216. FROM {db_prefix}members
  217. WHERE email_address = {string:user_name}
  218. LIMIT 1',
  219. array(
  220. 'user_name' => $_POST['user'],
  221. )
  222. );
  223. }
  224. // Let them try again, it didn't match anything...
  225. if ($smcFunc['db_num_rows']($request) == 0)
  226. {
  227. $context['login_errors'] = array($txt['username_no_exist']);
  228. return;
  229. }
  230. $user_settings = $smcFunc['db_fetch_assoc']($request);
  231. $smcFunc['db_free_result']($request);
  232. // Figure out the password using SMF's encryption - if what they typed is right.
  233. if (isset($_POST['hash_passwrd']) && strlen($_POST['hash_passwrd']) == 40)
  234. {
  235. // Needs upgrading?
  236. if (strlen($user_settings['passwd']) != 40)
  237. {
  238. $context['login_errors'] = array($txt['login_hash_error']);
  239. $context['disable_login_hashing'] = true;
  240. unset($user_settings);
  241. return;
  242. }
  243. // Challenge passed.
  244. elseif ($_POST['hash_passwrd'] == sha1($user_settings['passwd'] . $sc . $tk))
  245. $sha_passwd = $user_settings['passwd'];
  246. else
  247. {
  248. // Don't allow this!
  249. validatePasswordFlood($user_settings['id_member'], $user_settings['passwd_flood']);
  250. $_SESSION['failed_login'] = isset($_SESSION['failed_login']) ? ($_SESSION['failed_login'] + 1) : 1;
  251. if ($_SESSION['failed_login'] >= $modSettings['failed_login_threshold'])
  252. redirectexit('action=reminder');
  253. else
  254. {
  255. log_error($txt['incorrect_password'] . ' - <span class="remove">' . $user_settings['member_name'] . '</span>', 'user');
  256. $context['disable_login_hashing'] = true;
  257. $context['login_errors'] = array($txt['incorrect_password']);
  258. unset($user_settings);
  259. return;
  260. }
  261. }
  262. }
  263. else
  264. $sha_passwd = sha1(strtolower($user_settings['member_name']) . un_htmlspecialchars($_POST['passwrd']));
  265. // Bad password! Thought you could fool the database?!
  266. if ($user_settings['passwd'] != $sha_passwd)
  267. {
  268. // Let's be cautious, no hacking please. thanx.
  269. validatePasswordFlood($user_settings['id_member'], $user_settings['passwd_flood']);
  270. // Maybe we were too hasty... let's try some other authentication methods.
  271. $other_passwords = array();
  272. // None of the below cases will be used most of the time (because the salt is normally set.)
  273. if (!empty($modSettings['enable_password_conversion']) && $user_settings['password_salt'] == '')
  274. {
  275. // YaBB SE, Discus, MD5 (used a lot), SHA-1 (used some), SMF 1.0.x, IkonBoard, and none at all.
  276. $other_passwords[] = crypt($_POST['passwrd'], substr($_POST['passwrd'], 0, 2));
  277. $other_passwords[] = crypt($_POST['passwrd'], substr($user_settings['passwd'], 0, 2));
  278. $other_passwords[] = md5($_POST['passwrd']);
  279. $other_passwords[] = sha1($_POST['passwrd']);
  280. $other_passwords[] = md5_hmac($_POST['passwrd'], strtolower($user_settings['member_name']));
  281. $other_passwords[] = md5($_POST['passwrd'] . strtolower($user_settings['member_name']));
  282. $other_passwords[] = md5(md5($_POST['passwrd']));
  283. $other_passwords[] = $_POST['passwrd'];
  284. // This one is a strange one... MyPHP, crypt() on the MD5 hash.
  285. $other_passwords[] = crypt(md5($_POST['passwrd']), md5($_POST['passwrd']));
  286. // Snitz style - SHA-256. Technically, this is a downgrade, but most PHP configurations don't support sha256 anyway.
  287. if (strlen($user_settings['passwd']) == 64 && function_exists('mhash') && defined('MHASH_SHA256'))
  288. $other_passwords[] = bin2hex(mhash(MHASH_SHA256, $_POST['passwrd']));
  289. // phpBB3 users new hashing. We now support it as well ;).
  290. $other_passwords[] = phpBB3_password_check($_POST['passwrd'], $user_settings['passwd']);
  291. // APBoard 2 Login Method.
  292. $other_passwords[] = md5(crypt($_POST['passwrd'], 'CRYPT_MD5'));
  293. }
  294. // The hash should be 40 if it's SHA-1, so we're safe with more here too.
  295. elseif (!empty($modSettings['enable_password_conversion']) && strlen($user_settings['passwd']) == 32)
  296. {
  297. // vBulletin 3 style hashing? Let's welcome them with open arms \o/.
  298. $other_passwords[] = md5(md5($_POST['passwrd']) . stripslashes($user_settings['password_salt']));
  299. // Hmm.. p'raps it's Invision 2 style?
  300. $other_passwords[] = md5(md5($user_settings['password_salt']) . md5($_POST['passwrd']));
  301. // Some common md5 ones.
  302. $other_passwords[] = md5($user_settings['password_salt'] . $_POST['passwrd']);
  303. $other_passwords[] = md5($_POST['passwrd'] . $user_settings['password_salt']);
  304. }
  305. elseif (strlen($user_settings['passwd']) == 40)
  306. {
  307. // Maybe they are using a hash from before the password fix.
  308. $other_passwords[] = sha1(strtolower($user_settings['member_name']) . un_htmlspecialchars($_POST['passwrd']));
  309. // BurningBoard3 style of hashing.
  310. if (!empty($modSettings['enable_password_conversion']))
  311. $other_passwords[] = sha1($user_settings['password_salt'] . sha1($user_settings['password_salt'] . sha1($_POST['passwrd'])));
  312. // Perhaps we converted to UTF-8 and have a valid password being hashed differently.
  313. if ($context['character_set'] == 'utf8' && !empty($modSettings['previousCharacterSet']) && $modSettings['previousCharacterSet'] != 'utf8')
  314. {
  315. // Try iconv first, for no particular reason.
  316. if (function_exists('iconv'))
  317. $other_passwords['iconv'] = sha1(strtolower(iconv('UTF-8', $modSettings['previousCharacterSet'], $user_settings['member_name'])) . un_htmlspecialchars(iconv('UTF-8', $modSettings['previousCharacterSet'], $_POST['passwrd'])));
  318. // Say it aint so, iconv failed!
  319. if (empty($other_passwords['iconv']) && function_exists('mb_convert_encoding'))
  320. $other_passwords[] = sha1(strtolower(mb_convert_encoding($user_settings['member_name'], 'UTF-8', $modSettings['previousCharacterSet'])) . un_htmlspecialchars(mb_convert_encoding($_POST['passwrd'], 'UTF-8', $modSettings['previousCharacterSet'])));
  321. }
  322. }
  323. // SMF's sha1 function can give a funny result on Linux (Not our fault!). If we've now got the real one let the old one be valid!
  324. if (stripos(PHP_OS, 'win') !== 0)
  325. {
  326. require_once($sourcedir . '/Subs-Compat.php');
  327. $other_passwords[] = sha1_smf(strtolower($user_settings['member_name']) . un_htmlspecialchars($_POST['passwrd']));
  328. }
  329. // Allows mods to easily extend the $other_passwords array
  330. call_integration_hook('integrate_other_passwords', array(&$other_passwords));
  331. // Whichever encryption it was using, let's make it use SMF's now ;).
  332. if (in_array($user_settings['passwd'], $other_passwords))
  333. {
  334. $user_settings['passwd'] = $sha_passwd;
  335. $user_settings['password_salt'] = substr(md5(mt_rand()), 0, 4);
  336. // Update the password and set up the hash.
  337. updateMemberData($user_settings['id_member'], array('passwd' => $user_settings['passwd'], 'password_salt' => $user_settings['password_salt'], 'passwd_flood' => ''));
  338. }
  339. // Okay, they for sure didn't enter the password!
  340. else
  341. {
  342. // They've messed up again - keep a count to see if they need a hand.
  343. $_SESSION['failed_login'] = isset($_SESSION['failed_login']) ? ($_SESSION['failed_login'] + 1) : 1;
  344. // Hmm... don't remember it, do you? Here, try the password reminder ;).
  345. if ($_SESSION['failed_login'] >= $modSettings['failed_login_threshold'])
  346. redirectexit('action=reminder');
  347. // We'll give you another chance...
  348. else
  349. {
  350. // Log an error so we know that it didn't go well in the error log.
  351. log_error($txt['incorrect_password'] . ' - <span class="remove">' . $user_settings['member_name'] . '</span>', 'user');
  352. $context['login_errors'] = array($txt['incorrect_password']);
  353. return;
  354. }
  355. }
  356. }
  357. elseif (!empty($user_settings['passwd_flood']))
  358. {
  359. // Let's be sure they weren't a little hacker.
  360. validatePasswordFlood($user_settings['id_member'], $user_settings['passwd_flood'], true);
  361. // If we got here then we can reset the flood counter.
  362. updateMemberData($user_settings['id_member'], array('passwd_flood' => ''));
  363. }
  364. // Correct password, but they've got no salt; fix it!
  365. if ($user_settings['password_salt'] == '')
  366. {
  367. $user_settings['password_salt'] = substr(md5(mt_rand()), 0, 4);
  368. updateMemberData($user_settings['id_member'], array('password_salt' => $user_settings['password_salt']));
  369. }
  370. // Check their activation status.
  371. if (!checkActivation())
  372. return;
  373. DoLogin();
  374. }
  375. /**
  376. * Check activation status of the current user.
  377. */
  378. function checkActivation()
  379. {
  380. global $context, $txt, $scripturl, $user_settings, $modSettings;
  381. if (!isset($context['login_errors']))
  382. $context['login_errors'] = array();
  383. // What is the true activation status of this account?
  384. $activation_status = $user_settings['is_activated'] > 10 ? $user_settings['is_activated'] - 10 : $user_settings['is_activated'];
  385. // Check if the account is activated - COPPA first...
  386. if ($activation_status == 5)
  387. {
  388. $context['login_errors'][] = $txt['coppa_no_concent'] . ' <a href="' . $scripturl . '?action=coppa;member=' . $user_settings['id_member'] . '">' . $txt['coppa_need_more_details'] . '</a>';
  389. return false;
  390. }
  391. // Awaiting approval still?
  392. elseif ($activation_status == 3)
  393. fatal_lang_error('still_awaiting_approval', 'user');
  394. // Awaiting deletion, changed their mind?
  395. elseif ($activation_status == 4)
  396. {
  397. if (isset($_REQUEST['undelete']))
  398. {
  399. updateMemberData($user_settings['id_member'], array('is_activated' => 1));
  400. updateSettings(array('unapprovedMembers' => ($modSettings['unapprovedMembers'] > 0 ? $modSettings['unapprovedMembers'] - 1 : 0)));
  401. }
  402. else
  403. {
  404. $context['disable_login_hashing'] = true;
  405. $context['login_errors'][] = $txt['awaiting_delete_account'];
  406. $context['login_show_undelete'] = true;
  407. return false;
  408. }
  409. }
  410. // Standard activation?
  411. elseif ($activation_status != 1)
  412. {
  413. log_error($txt['activate_not_completed1'] . ' - <span class="remove">' . $user_settings['member_name'] . '</span>', false);
  414. $context['login_errors'][] = $txt['activate_not_completed1'] . ' <a href="' . $scripturl . '?action=activate;sa=resend;u=' . $user_settings['id_member'] . '">' . $txt['activate_not_completed2'] . '</a>';
  415. return false;
  416. }
  417. return true;
  418. }
  419. /**
  420. * Perform the logging in. (set cookie, call hooks, etc)
  421. */
  422. function DoLogin()
  423. {
  424. global $user_info, $user_settings, $smcFunc;
  425. global $maintenance, $modSettings, $context, $sourcedir;
  426. // Load cookie authentication stuff.
  427. require_once($sourcedir . '/Subs-Auth.php');
  428. // Call login integration functions.
  429. call_integration_hook('integrate_login', array($user_settings['member_name'], isset($_POST['hash_passwrd']) && strlen($_POST['hash_passwrd']) == 40 ? $_POST['hash_passwrd'] : null, $modSettings['cookieTime']));
  430. // Get ready to set the cookie...
  431. $username = $user_settings['member_name'];
  432. $user_info['id'] = $user_settings['id_member'];
  433. // Bam! Cookie set. A session too, just in case.
  434. setLoginCookie(60 * $modSettings['cookieTime'], $user_settings['id_member'], sha1($user_settings['passwd'] . $user_settings['password_salt']));
  435. // Reset the login threshold.
  436. if (isset($_SESSION['failed_login']))
  437. unset($_SESSION['failed_login']);
  438. $user_info['is_guest'] = false;
  439. $user_settings['additional_groups'] = explode(',', $user_settings['additional_groups']);
  440. $user_info['is_admin'] = $user_settings['id_group'] == 1 || in_array(1, $user_settings['additional_groups']);
  441. // Are you banned?
  442. is_not_banned(true);
  443. // An administrator, set up the login so they don't have to type it again.
  444. if ($user_info['is_admin'] && isset($user_settings['openid_uri']) && empty($user_settings['openid_uri']))
  445. {
  446. $_SESSION['admin_time'] = time();
  447. unset($_SESSION['just_registered']);
  448. }
  449. // Don't stick the language or theme after this point.
  450. unset($_SESSION['language'], $_SESSION['id_theme']);
  451. // First login?
  452. $request = $smcFunc['db_query']('', '
  453. SELECT last_login
  454. FROM {db_prefix}members
  455. WHERE id_member = {int:id_member}
  456. AND last_login = 0',
  457. array(
  458. 'id_member' => $user_info['id'],
  459. )
  460. );
  461. if ($smcFunc['db_num_rows']($request) == 1)
  462. $_SESSION['first_login'] = true;
  463. else
  464. unset($_SESSION['first_login']);
  465. $smcFunc['db_free_result']($request);
  466. // You've logged in, haven't you?
  467. updateMemberData($user_info['id'], array('last_login' => time(), 'member_ip' => $user_info['ip'], 'member_ip2' => $_SERVER['BAN_CHECK_IP']));
  468. // Get rid of the online entry for that old guest....
  469. $smcFunc['db_query']('', '
  470. DELETE FROM {db_prefix}log_online
  471. WHERE session = {string:session}',
  472. array(
  473. 'session' => 'ip' . $user_info['ip'],
  474. )
  475. );
  476. $_SESSION['log_time'] = 0;
  477. // Log this entry, only if we have it enabled.
  478. if (!empty($modSettings['loginHistoryDays']))
  479. $smcFunc['db_insert']('insert',
  480. '{db_prefix}member_logins',
  481. array(
  482. 'id_member' => 'int', 'time' => 'int', 'ip' => 'string', 'ip2' => 'string',
  483. ),
  484. array(
  485. $user_info['id'], time(), $user_info['ip'], $user_info['ip2']
  486. ),
  487. array(
  488. 'id_member', 'time'
  489. )
  490. );
  491. // Just log you back out if it's in maintenance mode and you AREN'T an admin.
  492. if (empty($maintenance) || allowedTo('admin_forum'))
  493. redirectexit('action=login2;sa=check;member=' . $user_info['id'], $context['server']['needs_login_fix']);
  494. else
  495. redirectexit('action=logout;' . $context['session_var'] . '=' . $context['session_id'], $context['server']['needs_login_fix']);
  496. }
  497. /**
  498. * Logs the current user out of their account.
  499. * It requires that the session hash is sent as well, to prevent automatic logouts by images or javascript.
  500. * It redirects back to $_SESSION['logout_url'], if it exists.
  501. * It is accessed via ?action=logout;session_var=...
  502. *
  503. * @param bool $internal if true, it doesn't check the session
  504. * @param $redirect
  505. */
  506. function Logout($internal = false, $redirect = true)
  507. {
  508. global $sourcedir, $user_info, $user_settings, $context, $smcFunc;
  509. // Make sure they aren't being auto-logged out.
  510. if (!$internal)
  511. checkSession('get');
  512. require_once($sourcedir . '/Subs-Auth.php');
  513. if (isset($_SESSION['pack_ftp']))
  514. $_SESSION['pack_ftp'] = null;
  515. // They cannot be open ID verified any longer.
  516. if (isset($_SESSION['openid']))
  517. unset($_SESSION['openid']);
  518. // It won't be first login anymore.
  519. unset($_SESSION['first_login']);
  520. // Just ensure they aren't a guest!
  521. if (!$user_info['is_guest'])
  522. {
  523. // Pass the logout information to integrations.
  524. call_integration_hook('integrate_logout', array($user_settings['member_name']));
  525. // If you log out, you aren't online anymore :P.
  526. $smcFunc['db_query']('', '
  527. DELETE FROM {db_prefix}log_online
  528. WHERE id_member = {int:current_member}',
  529. array(
  530. 'current_member' => $user_info['id'],
  531. )
  532. );
  533. }
  534. $_SESSION['log_time'] = 0;
  535. // Empty the cookie! (set it in the past, and for id_member = 0)
  536. setLoginCookie(-3600, 0);
  537. // And some other housekeeping while we're at it.
  538. session_destroy();
  539. if (!empty($user_info['id']))
  540. updateMemberData($user_info['id'], array('password_salt' => substr(md5(mt_rand()), 0, 4)));
  541. // Off to the merry board index we go!
  542. if ($redirect)
  543. {
  544. if (empty($_SESSION['logout_url']))
  545. redirectexit('', $context['server']['needs_login_fix']);
  546. elseif (!empty($_SESSION['logout_url']) && (strpos('http://', $_SESSION['logout_url']) === false && strpos('https://', $_SESSION['logout_url']) === false))
  547. {
  548. unset ($_SESSION['logout_url']);
  549. redirectexit();
  550. }
  551. else
  552. {
  553. $temp = $_SESSION['logout_url'];
  554. unset($_SESSION['logout_url']);
  555. redirectexit($temp, $context['server']['needs_login_fix']);
  556. }
  557. }
  558. }
  559. /**
  560. * MD5 Encryption used for older passwords. (SMF 1.0.x/YaBB SE 1.5.x hashing)
  561. *
  562. * @param string $data
  563. * @param string $key
  564. * @return string, the HMAC MD5 of data with key
  565. */
  566. function md5_hmac($data, $key)
  567. {
  568. $key = str_pad(strlen($key) <= 64 ? $key : pack('H*', md5($key)), 64, chr(0x00));
  569. return md5(($key ^ str_repeat(chr(0x5c), 64)) . pack('H*', md5(($key ^ str_repeat(chr(0x36), 64)) . $data)));
  570. }
  571. /**
  572. * Custom encryption for phpBB3 based passwords.
  573. *
  574. * @param string $passwd
  575. * @param string $passwd_hash
  576. * @return string
  577. */
  578. function phpBB3_password_check($passwd, $passwd_hash)
  579. {
  580. // Too long or too short?
  581. if (strlen($passwd_hash) != 34)
  582. return;
  583. // Range of characters allowed.
  584. $range = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
  585. // Tests
  586. $strpos = strpos($range, $passwd_hash[3]);
  587. $count = 1 << $strpos;
  588. $count2 = $count;
  589. $salt = substr($passwd_hash, 4, 8);
  590. $hash = md5($salt . $passwd, true);
  591. for (; $count != 0; --$count)
  592. $hash = md5($hash . $passwd, true);
  593. $output = substr($passwd_hash, 0, 12);
  594. $i = 0;
  595. while ($i < 16)
  596. {
  597. $value = ord($hash[$i++]);
  598. $output .= $range[$value & 0x3f];
  599. if ($i < 16)
  600. $value |= ord($hash[$i]) << 8;
  601. $output .= $range[($value >> 6) & 0x3f];
  602. if ($i++ >= 16)
  603. break;
  604. if ($i < 16)
  605. $value |= ord($hash[$i]) << 16;
  606. $output .= $range[($value >> 12) & 0x3f];
  607. if ($i++ >= 16)
  608. break;
  609. $output .= $range[($value >> 18) & 0x3f];
  610. }
  611. // Return now.
  612. return $output;
  613. }
  614. /**
  615. * This protects against brute force attacks on a member's password.
  616. * Importantly, even if the password was right we DON'T TELL THEM!
  617. *
  618. * @param $id_member
  619. * @param $password_flood_value = false
  620. * @param $was_correct = false
  621. */
  622. function validatePasswordFlood($id_member, $password_flood_value = false, $was_correct = false)
  623. {
  624. global $cookiename, $sourcedir;
  625. // As this is only brute protection, we allow 5 attempts every 10 seconds.
  626. // Destroy any session or cookie data about this member, as they validated wrong.
  627. require_once($sourcedir . '/Subs-Auth.php');
  628. setLoginCookie(-3600, 0);
  629. if (isset($_SESSION['login_' . $cookiename]))
  630. unset($_SESSION['login_' . $cookiename]);
  631. // We need a member!
  632. if (!$id_member)
  633. {
  634. // Redirect back!
  635. redirectexit();
  636. // Probably not needed, but still make sure...
  637. fatal_lang_error('no_access', false);
  638. }
  639. // Right, have we got a flood value?
  640. if ($password_flood_value !== false)
  641. @list ($time_stamp, $number_tries) = explode('|', $password_flood_value);
  642. // Timestamp or number of tries invalid?
  643. if (empty($number_tries) || empty($time_stamp))
  644. {
  645. $number_tries = 0;
  646. $time_stamp = time();
  647. }
  648. // They've failed logging in already
  649. if (!empty($number_tries))
  650. {
  651. // Give them less chances if they failed before
  652. $number_tries = $time_stamp < time() - 20 ? 2 : $number_tries;
  653. // They are trying too fast, make them wait longer
  654. if ($time_stamp < time() - 10)
  655. $time_stamp = time();
  656. }
  657. $number_tries++;
  658. // Broken the law?
  659. if ($number_tries > 5)
  660. fatal_lang_error('login_threshold_brute_fail', 'critical');
  661. // Otherwise set the members data. If they correct on their first attempt then we actually clear it, otherwise we set it!
  662. updateMemberData($id_member, array('passwd_flood' => $was_correct && $number_tries == 1 ? '' : $time_stamp . '|' . $number_tries));
  663. }
  664. ?>