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 #44859 (incorrect result with NTFS ACL permissions, is_executable) --SKIPIF--..
Decoded Output download
--TEST--
bug #44859 (incorrect result with NTFS ACL permissions, is_executable)
--SKIPIF--
<?php
include_once __DIR__ . '/common.inc';
skipif();
?>
--FILE--
<?php
include_once __DIR__ . '/common.inc';
fix_acls();
$iteration = array(
'tiny.exe' => true,
//'tiny.bat' => true, To be fixed in _access
__FILE__ => false
);
$i = 1;
$path = __DIR__;
foreach ($iteration as $file => $exp) {
$path = __DIR__ . '/' . $file;
echo 'Iteration #' . $i++ . ': ';
if (is_executable($path) == $exp) {
echo "passed.
";
} else {
var_dump(is_executable($path), $exp);
echo "failed.
";
}
}
?>
--EXPECT--
Iteration #1: passed.
Iteration #2: passed.
Did this file decode correctly?
Original Code
--TEST--
bug #44859 (incorrect result with NTFS ACL permissions, is_executable)
--SKIPIF--
<?php
include_once __DIR__ . '/common.inc';
skipif();
?>
--FILE--
<?php
include_once __DIR__ . '/common.inc';
fix_acls();
$iteration = array(
'tiny.exe' => true,
//'tiny.bat' => true, To be fixed in _access
__FILE__ => false
);
$i = 1;
$path = __DIR__;
foreach ($iteration as $file => $exp) {
$path = __DIR__ . '/' . $file;
echo 'Iteration #' . $i++ . ': ';
if (is_executable($path) == $exp) {
echo "passed.\n";
} else {
var_dump(is_executable($path), $exp);
echo "failed.\n";
}
}
?>
--EXPECT--
Iteration #1: passed.
Iteration #2: passed.
Function Calls
None |
Stats
MD5 | 02a30823ac908ee38b1b627b522e6cb6 |
Eval Count | 0 |
Decode Time | 74 ms |