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 #44607 (stream_get_line unable to correctly identify the "ending" in the stre..

Decoded Output download

--TEST--
Bug #44607 (stream_get_line unable to correctly identify the "ending" in the stream content)
--FILE--
<?php
$eol = '<EOL>';
$tempnam = __DIR__ . '/' . 'tmpbug44607.txt';
$data = str_repeat('.', 14000);
$data .= $eol;
$data .= $data;
file_put_contents($tempnam, $data);
$fd = fopen($tempnam, 'r');
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
fseek($fd, 1, SEEK_SET);
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
fclose($fd);
unlink($tempnam);
?>
--EXPECT--
int(14000)
int(14000)
int(13999)
int(14000)

Did this file decode correctly?

Original Code

--TEST--
Bug #44607 (stream_get_line unable to correctly identify the "ending" in the stream content)
--FILE--
<?php
$eol = '<EOL>';
$tempnam = __DIR__ . '/' . 'tmpbug44607.txt';
$data = str_repeat('.', 14000);
$data .= $eol;
$data .= $data;
file_put_contents($tempnam, $data);
$fd = fopen($tempnam, 'r');
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
fseek($fd, 1, SEEK_SET);
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
var_dump(strlen(stream_get_line($fd, 15000, $eol)));
fclose($fd);
unlink($tempnam);
?>
--EXPECT--
int(14000)
int(14000)
int(13999)
int(14000)

Function Calls

None

Variables

$eol <EOL>

Stats

MD5 9453f027fd5d078eddf1dfb473b76423
Eval Count 0
Decode Time 124 ms