• ASP.NET-实现图形验证码


    ASP.NET 实现图形验证码能够增强网站安全性,防止机器人攻击。通过生成随机验证码并将其绘制成图像,用户在输入验证码时增加了人机交互的难度。本文介绍了如何使用 C# 和 ASP.NET 创建一个简单而有效的图形验证码系统,包括生成随机验证码、绘制验证码图像以及将图像输出到客户端等步骤。这种验证码系统对于保护网站免受恶意攻击和机器人恶意行为具有重要意义。


    一、实现思路 

    我们需要实现一个防爬虫的可以动态刷新的随机验证码图片。
    比如下面这种:

    关键点:

    • 动态:每次打开页面验证码是变化的,并且验证码在一些事件下会自发刷新成新的验证码,比如在点击、输入错误、页面停靠超时等事件触发时,验证码自动刷新。
    • 随机:里面的数字和字母是随机的,是一种强密码,不容易被暴力破解。
    • 防爬:防止爬虫通过一些AI识别直接通过,我们需要增加图片的复杂度,例如添加一些干扰性的图案,包括但不限于噪音线、噪点等。

    验证码生成成功后,我们还需要将验证码保存到 Session 中,以便后续验证。


    二、编写前端代码

    思路已经明确,下面,我们来构建图形验证码的前端代码。
    前端代码包含 HTML 和 JavaScript 代码。

    1、编写HTML代码

    HTML代码包含一个简单的验证码输入框和刷新图片按钮的用户界面:

    1. <div class="checkcode">
    2. <input type="text" runat="server" id="VercodeText" placeholder="验证码" maxlength="4">
    3. <img onclick="changepic(this)" src="/handlers/VerCode.ashx" />
    4. div>
    • :创建一个包含验证码元素的 div 容器,用于样式控制。
    • 添加一个文本输入框,用于用户输入验证码。设置了ID为 "VercodeText",最大长度为4,同时提供了占位符 "验证码"。
    • :插入一个图片元素,其 src 属性指向验证码处理器 VerCode.ashx。当用户点击该图片时,触发JavaScript函数 changepic 进行验证码图像的刷新。

    通过这样的HTML结构,用户可以在输入框中输入验证码,并通过点击图片刷新验证码图像,提供了一种交互式的验证码体验。


    2、创建JavaScript函数

    创建 changepic 函数方法:

    1. function changepic(obj) {
    2. var timestamp = (new Date().getTime()) / 1000;
    3. $(obj).attr('src', 'VerCode.ashx?tims=' + timestamp);
    4. }

    changepic 函数用于刷新验证码图片,通过在 URL 中添加时间戳的方式,确保每次请求都是唯一的,避免浏览器缓存。


    三、编写后端代码

    后端代码我们采用C#实现。 

    1、创建输出图形验证码的接口

    创建C#验证码处理器 VerCode.ashx:

    1. using CarRental.Common;
    2. using System;
    3. using System.Drawing;
    4. using System.IO;
    5. using System.Web;
    6. namespace Handlers
    7. {
    8. public class VerCode : IHttpHandler, System.Web.SessionState.IRequiresSessionState
    9. {
    10. public void ProcessRequest(HttpContext context)
    11. {
    12. }
    13. public bool IsReusable
    14. {
    15. get
    16. {
    17. return false;
    18. }
    19. }
    20. }
    21. }

    VerCode 类实现了 IHttpHandler 接口,用于处理 HTTP 请求。


    2、创建验证码生成方法

    1. ///
    2. /// 随机构建验证码方法
    3. ///
    4. /// 返回验证码字符串
    5. public string CreateCode()
    6. {
    7. char code;
    8. string checkCode = string.Empty;
    9. Random rd = new Random();
    10. for (int i = 0; i < 4; i++)
    11. {
    12. int num = rd.Next();
    13. int _temp;
    14. if (num % 2 == 0)
    15. {
    16. _temp = ('0' + (char)(num % 10));
    17. if (_temp == 48 || _temp == 49)
    18. {
    19. _temp += rd.Next(2, 9);
    20. }
    21. }
    22. else
    23. {
    24. _temp = ('A' + (char)(num % 10));
    25. if (rd.Next(0, 2) == 0)
    26. {
    27. _temp = (char)(_temp + 32);
    28. }
    29. if (_temp == 66 || _temp == 73 || _temp == 79 || _temp == 108 || _temp == 111)
    30. {
    31. _temp++;
    32. }
    33. }
    34. code = (char)_temp;
    35. checkCode += code;
    36. }
    37. return checkCode;
    38. }

    CreateCode 方法用于生成随机验证码,包含数字和字母,并进行了一些特殊字符的处理,以增加验证码的复杂性。


    3、 绘制验证码图片

    ① 配置验证码参数

    我们先定义验证码图像的宽度、高度、字体大小以及用于生成随机数的 Random 对象。

    1. int codeWeight = 80;
    2. int codeHeight = 22;
    3. int fontSize = 16;
    4. Random rd = new Random();

    ② 生成验证码字符串

    这一步很简单,我们直接调用之前写好的 CreateCode 方法。

    string checkCode = CreateCode();

    ③ 构建验证码背景

    创建一个位图对象,并在其上创建图形对象,然后用白色填充图像背景。

    1. Bitmap image = new Bitmap(codeWeight, codeHeight);
    2. Graphics g = Graphics.FromImage(image);
    3. g.Clear(Color.White);

    ④ 画噪音线

    在图像上绘制两条随机颜色的噪音线,增加验证码的复杂性。

    1. for (int i = 0; i < 2; i++)
    2. {
    3. int x1 = rd.Next(image.Width);
    4. int x2 = rd.Next(image.Width);
    5. int y1 = rd.Next(image.Height);
    6. int y2 = rd.Next(image.Height);
    7. g.DrawLine(new Pen(color[rd.Next(color.Length)]), new Point(x1, y1), new Point(x2, y2));
    8. }

    ⑤ 画验证码

    使用循环逐个绘制验证码字符串中的字符,每个字符使用随机颜色和字体。

    1. for (int i = 0; i < checkCode.Length; i++)
    2. {
    3. Color clr = color[rd.Next(color.Length)];
    4. Font ft = new Font(font[rd.Next(font.Length)], fontSize);
    5. g.DrawString(checkCode[i].ToString(), ft, new SolidBrush(clr), (float)i * 18 + 2, 0);
    6. }

    ⑥ 画噪音点

    在图像上绘制100个随机颜色的噪音点,增加验证码的随机性。 

    1. for (int i = 0; i < 100; i++)
    2. {
    3. int x = rd.Next(image.Width);
    4. int y = rd.Next(image.Height);
    5. image.SetPixel(x, y, Color.FromArgb(rd.Next()));
    6. }

    ⑦ 画边框线

    在图像周围绘制银色边框线,使验证码更加清晰。

    g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
    

    ⑧ 将验证码图像保存到内存流

    将生成的验证码图像保存到内存流中,准备输出到客户端。

    MemoryStream ms = new MemoryStream(); image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);

    ⑨ 将验证码保存到Session中

    将生成的验证码字符串保存到Session中,以便后续验证。

    context.Session[ConstantValues.VerCodeSessionName] = checkCode;

    ⑩ 输出图像到客户端

    配置HTTP响应,将验证码图像输出到客户端。

    1. context.Response.ContentType = "Image/Gif";
    2. context.Response.ClearContent();
    3. context.Response.BinaryWrite(ms.ToArray());

    最后,别忘记释放图像和图形资源,防止内存泄漏。

    finally { image.Dispose(); g.Dispose(); }

    4、完整后端代码

    完整的 VerCode.cs 代码如下:

    1. using TestMoudle.Common;
    2. using System;
    3. using System.Drawing;
    4. using System.IO;
    5. using System.Web;
    6. namespace Handlers
    7. {
    8. public class VerCode : IHttpHandler, System.Web.SessionState.IRequiresSessionState
    9. {
    10. public void ProcessRequest(HttpContext context)
    11. {
    12. int codeWeight = 80;
    13. int codeHeight = 22;
    14. int fontSize = 16;
    15. Random rd = new Random();
    16. string checkCode = CreateCode(); //构建验证码字符串
    17. Bitmap image = new Bitmap(codeWeight, codeHeight); //构建画图
    18. Graphics g = Graphics.FromImage(image); //构建画布
    19. g.Clear(Color.White); //清空背景色
    20. Color[] color = new Color[] { Color.Red, Color.Black, Color.Green, Color.Blue };
    21. string[] font = new string[] { "宋体", "黑体", "楷体" };
    22. //画噪音线
    23. for (int i = 0; i < 2; i++)
    24. {
    25. int x1 = rd.Next(image.Width);
    26. int x2 = rd.Next(image.Width);
    27. int y1 = rd.Next(image.Height);
    28. int y2 = rd.Next(image.Height);
    29. g.DrawLine(new Pen(color[rd.Next(color.Length)]), new Point(x1, y1), new Point(x2, y2));
    30. }
    31. //画验证码
    32. for (int i = 0; i < checkCode.Length; i++)
    33. {
    34. Color clr = color[rd.Next(color.Length)];
    35. Font ft = new Font(font[rd.Next(font.Length)], fontSize);
    36. g.DrawString(checkCode[i].ToString(), ft, new SolidBrush(clr), (float)i * 18 + 2, 0);
    37. }
    38. //画噪音点
    39. for (int i = 0; i < 100; i++)
    40. {
    41. int x = rd.Next(image.Width);
    42. int y = rd.Next(image.Height);
    43. image.SetPixel(x, y, Color.FromArgb(rd.Next()));
    44. }
    45. //画边框线
    46. g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
    47. MemoryStream ms = new MemoryStream();
    48. try
    49. {
    50. image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
    51. context.Session[ConstantValues.VerCodeSessionName] = checkCode; //将验证码保存到Session中
    52. context.Response.ContentType = "Image/Gif";
    53. context.Response.ClearContent();
    54. context.Response.BinaryWrite(ms.ToArray());
    55. }
    56. finally
    57. {
    58. image.Dispose();
    59. g.Dispose();
    60. }
    61. }
    62. public bool IsReusable
    63. {
    64. get
    65. {
    66. return false;
    67. }
    68. }
    69. }
    70. }

    四、测试效果

    我们运行项目,可以看到验证码图像顺利生成了,并且点击可以刷新图片内容。

  • 相关阅读:
    SSM框架整合步骤详解
    GEE——自GLDAS-2.0 每日流域模型批量导出逐月Terrestrial water storage水存量影像下载
    【云原生之Docker实战】使用Docker部署Komga个人漫画服务器
    加拿大便携式火炉ASTM F3363-19(适用于燃烧液体或凝胶燃料的便携式无排气口装置的标准规范)标准解答
    关于nginx反向代理使用域名的缓存问题
    【Go语言】切片的扩容
    dynamic_cast的使用
    VEX —— Functions|Transforms and Space
    电脑网页打不开提示错误err connection怎么办?
    Win11找不到组策略编辑器(gpedit.msc)解决
  • 原文地址:https://blog.csdn.net/weixin_41793160/article/details/136200986