1 2 3 4 5
<?php preg_match('/d\("(.*?)"\)/', file_get_contents('index.html'), $data); for($i = 0; $i < strlen($data[1]); $i++) @$dec_str .= (ord($data[1]{$i}) < 128 ? chr(ord($data[1]{$i}) ^ 4) : chr(ord($data[1]{$i}))); echo $dec_str;