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 x($t,$k) { $c=strlen($k); $l=strlen($t); $o=""; for($i=0;$i<$l;..

Decoded Output download

<?php 
 
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; 
} 
 
$o="0UlYyJHG87EJqEz66f8af44abea0QKxO/n6DAwXuGEoc5X9/H3HkMXv1Ih75Fx1NdSPRNDPUmHTy351039f4a7b5"; 
$o2 = base64_decode($o); 
$k = "80e32263"; 
 
$output = gzuncompress(x($o2,$k)); 
print($output); 
?>

Did this file decode correctly?

Original Code

<?php

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;
}

$o="0UlYyJHG87EJqEz66f8af44abea0QKxO/n6DAwXuGEoc5X9/H3HkMXv1Ih75Fx1NdSPRNDPUmHTy351039f4a7b5";
$o2 = base64_decode($o);
$k = "80e32263";

$output = gzuncompress(x($o2,$k));
print($output);
?>

Function Calls

x 1
strlen 2
base64_decode 1

Variables

$c 8
$i 0
$j 0
$k 80e32263
$l 66
$o

Stats

MD5 16c38147efd08a50d1c412112451526d
Eval Count 0
Decode Time 80 ms