首頁 > 後端開發 > php教程 > PHP 安全電子郵件

PHP 安全電子郵件

黄舟
發布: 2023-03-04 11:42:01
原創
2359 人瀏覽過

在上一節的 PHP e-mail 腳本中,存在著一個漏洞。

PHP E-mail 注入

首先,請看上一章中的 PHP 代碼:

<html>
<body>

<?php
if (isset($_REQUEST[&#39;email&#39;]))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST[&#39;email&#39;] ;
$subject = $_REQUEST[&#39;subject&#39;] ;
$message = $_REQUEST[&#39;message&#39;] ;
mail("someone@example.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
echo "<form method=&#39;post&#39; action=&#39;mailform.php&#39;>
Email: <input name=&#39;email&#39; type=&#39;text&#39;><br>
Subject: <input name=&#39;subject&#39; type=&#39;text&#39;><br>
Message:<br>
<textarea name=&#39;message&#39; rows=&#39;15&#39; cols=&#39;40&#39;>
</textarea><br>
<input type=&#39;submit&#39;>
</form>";
}
?>

</body>
</html>
登入後複製

以上代碼存在的問題是,未經授權的用戶可透過輸入表單在郵件頭部插入資料。

假如使用者在表單中的輸入框內加入以下文字到電子郵件中,會出現什麼情況呢?

someone@example.com%0ACc:person2@example.com
%0ABcc:person3@example.com,person3@example.com,
anotherperson4@example.com,person5@example.com
%0ABTo:person6@example.com
登入後複製

與往常一樣,mail() 函數把上面的文字放入郵件頭部,那麼現在頭部有了額外的 Cc:、Bcc: 和 To: 欄位。當使用者點擊提交按鈕時,這封 e-mail 會被送到上面所有的地址!

PHP 防止 E-mail 注入

防止 e-mail 注入的最佳方法是對輸入進行驗證。

下面的程式碼與上一章的類似,不過這裡我們已經增加了偵測表單中email 欄位的輸入驗證程式:

<html>
<body>
<?php
function spamcheck($field)
{
//filter_var() sanitizes the e-mail
//address using FILTER_SANITIZE_EMAIL
$field=filter_var($field, FILTER_SANITIZE_EMAIL);

//filter_var() validates the e-mail
//address using FILTER_VALIDATE_EMAIL
if(filter_var($field, FILTER_VALIDATE_EMAIL))
{
return TRUE;
}
else
{
return FALSE;
}
}

if (isset($_REQUEST[&#39;email&#39;]))
{//if "email" is filled out, proceed

//check if the email address is invalid
$mailcheck = spamcheck($_REQUEST[&#39;email&#39;]);
if ($mailcheck==FALSE)
{
echo "Invalid input";
}
else
{//send email
$email = $_REQUEST[&#39;email&#39;] ;
$subject = $_REQUEST[&#39;subject&#39;] ;
$message = $_REQUEST[&#39;message&#39;] ;
mail("someone@example.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
}
else
{//if "email" is not filled out, display the form
echo "<form method=&#39;post&#39; action=&#39;mailform.php&#39;>
Email: <input name=&#39;email&#39; type=&#39;text&#39;><br>
Subject: <input name=&#39;subject&#39; type=&#39;text&#39;><br>
Message:<br>
<textarea name=&#39;message&#39; rows=&#39;15&#39; cols=&#39;40&#39;>
</textarea><br>
<input type=&#39;submit&#39;>
</form>";
}
?>

</body>
</html>
登入後複製

在上面的程式碼中,我們使用了PHP 篩選器來驗證輸入:

FILTER_SANITIZE_EMAIL 過濾器從字串中刪除電子郵件的非法字元

FILTER_VALIDATE_EMAIL 過濾器驗證電子郵件地址的值

 以上就是中文 Secure E-mails的內容,更多相關內容請注意PHP網(wwwure E-mails. php.cn)!


相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板