diff -r e3d7322305bf -r 5e1f1e916419 punbb/register.php --- a/punbb/register.php Sun Sep 02 11:00:57 2007 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,414 +0,0 @@ - -
-

-
-
-
-
- -
-

-
-
-
-

-
-
-
-query('SELECT 1 FROM '.$pun_db->prefix.'users WHERE registration_ip=\''.get_remote_address().'\' AND registered>'.(time() - 3600)) or error('Unable to fetch user info', __FILE__, __LINE__, $pun_db->error()); - - if ($pun_db->num_rows($result)) - message('A new user was registered with the same IP address as you within the last hour. To prevent registration flooding, at least an hour has to pass between registrations from the same IP. Sorry for the inconvenience.'); - - - $username = pun_trim($_POST['req_username']); - $email1 = strtolower(trim($_POST['req_email1'])); - - if ($pun_config['o_regs_verify'] == '1') - { - $email2 = strtolower(trim($_POST['req_email2'])); - - $password1 = random_pass(8); - $password2 = $password1; - } - else - { - $password1 = trim($_POST['req_password1']); - $password2 = trim($_POST['req_password2']); - } - - // Convert multiple whitespace characters into one (to prevent people from registering with indistinguishable usernames) - $username = preg_replace('#\s+#s', ' ', $username); - - // Validate username and passwords - if (strlen($username) < 2) - message($lang_prof_reg['Username too short']); - else if (pun_strlen($username) > 25) // This usually doesn't happen since the form element only accepts 25 characters - message($lang_common['Bad request']); - else if (strlen($password1) < 4) - message($lang_prof_reg['Pass too short']); - else if ($password1 != $password2) - message($lang_prof_reg['Pass not match']); - else if (!strcasecmp($username, 'Guest') || !strcasecmp($username, $lang_common['Guest'])) - message($lang_prof_reg['Username guest']); - else if (preg_match('/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/', $username)) - message($lang_prof_reg['Username IP']); - else if ((strpos($username, '[') !== false || strpos($username, ']') !== false) && strpos($username, '\'') !== false && strpos($username, '"') !== false) - message($lang_prof_reg['Username reserved chars']); - else if (preg_match('#\[b\]|\[/b\]|\[u\]|\[/u\]|\[i\]|\[/i\]|\[color|\[/color\]|\[quote\]|\[quote=|\[/quote\]|\[code\]|\[/code\]|\[img\]|\[/img\]|\[url|\[/url\]|\[email|\[/email\]#i', $username)) - message($lang_prof_reg['Username BBCode']); - - // Check username for any censored words - if ($pun_config['o_censoring'] == '1') - { - // If the censored username differs from the username - if (censor_words($username) != $username) - message($lang_register['Username censor']); - } - - // Check that the username (or a too similar username) is not already registered - $result = $pun_db->query('SELECT username FROM '.$pun_db->prefix.'users WHERE UPPER(username)=UPPER(\''.$pun_db->escape($username).'\') OR UPPER(username)=UPPER(\''.$pun_db->escape(preg_replace('/[^\w]/', '', $username)).'\')') or error('Unable to fetch user info', __FILE__, __LINE__, $pun_db->error()); - - if ($pun_db->num_rows($result)) - { - $busy = $pun_db->result($result); - message($lang_register['Username dupe 1'].' '.pun_htmlspecialchars($busy).'. '.$lang_register['Username dupe 2']); - } - - - // Validate e-mail - require PUN_ROOT.'include/email.php'; - - if (!is_valid_email($email1)) - message($lang_common['Invalid e-mail']); - else if ($pun_config['o_regs_verify'] == '1' && $email1 != $email2) - message($lang_register['E-mail not match']); - - // Check it it's a banned e-mail address - if (is_banned_email($email1)) - { - if ($pun_config['p_allow_banned_email'] == '0') - message($lang_prof_reg['Banned e-mail']); - - $banned_email = true; // Used later when we send an alert e-mail - } - else - $banned_email = false; - - // Check if someone else already has registered with that e-mail address - $dupe_list = array(); - - $result = $pun_db->query('SELECT username FROM '.$pun_db->prefix.'users WHERE email=\''.$email1.'\'') or error('Unable to fetch user info', __FILE__, __LINE__, $pun_db->error()); - if ($pun_db->num_rows($result)) - { - if ($pun_config['p_allow_dupe_email'] == '0') - message($lang_prof_reg['Dupe e-mail']); - - while ($cur_dupe = $pun_db->fetch_assoc($result)) - $dupe_list[] = $cur_dupe['username']; - } - - // Make sure we got a valid language string - if (isset($_POST['language'])) - { - $language = preg_replace('#[\.\\\/]#', '', $_POST['language']); - if (!file_exists(PUN_ROOT.'lang/'.$language.'/common.php')) - message($lang_common['Bad request']); - } - else - $language = $pun_config['o_default_lang']; - - $timezone = round($_POST['timezone'], 1); - $save_pass = (!isset($_POST['save_pass']) || $_POST['save_pass'] != '1') ? '0' : '1'; - - $email_setting = intval($_POST['email_setting']); - if ($email_setting < 0 || $email_setting > 2) $email_setting = 1; - - // Insert the new user into the database. We do this now to get the last inserted id for later use. - $now = time(); - - $intial_group_id = ($pun_config['o_regs_verify'] == '0') ? $pun_config['o_default_user_group'] : PUN_UNVERIFIED; - $password_hash = pun_hash($password1); - - // Add the user - $pun_db->query('INSERT INTO '.$pun_db->prefix.'users (username, group_id, password, email, email_setting, save_pass, timezone, language, style, registered, registration_ip, last_visit) VALUES(\''.$pun_db->escape($username).'\', '.$intial_group_id.', \''.$password_hash.'\', \''.$email1.'\', '.$email_setting.', '.$save_pass.', '.$timezone.' , \''.$pun_db->escape($language).'\', \''.$pun_config['o_default_style'].'\', '.$now.', \''.get_remote_address().'\', '.$now.')') or error('Unable to create user', __FILE__, __LINE__, $pun_db->error()); - $new_uid = $pun_db->insert_id(); - - - // If we previously found out that the e-mail was banned - if ($banned_email && $pun_config['o_mailing_list'] != '') - { - $mail_subject = 'Alert - Banned e-mail detected'; - $mail_message = 'User \''.$username.'\' registered with banned e-mail address: '.$email1."\n\n".'User profile: '.$pun_config['o_base_url'].'/profile.php?id='.$new_uid."\n\n".'-- '."\n".'Forum Mailer'."\n".'(Do not reply to this message)'; - - pun_mail($pun_config['o_mailing_list'], $mail_subject, $mail_message); - } - - // If we previously found out that the e-mail was a dupe - if (!empty($dupe_list) && $pun_config['o_mailing_list'] != '') - { - $mail_subject = 'Alert - Duplicate e-mail detected'; - $mail_message = 'User \''.$username.'\' registered with an e-mail address that also belongs to: '.implode(', ', $dupe_list)."\n\n".'User profile: '.$pun_config['o_base_url'].'/profile.php?id='.$new_uid."\n\n".'-- '."\n".'Forum Mailer'."\n".'(Do not reply to this message)'; - - pun_mail($pun_config['o_mailing_list'], $mail_subject, $mail_message); - } - - // Should we alert people on the admin mailing list that a new user has registered? - if ($pun_config['o_regs_report'] == '1') - { - $mail_subject = 'Alert - New registration'; - $mail_message = 'User \''.$username.'\' registered in the forums at '.$pun_config['o_base_url']."\n\n".'User profile: '.$pun_config['o_base_url'].'/profile.php?id='.$new_uid."\n\n".'-- '."\n".'Forum Mailer'."\n".'(Do not reply to this message)'; - - pun_mail($pun_config['o_mailing_list'], $mail_subject, $mail_message); - } - - // Must the user verify the registration or do we log him/her in right now? - if ($pun_config['o_regs_verify'] == '1') - { - // Load the "welcome" template - $mail_tpl = trim(file_get_contents(PUN_ROOT.'lang/'.$pun_user['language'].'/mail_templates/welcome.tpl')); - - // The first row contains the subject - $first_crlf = strpos($mail_tpl, "\n"); - $mail_subject = trim(substr($mail_tpl, 8, $first_crlf-8)); - $mail_message = trim(substr($mail_tpl, $first_crlf)); - - $mail_subject = str_replace('', $pun_config['o_board_title'], $mail_subject); - $mail_message = str_replace('', $pun_config['o_base_url'].'/', $mail_message); - $mail_message = str_replace('', $username, $mail_message); - $mail_message = str_replace('', $password1, $mail_message); - $mail_message = str_replace('', $pun_config['o_base_url'].'/login.php', $mail_message); - $mail_message = str_replace('', $pun_config['o_board_title'].' '.$lang_common['Mailer'], $mail_message); - - pun_mail($email1, $mail_subject, $mail_message); - - message($lang_register['Reg e-mail'].' '.$pun_config['o_admin_email'].'.', true); - } - - pun_setcookie($new_uid, $password_hash, ($save_pass != '0') ? $now + 31536000 : 0); - - pun_redirect('index.php', $lang_register['Reg complete']); -} - - -$page_title = pun_htmlspecialchars($pun_config['o_board_title']).' / '.$lang_register['Register']; -$required_fields = array('req_username' => $lang_common['Username'], 'req_password1' => $lang_common['Password'], 'req_password2' => $lang_prof_reg['Confirm pass'], 'req_email1' => $lang_common['E-mail'], 'req_email2' => $lang_common['E-mail'].' 2'); -$focus_element = array('register', 'req_username'); -require PUN_ROOT.'header.php'; - -?> -
-

-
-
-
-
-

-

-

-
-
- -
- - -
-
-
-
-
- -
- - -

-
-
-
-
-
- -
-

- - -
-
-
-
-
- -
- -read()) !== false) - { - if ($entry != '.' && $entry != '..' && is_dir(PUN_ROOT.'lang/'.$entry) && file_exists(PUN_ROOT.'lang/'.$entry.'/common.php')) - $languages[] = $entry; - } - $d->close(); - - // Only display the language selection box if there's more than one language available - if (count($languages) > 1) - { - -?> - - -
-
-
-
-
- -
-

-
- - - -
-

-
- -
-
-
-
-

-
-
-
-