Advertisement
Guest User

Untitled

a guest
Sep 20th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function GetRank($url) {
  15. $fp = @fsockopen( 'www.scriptpulse.com', 80, $errno, $errstr, 40 );
  16.  
  17. if (!$fp) {
  18. echo '' . $errstr . ' (' . $errno . ') while accessing scriptpulse server!';
  19. } else {
  20. $who = $_SERVER['HTTP_HOST'];
  21. $key = 'key';
  22. $url = urlencode( $url );
  23. $out = '' . 'GET /tdata/traff.php?who=' . $who . ( '' . '&d=' . $url ) . ( '' . '&key=' . $key ) . ' HTTP/1.0
  24. ';
  25. $out .= 'Host: www.scriptpulse.com
  26. ';
  27. $out .= 'Connection: Close
  28.  
  29. ';
  30. fwrite( $fp, $out );
  31. $content = '';
  32.  
  33. while (!feof( $fp )) {
  34. $content .= fgets( $fp, 128 );
  35. }
  36.  
  37. fclose( $fp );
  38. }
  39. ..........................................................
  40. ..................................
  41. .............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement