ZlibCompressor: Increase max decompression size to accommodate larger skins

again, very annoying that we have to account for this (it makes it easier for attackers to waste CPU time and memory), but we don't really have much of a choice.
This commit is contained in:
Dylan K. Taylor 2024-03-14 12:34:30 +00:00
parent 11ca208d93
commit b77193b987
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -38,7 +38,7 @@ final class ZlibCompressor implements Compressor{
public const DEFAULT_LEVEL = 7; public const DEFAULT_LEVEL = 7;
public const DEFAULT_THRESHOLD = 256; public const DEFAULT_THRESHOLD = 256;
public const DEFAULT_MAX_DECOMPRESSION_SIZE = 2 * 1024 * 1024; public const DEFAULT_MAX_DECOMPRESSION_SIZE = 8 * 1024 * 1024;
/** /**
* @see SingletonTrait::make() * @see SingletonTrait::make()