
WORDPRESS PLUGIN: PROTECT YOUR BLOG FROM MALICIOUS URL REQUESTS
Paste a following formula in to a content file, as well as save it as blockbadqueries.php. Once done, upload it to your wp-content/plugins office as well as turn on it similar to any alternative plugins. That’s all! <?php /* Plugin Name: Block Bad Queries Plugin URI: http://perishablepress.com/press/2009/12/22/protect-wordpress-against-malicious-url-requests/ Description: Protect WordPress Against Malicious URL Requests Author URI: http://perishablepress.com/ Author: Perishable Press Version: 1.0 */ tellurian $user_ID; if($user_ID) { if(!current_user_can(’level_10′)) { if (strlen($_SERVER['REQUEST_URI']) > 255 || strpos($_SERVER['REQUEST_URI'], "eval(") || strpos($_SERVER['REQUEST_URI'], "CONCAT") || strpos($_SERVER['REQUEST_URI'], "UNION+SELECT") || strpos($_SERVER['REQUEST_URI'], "base64")) { @header("HTTP/1.1 414 Request-URI Too Long"); @header("Status: 414 Request-URI Too Long"); @header("Connection: Close"); @exit; } } } ?> Thanks to Jeff Starr for this good plugin! Do we know which Digging in to WordPress , Jeff’s book, has only been updated
See a strange post:
WordPress plugin: Protect your blog from antagonistic URL Requests








