生成自己的验证码时是否比使用图像验证码时更容易被黑客攻击?
如何在此代码中添加字母表。这是您自己创建的验证码。
<script type="text/javascript">
//Generates the captcha function
var a = Math.ceil(Math.random() * 99)+ '';
var b = Math.ceil(Math.random() * 99)+ '';
var c = Math.ceil(Math.random() * 99)+ '';
var d = Math.ceil(Math.random() * 99)+ '';
var e = Math.ceil(Math.random() * 99)+ '';
var code = a + b + c + d + e;
document.getElementById("txtCaptcha").value = code;
document.getElementById("txtCaptchaDiv").innerHTML = code;
</script>
答案 0 :(得分:0)
是下,
验证码的目的是区分人类流量和机器人。
一个人不需要时间来编写可以读取文本验证码的机器人。另一方面,它需要太多图像处理,计算和智能算法来解码图片中的文字。
所以很难破解。