Advertisement
Hackrsn

script operamini

Dec 11th, 2015
2,650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php $Q = $_GET['u'];  function hexToStr($hex){     $string='';     for ($i=0; $i < strlen($hex)-1; $i+=2){         $string .= chr(hexdec($hex[$i].$hex[$i+1]));     }     return $string; }  header('location:'.hexToStr($Q));  exit; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement