0
나는 워드 프레스 사이트에서 내 사용자 정의 폼을 위해 허니팟 기법을 사용하고있다. 내 양식이 그렇게 보입니다.PHP 폼을위한 허니팟 기법
<form id="form-1"
action="<?php echo get_template_directory_uri(); ?>/mail.php" method="post" class="order__form form">
<p class="form__title">Order and Receive 30% off</p>
<p class="form__text">fill out this form so you can get sale</p>
<input type="text" name="name" class="form__item" placeholder="Your name">
<input type="email" name="email" required class="form__item" placeholder="Email address">
<p class="robotic" id="pot">
<label>If you're human leave this blank:</label>
<input name="robotest" type="text" id="robotest" class="robotest" />
</p>
<input type="submit" value="Send" class="button form__button">
</form>
서버 측 유효성 검사를 위해 이름이 robotest
인 경우 입력하십시오.
<?php
$mess = '';
$mess .= '<hr>';
if($_POST['robotest'] != ''){
$error = "You are a gutless robot.";
} else {
if(isset($_POST['name'])) {
$name = substr(htmlspecialchars(trim($_POST['name'])), 0, 100);
$mess .= '<b>Имя отправителя: </b>' . $name . '<br>';
}
if(isset($_POST['email'])) {
if($_POST['email']!=''){
$email = substr(htmlspecialchars(trim($_POST['email'])), 0, 100);
$mess .= '<b>E-mail: </b>' . $email . '<br>';
}
}
}
$mess .= '<b>Заявка пришла со страницы:</b> ' . $_SERVER["HTTP_REFERER"] .'<br>';
$mess .= '<hr>';
require 'class.phpmailer.php';
$mail = new PHPMailer();
$mail->AddAddress('xxx2xxx.com','');
$mail->IsHTML(true);
$mail->CharSet = "UTF-8";
$mail->Subject = "new";
$mail->From = "new";
$mail->FromName = "new";
$mail->Body = $mess;
if ($mail->Send()) {
header('Location: ../');
} else {
die ('Mailer Error: ' . $mail->ErrorInfo);
}
header("Location: /thanks/");
?>
내가 robotest
에 대한 유효성 검사를 추가
이것은 mail.php
코드입니다.
'이 스크립트는 작동하지 않습니다. ' 빈 페이지? 편지 없어? PC가 폭발합니까? –
작동하지만 유효성을 검사하지 않습니다. 봇이 로봇 필드 스크립트를 채울 때 오류가 발생해야한다는 주된 아이디어. 하지만 이제는 제출할 때마다 이메일을 받게됩니다. –
논리에 결함이있어. 그리고 여러분이 코드를 올바르게 들여 쓰기 만한다면, 여러분은 그것을 보게 될 것입니다. –