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-- Runkit_Sandbox['active'] status --SKIPIF-- <?php if(!extension_loaded("runkit") |..
Decoded Output download
--TEST--
Runkit_Sandbox['active'] status
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_SANDBOX) print "skip";
/* May not be available due to lack of TSRM interpreter support */
if(!function_exists("runkit_lint")) print "skip"; ?>
--FILE--
<?php
$php = new Runkit_Sandbox();
var_dump($php['active']);
echo $php->die("What a world...
");
var_dump($php['active']);
--EXPECT--
bool(true)
What a world...
bool(false)
?>
Did this file decode correctly?
Original Code
--TEST--
Runkit_Sandbox['active'] status
--SKIPIF--
<?php if(!extension_loaded("runkit") || !RUNKIT_FEATURE_SANDBOX) print "skip";
/* May not be available due to lack of TSRM interpreter support */
if(!function_exists("runkit_lint")) print "skip"; ?>
--FILE--
<?php
$php = new Runkit_Sandbox();
var_dump($php['active']);
echo $php->die("What a world...\n");
var_dump($php['active']);
--EXPECT--
bool(true)
What a world...
bool(false)
Function Calls
None |
Stats
MD5 | 11e43451625f90b1b785ba9509069031 |
Eval Count | 0 |
Decode Time | 86 ms |