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-- Phar::buildFromDirectory() with non-matching regex --EXTENSIONS-- phar --INI-- ph..
Decoded Output download
--TEST--
Phar::buildFromDirectory() with non-matching regex
--EXTENSIONS--
phar
--INI--
phar.require_hash=0
phar.readonly=0
--FILE--
<?php
mkdir(__DIR__.'/testdir6', 0777);
foreach(range(1, 4) as $i) {
file_put_contents(__DIR__."/testdir6/file$i.txt", "some content for file $i");
}
try {
$phar = new Phar(__DIR__ . '/buildfromdirectory6.phar');
var_dump($phar->buildFromDirectory(__DIR__ . '/testdir6', '/\.php$/'));
} catch (Exception $e) {
var_dump(get_class($e));
echo $e->getMessage() . "
";
}
var_dump(file_exists(__DIR__ . '/buildfromdirectory6.phar'));
?>
--CLEAN--
<?php
unlink(__DIR__ . '/buildfromdirectory6.phar');
foreach(range(1, 4) as $i) {
unlink(__DIR__ . "/testdir6/file$i.txt");
}
rmdir(__DIR__ . '/testdir6');
?>
--EXPECT--
array(0) {
}
bool(false)
Did this file decode correctly?
Original Code
--TEST--
Phar::buildFromDirectory() with non-matching regex
--EXTENSIONS--
phar
--INI--
phar.require_hash=0
phar.readonly=0
--FILE--
<?php
mkdir(__DIR__.'/testdir6', 0777);
foreach(range(1, 4) as $i) {
file_put_contents(__DIR__."/testdir6/file$i.txt", "some content for file $i");
}
try {
$phar = new Phar(__DIR__ . '/buildfromdirectory6.phar');
var_dump($phar->buildFromDirectory(__DIR__ . '/testdir6', '/\.php$/'));
} catch (Exception $e) {
var_dump(get_class($e));
echo $e->getMessage() . "\n";
}
var_dump(file_exists(__DIR__ . '/buildfromdirectory6.phar'));
?>
--CLEAN--
<?php
unlink(__DIR__ . '/buildfromdirectory6.phar');
foreach(range(1, 4) as $i) {
unlink(__DIR__ . "/testdir6/file$i.txt");
}
rmdir(__DIR__ . '/testdir6');
?>
--EXPECT--
array(0) {
}
bool(false)
Function Calls
None |
Stats
MD5 | e32622eb9563e07f9da0d4e60670949c |
Eval Count | 0 |
Decode Time | 110 ms |