HTML表单和垃圾邮件机器人 [英] html forms and spam-bots

查看:139
本文介绍了HTML表单和垃圾邮件机器人的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我收到了很多虚假形式的提交。我认为它们不是因为音量而手动完成的,而是由某种垃圾邮件机器人完成的。

我想把一些代码放在php处理脚本中垃圾箱

机器人生成的响应,但很惊讶看到推荐人是我的

表格,而不是某些克隆等。在这个过程中,这些时间消除这些浪费的快速方法是什么想法?

I am getting a lot of phony form submissions. I assume they are not
being done manually because of the volume, but by some sort of spam-bot.
I thought of putting some code in the php processing script to trash
the bot generated responses, but was surprised to see the referrer is my
form, not some clone or such. Any ideas on a quick way to eliminate
these time wasters early in the process?

推荐答案

William Gill写道:
William Gill wrote:

我收到很多虚假表格。我认为它们不是因为音量而手动完成的,而是由某种垃圾邮件机器人完成的。

我想把一些代码放在php处理脚本中垃圾箱

机器人生成的响应,但很惊讶看到推荐人是我的

表格,而不是某些克隆等。在这个过程的早期阶段,任何关于消除

的快速方法的想法?
I am getting a lot of phony form submissions. I assume they are not
being done manually because of the volume, but by some sort of spam-bot.
I thought of putting some code in the php processing script to trash
the bot generated responses, but was surprised to see the referrer is my
form, not some clone or such. Any ideas on a quick way to eliminate
these time wasters early in the process?



某种类型的CAPTCHA例程(它没有'''必须是一个图像)。


-

================== br />
删除x来自我的电子邮件地址

Jerry Stuckle

JDS计算机培训公司
js ******* @ attglobal.net

==================

Some type of CAPTCHA routine (it doesn''t necessarily have to be an image).

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================


>我收到很多虚假表格。我认为它们不是
>I am getting a lot of phony form submissions. I assume they are not

>由于音量而手动完成,但是由某种垃圾邮件机器人完成。

我想把一些代码放在php处理脚本中以废弃机器人生成的响应,但很惊讶看到引用者是我的
形式,而不是某些克隆等。有关快速消除这些时间浪费的想法在这个过程的早期浪费了吗?
>being done manually because of the volume, but by some sort of spam-bot.
I thought of putting some code in the php processing script to trash
the bot generated responses, but was surprised to see the referrer is my
form, not some clone or such. Any ideas on a quick way to eliminate
these time wasters early in the process?



不要以为提交的内容真的来自你的表格;

referer很容易伪造。这是一个固定的价值,它甚至不需要获取你的表格来伪造它。


如果你随机包含一些隐藏的字段但是检查了值,

spambot可能无法完全解析表单(并且可能无法获得
甚至获取表单)因此他们不会包含这些变量。


随机更改表单中的字段名称(每个集合

每周只能使用一次)需要spambot来解析表单。


对于真正高级的过滤,请使用CAPTCHA或人们可以阅读和解释的说明,但简单的机器人不能(取消选中框

3和提交前的复选框4)每次更改。

Don''t assume that submissions are really coming from your form;
referer is trivially easy to fake. It''s a fixed value and it''s not
even necessary to fetch your form to fake it.

If you include some hidden fields with random but checked values, the
spambot may not have the ability to fully parse the form (and may not
even fetch your form) so they won''t include those variables.

Randomly changing up the field names in the form (with each set
usable only once a week or so) requires the spambot to parse your form.

For really advanced filtering, use CAPTCHA or instructions that
humans can read and interpret but simple bots can''t (Uncheck box
3 and check box 4 before submitting) that change each time.


Gordon Burditt写道:
Gordon Burditt wrote:

>我收到很多虚假表格。我认为它们不是因为音量而被手动完成,而是由某种垃圾邮件机器人完成。
我想在PHP处理脚本中加入一些代码来捣毁生成的僵尸程序回复,但惊讶地看到推荐人是我的形式,而不是一些克隆等。有关快速消除这些时间浪费的想法在这个过程的早期浪费了吗?
>I am getting a lot of phony form submissions. I assume they are not
being done manually because of the volume, but by some sort of spam-bot.
I thought of putting some code in the php processing script to trash
the bot generated responses, but was surprised to see the referrer is my
form, not some clone or such. Any ideas on a quick way to eliminate
these time wasters early in the process?



不要以为提交的内容真的来自你的表单;

referer很容易伪造。这是一个固定的价值,它甚至不需要获取你的表格来伪造它。


如果你随机包含一些隐藏的字段但是检查了值,

spambot可能无法完全解析表单(并且可能无法获得
甚至获取表单)因此他们不会包含这些变量。


Don''t assume that submissions are really coming from your form;
referer is trivially easy to fake. It''s a fixed value and it''s not
even necessary to fetch your form to fake it.

If you include some hidden fields with random but checked values, the
spambot may not have the ability to fully parse the form (and may not
even fetch your form) so they won''t include those variables.



这就是我想做的事情,但当机器人看起来好像是实际填写表格的时候击败了这个想法。

That''s what I was looking to do, but when it looked like the bot was
actually filling the form it seemed to defeat the idea.


>

随机更改表格中的字段名称(每套用

每周只能使用一次左右)需要spambot来解析你的表格。


对于真正高级的过滤,请使用CAPTCHA或人们可以阅读的说明并且解释但是简单的机器人不能(取消选中框

3并在提交前复选框4)每次更改。
>
Randomly changing up the field names in the form (with each set
usable only once a week or so) requires the spambot to parse your form.

For really advanced filtering, use CAPTCHA or instructions that
humans can read and interpret but simple bots can''t (Uncheck box
3 and check box 4 before submitting) that change each time.



另一个可能性。


谢谢

Another possibility.

thanks


这篇关于HTML表单和垃圾邮件机器人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆