Guest User

Untitled

a guest
Jan 23rd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <?php
  2.  
  3. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  4. header('Cache-Control: no-store, no-cache, must-revalidate');
  5. header('Cache-Control: post-check=0, pre-check=0', FALSE);
  6. header('Pragma: no-cache');
  7. header("Content-type: text/javascript");
  8.  
  9. $letter1 = 'TOTHFVXSEN';
  10. $letter2=date("j")%10;
  11. $cod[0]= $letter1[$letter2];
  12. $nn=$_SERVER['REMOTE_ADDR'];
  13. $pieces = explode(".",$nn);
  14.  
  15. $cod[1]=($pieces[2]+10).(date("j")%10).($pieces[3]+11);
  16. $n=(abs(crc32($_SERVER["REQUEST_URI"]))+$letter2)%5;
  17.  
  18. if ($n>3) $scod = $cod[0].$cod[1]; else $scod = "ะฝะตั‚";
  19.  
  20. exit('
  21. window.onload = function() {
  22. i = 0;
  23.  
  24. timesec = setInterval(function(){
  25. document.getElementById(\'counter\').innerHTML = \'<b>\' + i + \'</b>\';
  26. i++;
  27.  
  28. if(i >= 30)
  29. {
  30. window.clearInterval(timesec);
  31. document.getElementById(\'counter\').innerHTML = \''.$scod.'\';
  32. }
  33.  
  34. }, 1000);
  35.  
  36. setTimeout(function(){ $("#counter").slideToggle("normal"); }, 1000);
  37. }
  38. ');
Add Comment
Please, Sign In to add comment