Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.3.4 |
Comparing to | |
See all releases |
Code changes from version 2.3.3 to 2.3.4
- readme.txt +1 -1
- securityscan.php +7 -7
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: security, securityscan, chmod, permissions, admin, administration, authent
|
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.3
|
7 |
Tested up to: 2.7.1
|
8 |
-
Stable tag: 2.3.
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.3
|
7 |
Tested up to: 2.7.1
|
8 |
+
Stable tag: 2.3.4
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
securityscan.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Scan
|
|
4 |
Plugin URI: http://semperfiwebdesign.com/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
-
Version: 2.3.
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
@@ -69,7 +69,7 @@ if($mrt_latest > $mrt_version)
|
|
69 |
*/ }
|
70 |
|
71 |
|
72 |
-
function
|
73 |
|
74 |
global $wpdb;
|
75 |
mrt_check_version();
|
@@ -102,7 +102,7 @@ if($mrt_latest > $mrt_version)
|
|
102 |
<?php }
|
103 |
|
104 |
|
105 |
-
function
|
106 |
<div style="padding-left:10px;">
|
107 |
<?php mrt_get_serverinfo(); ?>
|
108 |
</div>
|
@@ -110,7 +110,7 @@ if($mrt_latest > $mrt_version)
|
|
110 |
<?php }
|
111 |
|
112 |
|
113 |
-
function
|
114 |
|
115 |
?>
|
116 |
|
@@ -170,9 +170,9 @@ function mrt_opt_mng_pg() {
|
|
170 |
|
171 |
<?php
|
172 |
|
173 |
-
add_meta_box("
|
174 |
-
add_meta_box("
|
175 |
-
add_meta_box("
|
176 |
|
177 |
?>
|
178 |
|
4 |
Plugin URI: http://semperfiwebdesign.com/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
+
Version: 2.3.4
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
69 |
*/ }
|
70 |
|
71 |
|
72 |
+
function wpss_mrt_meta_box(){
|
73 |
|
74 |
global $wpdb;
|
75 |
mrt_check_version();
|
102 |
<?php }
|
103 |
|
104 |
|
105 |
+
function wpss_mrt_meta_box2(){ ?>
|
106 |
<div style="padding-left:10px;">
|
107 |
<?php mrt_get_serverinfo(); ?>
|
108 |
</div>
|
110 |
<?php }
|
111 |
|
112 |
|
113 |
+
function wpss_mrt_meta_box3(){
|
114 |
|
115 |
?>
|
116 |
|
170 |
|
171 |
<?php
|
172 |
|
173 |
+
add_meta_box("wpss_mrt", 'Initial Scan', "wpss_mrt_meta_box", "wpss");
|
174 |
+
add_meta_box("wpss_mrt", 'System Information Scan', "wpss_mrt_meta_box2", "wpss2");
|
175 |
+
add_meta_box("wpss_mrt", 'Donations', "wpss_mrt_meta_box3", "wpss3");
|
176 |
|
177 |
?>
|
178 |
|