WP Security Audit Log - Version 3.5.1.1

Version Description

(2019-10-31) =

  • Improvement

    • Prevent classes of the wrong instance from being added to $views.
Download this release

Release Info

Developer WPWhiteSecurity
Plugin Icon 128x128 WP Security Audit Log
Version 3.5.1.1
Comparing to
See all releases

Code changes from version 3.5.1 to 3.5.1.1

Files changed (3) hide show
  1. classes/ViewManager.php +6 -1
  2. readme.txt +41 -35
  3. wp-security-audit-log.php +2 -2
classes/ViewManager.php CHANGED
@@ -148,7 +148,12 @@ class WSAL_ViewManager {
148
  * @param string $class Class name.
149
  */
150
  public function AddFromClass( $class ) {
151
- $this->AddInstance( new $class( $this->_plugin ) );
 
 
 
 
 
152
  }
153
 
154
  /**
148
  * @param string $class Class name.
149
  */
150
  public function AddFromClass( $class ) {
151
+ $view = new $class( $this->_plugin );
152
+ // only load WSAL_AbstractView instances to prevent lingering classes
153
+ // that did not impliment this from throwing fatals by being autoloaded.
154
+ if ( is_a( $view, '\WSAL_AbstractView' ) ) {
155
+ $this->AddInstance( $view );
156
+ }
157
  }
158
 
159
  /**
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
  === WP Security Audit Log ===
2
  Contributors: WPWhiteSecurity, robert681
3
- Plugin URI: http://www.wpsecurityauditlog.com
4
  License: GPLv3
5
- License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, SMS messages, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
  Tested up to: 5.3
9
- Stable tag: 3.5.1
10
  Requires PHP: 5.5
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
@@ -15,7 +15,7 @@ An easy to use & comprehensive WordPress activity log plugin to log all changes
15
 
16
  <strong>THE MOST COMPREHENSIVE & EASY TO USE WORDPRESS ACTIVITY LOG PLUGIN</strong><br />
17
 
18
- Keep an activity log of everything that happens on your WordPress and [WordPress multisite](http://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/) with the WP Security Audit Log plugin to:
19
 
20
  * Ensure user productivity
21
  * Ease troubleshooting
@@ -23,25 +23,25 @@ Keep an activity log of everything that happens on your WordPress and [WordPress
23
  * Better manage & organize your WordPress site
24
  * Easily spot suspicious behavior before there are security problems.
25
 
26
- [WP Security Audit Log](http://www.wpsecurityauditlog.com) is the most comprehensive real time user activity and monitoring log plugin. It helps thousands of WordPress administrators and security professionals keep an eye on what is happening on their websites. It is also the most highly rated WordPress activity log plugin and have been featured on popular sites such as GoDaddy, ManageWP, Pagely, Shout Me Loud and WPKube.
27
 
28
  [youtube https://www.youtube.com/watch?v=1nopATCS-CQ]
29
 
30
- > <strong>Note</strong>: All WordPress logging functionality is FREE. Features such as reports, email notifications & search are available in the <Strong>[Premium Edition](https://www.wpsecurityauditlog.com/premium-features/)</strong>.
31
  >
32
 
33
  #### Maintained & Supported by WP White Security
34
 
35
- WP White Security builds high-quality niche WordPress security & admin plugins such as [Password Policy Manager for WordPress](https://www.wpwhitesecurity.com/wordpress-plugins/password-policy-manager-wordpress/), a plugin with which you can ensure all your users use strong passwords.
36
 
37
- Browse our list of [WordPress plugins](https://www.wpwhitesecurity.com/wordpress-plugins/) that can help you better manage and improve the security of your WordPress websites and users.
38
 
39
  ### WordPress Changes & Details the Plugin Keeps a Log Of
40
  As a comprehensive & complete WordPress activity log solution WP Security Audit Log does not just tell you that a post, a user profile, or an object was updated. It keeps a log of what was changed within the post, profile or object.
41
 
42
  Below is a summary of the changes that the plugin can keep a record of:
43
 
44
- * **Post, Page and Custom Post Type changes** such as status, [content changes](https://www.wpsecurityauditlog.com/support-documentation/how-keep-record-of-content-changes/), title, URL, date and custom field changes
45
 
46
  * **Tags and Categories changes** such as creating, modifying or deleting them, and adding or removing them from posts
47
 
@@ -55,7 +55,7 @@ Below is a summary of the changes that the plugin can keep a record of:
55
 
56
  * **WordPress core and settings changes** such as installed updates, permalinks, default role, URL and other site-wide changes
57
 
58
- * **WordPress multisite network changes** such as adding, deleting or archiving sites, adding or removing users from sites etc ([activity logs for multisite networks](https://www.wpsecurityauditlog.com/support-documentation/audit-trail-features-wordpress-multisite/)).
59
 
60
  * **Plugins and Themes changes** such as installing, activating, deactivating, uninstalling and updating them
61
 
@@ -63,7 +63,7 @@ Below is a summary of the changes that the plugin can keep a record of:
63
 
64
  * Changes on **WooCommerce Stores & Products**, **Yoast SEO**, **Advanced Custom Fields (ACF)**, **MainWP** and other popular WordPress plugins.
65
 
66
- * **[WordPress site file changes](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/)** such as new files are added, or existing ones are modified or deleted.
67
 
68
  For every event that the plugin keeps a log of it also reports the:
69
 
@@ -71,10 +71,10 @@ For every event that the plugin keeps a log of it also reports the:
71
  * User & role of the user who did the change,
72
  * Source IP address from where the change happened.
73
 
74
- Refer to [WordPress Activity Log Events](https://www.wpsecurityauditlog.com/support-documentation/list-wordpress-audit-trail-alerts/) for a complete list of all the changes the WP Security Audit Log can keep a record of.
75
 
76
  ### Extend the Functionality of the WP Security Audit Log Plugin
77
- <strong>[Upgrade to WP Security Audit Log Premium](https://www.wpsecurityauditlog.com/premium-features/)</strong> to:
78
 
79
  * See who is logged,
80
  * See what everyone is doing in real time,
@@ -89,23 +89,23 @@ Refer to [WordPress Activity Log Events](https://www.wpsecurityauditlog.com/supp
89
  * Mirror the WordPress activity logs to Slack, Papertrail, Syslog and other central log management and collaboration solutions,
90
  * Configure archiving and mirroring of logs.
91
 
92
- See our [premium features page](https://www.wpsecurityauditlog.com/premium-features/) for more detailed information.
93
 
94
  ### Free and Premium Support
95
 
96
  Support for the WP Security Audit Log plugin on the WordPress forums is free.
97
 
98
- Premium world-class support is available via email to all [WP Security Audit Log Premium](https://www.wpsecurityauditlog.com/premium-features/) customers.
99
 
100
- > <strong>Note</strong>: paid customers support is always given priority over free support. Paid customers support is provided via one-to-one email and over the phone. [Upgrade to Premium](https://www.wpsecurityauditlog.com/premium-features/) to benefit from priority support.
101
  >
102
 
103
  #### Other Noteworthy Features
104
  WP Security Audit Log plugin also has a number of features that make WordPress and WordPress multisite monitoring and auditing easier, such as:
105
 
106
- * Built-in [support for reverse proxies and web application firewalls](http://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/)
107
- * Full [WordPress multisite support](http://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/)
108
- * Easily [create your custom alerts](https://www.wpsecurityauditlog.com/support-documentation/create-custom-alerts-wordpress-audit-trail/) to monitor additional functionality
109
  * Developer tools including the logging of all HTTP GET and POST requests
110
  * Integration with WhatIsMyIpAddress.com so you can get all information about an IP address with just a mouse click
111
  * Limit who can view the WordPress activity log by either users or roles
@@ -116,7 +116,7 @@ WP Security Audit Log plugin also has a number of features that make WordPress a
116
  * Enable or disable any security alerts
117
  * and much more...
118
 
119
- Refer to the <strong>[WordPress activity log plugin datasheet](https://www.wpsecurityauditlog.com/plugin-datasheet/)</strong> for a complete list of features.
120
 
121
  ### As Featured On:
122
 
@@ -156,17 +156,17 @@ We need help translating the plugin and the WordPress Security Alerts. Please vi
156
 
157
  #### Activity Log Extensions
158
 
159
- * <strong>[Activity Log for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/)</strong>: This extension allows you to keep a log of MainWP network changes and to view the activity logs of all child sites from one central location - the MainWP dashboard.
160
 
161
  #### Related Links and Documentation
162
 
163
- * [What is a WordPress Activity Log?](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-documentation/what-is-a-wordpress-audit-trail/)
164
- * [List of WordPress Activity Log events](http://www.wpsecurityauditlog.com/documentation/list-monitoring-wordpress-security-alerts-audit-log/)
165
- * [WordPress Multisite Features](http://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/)
166
- * [WP Security Audit Log and Reverse Proxy and WAFs Support](http://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/)
167
- * [WP Security Audit Log Database Documentation](http://www.wpsecurityauditlog.com/documentation/plugin-wordpress-database-documentation/)
168
- * [Official WP Security Audit Log Plugin Website](http://www.wpsecurityauditlog.com/)
169
- * [Activity logs for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/)
170
 
171
  == Installation ==
172
 
@@ -186,28 +186,34 @@ We need help translating the plugin and the WordPress Security Alerts. Please vi
186
  == Frequently Asked Questions ==
187
 
188
  = Support and Documentation =
189
- Please refer to our [Support & Documentation pages](https://www.wpsecurityauditlog.com/documentation/frequently-asked-questions-faqs) for all the technical information and support documentation on the WP Security Audit Log plugin.
190
 
191
  == Screenshots ==
192
 
193
  1. The Audit Log Viewer from where the WordPress administrator can see all the security events generated by WP Security Audit Log WordPress plugin.
194
- 2. See who is logged in to your WordPress and manage users sessions with the [Users Sessions Management Add-On](http://www.wpsecurityauditlog.com/extensions/user-sessions-management-wp-security-audit-log/)
195
- 3. The WP Security Audit Log plugin settings from where WordPress administrator can configure generic plugin settings such as [reverse proxy support](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-releases/wp-security-audit-log-supports-reverse-proxies-wordpress-firewalls/), who can manage the plugin etc.
196
  4. The WordPress audit trail settings from where you can configure automatic pruning of alerts, which timestamp should be used, how many 404 requests should be logged and more.
197
- 5. Configuring WordPress email alerts with the [Email Notifications Add-On](http://www.wpsecurityauditlog.com/extensions/wordpress-email-notifications-add-on/)
198
- 6. Search and filters functionality to automatically search through the WordPress security audit log with the [Search Extension](http://www.wpsecurityauditlog.com/extensions/search-add-on-for-wordpress-security-audit-log/)
199
  7. The Enable/Disable Alerts settings node from where Administrators can disable or enable WordPress security alerts.
200
  8. The Audit Log Viewer of a Super Admin in a WordPress multisite network installation with the Site selection drop down menu.
201
  9. If there are more than 15 sites in a multisite, an auto complete site search shows up instead of the drop down menu (see [screenshots](https://wordpress.org/plugins/wp-security-audit-log/screenshots/) for reference)
202
- 10. WP Security Audit Log is integrated with the built-in revision system of WordPress, thus allowing you to see what content changes users make on your WordPress posts, pages and custom post types. For more information read [Keep Record of All WordPress Content Changes with WP Security Audit Log Plugin](http://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-releases/record-all-wordpress-content-changes-wp-security-audit-log-plugin/)
203
  11. Mirror the WordPress activity log to an external solution such as Syslog or Papertrail to centralize logging, ensure logs are always available and cannot be tampered with in the unfortunate case of a hack attack.
204
 
205
  == Changelog ==
206
 
207
- Release notes: [Update 3.5.1 - New filters for the activity log viewer & other improvements](https://www.wpsecurityauditlog.com/releases/update-3-5-1/)
 
 
 
 
208
 
209
  = 3.5.1 (2019-10-22) =
210
 
 
 
211
  * **New Features**
212
 
213
  * Filters and sorting capabitilies added to the Severity column in the activity log viewer.
1
  === WP Security Audit Log ===
2
  Contributors: WPWhiteSecurity, robert681
3
+ Plugin URI: https://www.wpsecurityauditlog.com
4
  License: GPLv3
5
+ License URI: https://www.gnu.org/licenses/gpl.html
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, SMS messages, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
  Tested up to: 5.3
9
+ Stable tag: 3.5.1.1
10
  Requires PHP: 5.5
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
15
 
16
  <strong>THE MOST COMPREHENSIVE & EASY TO USE WORDPRESS ACTIVITY LOG PLUGIN</strong><br />
17
 
18
+ Keep an activity log of everything that happens on your WordPress and [WordPress multisite](https://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) with the WP Security Audit Log plugin to:
19
 
20
  * Ensure user productivity
21
  * Ease troubleshooting
23
  * Better manage & organize your WordPress site
24
  * Easily spot suspicious behavior before there are security problems.
25
 
26
+ [WP Security Audit Log](https://www.wpsecurityauditlog.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) is the most comprehensive real time user activity and monitoring log plugin. It helps thousands of WordPress administrators and security professionals keep an eye on what is happening on their websites. It is also the most highly rated WordPress activity log plugin and have been featured on popular sites such as GoDaddy, ManageWP, Pagely, Shout Me Loud and WPKube.
27
 
28
  [youtube https://www.youtube.com/watch?v=1nopATCS-CQ]
29
 
30
+ > <strong>Note</strong>: All WordPress logging functionality is FREE. Features such as reports, email notifications & search are available in the <Strong>[Premium Edition](https://www.wpsecurityauditlog.com/premium-features/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)</strong>.
31
  >
32
 
33
  #### Maintained & Supported by WP White Security
34
 
35
+ WP White Security builds high-quality niche WordPress security & admin plugins such as [Password Policy Manager for WordPress](https://www.wpwhitesecurity.com/wordpress-plugins/password-policy-manager-wordpress/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=PPMWP&utm_content=plugin+repos+description), a plugin with which you can ensure all your users use strong passwords.
36
 
37
+ Browse our list of [WordPress plugins](https://www.wpwhitesecurity.com/wordpress-plugins/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=all+plugins&utm_content=plugin+repos+description) that can help you better manage and improve the security of your WordPress websites and users.
38
 
39
  ### WordPress Changes & Details the Plugin Keeps a Log Of
40
  As a comprehensive & complete WordPress activity log solution WP Security Audit Log does not just tell you that a post, a user profile, or an object was updated. It keeps a log of what was changed within the post, profile or object.
41
 
42
  Below is a summary of the changes that the plugin can keep a record of:
43
 
44
+ * **Post, Page and Custom Post Type changes** such as status, [content changes](https://www.wpsecurityauditlog.com/support-documentation/how-keep-record-of-content-changes/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description), title, URL, date and custom field changes
45
 
46
  * **Tags and Categories changes** such as creating, modifying or deleting them, and adding or removing them from posts
47
 
55
 
56
  * **WordPress core and settings changes** such as installed updates, permalinks, default role, URL and other site-wide changes
57
 
58
+ * **WordPress multisite network changes** such as adding, deleting or archiving sites, adding or removing users from sites etc ([activity logs for multisite networks](https://www.wpsecurityauditlog.com/support-documentation/audit-trail-features-wordpress-multisite/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)).
59
 
60
  * **Plugins and Themes changes** such as installing, activating, deactivating, uninstalling and updating them
61
 
63
 
64
  * Changes on **WooCommerce Stores & Products**, **Yoast SEO**, **Advanced Custom Fields (ACF)**, **MainWP** and other popular WordPress plugins.
65
 
66
+ * **[WordPress site file changes](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)** such as new files are added, or existing ones are modified or deleted.
67
 
68
  For every event that the plugin keeps a log of it also reports the:
69
 
71
  * User & role of the user who did the change,
72
  * Source IP address from where the change happened.
73
 
74
+ Refer to [WordPress Activity Log Events](https://www.wpsecurityauditlog.com/support-documentation/list-wordpress-audit-trail-alerts/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for a complete list of all the changes the WP Security Audit Log can keep a record of.
75
 
76
  ### Extend the Functionality of the WP Security Audit Log Plugin
77
+ <strong>[Upgrade to WP Security Audit Log Premium](https://www.wpsecurityauditlog.com/premium-features/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)</strong> to:
78
 
79
  * See who is logged,
80
  * See what everyone is doing in real time,
89
  * Mirror the WordPress activity logs to Slack, Papertrail, Syslog and other central log management and collaboration solutions,
90
  * Configure archiving and mirroring of logs.
91
 
92
+ See our [premium features page](https://www.wpsecurityauditlog.com/premium-features/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information.
93
 
94
  ### Free and Premium Support
95
 
96
  Support for the WP Security Audit Log plugin on the WordPress forums is free.
97
 
98
+ Premium world-class support is available via email to all [WP Security Audit Log Premium](https://www.wpsecurityauditlog.com/premium-features/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) customers.
99
 
100
+ > <strong>Note</strong>: paid customers support is always given priority over free support. Paid customers support is provided via one-to-one email and over the phone. [Upgrade to Premium](https://www.wpsecurityauditlog.com/pricing/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) to benefit from priority support.
101
  >
102
 
103
  #### Other Noteworthy Features
104
  WP Security Audit Log plugin also has a number of features that make WordPress and WordPress multisite monitoring and auditing easier, such as:
105
 
106
+ * Built-in [support for reverse proxies and web application firewalls](https://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
107
+ * Full [WordPress multisite support](https://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
108
+ * Easily [create your custom alerts](https://www.wpsecurityauditlog.com/support-documentation/create-custom-alerts-wordpress-audit-trail/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) to monitor additional functionality
109
  * Developer tools including the logging of all HTTP GET and POST requests
110
  * Integration with WhatIsMyIpAddress.com so you can get all information about an IP address with just a mouse click
111
  * Limit who can view the WordPress activity log by either users or roles
116
  * Enable or disable any security alerts
117
  * and much more...
118
 
119
+ Refer to the <strong>[WordPress activity log plugin datasheet](https://www.wpsecurityauditlog.com/plugin-datasheet/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)</strong> for a complete list of features.
120
 
121
  ### As Featured On:
122
 
156
 
157
  #### Activity Log Extensions
158
 
159
+ * <strong>[Activity Log for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)</strong>: This extension allows you to keep a log of MainWP network changes and to view the activity logs of all child sites from one central location - the MainWP dashboard.
160
 
161
  #### Related Links and Documentation
162
 
163
+ * [What is a WordPress Activity Log?](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-documentation/what-is-a-wordpress-audit-trail/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
164
+ * [List of WordPress Activity Log events](https://www.wpsecurityauditlog.com/documentation/list-monitoring-wordpress-security-alerts-audit-log/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
165
+ * [WordPress Multisite Features](https://www.wpsecurityauditlog.com/documentation/wordpress-multisite-plugin-features-support/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
166
+ * [WP Security Audit Log and Reverse Proxy and WAFs Support](https://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
167
+ * [WP Security Audit Log Database Documentation](https://www.wpsecurityauditlog.com/documentation/plugin-wordpress-database-documentation/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
168
+ * [Official WP Security Audit Log Plugin Website](https://www.wpsecurityauditlog.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
169
+ * [Activity logs for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
170
 
171
  == Installation ==
172
 
186
  == Frequently Asked Questions ==
187
 
188
  = Support and Documentation =
189
+ Please refer to our [Support & Documentation pages](https://www.wpsecurityauditlog.com/support-documentation/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for all the technical information and support documentation on the WP Security Audit Log plugin.
190
 
191
  == Screenshots ==
192
 
193
  1. The Audit Log Viewer from where the WordPress administrator can see all the security events generated by WP Security Audit Log WordPress plugin.
194
+ 2. See who is logged in to your WordPress and manage users sessions with [Users Sessions Management](https://www.wpsecurityauditlog.com/premium-features/wordpress-users-sessions-management-tools/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
195
+ 3. The WP Security Audit Log plugin settings from where WordPress administrator can configure generic plugin settings such as [reverse proxy support](https://www.wpsecurityauditlog.com/support-documentation/support-reverse-proxies-web-application-firewalls/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description), who can manage the plugin etc.
196
  4. The WordPress audit trail settings from where you can configure automatic pruning of alerts, which timestamp should be used, how many 404 requests should be logged and more.
197
+ 5. Configuring WordPress email and SMS alerts with the [Email & SMS Notifications module](https://www.wpsecurityauditlog.com/premium-features/email-notifications-wordpress-activity-log/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
198
+ 6. Search in the WordPress security audit log with the use filters to fine tune the search results.
199
  7. The Enable/Disable Alerts settings node from where Administrators can disable or enable WordPress security alerts.
200
  8. The Audit Log Viewer of a Super Admin in a WordPress multisite network installation with the Site selection drop down menu.
201
  9. If there are more than 15 sites in a multisite, an auto complete site search shows up instead of the drop down menu (see [screenshots](https://wordpress.org/plugins/wp-security-audit-log/screenshots/) for reference)
202
+ 10. WP Security Audit Log is integrated with the built-in revision system of WordPress, thus allowing you to see what content changes users make on your WordPress posts, pages and custom post types. For more information read [Keep Record of All WordPress Content Changes](https://www.wpsecurityauditlog.com/support-documentation/how-keep-record-of-content-changes/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description)
203
  11. Mirror the WordPress activity log to an external solution such as Syslog or Papertrail to centralize logging, ensure logs are always available and cannot be tampered with in the unfortunate case of a hack attack.
204
 
205
  == Changelog ==
206
 
207
+ = 3.5.1.1 (2019-10-31) =
208
+
209
+ * **Improvement**
210
+
211
+ * Prevent classes of the wrong instance from being added to $views.
212
 
213
  = 3.5.1 (2019-10-22) =
214
 
215
+ Release notes: [Update 3.5.1 - New filters for the activity log viewer & other improvements](https://www.wpsecurityauditlog.com/releases/update-3-5-1/)
216
+
217
  * **New Features**
218
 
219
  * Filters and sorting capabitilies added to the Severity column in the activity log viewer.
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@
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: 3.5.1
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -46,7 +46,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
46
  *
47
  * @var string
48
  */
49
- public $version = '3.5.1';
50
 
51
  // Plugin constants.
52
  const PLG_CLS_PRFX = 'WSAL_';
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: 3.5.1.1
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
46
  *
47
  * @var string
48
  */
49
+ public $version = '3.5.1.1';
50
 
51
  // Plugin constants.
52
  const PLG_CLS_PRFX = 'WSAL_';