There are several methods for securing your website. Install a security plugin, enable a firewall, or use a free feature like Jetpack Protect or Wordfence to prevent brute force assaults on your website.

Once added to your functions.php file, the following code snippet rejects all malicious URL requests:

global $user_ID; if($user_ID) {     if(!current_user_can('administrator')) {         if (strlen($_SERVER['REQUEST_URI']) > 255 ||             stripos($_SERVER['REQUEST_URI'], "eval(") ||             stripos($_SERVER['REQUEST_URI'], "CONCAT") ||             stripos($_SERVER['REQUEST_URI'], "UNION+SELECT") ||             stripos($_SERVER['REQUEST_URI'], "base64")) {                 @header("HTTP/1.1 414 Request-URI Too Long");                 @header("Status: 414 Request-URI Too Long");                 @header("Connection: Close");                 @exit;         }     } }

Categorized in: