Login Security Solution - Version 0.19.0

Version Description

  • Remove inadvertent log call added in 0.17.0.
Download this release

Release Info

Developer convissor
Plugin Icon wp plugin Login Security Solution
Version 0.19.0
Comparing to
See all releases

Code changes from version 0.18.0 to 0.19.0

Files changed (2) hide show
  1. login-security-solution.php +2 -2
  2. readme.txt +4 -1
login-security-solution.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Requires very strong passwords, repels brute force login attacks, prevents login information disclosures, expires idle sessions, notifies admins of attacks and breaches, permits administrators to disable logins for maintenance or emergency reasons and reset all passwords.
7
  *
8
  * Plugin URI: http://wordpress.org/extend/plugins/login-security-solution/
9
- * Version: 0.18.0
10
  * Author: Daniel Convissor
11
  * Author URI: http://www.analysisandsolutions.com/
12
  * License: GPLv2
@@ -864,7 +864,7 @@ class login_security_solution {
864
  OR pass_md5 = '$pass_md5')
865
  AND date_failed > DATE_SUB(NOW(), INTERVAL "
866
  . (int) $this->options['login_fail_minutes'] . " MINUTE)";
867
- $this->log($sql);
868
  return $wpdb->get_row($sql, ARRAY_A);
869
  }
870
 
6
  * Description: Requires very strong passwords, repels brute force login attacks, prevents login information disclosures, expires idle sessions, notifies admins of attacks and breaches, permits administrators to disable logins for maintenance or emergency reasons and reset all passwords.
7
  *
8
  * Plugin URI: http://wordpress.org/extend/plugins/login-security-solution/
9
+ * Version: 0.19.0
10
  * Author: Daniel Convissor
11
  * Author URI: http://www.analysisandsolutions.com/
12
  * License: GPLv2
864
  OR pass_md5 = '$pass_md5')
865
  AND date_failed > DATE_SUB(NOW(), INTERVAL "
866
  . (int) $this->options['login_fail_minutes'] . " MINUTE)";
867
+
868
  return $wpdb->get_row($sql, ARRAY_A);
869
  }
870
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=danie
4
  Tags: login, password, passwords, strength, strong, strong passwords, password strength, idle, timeout, maintenance, security, attack, hack, lock, ban, brute force, brute, force, authentication, auth, cookie, users
5
  Requires at least: 3.3
6
  Tested up to: 3.4.1
7
- Stable tag: 0.18.0
8
 
9
  Security against brute force attacks by tracking IP, name, password; requiring very strong passwords. Idle timeout. Maintenance mode. Multisite ready!
10
 
@@ -277,6 +277,9 @@ then `cd` into that directory and run:
277
 
278
  == Changelog ==
279
 
 
 
 
280
  = 0.18.0 =
281
  * Keep legit user from having to repeatedly reset pw during active attacks
282
  against their user name.
4
  Tags: login, password, passwords, strength, strong, strong passwords, password strength, idle, timeout, maintenance, security, attack, hack, lock, ban, brute force, brute, force, authentication, auth, cookie, users
5
  Requires at least: 3.3
6
  Tested up to: 3.4.1
7
+ Stable tag: 0.19.0
8
 
9
  Security against brute force attacks by tracking IP, name, password; requiring very strong passwords. Idle timeout. Maintenance mode. Multisite ready!
10
 
277
 
278
  == Changelog ==
279
 
280
+ = 0.19.0 =
281
+ * Remove inadvertent log call added in 0.17.0.
282
+
283
  = 0.18.0 =
284
  * Keep legit user from having to repeatedly reset pw during active attacks
285
  against their user name.