PHP 安全 E-mails

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

PHP E-mail 注入

#首先,請看上一章的PHP 程式碼:

<html>
<head>
<meta charset="utf-8">
<title>php中文网(php.cn)</title>
</head>
<body>
<?php
   if (isset($_REQUEST['email'])) { // 如果接收到邮箱参数则发送邮件
     // 发送邮件
     $email = $_REQUEST['email'] ;
     $subject = $_REQUEST['subject'] ;
     $message = $_REQUEST['message'] ;
      mail("someone@example.com", $subject,
     $message, "From:" . $email);
     echo "邮件发送成功";
   } else { // 如果没有邮箱参数则显示表单
     echo "<form method='post' action='mailform.php'>
     Email: <input name='email' type='text'><br>
     Subject: <input name='subject' type='text'><br>
     Message:<br>
     <textarea name='message' rows='15' cols='40'>
     </textarea><br>
     <input type='submit'>
     </form>";
   }
?>
</body>
</html>

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

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

       someone@example.com%0ACc:person2@example.com

       %0ABcc:person3@example.com,person3@example.com,#fm..   @example.com,person5@example.com

       %0ABTo:person6@example.com        


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

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

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

     <html>
        <head>
        <meta charset="utf-8">
        <title>php中文网(php.cn)</title>
        </head>
        <body>
        <?php
        function spamcheck($field)
        {
            // filter_var() 过滤 e-mail
            // 使用 FILTER_SANITIZE_EMAIL
            $field=filter_var($field, FILTER_SANITIZE_EMAIL);
            //filter_var() 过滤 e-mail
            // 使用 FILTER_VALIDATE_EMAIL
            if(filter_var($field, FILTER_VALIDATE_EMAIL))
            {
                return TRUE;
            }
            else
            {
                return FALSE;
            }
        }
        if (isset($_REQUEST['email']))
        {
            // 如果接收到邮箱参数则发送邮件
            // 判断邮箱是否合法
            $mailcheck = spamcheck($_REQUEST['email']);
            if ($mailcheck==FALSE)
            {
                echo "非法输入";
            }
            else
            {
                // 发送邮件
                $email = $_REQUEST['email'] ;
                $subject = $_REQUEST['subject'] ;
                $message = $_REQUEST['message'] ;
                mail("someone@example.com", "Subject: $subject",
                $message, "From: $email" );
                echo "Thank you for using our mail form";
            }
        }
        else
        {
            // 如果没有邮箱参数则显示表单
            echo "<form method='post' action='mailform.php'>
            Email: <input name='email' type='text'><br>
            Subject: <input name='subject' type='text'><br>
            Message:<br>
            <textarea name='message' rows='15' cols='40'>
            </textarea><br>
            <input type='submit'>
            </form>";
        }
        ?>
        </body>
     </html>

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

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

FILTER_VALIDATE_EMAIL 篩選器驗證電子郵件地址的值

#您可以在我們的 PHP Filter 中閱讀更多關於濾鏡的知識。

繼續學習
||
<html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <?php function spamcheck($field) { // filter_var() 过滤 e-mail // 使用 FILTER_SANITIZE_EMAIL $field=filter_var($field, FILTER_SANITIZE_EMAIL); //filter_var() 过滤 e-mail // 使用 FILTER_VALIDATE_EMAIL if(filter_var($field, FILTER_VALIDATE_EMAIL)) { return TRUE; } else { return FALSE; } } if (isset($_REQUEST['email'])) { // 如果接收到邮箱参数则发送邮件 // 判断邮箱是否合法 $mailcheck = spamcheck($_REQUEST['email']); if ($mailcheck==FALSE) { echo "非法输入"; } else { // 发送邮件 $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail("someone@example.com", "Subject: $subject", $message, "From: $email" ); echo "Thank you for using our mail form"; } } else { // 如果没有邮箱参数则显示表单 echo "<form method='post' action='mailform.php'> Email: <input name='email' type='text'><br><br> Subject: <input name='subject' type='text'><br><br> Message:<br> <textarea name='message' rows='15' cols='40'> </textarea><br> <input type='submit'> </form>"; } ?> </body> </html>