Brute Force Login Protection - Version 1.5.1

Version Description

  • Security fix
Download this release

Release Info

Developer Jan-Paul Kleemans
Plugin Icon 128x128 Brute Force Login Protection
Version 1.5.1
Comparing to
See all releases

Code changes from version 1.5 to 1.5.1

brute-force-login-protection.php CHANGED
@@ -10,7 +10,7 @@ require_once 'includes/htaccess.php';
10
  * Text Domain: brute-force-login-protection
11
  * Author: Fresh-Media
12
  * Author URI: http://fresh-media.nl/
13
- * Version: 1.5
14
  * License: GPL2
15
  *
16
  * Copyright 2014 Fresh-Media
10
  * Text Domain: brute-force-login-protection
11
  * Author: Fresh-Media
12
  * Author URI: http://fresh-media.nl/
13
+ * Version: 1.5.1
14
  * License: GPL2
15
  *
16
  * Copyright 2014 Fresh-Media
includes/htaccess.php CHANGED
@@ -4,11 +4,11 @@ class Htaccess {
4
 
5
  private $__path;
6
  private $__header = array(
7
- '<Files "*">',
8
  'order deny,allow'
9
  );
10
  private $__footer = array(
11
- '</Files>'
12
  );
13
 
14
  /**
4
 
5
  private $__path;
6
  private $__header = array(
7
+ '<FilesMatch ".*\.(php|html?|css|js|jpe?g|png|gif)$">',
8
  'order deny,allow'
9
  );
10
  private $__footer = array(
11
+ '</FilesMatch>'
12
  );
13
 
14
  /**
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: Jan-Paul Kleemans
3
  Tags: brute force, bruteforce, login, wp-login, protection, shield, security, htaccess, block, ip
4
  Requires at least: 2.7.0
5
- Tested up to: 4.1
6
- Stable tag: 1.5
7
  License: GPL2
8
 
9
  Protects your website against brute force login attacks using .htaccess
@@ -48,6 +48,9 @@ Brute Force Login Protection will only work if your .htaccess file is writeable
48
  1. Plugin settings page
49
 
50
  == Changelog ==
 
 
 
51
  = 1.5 =
52
  * Improved stability
53
 
@@ -74,4 +77,9 @@ Brute Force Login Protection will only work if your .htaccess file is writeable
74
  * Added Dutch translation
75
 
76
  = 1.0 =
77
- * Initial version
 
 
 
 
 
2
  Contributors: Jan-Paul Kleemans
3
  Tags: brute force, bruteforce, login, wp-login, protection, shield, security, htaccess, block, ip
4
  Requires at least: 2.7.0
5
+ Tested up to: 4.2.2
6
+ Stable tag: 1.5.1
7
  License: GPL2
8
 
9
  Protects your website against brute force login attacks using .htaccess
48
  1. Plugin settings page
49
 
50
  == Changelog ==
51
+ = 1.5.1 =
52
+ * Security fix
53
+
54
  = 1.5 =
55
  * Improved stability
56
 
77
  * Added Dutch translation
78
 
79
  = 1.0 =
80
+ * Initial version
81
+
82
+ == Upgrade Notice ==
83
+
84
+ = 1.5.1 =
85
+ This version fixes a security related bug. Please update immediately.