Wordfence Security – Firewall & Malware Scan - Version 3.8.5

Version Description

  • Fixed issue that caused Human traffic to not be logged in Wordfence Security live traffic view.
Download this release

Release Info

Developer mmaunder
Plugin Icon 128x128 Wordfence Security – Firewall & Malware Scan
Version 3.8.5
Comparing to
See all releases

Code changes from version 3.8.4 to 3.8.5

Files changed (3) hide show
  1. lib/wordfenceClass.php +1 -1
  2. readme.txt +6 -3
  3. wordfence.php +2 -2
lib/wordfenceClass.php CHANGED
@@ -1524,7 +1524,7 @@ class wordfence {
1524
  exit();
1525
  }
1526
  public static function wp_head(){
1527
- $URL = admin_url('admin-ajax.php?action=wordfence_logHuman&hid=' . wfUtils::encrypt(self::$hitID));
1528
  echo '<script type="text/javascript">var src="' . $URL . '"; if(window.location.protocol == "https:"){ src = src.replace("http:", "https:"); } var wfHTImg = new Image(); wfHTImg.src=src;</script>';
1529
  }
1530
  public static function shutdownAction(){
1524
  exit();
1525
  }
1526
  public static function wp_head(){
1527
+ $URL = admin_url('admin-ajax.php?action=wordfence_logHuman&hid=' . wfUtils::encrypt(self::$hitID));
1528
  echo '<script type="text/javascript">var src="' . $URL . '"; if(window.location.protocol == "https:"){ src = src.replace("http:", "https:"); } var wfHTImg = new Image(); wfHTImg.src=src;</script>';
1529
  }
1530
  public static function shutdownAction(){
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: mmaunder
3
  Tags: wordpress, security, wordpress security, security plugin, secure, anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence, securty, secrity, secure, two factor, cellphone sign-in, cellphone signin, cellphone, twofactor, security, secure, htaccess, login, log, users, login alerts, lock, chmod, maintenance, plugin, private, privacy, protection, permissions, 503, base64, injection, code, encode, script, attack, hack, hackers, block, blocked, prevent, prevention, RFI, XSS, CRLF, CSRF, SQL Injection, vulnerability, website security, WordPress security, security log, logging, HTTP log, error log, login security, personal security, infrastructure security, firewall security, front-end security, web server security, proxy security, reverse proxy security, secure website, secure login, two factor security, maximum login security
4
  Requires at least: 3.3.1
5
  Tested up to: 3.6.1
6
- Stable tag: 3.8.4
7
 
8
  Wordfence Security is a free enterprise class security plugin that includes a firewall, virus scanning, real-time traffic with geolocation and more.
9
 
@@ -150,11 +150,14 @@ cause a security hole on your site.
150
 
151
  == Changelog ==
152
 
 
 
 
153
  = 3.8.4 =
154
  * Removed Wordfence .htaccess because it doesn't offer any security functionality and increases incompatibility.
155
  * Fixed spelling errors.
156
- * Added check to see if $_SERVER['HTTP_USER_AGENT'] is defined before using it to suppress large number of warnings on some sites.
157
- * Changed the way we call admin_url() to the correct syntax.
158
  * Correctly escaped HTML on error messages.
159
  * Fixed issue that generated non-compliant query string.
160
  * Updated GeoIP database to newest version.
3
  Tags: wordpress, security, wordpress security, security plugin, secure, anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence, securty, secrity, secure, two factor, cellphone sign-in, cellphone signin, cellphone, twofactor, security, secure, htaccess, login, log, users, login alerts, lock, chmod, maintenance, plugin, private, privacy, protection, permissions, 503, base64, injection, code, encode, script, attack, hack, hackers, block, blocked, prevent, prevention, RFI, XSS, CRLF, CSRF, SQL Injection, vulnerability, website security, WordPress security, security log, logging, HTTP log, error log, login security, personal security, infrastructure security, firewall security, front-end security, web server security, proxy security, reverse proxy security, secure website, secure login, two factor security, maximum login security
4
  Requires at least: 3.3.1
5
  Tested up to: 3.6.1
6
+ Stable tag: 3.8.5
7
 
8
  Wordfence Security is a free enterprise class security plugin that includes a firewall, virus scanning, real-time traffic with geolocation and more.
9
 
150
 
151
  == Changelog ==
152
 
153
+ = 3.8.5 =
154
+ * Fixed issue that caused Human traffic to not be logged in Wordfence Security live traffic view.
155
+
156
  = 3.8.4 =
157
  * Removed Wordfence .htaccess because it doesn't offer any security functionality and increases incompatibility.
158
  * Fixed spelling errors.
159
+ * Added check to see if HTTP_USER_AGENT server variable is defined before using it to suppress large number of warnings on some sites.
160
+ * Changed the way we call admin_url to the correct syntax.
161
  * Correctly escaped HTML on error messages.
162
  * Fixed issue that generated non-compliant query string.
163
  * Updated GeoIP database to newest version.
wordfence.php CHANGED
@@ -4,10 +4,10 @@ Plugin Name: Wordfence Security
4
  Plugin URI: http://www.wordfence.com/
5
  Description: Wordfence Security - Anti-virus and Firewall security plugin for WordPress
6
  Author: Mark Maunder
7
- Version: 3.8.4
8
  Author URI: http://www.wordfence.com/
9
  */
10
- define('WORDFENCE_VERSION', '3.8.4');
11
  if(get_option('wordfenceActivated') != 1){
12
  add_action('activated_plugin','wordfence_save_activation_error'); function wordfence_save_activation_error(){ update_option('wf_plugin_act_error', ob_get_contents()); }
13
  }
4
  Plugin URI: http://www.wordfence.com/
5
  Description: Wordfence Security - Anti-virus and Firewall security plugin for WordPress
6
  Author: Mark Maunder
7
+ Version: 3.8.5
8
  Author URI: http://www.wordfence.com/
9
  */
10
+ define('WORDFENCE_VERSION', '3.8.5');
11
  if(get_option('wordfenceActivated') != 1){
12
  add_action('activated_plugin','wordfence_save_activation_error'); function wordfence_save_activation_error(){ update_option('wf_plugin_act_error', ob_get_contents()); }
13
  }