Version Description
- Fix: Fixed an issue that could occur on older WordPress versions when processing login attempts
Download this release
Release Info
Developer | wfryan |
Plugin | Wordfence Security – Firewall & Malware Scan |
Version | 6.2.5 |
Comparing to | |
See all releases |
Code changes from version 6.2.4 to 6.2.5
- lib/wordfenceClass.php +1 -1
- readme.txt +4 -1
- wordfence.php +2 -2
lib/wordfenceClass.php
CHANGED
@@ -1704,7 +1704,7 @@ SQL
|
|
1704 |
|
1705 |
}
|
1706 |
if($secEnabled){
|
1707 |
-
if(is_wp_error($authUser) && ($authUser->get_error_code() == 'invalid_username'
|
1708 |
if($blacklist = wfConfig::get('loginSec_userBlacklist')){
|
1709 |
$users = explode("\n", wfUtils::cleanupOneEntryPerLine($blacklist));
|
1710 |
foreach($users as $user){
|
1704 |
|
1705 |
}
|
1706 |
if($secEnabled){
|
1707 |
+
if(is_wp_error($authUser) && ($authUser->get_error_code() == 'invalid_username' || $authUser->get_error_code() == 'invalid_email')){
|
1708 |
if($blacklist = wfConfig::get('loginSec_userBlacklist')){
|
1709 |
$users = explode("\n", wfUtils::cleanupOneEntryPerLine($blacklist));
|
1710 |
foreach($users as $user){
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mmaunder
|
|
3 |
Tags: security, secure, security plugin, wordpress security, login security, firewall, malware, antivirus, web application firewall, block hackers, country blocking
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.6.1
|
6 |
-
Stable tag: 6.2.
|
7 |
|
8 |
Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security & more.
|
9 |
|
@@ -190,6 +190,9 @@ Secure your website with Wordfence.
|
|
190 |
|
191 |
== Changelog ==
|
192 |
|
|
|
|
|
|
|
193 |
= 6.2.4 =
|
194 |
* Improvement: Scan times for very large sites with huge numbers of files are greatly improved.
|
195 |
* Improvement: Added a configurable time limit for scans to help reduce overall server load and identify configuration problems.
|
3 |
Tags: security, secure, security plugin, wordpress security, login security, firewall, malware, antivirus, web application firewall, block hackers, country blocking
|
4 |
Requires at least: 3.9
|
5 |
Tested up to: 4.6.1
|
6 |
+
Stable tag: 6.2.5
|
7 |
|
8 |
Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security & more.
|
9 |
|
190 |
|
191 |
== Changelog ==
|
192 |
|
193 |
+
= 6.2.5 =
|
194 |
+
* Fix: Fixed an issue that could occur on older WordPress versions when processing login attempts
|
195 |
+
|
196 |
= 6.2.4 =
|
197 |
* Improvement: Scan times for very large sites with huge numbers of files are greatly improved.
|
198 |
* Improvement: Added a configurable time limit for scans to help reduce overall server load and identify configuration problems.
|
wordfence.php
CHANGED
@@ -4,14 +4,14 @@ Plugin Name: Wordfence Security
|
|
4 |
Plugin URI: http://www.wordfence.com/
|
5 |
Description: Wordfence Security - Anti-virus, Firewall and Malware Scan
|
6 |
Author: Wordfence
|
7 |
-
Version: 6.2.
|
8 |
Author URI: http://www.wordfence.com/
|
9 |
Network: true
|
10 |
*/
|
11 |
if(defined('WP_INSTALLING') && WP_INSTALLING){
|
12 |
return;
|
13 |
}
|
14 |
-
define('WORDFENCE_VERSION', '6.2.
|
15 |
define('WORDFENCE_BASENAME', function_exists('plugin_basename') ? plugin_basename(__FILE__) :
|
16 |
basename(dirname(__FILE__)) . '/' . basename(__FILE__));
|
17 |
|
4 |
Plugin URI: http://www.wordfence.com/
|
5 |
Description: Wordfence Security - Anti-virus, Firewall and Malware Scan
|
6 |
Author: Wordfence
|
7 |
+
Version: 6.2.5
|
8 |
Author URI: http://www.wordfence.com/
|
9 |
Network: true
|
10 |
*/
|
11 |
if(defined('WP_INSTALLING') && WP_INSTALLING){
|
12 |
return;
|
13 |
}
|
14 |
+
define('WORDFENCE_VERSION', '6.2.5');
|
15 |
define('WORDFENCE_BASENAME', function_exists('plugin_basename') ? plugin_basename(__FILE__) :
|
16 |
basename(dirname(__FILE__)) . '/' . basename(__FILE__));
|
17 |
|