manager-system
manager-system copied to clipboard
基于 springboot + layuiadmin 实现的后台管理系统,V2.0.0中实现了使用spring security 进行权限控制,登录认证检验
Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.41 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...
为什么用户名登陆失败啊 不知道怎么办呢。。。
兄弟你把字符乱码的问题能解决一下吗?
Source code name:manager-system Source code version:2.0.1 Source code download link:https://github.com/ZeroWdd/manager-system/archive/refs/heads/master.zip Code Audit: ``` @Override protected void configure(HttpSecurity http) throws Exception { http.addFilterAfter(dynamicallyUrlInterceptor(), FilterSecurityInterceptor.class) .authorizeRequests() .antMatchers("/manager/login").permitAll() .antMatchers("/mystatic/**","/layuiadmin/**","/font-awesome-4.7.0/**").permitAll() .antMatchers("/**") .fullyAuthenticated() .and() .formLogin().loginPage("/manager/login").successHandler(loginSuccessHandler).failureHandler(loginFailureHandler)...