From 710adfae204e75586b31b533441445ea57dea454 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Sun, 20 Oct 2019 22:17:43 +0200 Subject: [PATCH] Upgrade to latest Spring Boot version --- pom.xml | 8 ++++---- .../main/java/org/owasp/webgoat/WebSecurityConfig.java | 6 ------ 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/pom.xml b/pom.xml index 9023349dc..d17e5bcee 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ org.springframework.boot spring-boot-starter-parent - 2.1.8.RELEASE + 2.2.0.RELEASE @@ -115,6 +115,8 @@ UTF-8 UTF-8 + 11 + 11 build @@ -126,7 +128,6 @@ 2.6 18.0 2.3.4 - 2.9.9 4.12 1.18.4 3.8.0 @@ -134,8 +135,7 @@ 3.1.2 3.1.1 3.1.0 - 2.22.0 - 3.2.4.RELEASE + 2.22.2 diff --git a/webgoat-container/src/main/java/org/owasp/webgoat/WebSecurityConfig.java b/webgoat-container/src/main/java/org/owasp/webgoat/WebSecurityConfig.java index 07ea29f1e..81de89aa7 100644 --- a/webgoat-container/src/main/java/org/owasp/webgoat/WebSecurityConfig.java +++ b/webgoat-container/src/main/java/org/owasp/webgoat/WebSecurityConfig.java @@ -76,12 +76,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter { http.exceptionHandling().authenticationEntryPoint(new AjaxAuthenticationEntryPoint("/login")); } - //// TODO: 11/18/2016 make this a little bit more configurabe last part at least - @Override - public void configure(WebSecurity web) throws Exception { - web.ignoring().antMatchers("/plugin_lessons/**", "/XXE/**"); - } - @Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { auth.userDetailsService(userDetailsService); //.passwordEncoder(bCryptPasswordEncoder());