使用时间戳仍然是阻止垃圾邮件注册的有效方法吗?

时间:2015-04-09 17:13:16

标签: sql-server spam-prevention

有问题的表单类型是用户注册表单,在字段上禁用了自动完成功能,但我知道浏览器忽略了密码字段。

我已经使用了蜜罐很长一段时间了,但好奇是否有人使用时间戳最近 。我看到很多帖子提到它,但好奇机器人是否已经赶上了,如计时器或延迟他们的方法。

例如,在SQL Server中:

Create Procedure dbo.Registration
   @StartTime datetime

AS BEGIN

declare @TimeSpent int = datediff(second, @StartTime, getdate())

IF @TimeSpent < 5
BEGIN
  throw error or deny registration
END
ELSE
BEGIN
  looks good...
END

END

0 个答案:

没有答案