coheigea commented on code in PR #3394:
URL: https://github.com/apache/cxf/pull/3394#discussion_r3844581752
##########
core/src/main/java/org/apache/cxf/common/util/CompressionUtils.java:
##########
@@ -26,6 +26,10 @@
import java.util.zip.Inflater;
public final class CompressionUtils {
+ // Guards against decompression-bomb style inputs that expand to an
unbounded size on the heap
+ public static final long DEFAULT_MAX_INFLATED_SIZE =
Review Comment:
I think it's only used by JWT and SAML though, I don't see any scenarios
where it would be more than 10 mb?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]