From de75a11f03d87b53f7a2b5525c8fc66f6053aef2 Mon Sep 17 00:00:00 2001 From: Raviteja Cherughattu Date: Wed, 29 Jul 2020 11:49:13 -0500 Subject: Medium Vulnerabilities: Reverting the changes done towards Locate & FS Issue-ID: AAF-1115 Change-Id: Ia26cb13d5105d6bad97503c8a85607f01e956478 Signed-off-by: Raviteja Cherughattu --- auth/auth-fs/pom.xml | 5 ----- auth/auth-fs/src/main/java/org/onap/aaf/auth/fs/AAF_FS.java | 5 +---- 2 files changed, 1 insertion(+), 9 deletions(-) (limited to 'auth/auth-fs') diff --git a/auth/auth-fs/pom.xml b/auth/auth-fs/pom.xml index 943c1082..2084e18c 100644 --- a/auth/auth-fs/pom.xml +++ b/auth/auth-fs/pom.xml @@ -81,11 +81,6 @@ encoder 1.2.1 - - org.owasp.esapi - esapi - 2.0.1 - diff --git a/auth/auth-fs/src/main/java/org/onap/aaf/auth/fs/AAF_FS.java b/auth/auth-fs/src/main/java/org/onap/aaf/auth/fs/AAF_FS.java index fdedd6bc..6077b39d 100644 --- a/auth/auth-fs/src/main/java/org/onap/aaf/auth/fs/AAF_FS.java +++ b/auth/auth-fs/src/main/java/org/onap/aaf/auth/fs/AAF_FS.java @@ -45,8 +45,6 @@ import org.onap.aaf.cadi.config.Config; import org.onap.aaf.cadi.register.Registrant; import org.onap.aaf.cadi.register.RemoteRegistrant; -import org.owasp.esapi.reference.DefaultHTTPUtilities; - public class AAF_FS extends AbsService { public AAF_FS(final AuthzEnv env) throws IOException, CadiException { @@ -82,8 +80,7 @@ public class AAF_FS extends AbsService { @Override public void handle(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp) throws Exception { trans.info().printf("Redirecting %s to HTTP/S %s", req.getRemoteAddr(), req.getLocalAddr()); - DefaultHTTPUtilities util = new DefaultHTTPUtilities(); - util.sendRedirect(url); + resp.sendRedirect(url); } }; -- cgit 1.2.3-korg