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-- CLI shell shebang --SKIPIF-- <?php include 'skipif.inc'; if (substr(PHP_OS, 0, 3)..
Decoded Output download
--TEST--
CLI shell shebang
--SKIPIF--
<?php
include 'skipif.inc';
if (substr(PHP_OS, 0, 3) == 'WIN') {
die ("skip not for Windows");
}
if (strlen("#!".getenv('TEST_PHP_EXECUTABLE')) > 127) {
die ("skip shebang is too long, see http://www.in-ulm.de/~mascheck/various/shebang/#results");
}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
$filename = __DIR__.'/021.tmp.php';
$script = "#!$php -n
".
"ola
".
"<?php echo 1+1,'
';
".
"?>
".
"adeus
";
file_put_contents($filename, $script);
chmod($filename, 0777);
echo `$filename`;
echo "
Done
";
?>
--CLEAN--
<?php
unlink(__DIR__.'/021.tmp.php');
?>
--EXPECT--
ola
2
adeus
Done
Did this file decode correctly?
Original Code
--TEST--
CLI shell shebang
--SKIPIF--
<?php
include 'skipif.inc';
if (substr(PHP_OS, 0, 3) == 'WIN') {
die ("skip not for Windows");
}
if (strlen("#!".getenv('TEST_PHP_EXECUTABLE')) > 127) {
die ("skip shebang is too long, see http://www.in-ulm.de/~mascheck/various/shebang/#results");
}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
$filename = __DIR__.'/021.tmp.php';
$script = "#!$php -n\n".
"ola\n".
"<?php echo 1+1,'\n';\n".
"?>\n".
"adeus\n";
file_put_contents($filename, $script);
chmod($filename, 0777);
echo `$filename`;
echo "\nDone\n";
?>
--CLEAN--
<?php
unlink(__DIR__.'/021.tmp.php');
?>
--EXPECT--
ola
2
adeus
Done
Function Calls
None |
Stats
MD5 | 73cc521be15391d8dbec72ae9a290211 |
Eval Count | 0 |
Decode Time | 84 ms |