当前位置:   article > 正文

Spring Security系列教程13--基于过滤器实现图形验证码_详解 spring security 过滤器原理——以图形验证码为例

详解 spring security 过滤器原理——以图形验证码为例

前言

在前两个章节中,一一哥 带大家学习了Spring Security内部关于认证授权的核心API,以及认证授权的执行流程和底层原理。掌握了这些之后,对于Spring Security,我们不仅做到了 "知其然",而且也做到了 "知其所以然"

在现在的求职环境下,只知道某个技能点的用法是远远不够的,面试官会要求我们研究某个技术的底层实现原理,所以虽然前面的两章内容掌握起来很有难度,但是还是希望各位小伙伴结合源码认真研读,这样你才能在编程之路上走的更远更高!

总是研究底层,对于我们初学者来说,既有难度,也会影响咱们的学习积极性,所以从本篇文章开始,咱们继续学习Spring Security的其他用法,比如我们学习一下如何在Spring Security中添加执行自定义的过滤器,进而实现验证码校验功能。

一. 验证码简介

在进行验证码编码实现之前,壹哥 先给各位介绍一下验证码的概念和作用。

验证码(CAPTCHA):全称是Completely Automated Public Turing test to tell Computers and Humans Apart,翻译过来就是“全自动区分计算机和人类的图灵测试”。通俗的讲,验证码就是为了防止恶意用户采用暴力重试的攻击手段而设置的一种防护措施。我们在进行用户注册、登录、或者论坛发帖时都可以利用验证码,对某些恶意用户利用计算机发起无限重试进行必要的拦截限制。

接下来在Spring Security的环境中,我们可以用如下两种方案实现图形验证码:

  1. 基于自定义的过滤器来实现图形验证码;
  2. 基于自定义的认证器来实现图形验证码。

在本篇文章中,壹哥 先利用第一种方案,也就是基于自定义的过滤器的方式,来教会大家如何实现图形验证码,请继续往下看哦。

二. 基于过滤器实现图形验证码

1. 实现概述

在Spring Security中,实现验证码校验的方式有很多种,其中基于过滤器来实现图形验证码是最简单的方式。小伙伴可能会问,过滤器如何实现验证码校验功能呢?基于什么原理?这个其实很简单,流程原理就是我们先自定义一个过滤器Filter,处理验证码的验证逻辑,然后把该过滤器添加到Spring Security过滤器链的某个合适位置。当匹配到登录请求时,过滤器会对验证码进行校验,如果成功则放行,如果失败则结束当前验证请求。

明白了实现流程和原理后,接下来我们就在之前项目的基础之上,进行验证码功能的代码实现。

2. 创建新模块

我们可以创建一个新的项目model,创建过程与之前一样,这里就略过了。

3. 添加依赖包

本案例中,我们采用github上的开源验证码解决方案kaptcha,所以需要在原有项目的基础上添加kaptcha的依赖包。

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-security</artifactId>
  9. </dependency>
  10. <dependency>
  11. <groupId>org.mybatis.spring.boot</groupId>
  12. <artifactId>mybatis-spring-boot-starter</artifactId>
  13. <version>1.3.1</version>
  14. </dependency
  15. <dependency>
  16. <groupId>mysql</groupId>
  17. <artifactId>mysql-connector-java</artifactId>
  18. <scope>runtime</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.penggle</groupId>
  22. <artifactId>kaptcha</artifactId>
  23. <version>2.3.2</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.security</groupId>
  27. <artifactId>spring-security-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. </dependencies>

4. 创建Producer对象

在准备好依赖包之后,接下来我们创建一个CaptchaConfig配置类,在该类中创建一个Producer对象,对验证码对象进行必要的配置,比如设置验证码背景框的宽度和高度,验证码的字符集,验证码的个数等。

  1. @Configuration
  2. public class CaptchaConfig {
  3. @Bean
  4. public Producer captcha() {
  5. // 配置图形验证码的基本参数
  6. Properties properties = new Properties();
  7. // 图片宽度
  8. properties.setProperty("kaptcha.image.width", "150");
  9. // 图片长度
  10. properties.setProperty("kaptcha.image.height", "50");
  11. // 字符集
  12. properties.setProperty("kaptcha.textproducer.char.string", "0123456789");
  13. // 字符长度
  14. properties.setProperty("kaptcha.textproducer.char.length", "4");
  15. Config config = new Config(properties);
  16. // 使用默认的图形验证码实现,当然也可以自定义实现
  17. DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
  18. defaultKaptcha.setConfig(config);
  19. return defaultKaptcha;
  20. }
  21. }

5. 创建生成验证码的接口

在上面创建了Producer对象后,接着我们再创建一个生成验证码的接口,该接口中负责生成验证码图片,并且记得要把生成的验证码存放到session中,以便后面发起登录请求时进行比对验证码。

  1. @Controller
  2. public class CaptchaController {
  3. @Autowired
  4. private Producer captchaProducer;
  5. @GetMapping("/captcha.jpg")
  6. public void getCaptcha(HttpServletRequest request, HttpServletResponse response) throws IOException {
  7. // 设置内容类型
  8. response.setContentType("image/jpeg");
  9. // 创建验证码文本
  10. String capText = captchaProducer.createText();
  11. // 将验证码文本设置到session
  12. request.getSession().setAttribute("captcha", capText);
  13. // 创建验证码图片
  14. BufferedImage bi = captchaProducer.createImage(capText);
  15. // 获取响应输出流
  16. ServletOutputStream out = response.getOutputStream();
  17. // 将图片验证码数据写到响应输出流
  18. ImageIO.write(bi, "jpg", out);
  19. // 推送并关闭响应输出流
  20. try {
  21. out.flush();
  22. } finally {
  23. out.close();
  24. }
  25. }
  26. }

6. 自定义异常

我们可以自定义一个运行时异常,用于处理验证码校验失败时抛出异常提示信息,当然这个并不是必须的。

  1. public class VerificationCodeException extends AuthenticationException {
  2. public VerificationCodeException () {
  3. super("图形验证码校验失败");
  4. }
  5. }

7. 创建拦截验证码的过滤器

创建验证码并保存到session之后,另一个很重要的工作就是比对用户从前端传递过来的验证码是否相同,这个比对工作我们就在自定义的过滤器中进行实现。所以接着我们就创建一个过滤器,负责对用户发来的验证码进行拦截校验,看看request请求中传递过来的验证码,与我们生成并保存在session中的验证码是否一致。

  1. /**
  2. * 基于过滤器实现图形验证码的验证功能,这属于Servlet层面,简单易理解.
  3. */
  4. public class VerificationCodeFilter extends OncePerRequestFilter {
  5. private AuthenticationFailureHandler authenticationFailureHandler = new SecurityAuthenticationFailureHandler();
  6. @Override
  7. protected void doFilterInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, FilterChain filterChain) throws ServletException, IOException {
  8. // 非登录请求不校验验证码,直接放行
  9. if (!"/login".equals(httpServletRequest.getRequestURI())) {
  10. filterChain.doFilter(httpServletRequest, httpServletResponse);
  11. } else {
  12. try {
  13. //校验验证码
  14. verificationCode(httpServletRequest);
  15. //验证码校验通过后,对请求进行放行
  16. filterChain.doFilter(httpServletRequest, httpServletResponse);
  17. } catch (VerificationCodeException e) {
  18. authenticationFailureHandler.onAuthenticationFailure(httpServletRequest, httpServletResponse, e);
  19. }
  20. }
  21. }
  22. public void verificationCode (HttpServletRequest httpServletRequest) throws VerificationCodeException {
  23. HttpSession session = httpServletRequest.getSession();
  24. String savedCode = (String) session.getAttribute("captcha");
  25. if (!StringUtils.isEmpty(savedCode)) {
  26. // 随手清除验证码,不管是失败还是成功,所以客户端应在登录失败时刷新验证码
  27. session.removeAttribute("captcha");
  28. }
  29. String requestCode = httpServletRequest.getParameter("captcha");
  30. // 校验不通过抛出异常
  31. if (StringUtils.isEmpty(requestCode) || StringUtils.isEmpty(savedCode) || !requestCode.equals(savedCode)) {
  32. throw new VerificationCodeException();
  33. }
  34. }
  35. }

8. 编写SecurityConfig

接下来我们需要编写一个SecurityConfig配置类,在该配置类中,把咱们前面编写的验证码过滤器添加在默认的UsernamePasswordAuthenticationFilter过滤器之前来执行,可以利用http.addFilterBefore()方法来实现。

对于UsernamePasswordAuthenticationFilter过滤器,你还能想起来吗?如果想不起来,请看我前一篇文章,里面有详细讲解哦!

  1. /**
  2. * @Author: 一一哥
  3. * 增加图形验证码功能.
  4. */
  5. @EnableWebSecurity(debug = true)
  6. public class SecurityConfig extends WebSecurityConfigurerAdapter {
  7. @Override
  8. protected void configure(HttpSecurity http) throws Exception {
  9. http.authorizeRequests()
  10. .antMatchers("/admin/api/**")
  11. .hasRole("ADMIN")
  12. .antMatchers("/user/api/**")
  13. .hasRole("USER")
  14. .antMatchers("/app/api/**", "/captcha.jpg")
  15. .permitAll()
  16. .anyRequest()
  17. .authenticated()
  18. .and()
  19. .formLogin()
  20. .failureHandler(new SecurityAuthenticationFailureHandler())
  21. .successHandler(new SecurityAuthenticationSuccessHandler())
  22. .loginPage("/myLogin.html")
  23. .loginProcessingUrl("/login")
  24. .permitAll()
  25. .and()
  26. .csrf()
  27. .disable();
  28. //将过滤器添加在UsernamePasswordAuthenticationFilter之前
  29. http.addFilterBefore(new VerificationCodeFilter(), UsernamePasswordAuthenticationFilter.class);
  30. }
  31. @Bean
  32. public PasswordEncoder passwordEncoder() {
  33. return NoOpPasswordEncoder.getInstance();
  34. }
  35. }

在这里,我们把自定义的验证码校验过滤器VerificationCodeFilter,添加到了Spring Security自带的UsernamePasswordAuthenticationFilter过滤器前面。

注:

关于我们测试的web接口,数据库配置、认证成功、失败时的Handler处理器等,请参考前面《前后端分离时的安全处理方案》案例,此处略过。

9. 编写测试页面

既然要实现验证码功能,为了方便测试,我们需要编写一个自定义的登录页面,并在这里添加对验证码接口的引用,这里列出html页面的核心代码。

  1. <body>
  2. <div class="login">
  3. <h2>Access Form</h2>
  4. <div class="login-top">
  5. <h1>登录验证</h1>
  6. <form action="/login" method="post">
  7. <input type="text" name="username" placeholder="username" />
  8. <input type="password" name="password" placeholder="password" />
  9. <div style="display: flex;">
  10. <!-- 新增图形验证码的输入框 -->
  11. <input type="text" name="captcha" placeholder="captcha" />
  12. <!-- 图片指向图形验证码API -->
  13. <img src="/captcha.jpg" alt="captcha" height="50px" width="150px" style="margin-left: 20px;">
  14. </div>
  15. <div class="forgot">
  16. <a href="#">忘记密码</a>
  17. <input type="submit" value="登录" >
  18. </div>
  19. </form>
  20. </div>
  21. <div class="login-bottom">
  22. <h3>新用户&nbsp;<a href="#">&nbsp;</a></h3>
  23. </div>
  24. </div>
  25. </body>

10. 代码结构

整个项目的代码结构如下,请参考下图进行实现。

11. 启动项目测试

接下来我们启动项目,在访问受限接口时,会重定向到myLogin.html登录页面,可以看到我们的验证码效果已经显示出来了。

接下来我们输入正确的用户名、密码、验证码后,就可以成功的登录进去访问web接口了。

至此,基于自定义过滤器实现的验证码功能,壹哥 就带各位实现完毕,你学会了吗?如有疑问,可以在评论区留言。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Li_阴宅/article/detail/914766
推荐阅读
相关标签
  

闽ICP备14008679号