0

我从 2012 年开始在 TutWow 上看到一个现成的联系表格。它使用Douglas Lovell 从 2007 年开始的 PHP 电子邮件验证来检查电子邮件字段是否有效(甚至查询 DNS 服务器以查看域是否有效)。6 岁时,问题出现了——它仍然相关吗?

一般来说,一个人通常应该在mail()脚本中寻找什么来保证它的安全但占用空间最小?Lovell 先生的脚本与 TutWow 的 PHP 插件相结合是否符合条件?

这是组合的PHP:

<?php

// Clean up the input values
foreach($_POST as $key => $value) {
  if(ini_get('magic_quotes_gpc'))
    $_POST[$key] = stripslashes($_POST[$key]);

  $_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}

// Assign the input values to variables for easy reference
$name = $_POST["name"];
$email = $_POST["email"];
$message = $_POST["message"];

// Test input values for errors
$errors = array();
if(strlen($name) < 2) {
  if(!$name) {
    $errors[] = "You must enter a name.";
  } else {
    $errors[] = "Name must be at least 2 characters.";
  }
}
if(!$email) {
  $errors[] = "You must enter an email.";
} else if(!validEmail($email)) {
  $errors[] = "You must enter a valid email.";
}
if(strlen($message) < 10) {
  if(!$message) {
    $errors[] = "You must enter a message.";
  } else {
    $errors[] = "Message must be at least 10 characters.";
  }
}

if($errors) {
  // Output errors and die with a failure message
  $errortext = "";
  foreach($errors as $error) {
    $errortext .= "<li>".$error."</li>";
  }
  die("<span class='failure'>The following errors occured:<ul>". $errortext ."</ul></span>");
}

// Send the email
$to = "YOUR_EMAIL";
$subject = "Contact Form: $name";
$message = "$message";
$headers = "From: $email";

mail($to, $subject, $message, $headers);

// Die with a success message
die("<span class='success'>Success! Your message has been sent.</span>");

// A function that checks to see if
// an email is valid
function validEmail($email)
{
   $isValid = true;
   $atIndex = strrpos($email, "@");
   if (is_bool($atIndex) && !$atIndex)
   {
      $isValid = false;
   }
   else
   {
      $domain = substr($email, $atIndex+1);
      $local = substr($email, 0, $atIndex);
      $localLen = strlen($local);
      $domainLen = strlen($domain);
      if ($localLen < 1 || $localLen > 64)
      {
         // local part length exceeded
         $isValid = false;
      }
      else if ($domainLen < 1 || $domainLen > 255)
      {
         // domain part length exceeded
         $isValid = false;
      }
      else if ($local[0] == '.' || $local[$localLen-1] == '.')
      {
         // local part starts or ends with '.'
         $isValid = false;
      }
      else if (preg_match('/\\.\\./', $local))
      {
         // local part has two consecutive dots
         $isValid = false;
      }
      else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain))
      {
         // character not valid in domain part
         $isValid = false;
      }
      else if (preg_match('/\\.\\./', $domain))
      {
         // domain part has two consecutive dots
         $isValid = false;
      }
      else if(!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/',
                 str_replace("\\\\","",$local)))
      {
         // character not valid in local part unless
         // local part is quoted
         if (!preg_match('/^"(\\\\"|[^"])+"$/',
             str_replace("\\\\","",$local)))
         {
            $isValid = false;
         }
      }
      if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A")))
      {
         // domain not found in DNS
         $isValid = false;
      }
   }
   return $isValid;
}

?>
4

3 回答 3

1

也许最安全的方法是向发件人发送一封电子邮件,要求他们确认他们确实发送了邮件。此外,为了防止您的联系表单变成垃圾邮件系统,请将每个 IP 地址可以提交的联系表单数量限制在一个合理的范围内,大概每 24 小时 1 个,假设回复将通过常规电子邮件完成。

于 2013-01-13T17:36:35.970 回答
1

这个验证不是我见过的最好的。我通过快速查看它注意到的是:

  • 它使用htmlspecialchars()没有编码参数
  • 它使用strip_tags()的原因我看不到
  • 它使用strlen而不是mb_strlen
  • 它容易受到标头注入的影响
  • 而且邮件验证不是我见过的最好的
  • 没有 CSRF 令牌
  • 没有验证码
于 2013-01-13T18:00:32.290 回答
0

在我所有的项目中,我发现本指南在安全方面最有帮助。

它有许多部分,包括表单处理、数据库和 SQL、会话等。

于 2013-01-13T17:34:48.813 回答