youmulijiang

Results 1 issues of youmulijiang

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)...