From bf5eeb23a769a2e2b75f432b74f10fdbcfd2f161 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Fri, 27 Sep 2019 13:27:11 +0100 Subject: Fix zip slip security flaw Apply zip slip checking in zip operations throughout the system. Centralizes most of the zip logic in one class. Create tests to zip functionalities and zip slip problem. Change-Id: I721f3d44b34fe6d242c9537f5a515ce1bb534c9a Issue-ID: SDC-1401 Signed-off-by: andre.schmid --- .../src/main/java/org/onap/sdc/tosca/services/CommonUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/onap-tosca-datatype') diff --git a/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/services/CommonUtil.java b/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/services/CommonUtil.java index bb26e6a2b9..eb60d95889 100644 --- a/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/services/CommonUtil.java +++ b/common/onap-tosca-datatype/src/main/java/org/onap/sdc/tosca/services/CommonUtil.java @@ -34,8 +34,8 @@ import org.apache.commons.beanutils.BeanUtils; public class CommonUtil { - private static final String DEFAULT = "default"; - private static final String UNDERSCORE_DEFAULT = "_default"; + public static final String DEFAULT = "default"; + public static final String UNDERSCORE_DEFAULT = "_default"; private static ImmutableSet> complexClassType = ImmutableSet.of(Map.class, String.class, Integer.class, Float.class, Double.class, Set.class, Object.class, List.class); -- cgit 1.2.3-korg