Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Bug #74240 (deflate_add can allocate too much memory) --EXTENSIONS-- zlib --FILE-..
Decoded Output download
--TEST--
Bug #74240 (deflate_add can allocate too much memory)
--EXTENSIONS--
zlib
--FILE--
<?php
ini_set('memory_limit', '64M');
$deflator = deflate_init(ZLIB_ENCODING_RAW);
$bytes = str_repeat("*", 65536);
// this crashes after about 500 iterations if PHP is
// configured for 64M
for ($i = 0; $i < 1000; $i++) {
$output = deflate_add(
$deflator,
$bytes,
ZLIB_SYNC_FLUSH
);
}
echo "Completed
";
?>
--EXPECT--
Completed
Did this file decode correctly?
Original Code
--TEST--
Bug #74240 (deflate_add can allocate too much memory)
--EXTENSIONS--
zlib
--FILE--
<?php
ini_set('memory_limit', '64M');
$deflator = deflate_init(ZLIB_ENCODING_RAW);
$bytes = str_repeat("*", 65536);
// this crashes after about 500 iterations if PHP is
// configured for 64M
for ($i = 0; $i < 1000; $i++) {
$output = deflate_add(
$deflator,
$bytes,
ZLIB_SYNC_FLUSH
);
}
echo "Completed\n";
?>
--EXPECT--
Completed
Function Calls
ini_set | 1 |
Stats
MD5 | 9a15c4d170b5506ad1f007a7d5c89594 |
Eval Count | 0 |
Decode Time | 80 ms |