Version Description
(2016-01-21) = * Bug Fix * Fixed an issue with the login/logout sensor reported in this ticket.
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- classes/Sensors/LogInOut.php +1 -1
- readme.txt +5 -1
- wp-security-audit-log.php +1 -1
classes/Sensors/LogInOut.php
CHANGED
@@ -98,7 +98,7 @@ class WSAL_Sensors_LogInOut extends WSAL_AbstractSensor {
|
|
98 |
|
99 |
$ip = $this->plugin->settings->GetMainClientIP();
|
100 |
|
101 |
-
$username = $_POST["log"];
|
102 |
$newAlertCode = 1003;
|
103 |
$user = get_user_by('login', $username);
|
104 |
$site_id = (function_exists('get_current_blog_id') ? get_current_blog_id() : 0);
|
98 |
|
99 |
$ip = $this->plugin->settings->GetMainClientIP();
|
100 |
|
101 |
+
$username = array_key_exists('log', $_POST) ? $_POST["log"] : $username;
|
102 |
$newAlertCode = 1003;
|
103 |
$user = get_user_by('login', $username);
|
104 |
$site_id = (function_exists('get_current_blog_id') ? get_current_blog_id() : 0);
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
7 |
Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 4.4.1
|
10 |
-
Stable tag: 2.3.
|
11 |
|
12 |
Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
|
13 |
|
@@ -203,6 +203,10 @@ Yes. To exclude an IP address you can specify it in the Excluded Objects section
|
|
203 |
|
204 |
== Changelog ==
|
205 |
|
|
|
|
|
|
|
|
|
206 |
= 2.3.1 (2016-01-16) =
|
207 |
* **Improvement**
|
208 |
* Improved the SQL queries used by the [Reports Add-On](http://www.wpsecurityauditlog.com/extensions/compliance-reports-add-on-for-wordpress/)
|
7 |
Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 4.4.1
|
10 |
+
Stable tag: 2.3.2
|
11 |
|
12 |
Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
|
13 |
|
203 |
|
204 |
== Changelog ==
|
205 |
|
206 |
+
= 2.3.2 (2016-01-21) =
|
207 |
+
* **Bug Fix**
|
208 |
+
* Fixed an issue with the login/logout sensor reported in this [ticket](https://wordpress.org/support/topic/undefined-index-log).
|
209 |
+
|
210 |
= 2.3.1 (2016-01-16) =
|
211 |
* **Improvement**
|
212 |
* Improved the SQL queries used by the [Reports Add-On](http://www.wpsecurityauditlog.com/extensions/compliance-reports-add-on-for-wordpress/)
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Audit Log
|
|
4 |
Plugin URI: http://www.wpsecurityauditlog.com/
|
5 |
Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
Author: WP White Security
|
7 |
-
Version: 2.3.
|
8 |
Text Domain: wp-security-audit-log
|
9 |
Author URI: http://www.wpsecurityauditlog.com/
|
10 |
License: GPL2
|
4 |
Plugin URI: http://www.wpsecurityauditlog.com/
|
5 |
Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
Author: WP White Security
|
7 |
+
Version: 2.3.2
|
8 |
Text Domain: wp-security-audit-log
|
9 |
Author URI: http://www.wpsecurityauditlog.com/
|
10 |
License: GPL2
|