Stop User Enumeration - Version 1.2.3

Version Description

Fixed bug that stopped export

Download this release

Release Info

Developer llocally
Plugin Icon 128x128 Stop User Enumeration
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

Files changed (2) hide show
  1. readme.txt +4 -2
  2. stop-user-enumeration.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: User Enumeration, Security, WPSCAN, fail2ban
5
  Requires at least: 3.4
6
  Tested up to: 3.7.1
7
- Stable tag: 1.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -39,7 +39,9 @@ findtime = 600
39
  bantime = 2500000`
40
  Adjusted to your own requirements.
41
 
42
- == Changelog ==
 
 
43
  = 1.2.2 =
44
 
45
  Added code to stop bypassing the check when a trailing slash is added
4
  Tags: User Enumeration, Security, WPSCAN, fail2ban
5
  Requires at least: 3.4
6
  Tested up to: 3.7.1
7
+ Stable tag: 1.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
39
  bantime = 2500000`
40
  Adjusted to your own requirements.
41
 
42
+ == Changelog ==
43
+ = 1.2.3 =
44
+ Fixed bug that stopped export
45
  = 1.2.2 =
46
 
47
  Added code to stop bypassing the check when a trailing slash is added
stop-user-enumeration.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Stop User Enumeration
4
  Plugin URI: http://llocally.com/wordpress-plugins/stop-user-enumeration
5
  Description: User enumeration is a technique used by hackers to get your login name if you are using permalinks. This plugin stops that.
6
- Version: 1.2.2
7
  Author: llocally
8
  Author URI: http://llocally.com/wordpress-plugins/
9
  License: GPLv2 or later
@@ -25,7 +25,7 @@ along with this program; if not, write to the Free Software
25
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26
  */
27
 
28
- if (preg_match('/author=([0-9]*)(\/*)/', $_SERVER['QUERY_STRING'])===1) ll_kill_enumeration();
29
 
30
  add_filter('redirect_canonical','ll_detect_enumeration', 10,2);
31
  function ll_detect_enumeration ($redirect_url, $requested_url) {
3
  Plugin Name: Stop User Enumeration
4
  Plugin URI: http://llocally.com/wordpress-plugins/stop-user-enumeration
5
  Description: User enumeration is a technique used by hackers to get your login name if you are using permalinks. This plugin stops that.
6
+ Version: 1.2.3
7
  Author: llocally
8
  Author URI: http://llocally.com/wordpress-plugins/
9
  License: GPLv2 or later
25
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26
  */
27
 
28
+ if (preg_match('/author=([0-9]*)(\/+)/', $_SERVER['QUERY_STRING'])===1) ll_kill_enumeration();
29
 
30
  add_filter('redirect_canonical','ll_detect_enumeration', 10,2);
31
  function ll_detect_enumeration ($redirect_url, $requested_url) {