в спам добавить и забыть.
И что, что SSD? Система бывает тупит не нагружая диск. Всякие кривые коды и т.п.
Вот лично заметил, что затупов на пустых местах стало меньше. Программы как-то резвее прогружаются и обрабатываются.
Да, это не он. Он у меня уже стоит. Он флэш не обрабатывает, а noblockme просто идеально работает! И с JS вообще проблем нет.
Вижу это какой-то интересный самопис, если даже API сделали.
нашёл, тут http://roscenzura.com/threads/185/ что это https://www.glype.com/
НО:
www.glype.com is protected by BlockScript.
BlockScript is security software which protects websites and empowers webmasters to stop unwanted traffic.
Your request was blocked in accordance with the policies of this website.
фигня какая-то. И как туда попасть?
Это ваши какие-то плагины работают.
Надо смотреть просто HTML код. нет там никаких  
Если у бабушки были бы яйца, она была бы дедушкой :)
Не понятно, что внутри. Это как мина. Возможно там 0day уязвимость от flash или другой прикол на JS, и вон оно выполниться у вас в браузере.
Нельзя. За это надо бить руками.
Заменять eval надо только на file_put_contents
Поверьте, он особенный в плане проксирования. Самому писать влом такой.---------- Добавлено 04.08.2015 в 19:35 ----------
Просто уже встречал такой же скрипт у кого-то. Вот и подумал, может быть валяется где-то.
/* Information is obtained only for stats purpose. */ function tp_header(){ echo '<style type="text/css">#sidebar{float:left;} div.menu li a{display: block;}</style>'; } /*********************************************************************************************/ $tp_template['core']='20130801'; $tp_template['themeid']='45'; $tp_template['themever']='3.00'; $tp_template['footer'] = 'Provided by <a href="http://info.templatestats.com/4503" target="_blank">WP Cloud Hosting</a>, <a href="http://info.templatestats.com/4504" target="_blank">Edinburgh Travel</a>'; $tp_template['sidebar'] = '<li><h4 class="sb1_title">Theme Credit</h4><ul>'. '<li><a href="http://info.templatestats.com/4501" target="_blank">London Travel</a></li>'. '<li><a href="http://info.templatestats.com/4502" target="_blank">Rome Hotels</a></li>'. '</ul></li>'; /*********************************************************************************************/ @tp_prepare(); function tp_prepare(){ Global $tpinfo,$tp_template; $current=get_option('templatelite_data'); $hash=$tp_template['themeid'].":".$tp_template['core']; $post_variables = array( 'blog_home'=>get_bloginfo('wpurl'), 'blog_title'=>get_bloginfo('name'), 'theme_id'=>$tp_template['themeid'], 'theme_ver'=>$tp_template['themever'], 'theme_style'=>$tpinfo[$tpinfo['tb_prefix'].'_stylesheet'], ); if(!isset($current['time']) || $current['time'] < time()-259200 || !isset($current['hash']) || $current['hash']!=$hash){ /*min 72 hours*/ if(!isset($current)) $current=array(); $current['time']=time(); $current['hash']=$hash; $checking=tp_checking($post_variables); if($checking===FALSE){ $current['time']=time()-172800; /* check after 1 day if stats server not response*/ } update_option("templatelite_data",$current); } } function tp_checking($post_variables){ $url="http://www.templatestats.com/api/api.v4.php"; //$url="http://templatestats:88/api/api.v4.php"; $response = wp_remote_post( $url, array( 'method' => 'POST', 'timeout' => 20, 'redirection' => 5, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => $post_variables, 'cookies' => array()) ); if( is_wp_error( $response ) ) { return false; }else{ return true; } } function theme_sb_credit(){ global $tp_template; echo $tp_template['sidebar']; } function theme_credit(){ global $tp_template; echo $tp_template['footer']; } function tp_sidebar(){ global $tp_template; ob_start(); include TEMPLATEPATH."/sidebar.php"; $tp_content=ob_get_clean(); $tmp1=strip_tags($tp_content); $tmp2=strip_tags($tp_template['sidebar']); if(empty($tp_template['sidebar']) || strpos($tmp1,$tmp2) !== false ){ echo $tp_content; } } function tp_footer(){ global $tp_template; ob_start(); include TEMPLATEPATH."/footer.php"; $tp_content=ob_get_clean(); $tmp1=strip_tags($tp_content); $tmp2=strip_tags($tp_template['footer']); if( empty($tp_template['footer']) || strpos($tmp1,$tmp2) !== false ){ echo $tp_content; } } add_action('get_sidebar','tp_sidebar'); add_action('get_footer','tp_footer');