1
친구에게 보내기 양식을 만들고 스팸으로 사용하지 않으려합니다.내 양식의 스팸 방지
나는 웹을 검색하고
http://www.nyphp.org/phundamentals/8_Preventing-Email-Header-Injection http://www.nyphp.org/phundamentals/6_Spoofed-Form-Submissions
유용 이러한 소스는 충분한 다음이 코드가 발견?
- 그것은 모든 새로운 라인을 제거하고 반환 문자 때문에 새 메시지는 폼 스푸핑 할 수 없도록 세션 변수를 사용
- 을 추가 할 수 캔트
function nospam($name)
{
return(str_replace(array("\r", "\n", "%OA", "%oa", "%OD", "%od",
"Content-Type:","BCC:","bcc:", "CC:","cc:"), "", $name));
}
//the form posts to itself
if(isset($_POST['submit'])){
if($_POST['secret'] == $_SESSION['secret']){
$_POST['email'] = nospam($_POST['email']);
$_POST['sendername'] = nospam($_POST['sendername']);
$_POST['link'] = nospam($_POST['link']);
$_POST['message'] = nospam($_POST['message']);
$_POST['senderemail'] = nospam($_POST['senderemail']);
$to = $_POST['email'];
$subject = $_POST['sendername'] . " has sent you this link.";
$message = "Hi " . $_POST['name'] . ",\n\n";
$message .= "The following link was sent to you by " . $_POST['sendername'] . ".\n\n";
$message .= $_POST['link'] . "\n\n";
$message .= $_POST['message'] . "\n\n";
$from = $_POST['senderemail'];
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
}
exit;
}else{
//set the secret variable when the page opens - only email if it exists
$secret = md5(uniqid(rand(), true));
$_SESSION['secret'] = $secret;
?>
<!--html form code here -->
<?php } ?>
당신은 보안 문자를 사용할 수 있으며, 예를 들어 분당 1을 제출의 수를 제한해야합니다. – Songo