PHP Secure Email
PHP E-mail
PHP Error
前のセクションの PHP 電子メール スクリプトには脆弱性があります。
PHP 電子メール インジェクション
まず、前のセクションの PHP コードを見てください:
<html> <body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $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 //if "email" is not filled out, display the form { 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,
anotherperson4@example.com,person5@example.com
%0AB宛先: person6@example.com
いつものように、mail() 関数は上記のテキストを電子メールヘッダーに挿入するため、ヘッダーには追加の Cc:、Bcc:、および To: フィールドが追加されます。ユーザーが送信ボタンをクリックすると、この電子メールは上記のすべてのアドレスに送信されます。
PHP による電子メール インジェクションの防止
電子メール インジェクションを防ぐ最善の方法は、入力を検証することです。
次のコードは前のセクションと似ていますが、フォーム内の電子メール フィールドを検出する入力バリデーターが追加されています:
<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['email'])) {//if "email" is filled out, proceed //check if the email address is invalid $mailcheck = spamcheck($_REQUEST['email']); if ($mailcheck==FALSE) { echo "Invalid input"; } else {//send email $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 {//if "email" is not filled out, display the form 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 Remove文字列
FILTER_VALIDATE_EMAIL のメールに不正な文字があります。メール アドレスを確認してください