PHP中的郵箱驗證
在使用者註冊中最常見的安全驗證之一就是郵箱驗證。根據行業的一般做法,進行郵箱驗證是避免潛在的安全隱患一種非常重要的做法,現在就讓我們來討論一下這些最佳實踐,來看看如何在PHP中建立一個郵箱驗證。
讓我們先從一個登錄檔單開始:
<form method="post" action="http://mydomain.com/registration/">
<fieldset class="form-group">
<label for="fname">First Name:</label>
<input type="text" name="fname" class="form-control" required />
</fieldset>
<fieldset class="form-group">
<label for="lname">Last Name:</label>
<input type="text" name="lname" class="form-control" required />
</fieldset>
<fieldset class="form-group">
<label for="email">Last name:</label>
<input type="email" name="email" class="form-control" required />
</fieldset>
<fieldset class="form-group">
<label for="password">Password:</label>
<input type="password" name="password" class="form-control" required />
</fieldset>
<fieldset class="form-group">
<label for="cpassword">Confirm Password:</label>
<input type="password" name="cpassword" class="form-control" required />
</fieldset>
<fieldset>
<button type="submit" class="btn">Register</button>
</fieldset>
</form>
接下來是資料庫的表結構:
CREATE TABLE IF NOT EXISTS `user` (
`id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`fname` VARCHAR(255) ,
`lname` VARCHAR(255) ,
`email` VARCHAR(50) ,
`password` VARCHAR(50) ,
`is_active` INT(1) DEFAULT '0',
`verify_token` VARCHAR(255) ,
`created_at` TIMESTAMP,
`updated_at` TIMESTAMP,
);
一旦這個表單被提交了,我們就需要驗證使用者的輸入並且建立一個新使用者:
// Validation rules
$rules = array(
'fname' => 'required|max:255',
'lname' => 'required|max:255',
'email' => 'required',
'password' => 'required|min:6|max:20',
'cpassword' => 'same:password'
);
$validator = Validator::make(Input::all(), $rules);
// If input not valid, go back to registration page
if($validator->fails()) {
return Redirect::to('registration')->with('error', $validator->messages()->first())->withInput();
}
$user = new User();
$user->fname = Input::get('fname');
$user->lname = Input::get('lname');
$user->password = Input::get('password');
// You will generate the verification code here and save it to the database
// Save user to the database
if(!$user->save()) {
// If unable to write to database for any reason, show the error
return Redirect::to('registration')->with('error', 'Unable to write to database at this time. Please try again later.')->withInput();
}
// User is created and saved to database
// Verification e-mail will be sent here
// Go back to registration page and show the success message
return Redirect::to('registration')->with('success', 'You have successfully created an account. The verification link has been sent to e-mail address you have provided. Please click on that link to activate your account.');
註冊之後,使用者的賬戶仍然是無效的直到使用者的郵箱被驗證。此功能確認使用者是輸入電子郵件地址的所有者,並有助於防止垃圾郵件以及未經授權的電子郵件使用和資訊洩露。
整個流程是非常簡單的——當一個新使用者被建立時,在註冊過過程中,一封包含驗證連結的郵件便會被髮送到使用者填寫的郵箱地址中。在使用者點選郵箱驗證連結和確認郵箱地址之前,使用者是不能進行登入和使用網站應用的。
關於驗證的連結有幾件事情是需要注意的。驗證的連結需要包含一個隨機生成的token,這個token應該足夠長並且只在一段時間段內是有效的,這樣做的方法是為了防止網路攻擊。同時,郵箱驗證中也需要包含使用者的唯一標識,這樣就可以避免那些攻擊多使用者的潛在危險。
現在讓我們來看看在實踐中如何生成一個驗證連結:
// We will generate a random 32 alphanumeric string
// It is almost impossible to brute-force this key space
$code = str_random(32);
$user->confirmation_code = $code;
一旦這個驗證被建立就把他儲存到資料庫中,傳送給使用者:
Mail::send('emails.email-confirmation', array('code' => $code, 'id' => $user->id), function($message)
{
$message->from('my@domain.com', 'Mydomain.com')->to($user->email, $user->fname . ' ' . $user->lname)->subject('Mydomain.com: E-mail confirmation');
});
郵箱驗證的內容:
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
</head>
<body>
<p style="margin:0">
Please confirm your e-mail address by clicking the following link:
<a href="http://mydomain.com/verify?code=<?php echo $code; ?>&user=<?php echo $id; ?>"></a>
</p>
</body>
</html>
現在讓我們來驗證一下它是否可行:
$user = User::where('id', '=', Input::get('user'))
->where('is_active', '=', 0)
->where('verify_token', '=', Input::get('code'))
->where('created_at', '>=', time() - (86400 * 2))
->first();
if($user) {
$user->verify_token = null;
$user->is_active = 1;
if(!$user->save()) {
// If unable to write to database for any reason, show the error
return Redirect::to('verify')->with('error', 'Unable to connect to database at this time. Please try again later.');
}
// Show the success message
return Redirect::to('verify')->with('success', 'You account is now active. Thank you.');
}
// Code not valid, show error message
return Redirect::to('verify')->with('error', 'Verification code not valid.');
結論:
上面展示的程式碼只是一個教程示例,並且沒有通過足夠的測試。在你的web應用中使用的時候請先測試一下。上面的程式碼是在Laravel框架中完成的,但是你可以很輕鬆的把它遷移到其他的PHP框架中。同時,驗證連結的有效時間為48小時,之後就過期。引入一個工作佇列就可以很好的及時處理那些已經過期的驗證連結。
相關文章
- 郵箱格式驗證
- js驗證郵箱JS
- JavaScript郵箱格式驗證JavaScript
- qq郵箱收不到epic驗證郵件怎麼辦 epic郵箱驗證沒反應怎麼辦
- 直播app原始碼,驗證方式選擇郵箱驗證時,自動給輸入好的郵箱傳送驗證碼APP原始碼
- Destoon如何去除登入的郵箱驗證?
- 郵箱地址正規表示式驗證
- Java實現郵箱驗證碼功能Java
- Laravel 專案實現郵箱驗證功能Laravel
- 正規表示式驗證郵箱及其解析
- js正規表示式驗證手機,郵箱,身份證JS
- swift 郵箱、密碼、手機號、身份證驗證正則Swift密碼
- 直播系統原始碼,選擇驗證方式時選擇郵箱驗證原始碼
- Ajax 實現驗證郵箱地址唯一性
- php檢測郵箱密碼PHP密碼
- TP5使用bootstrapvalidator進行非同步驗證郵箱boot非同步
- 保障郵箱安全,驗證碼獨有四個優勢
- 書寫一個用於驗證郵箱的正規表示式
- jQuery驗證手機號郵箱身份證的正規表示式(含港澳臺)jQuery
- 【驗證碼逆向專欄】xx80 郵箱多種類驗證碼逆向分析
- Laravel5.8 入門系列三,新增註冊郵箱驗證Laravel
- 郵箱地址校驗方法探究
- 驗證手機、郵箱、漢字、身份證、URL、IP地址等java程式碼工具類Java
- 電子郵箱是qq郵箱嗎 電子郵箱和qq郵箱的區別聯絡介紹
- 沒收到驗證郵件
- PHP驗證碼PHP
- 正則校驗手機號和郵箱
- 【JavaScript】使用js實現傳送郵箱驗證碼,按鈕倒數計時JavaScriptJS
- PHP 驗證身份證號碼PHP
- 如何在 Xamarin 中快速整合 Android 版認證服務 - 郵箱地址篇Android
- 介紹一個提供免費郵箱小號接收驗證碼的工具 保護隱私安全
- qq郵箱怎麼發檔案給別的郵箱 qq郵箱如何將文件傳送給別人
- 金融證券公司要如何選擇企業郵箱?
- 正則匹配案例(驗證是否是一個有效數字、驗證手機號、驗證郵箱、匹配一個漢字範圍、匹配一個漢字姓名)...
- win10自帶郵件怎麼新增qq郵箱_win10郵箱如何匯入qq郵箱Win10
- 使用郵箱驗證登入後臺ssh,再也不怕被人攻擊伺服器了!伺服器
- vue.js帳號,密碼,郵箱和移動手機號碼正則驗證Vue.js密碼
- win10 email配置qq郵箱如何操作_win10郵箱怎麼新增qq郵箱Win10AI
- 郵箱聯想