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 #28974 (array_(p)slice() treats large lengths incorrectly - overflow) --FILE-..

Decoded Output download

--TEST--
Bug #28974 (array_(p)slice() treats large lengths incorrectly - overflow)
--FILE--
<?php
$a = $b = $c = array(0,1,2,3,4,5);
print_r($a);
// this is ok:
print_r(array_slice($a,2,2147483645));

// this is wrong:
print_r(array_slice($a,2,2147483646));
echo 'print_r(array_splice($a,2,1));'."
";
print_r(array_splice($a,2,1));
echo "\$a is :";
print_r($a);
echo 'print_r(array_splice($b,2,2147483645));'."
";
print_r(array_splice($b,2,2147483645));
echo "\$b is :";
print_r($b);

// this is wrong:
echo 'print_r(array_splice($c,2,2147483646));'."
";
print_r(array_splice($c,2,2147483646));
echo "\$c is :";
print_r($c);
?>
--EXPECT--
Array
(
    [0] => 0
    [1] => 1
    [2] => 2
    [3] => 3
    [4] => 4
    [5] => 5
)
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
print_r(array_splice($a,2,1));
Array
(
    [0] => 2
)
$a is :Array
(
    [0] => 0
    [1] => 1
    [2] => 3
    [3] => 4
    [4] => 5
)
print_r(array_splice($b,2,2147483645));
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
$b is :Array
(
    [0] => 0
    [1] => 1
)
print_r(array_splice($c,2,2147483646));
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
$c is :Array
(
    [0] => 0
    [1] => 1
)

Did this file decode correctly?

Original Code

--TEST--
Bug #28974 (array_(p)slice() treats large lengths incorrectly - overflow)
--FILE--
<?php
$a = $b = $c = array(0,1,2,3,4,5);
print_r($a);
// this is ok:
print_r(array_slice($a,2,2147483645));

// this is wrong:
print_r(array_slice($a,2,2147483646));
echo 'print_r(array_splice($a,2,1));'."\n";
print_r(array_splice($a,2,1));
echo "\$a is :";
print_r($a);
echo 'print_r(array_splice($b,2,2147483645));'."\n";
print_r(array_splice($b,2,2147483645));
echo "\$b is :";
print_r($b);

// this is wrong:
echo 'print_r(array_splice($c,2,2147483646));'."\n";
print_r(array_splice($c,2,2147483646));
echo "\$c is :";
print_r($c);
?>
--EXPECT--
Array
(
    [0] => 0
    [1] => 1
    [2] => 2
    [3] => 3
    [4] => 4
    [5] => 5
)
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
print_r(array_splice($a,2,1));
Array
(
    [0] => 2
)
$a is :Array
(
    [0] => 0
    [1] => 1
    [2] => 3
    [3] => 4
    [4] => 5
)
print_r(array_splice($b,2,2147483645));
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
$b is :Array
(
    [0] => 0
    [1] => 1
)
print_r(array_splice($c,2,2147483646));
Array
(
    [0] => 2
    [1] => 3
    [2] => 4
    [3] => 5
)
$c is :Array
(
    [0] => 0
    [1] => 1
)

Function Calls

print_r 1
array_slice 1

Variables

$a [{'key': 0, 'value': 0}, {'key': 1, 'value': 1}, {'key': 2, 'value': 2}, {'key': 3, 'value': 3}, {'key': 4, 'value': 4}, {'key': 5, 'value': 5}]
$b [{'key': 0, 'value': 0}, {'key': 1, 'value': 1}, {'key': 2, 'value': 2}, {'key': 3, 'value': 3}, {'key': 4, 'value': 4}, {'key': 5, 'value': 5}]
$c [{'key': 0, 'value': 0}, {'key': 1, 'value': 1}, {'key': 2, 'value': 2}, {'key': 3, 'value': 3}, {'key': 4, 'value': 4}, {'key': 5, 'value': 5}]

Stats

MD5 92c895e79f1c543c8f76c8417d9f1a16
Eval Count 0
Decode Time 97 ms