0

我正在开发项目。这与蜜罐有关。我的问题是有什么方法可以获取开源蜜罐日志文件。如果可能,请提供链接或提供任何建议

4

1 回答 1

0

那将很容易做到。这是一个 PHP 示例:

if($_POST[shouldBeEmpty] == "") {
  // the field is empty, so deal with the form submission
}
else {
  // you are dealing with a spammer, therefore add to the log file
}

当然,不要将您的字段命名为“shouldBeEmpty”。将其命名为正常的名称,例如“contactNumber”或“message”。

于 2013-10-09T15:43:43.597 回答