Version Description
- Fixed integrity checking display.
Download this release
Release Info
Developer | dd@sucuri.net |
Plugin | Sucuri Security – Auditing, Malware Scanner and Security Hardening |
Version | 1.6.5 |
Comparing to | |
See all releases |
Code changes from version 1.6.4 to 1.6.5
- readme.txt +7 -4
- sucuri.php +6 -4
readme.txt
CHANGED
@@ -3,16 +3,16 @@ Contributors: dd@sucuri.net
|
|
3 |
Donate Link: http://sitecheck.sucuri.net
|
4 |
Tags: malware, security, firewall, scan, spam, virus, sucuri, protection
|
5 |
Requires at least:3.2
|
6 |
-
Stable tag:1.6.
|
7 |
Tested up to: 3.9.1
|
8 |
|
9 |
-
The Sucuri Security - Auditing, SiteCheck Malware Scanner and Hardening is a security plugin enables you to scan your WordPress site using Sucuri SiteCheck for security and malware issues, and also verifies the security integrity of your core files right in your dashboard. It
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
Sucuri SiteCheck
|
14 |
|
15 |
-
You can also
|
16 |
|
17 |
Sucuri SiteCheck detects various types of malware, SPAM injections, website errors, disabled sites, database connection issues and code anomalies that require special attention to include:
|
18 |
|
@@ -66,6 +66,9 @@ the compromise on your site).
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
69 |
= 1.6.4 =
|
70 |
* Fixed API generation bug.
|
71 |
|
3 |
Donate Link: http://sitecheck.sucuri.net
|
4 |
Tags: malware, security, firewall, scan, spam, virus, sucuri, protection
|
5 |
Requires at least:3.2
|
6 |
+
Stable tag:1.6.5
|
7 |
Tested up to: 3.9.1
|
8 |
|
9 |
+
The Sucuri Security - Auditing, SiteCheck Malware Scanner and Hardening is a security plugin enables you to scan your WordPress site using Sucuri SiteCheck for security and malware issues, and also verifies the security integrity of your core files right in your dashboard. It includes audit trails and post-hack security ions to help you reset passwords and secret keys in case it has been already hacked, or infected with malware.
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
The Sucuri Security - Auditing, SiteCheck Malware Scanner and Hardening is a security plugin enables you to scan your WordPress site using Sucuri SiteCheck for security and malware issues, and also verifies the security integrity of your core files right in your dashboard. It includes audit trails and post-hack security ions to help you reset passwords and secret keys in case it has been already hacked, or infected with malware.
|
14 |
|
15 |
+
You can also run the checks for malware, blacklisting, and overall security status by scanning for free at <a href="http://sitecheck.sucuri.net">SiteCheck.Sucuri.net</a>.
|
16 |
|
17 |
Sucuri SiteCheck detects various types of malware, SPAM injections, website errors, disabled sites, database connection issues and code anomalies that require special attention to include:
|
18 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 1.6.5 =
|
70 |
+
* Fixed integrity checking display.
|
71 |
+
|
72 |
= 1.6.4 =
|
73 |
* Fixed API generation bug.
|
74 |
|
sucuri.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Sucuri Security - Auditing, Malware Scanner and Hardening
|
|
4 |
Plugin URI: http://wordpress.sucuri.net/
|
5 |
Description: The <a href="http://sucuri.net/" target="_blank">Sucuri Security</a> <em>(Auditing, Malware Scanner and Hardening)</em> plugin enables you to scan your WordPress site using <a href="http://sitecheck.sucuri.net/" target="_blank">Sucuri SiteCheck</a> right in your dashboard. SiteCheck will check for malware, spam, blacklisting and other security issues like .htaccess redirects, hidden eval code, etc. The best thing about it is it's completely free.
|
6 |
Author: Sucuri, INC
|
7 |
-
Version: 1.6.
|
8 |
Author URI: http://sucuri.net
|
9 |
*/
|
10 |
|
@@ -36,7 +36,7 @@ define('SUCURISCAN','sucuriscan');
|
|
36 |
/**
|
37 |
* Current version of the plugin's code.
|
38 |
*/
|
39 |
-
define('SUCURISCAN_VERSION','1.6.
|
40 |
|
41 |
/**
|
42 |
* The local URL where the plugin's files and assets are served.
|
@@ -5943,6 +5943,8 @@ function sucuriscan_ignore_integrity_filepath( $filepath='' ){
|
|
5943 |
$ignore_files = array(
|
5944 |
'favicon.ico',
|
5945 |
'.htaccess',
|
|
|
|
|
5946 |
'wp-config.php',
|
5947 |
'wp-pass.php',
|
5948 |
'wp-rss.php',
|
@@ -5956,8 +5958,8 @@ function sucuriscan_ignore_integrity_filepath( $filepath='' ){
|
|
5956 |
|
5957 |
if(
|
5958 |
in_array($filepath, $ignore_files)
|
5959 |
-
|| strpos($filepath, 'wp-content/themes')
|
5960 |
-
|| strpos($filepath, 'wp-content/plugins')
|
5961 |
){
|
5962 |
return TRUE;
|
5963 |
}
|
4 |
Plugin URI: http://wordpress.sucuri.net/
|
5 |
Description: The <a href="http://sucuri.net/" target="_blank">Sucuri Security</a> <em>(Auditing, Malware Scanner and Hardening)</em> plugin enables you to scan your WordPress site using <a href="http://sitecheck.sucuri.net/" target="_blank">Sucuri SiteCheck</a> right in your dashboard. SiteCheck will check for malware, spam, blacklisting and other security issues like .htaccess redirects, hidden eval code, etc. The best thing about it is it's completely free.
|
6 |
Author: Sucuri, INC
|
7 |
+
Version: 1.6.5
|
8 |
Author URI: http://sucuri.net
|
9 |
*/
|
10 |
|
36 |
/**
|
37 |
* Current version of the plugin's code.
|
38 |
*/
|
39 |
+
define('SUCURISCAN_VERSION','1.6.5');
|
40 |
|
41 |
/**
|
42 |
* The local URL where the plugin's files and assets are served.
|
5943 |
$ignore_files = array(
|
5944 |
'favicon.ico',
|
5945 |
'.htaccess',
|
5946 |
+
'sitemap.xml',
|
5947 |
+
'sitemap.xml.gz',
|
5948 |
'wp-config.php',
|
5949 |
'wp-pass.php',
|
5950 |
'wp-rss.php',
|
5958 |
|
5959 |
if(
|
5960 |
in_array($filepath, $ignore_files)
|
5961 |
+
|| strpos($filepath, 'wp-content/themes') !== FALSE
|
5962 |
+
|| strpos($filepath, 'wp-content/plugins') !== FALSE
|
5963 |
){
|
5964 |
return TRUE;
|
5965 |
}
|