有没有办法获得蜜罐日志文件

时间:2013-08-16 13:32:06

标签: honeypot intrusion-detection

我正在开发项目。哪个与蜜罐有关。我的问题是有没有办法获得开源蜜罐日志文件。如果可能,请提供链接或提出任何建议

1 个答案:

答案 0 :(得分: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”。