Error: Browser Not Compatible


Sorry, we are not cool enough to be able to support the browser you are using. Try using one of the browsers below:

Hash Error : ' . $str . '.
If false detection please contact Coderz Anti Hacking Tools.

'; log_attack($str); return $visitor_notice; } require_once dirname(__file__) . '/anti_haxtool.inc.php'; /** admin page **/ function _anti_haxtool_page_signature() { global $wpdb; if (is_admin()) echo update_whitelist(); echo ' '; echo '

ANTI HACKING TOOLS

'; echo "

Spam/Crawler (NOT BLACKLIST)

Read Only mode for spammer and Crawler, Post Comment and Upload not allowed.
Don't worry! Googlebot, ybot, bingbot, alexa bot, AhrefsBot, Ezooms, ia_archiver and etc NO NEED COMMENT YOUR BLOG


"; $signature_spam = $wpdb->get_results("SELECT anti_haxtool_attacker FROM `" . $wpdb->base_prefix . "anti_haxtool` WHERE `anti_haxtool_signature` LIKE 'C3A4F849BE3640756A7F2F53C491EAE0'"); echo '

Spam/Crawler

Crawler/Spammer : '.htmlentities($signature_spam[0]->anti_haxtool_attacker).'

'; echo "

Protect Wordpress (BLACKLIST)

Protect your blog from Third Party Scanning.


"; $signature_list = $wpdb->get_results("SELECT anti_haxtool_ID,anti_haxtool_signature_id, anti_haxtool_name, anti_haxtool_risk, anti_haxtool_signature,anti_haxtool_attacker,anti_haxtool_status FROM `" . $wpdb->base_prefix . "anti_haxtool` WHERE `anti_haxtool_type` NOT LIKE 'READ-ONLY' ORDER BY `anti_haxtool_attacker` DESC"); echo ' '; foreach ($signature_list as $signature) { if(htmlentities($signature->anti_haxtool_attacker) > 0){ $anti_haxtool_color = "red" ; }else{ $anti_haxtool_color = "blue"; } if(htmlentities($signature->anti_haxtool_status) == 1 ){ $anti_haxtool_status = '' ; }else{ $anti_haxtool_status = ''; } echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } protect_plugins(); echo '
Code Tools Signature Risk Attacker
Code Tools Signature Risk Attacker
'. $anti_haxtool_status.' '. htmlentities($signature->anti_haxtool_signature_id) . '' . htmlentities($signature->anti_haxtool_name) . '' . htmlentities($signature->anti_haxtool_signature) . '' . htmlentities($signature->anti_haxtool_risk) . '' . htmlentities($signature->anti_haxtool_attacker) . '
'; echo '

Protect Plugins and Themes

mod_rewrite.c must available!

Protect Plugins and Themes using .htaccess

    '.current_htaccess().'
'; } function log_attack($hash){ global $wpdb; $query = "UPDATE `".$wpdb->base_prefix."anti_haxtool` SET `anti_haxtool_attacker` = anti_haxtool_attacker+1 WHERE `anti_haxtool_signature` = '".$hash."' ;"; $update = $wpdb->query($query); return $update ; } function _anti_hax_tool_menu() { add_plugins_page('Anti Hacking Tools Signature List','Anti Hacking Tools', 'read','anti_haxtool_signature','_anti_haxtool_page_signature'); } function _anti_haxtool_push_mail($email) { $subject = 'Anti Hacking Tool'; mail($email,$subject, "ANTI HAXTOOL keep track of suspicious activity in your blog."); return true; } function file_mysql_query() { $file_db = dirname(__file__) . "/anti_haxtool.db.php"; if (file_exists($file_db)) { $open_file_db = fopen($file_db,"r"); $str_file_db = explode("\r\n",fread($open_file_db,filesize($file_db))); fclose($open_file_db); } $file_db_arr = json_decode($str_file_db[1],1); $conv_mysql_query_value = null; for ($t = 0; $t < count($file_db_arr); $t++) { if ($t < count($file_db_arr) - 1) { $conv_mysql_query_value .= "( '" . $file_db_arr[$t]['anti_haxtool_signature_id'] . "', '" . $file_db_arr[$t]['anti_haxtool_name'] . "', '" . $file_db_arr[$t]['anti_haxtool_signature'] . "','" . $file_db_arr[$t]['anti_haxtool_type'] . "', '" . $file_db_arr[$t]['anti_haxtool_risk'] . "'),\r\n"; } else { $conv_mysql_query_value .= "( '" . $file_db_arr[$t]['anti_haxtool_signature_id'] . "', '" . $file_db_arr[$t]['anti_haxtool_name'] . "', '" . $file_db_arr[$t]['anti_haxtool_signature'] . "','" . $file_db_arr[$t]['anti_haxtool_type'] . "', '" . $file_db_arr[$t]['anti_haxtool_risk'] . "')\r\n"; } } $conv_mysql_query = "INSERT INTO `wp_anti_haxtool` (`anti_haxtool_signature_id`, `anti_haxtool_name`, `anti_haxtool_signature`, `anti_haxtool_type`, `anti_haxtool_risk`) VALUES \r\n" . $conv_mysql_query_value; return $conv_mysql_query; } /** activate **/ function _anti_haxtool_activate() { global $wpdb; if (is_admin()) $query_create_table = "CREATE TABLE IF NOT EXISTS `" . $wpdb->base_prefix . "anti_haxtool` ( `anti_haxtool_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `anti_haxtool_signature_id` text NOT NULL, `anti_haxtool_name` text NOT NULL, `anti_haxtool_signature` text NOT NULL, `anti_haxtool_type` text NOT NULL, `anti_haxtool_risk` text NOT NULL, `anti_haxtool_attacker` DECIMAL NOT NULL DEFAULT '0', `anti_haxtool_status` BOOLEAN NOT NULL DEFAULT '1', PRIMARY KEY (`anti_haxtool_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;"; $create_table = $wpdb->query($query_create_table); $create_signature_row = $wpdb->query(file_mysql_query()); return $create_table; } /** deactivate **/ function _anti_haxtool_deactivate() { global $wpdb; if (is_admin()) $query_drop_table = "DROP TABLE `" . $wpdb->base_prefix . "anti_haxtool`"; $drop_table = $wpdb->query($query_drop_table); return $drop_table; } //admin page if (is_admin()) { add_action('admin_menu','_anti_hax_tool_menu'); } //register hook register_activation_hook(__file__,'_anti_haxtool_activate'); register_deactivation_hook(__file__,'_anti_haxtool_deactivate'); ?>