Version Description
= 1.8.9 = This version adds support for the latest version of WordPress. Introduces new features and fixes some bugs reported by the WordPress community as well as bugs found by our automated testing system.
Download this release
Release Info
Developer | yorman |
Plugin | Sucuri Security – Auditing, Malware Scanner and Security Hardening |
Version | 1.8.10 |
Comparing to | |
See all releases |
Code changes from version 1.8.9 to 1.8.10
- readme.txt +24 -2
- sucuri.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate Link: https://sucuri.net/
|
|
4 |
Tags: malware, security, firewall, scan, spam, virus, sucuri, protection, WordPress Security, Login Security, Security Auditing, File Integrity, htaccess, phishing, backdoors, SQL Injection, RFI, LFI, XSS, CSRF, website firewall, Website Security, Performance Optimization, Zero Day, Software Vulnerability, Exploits, Hacks, Attackers, Bad Actors, Reverse Proxy, Two Factor Security, Two Factor Authentication, Security Logs, HeatBleed Vulnerability, Website Protection, Bash Vulnerability, RevSlider Vulnerability, MailPoet Vulnerability, Malware Prevention, Website Security, Website Firewall, Website AntiVirus, Security Response, Security Detection, Security Prevention
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.8.0
|
7 |
-
Stable tag: 1.8.
|
8 |
|
9 |
The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.
|
10 |
|
@@ -181,11 +181,33 @@ No, it is not required. The Website Firewall runs in the cloud without the need
|
|
181 |
|
182 |
== Upgrade Notice ==
|
183 |
|
184 |
-
= 1.8.
|
185 |
This version adds support for the latest version of WordPress. Introduces new features and fixes some bugs reported by the WordPress community as well as bugs found by our automated testing system.
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
= 1.8.8 =
|
190 |
* Add smart limit to send logs from the queue to the API
|
191 |
* Add option to ignore events for post transitions
|
4 |
Tags: malware, security, firewall, scan, spam, virus, sucuri, protection, WordPress Security, Login Security, Security Auditing, File Integrity, htaccess, phishing, backdoors, SQL Injection, RFI, LFI, XSS, CSRF, website firewall, Website Security, Performance Optimization, Zero Day, Software Vulnerability, Exploits, Hacks, Attackers, Bad Actors, Reverse Proxy, Two Factor Security, Two Factor Authentication, Security Logs, HeatBleed Vulnerability, Website Protection, Bash Vulnerability, RevSlider Vulnerability, MailPoet Vulnerability, Malware Prevention, Website Security, Website Firewall, Website AntiVirus, Security Response, Security Detection, Security Prevention
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 4.8.0
|
7 |
+
Stable tag: 1.8.9
|
8 |
|
9 |
The Sucuri WordPress Security plugin is a security toolset for security integrity monitoring, malware detection and security hardening.
|
10 |
|
181 |
|
182 |
== Upgrade Notice ==
|
183 |
|
184 |
+
= 1.8.9 =
|
185 |
This version adds support for the latest version of WordPress. Introduces new features and fixes some bugs reported by the WordPress community as well as bugs found by our automated testing system.
|
186 |
|
187 |
== Changelog ==
|
188 |
|
189 |
+
= 1.8.9 =
|
190 |
+
* Modify Sucuri firewall detection with regular expressions
|
191 |
+
* Modify option to force scanner to ignore directories
|
192 |
+
* Modify form to monitor and ignore post-types
|
193 |
+
* Modify miscellaneous changes in some alert messages
|
194 |
+
* Modify error message displaying for invalid CSRF validations
|
195 |
+
* Fix minor issues with the version detection code
|
196 |
+
* Remove internationalization support for consistency
|
197 |
+
* Add support for the RTL reading direction
|
198 |
+
* Add API key in admin notice when it is being deleted
|
199 |
+
* Fix modification date for corrupt core files
|
200 |
+
* Fix audit log parser for incompatible JSON data
|
201 |
+
* Fix password visibility when the option is changed
|
202 |
+
* Remove duplicated failed user authentication log
|
203 |
+
* Remove trailing forward slash from asset URL
|
204 |
+
* Fix post-type ignore tool to allow hyphens in the ID
|
205 |
+
* Fix queries to the database in the last logins page
|
206 |
+
* Remove unnecessary option queries to the database
|
207 |
+
* Fix PHP notice for a string offset cast occurred
|
208 |
+
* Remove unnecessary data from the website info page
|
209 |
+
* Modify timing for the execution of the Ajax requests
|
210 |
+
|
211 |
= 1.8.8 =
|
212 |
* Add smart limit to send logs from the queue to the API
|
213 |
* Add option to ignore events for post transitions
|
sucuri.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Plugin URI: https://wordpress.sucuri.net/
|
7 |
* Author URI: https://sucuri.net/
|
8 |
* Author: Sucuri Inc.
|
9 |
-
* Version: 1.8.
|
10 |
*
|
11 |
* PHP version 5
|
12 |
*
|
@@ -83,7 +83,7 @@ define('SUCURISCAN', 'sucuriscan');
|
|
83 |
/**
|
84 |
* Current version of the plugin's code.
|
85 |
*/
|
86 |
-
define('SUCURISCAN_VERSION', '1.8.
|
87 |
|
88 |
/**
|
89 |
* The name of the folder where the plugin's files will be located.
|
6 |
* Plugin URI: https://wordpress.sucuri.net/
|
7 |
* Author URI: https://sucuri.net/
|
8 |
* Author: Sucuri Inc.
|
9 |
+
* Version: 1.8.9
|
10 |
*
|
11 |
* PHP version 5
|
12 |
*
|
83 |
/**
|
84 |
* Current version of the plugin's code.
|
85 |
*/
|
86 |
+
define('SUCURISCAN_VERSION', '1.8.9');
|
87 |
|
88 |
/**
|
89 |
* The name of the folder where the plugin's files will be located.
|