驗證碼機制與實現
阿新 • • 發佈:2019-01-28
時下圖形驗證碼的應用已經非常廣泛了,無論是在web應用還是客戶端軟體中。主要是用來防止字典攻擊(或稱暴力猜解)、機器註冊等
本篇文章主要講解驗證碼實現機制與安全策略突破
0x01 原理分析
1.客戶端發起一個請求;
2.服務端響應並建立一個新的SessionID同時生成一個隨機驗證碼;
3.服務端將驗證碼和SessionID一併返回給客戶端;
4.客戶端提交驗證碼連同SessionID給服務端;
5.服務端驗證驗證碼同時銷燬當前Session中的驗證碼,返回給客戶端結果。
0x02 程式碼實現
這裡用了網上的一個例子
login.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文件</title>
</head>
<body >
<form method="post" action="./check.php">
<p>驗證碼: <img id="captcha_img" border='1' src='./image.php?r=echo rand(); ?>' style="width:100px; height:30px" />
<a onclick="document.getElementById('captcha_img').src='./image.php?r='+Math.random()">換一個?</a>
</p>
<P>請輸入驗證碼:<input type="text" name='authcode' value=''/></p>
<p><input type='submit' value='提交' style='padding:6px 5px;'/></p>
</form>
</body>
</html>
check.php
<?php
header("Content-Type:text/html;charset=utf-8"); //設定頭部資訊
//isset()檢測變數是否設定
if(isset($_REQUEST['authcode'])){
session_start();
//strtolower()小寫函式
echo var_dump($_POST['authcode']),var_dump($_SESSION['authcode']);
if($_POST['authcode'] === $_SESSION['authcode']){
//跳轉頁面
echo "<script language=\"javascript\">";
echo "alert('yes!".$_REQUEST['authcode']."');";
echo "document.location=\"./login.html\"";
echo "</script>";
}else{
//提示以及跳轉頁面
echo "<script language=\"javascript\">";
echo "alert('輸入錯誤!".$_REQUEST['authcode']."');";
echo "document.location=\"./login.html\"";
echo "</script>";
}
exit();
}
?>
image.php
<?php
//11>設定session,必須處於指令碼最頂部
session_start();
$image = imagecreatetruecolor(100, 30); //1>設定驗證碼圖片大小的函式
//5>設定驗證碼顏色 imagecolorallocate(int im, int red, int green, int blue);
$bgcolor = imagecolorallocate($image,255,255,255); //#ffffff
//6>區域填充 int imagefill(int im, int x, int y, int col) (x,y) 所在的區域著色,col 表示欲塗上的顏色
imagefill($image, 0, 0, $bgcolor);
//10>設定變數
$captcha_code = "";
//7>生成隨機的字母和數字
for($i=0;$i<4;$i++){
//設定字型大小
$fontsize = 8;
//設定字型顏色,隨機顏色
$fontcolor = imagecolorallocate($image, rand(0,120),rand(0,120), rand(0,120)); //0-120深顏色
//設定需要隨機取的值,去掉容易出錯的值如0和o
$data ='abcdefghigkmnpqrstuvwxy3456789';
//取出值,字串擷取方法 strlen獲取字串長度
$fontcontent = substr($data, rand(0,strlen($data)),1);
//10>.=連續定義變數
$captcha_code .= $fontcontent;
//設定座標
$x = ($i*100/4)+rand(5,10);
$y = rand(5,10);
imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
//10>存到session
$_SESSION['authcode'] = $captcha_code;
//8>增加干擾元素,設定雪花點
for($i=0;$i<200;$i++){
//設定點的顏色,50-200顏色比數字淺,不干擾閱讀
$pointcolor = imagecolorallocate($image,rand(50,200), rand(50,200), rand(50,200));
//imagesetpixel — 畫一個單一畫素
imagesetpixel($image, rand(1,99), rand(1,29), $pointcolor);
}
//9>增加干擾元素,設定橫線
for($i=0;$i<4;$i++){
//設定線的顏色
$linecolor = imagecolorallocate($image,rand(80,220), rand(80,220),rand(80,220));
//設定線,兩點一線
imageline($image,rand(1,99), rand(1,29),rand(1,99), rand(1,29),$linecolor);
}
//2>設定頭部,image/png
header('Content-Type: image/png');
//3>imagepng() 建立png圖形函式
imagepng($image);
//4>imagedestroy() 結束圖形函式 銷燬$image
//imagedestroy($image);
?>
會生成image圖片以及session值