Sucuri Security – Auditing, Malware Scanner and Security Hardening - Version 1.1.5

Version Description

  • Removing PHP warnings / code cleaning.
Download this release

Release Info

Developer dd@sucuri.net
Plugin Icon 128x128 Sucuri Security – Auditing, Malware Scanner and Security Hardening
Version 1.1.5
Comparing to
See all releases

Code changes from version 1.1.4 to 1.1.5

Files changed (2) hide show
  1. readme.txt +4 -1
  2. sucuri.php +7 -4
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: dd@sucuri.net, dremeda
3
  Donate Link: http://sitecheck.sucuri.net
4
  Tags: malware,security,scan,spam,virus
5
  Requires at least:3.0
6
- Stable tag:1.1.4
7
  Tested up to: 3.2.1
8
 
9
  Get free Sucuri SiteCheck scan results directly in your WordPress dashboard. The best way to know if your site is infected with malware or blacklist by Google, all with the click of a button.
@@ -24,6 +24,9 @@ You can also scan your site at <a href="http://sitecheck.sucuri.net">http://site
24
 
25
  == Changelog ==
26
 
 
 
 
27
  = 1.1.3 =
28
  * Cleaning up the results.
29
  * Added 1-click hardening.
3
  Donate Link: http://sitecheck.sucuri.net
4
  Tags: malware,security,scan,spam,virus
5
  Requires at least:3.0
6
+ Stable tag:1.1.5
7
  Tested up to: 3.2.1
8
 
9
  Get free Sucuri SiteCheck scan results directly in your WordPress dashboard. The best way to know if your site is infected with malware or blacklist by Google, all with the click of a button.
24
 
25
  == Changelog ==
26
 
27
+ = 1.1.5 =
28
+ * Removing PHP warnings / code cleaning.
29
+
30
  = 1.1.3 =
31
  * Cleaning up the results.
32
  * Added 1-click hardening.
sucuri.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Sucuri Scanner
4
  Plugin URI: http://sitecheck.sucuri.net/
5
  Description: This plugin allows you to scan your website using the Sucuri SiteCheck Malware Scanner on your WordPress site. It will check for malware, spam, blacklisting and other security issues (htaccess redirections, hidden code, etc). Yes, it is free. Similar to the scans provided online at http://sitecheck.sucuri.net
6
  Author: http://sucuri.net
7
- Version: 1.1.4
8
  Author URI: http://sucuri.net
9
  */
10
 
@@ -16,7 +16,7 @@ if(!function_exists('add_action'))
16
  }
17
 
18
  define('SUCURISCAN','sucuriscan');
19
- define('SUCURISCAN_VERSION','1.1.4');
20
  define( 'SUCURI_URL',plugin_dir_url( __FILE__ ));
21
  define( 'SUCURI_IMG',SUCURI_URL.'images/');
22
 
@@ -184,9 +184,12 @@ function sucuriscan_print_scan()
184
  {
185
  echo "<b>CLEAN: </b>".htmlspecialchars($blres[0])." <a href=''>".htmlspecialchars($blres[1])."</a><br />";
186
  }
187
- foreach($res['BLACKLIST']['WARN'] as $blres)
188
  {
189
- echo "<b>WARN: </b>".htmlspecialchars($blres[0])." <a href=''>".htmlspecialchars($blres[1])."</a><br />";
 
 
 
190
  }
191
 
192
 
4
  Plugin URI: http://sitecheck.sucuri.net/
5
  Description: This plugin allows you to scan your website using the Sucuri SiteCheck Malware Scanner on your WordPress site. It will check for malware, spam, blacklisting and other security issues (htaccess redirections, hidden code, etc). Yes, it is free. Similar to the scans provided online at http://sitecheck.sucuri.net
6
  Author: http://sucuri.net
7
+ Version: 1.1.5
8
  Author URI: http://sucuri.net
9
  */
10
 
16
  }
17
 
18
  define('SUCURISCAN','sucuriscan');
19
+ define('SUCURISCAN_VERSION','1.1.5');
20
  define( 'SUCURI_URL',plugin_dir_url( __FILE__ ));
21
  define( 'SUCURI_IMG',SUCURI_URL.'images/');
22
 
184
  {
185
  echo "<b>CLEAN: </b>".htmlspecialchars($blres[0])." <a href=''>".htmlspecialchars($blres[1])."</a><br />";
186
  }
187
+ if(isset($res['BLACKLIST']['WARN']))
188
  {
189
+ foreach($res['BLACKLIST']['WARN'] as $blres)
190
+ {
191
+ echo "<b>WARN: </b>".htmlspecialchars($blres[0])." <a href=''>".htmlspecialchars($blres[1])."</a><br />";
192
+ }
193
  }
194
 
195