From: Raviteja Cherughattu Date: Wed, 29 Jul 2020 16:49:13 +0000 (-0500) Subject: Medium Vulnerabilities: Reverting the changes done towards Locate & FS X-Git-Tag: 2.7.0~5 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=commitdiff_plain;h=refs%2Fchanges%2F02%2F110702%2F1 Medium Vulnerabilities: Reverting the changes done towards Locate & FS Issue-ID: AAF-1115 Change-Id: Ia26cb13d5105d6bad97503c8a85607f01e956478 Signed-off-by: Raviteja Cherughattu --- 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); } }; diff --git a/auth/auth-locate/pom.xml b/auth/auth-locate/pom.xml index 36585989..71fcfa98 100644 --- a/auth/auth-locate/pom.xml +++ b/auth/auth-locate/pom.xml @@ -83,11 +83,6 @@ encoder 1.2.1 - - org.owasp.esapi - esapi - 2.0.1 - diff --git a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_AAFAccess.java b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_AAFAccess.java index 7b23c89c..2bb497a0 100644 --- a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_AAFAccess.java +++ b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_AAFAccess.java @@ -53,8 +53,6 @@ import org.onap.aaf.cadi.client.Retryable; import org.onap.aaf.misc.env.APIException; import org.onap.aaf.misc.env.Env; import org.onap.aaf.misc.env.TimeTaken; -import org.owasp.esapi.errors.AccessControlException; -import org.owasp.esapi.reference.DefaultHTTPUtilities; import org.owasp.encoder.Encode; public class API_AAFAccess { @@ -259,7 +257,7 @@ public class API_AAFAccess { }); } - private static void redirect(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp, LocateFacade context, Locator loc, String path) throws IOException, AccessControlException { + private static void redirect(AuthzTrans trans, HttpServletRequest req, HttpServletResponse resp, LocateFacade context, Locator loc, String path) throws IOException { try { if (loc.hasItems()) { Item item = loc.best(); @@ -272,10 +270,8 @@ public class API_AAFAccess { redirectURL.append('?'); redirectURL.append(str); } - trans.info().log("Redirect to",redirectURL); - DefaultHTTPUtilities util = new DefaultHTTPUtilities(); - util.sendRedirect(redirectURL.toString()); - //resp.sendRedirect(redirectURL.toString()); + trans.info().log("Redirect to",redirectURL); + resp.sendRedirect(redirectURL.toString()); } else { context.error(trans, resp, Result.err(Result.ERR_NotFound,"No Locations found for redirection")); }