Listing 2727
Submitted by VM_Hacker, 10 March 2010
STEP 1
$temp1 = (substr($uc,0,2) Xor substr($uc,8,2) Xor substr($uc,16,2) Xor substr($uc,24,2));
echo $temp2;
STEP 2
$t1 = "8f";
$t2 = "33";
$t3 = "cc";
$t4 = "6a";
$temp2 = (int) $t1 ^ (int) $t2 ^ (int) $t3 ^ (int) $t4;
echo $temp2;


