Description
Untrusted data is passed to the application and used as a regular expression. This can cause the thread to over-consume CPU resources.
org.apache.cxf.common.util.StringUtils
String separator = getSeparator(); return StringUtils.split(c, separator);
Where separator is provided by CacheControlHeader:
Object sepProperty = message.getContextualProperty(CACHE_CONTROL_SEPARATOR_PROPERTY);
There is a vulnerability in implementations of regular expression evaluators and related methods that can cause the thread to hang when evaluating repeating and alternating overlapping of nested and repeated regex groups. This defect can be used to execute a DOS (Denial of Service) attack.
Example:
(e+)+
([a-zA-Z]+)*
There are no known regular expression implementations which are immune to this vulnerability.