Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.55 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.54 to 2.2.56.55
- functions.php +4 -4
- readme.txt +7 -1
- securityscan.php +2 -1
functions.php
CHANGED
@@ -109,11 +109,11 @@ function mrt_remove_wp_version()
|
|
109 |
}
|
110 |
|
111 |
function mrt_check_version(){
|
112 |
-
echo "WordPress Version: ";
|
113 |
global $wp_version;
|
114 |
-
if ($wp_version == 2.5) $g2k5 = '<font color="green">You have the latest stable version of WordPress.</font><br />';
|
115 |
-
if ($wp_version < 2.5) $g2k5 = '<font color="red">You need version 2.5. Please <a href="http://wordpress.org/download/">upgrade</a> immediately.</font><br />';
|
116 |
-
echo "<b>" . $wp_version . "</b>   "
|
117 |
}
|
118 |
|
119 |
|
109 |
}
|
110 |
|
111 |
function mrt_check_version(){
|
112 |
+
//echo "WordPress Version: ";
|
113 |
global $wp_version;
|
114 |
+
if ($wp_version == 2.5) $g2k5 = '<font color="green"><strong>WordPress version: ' . $wp_version . '</strong> You have the latest stable version of WordPress.</font><br />';
|
115 |
+
if ($wp_version < 2.5) $g2k5 = '<font color="red"><strong>WordPress version: ' . $wp_version . '</strong> You need version 2.5. Please <a href="http://wordpress.org/download/">upgrade</a> immediately.</font><br />';
|
116 |
+
/*echo "<b>" . $wp_version . "</b>   " ;*/echo $g2k5;
|
117 |
}
|
118 |
|
119 |
|
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.0
|
7 |
Tested up to: 2.5
|
8 |
-
Stable tag: 2.2.56.
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
@@ -43,6 +43,12 @@ Please let me know any bugs, improvements, comments, suggestions.
|
|
43 |
|
44 |
== Frequently Asked Questions ==
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
= How do I change the file permissions on my WordPress installation? =
|
47 |
|
48 |
From the linux command line (for advanced users):
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.56.55
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
43 |
|
44 |
== Frequently Asked Questions ==
|
45 |
|
46 |
+
= Can I deactivate WP Security Scan once I've run it once? =
|
47 |
+
|
48 |
+
No. WP Security Scan needs to be left activated to work. Version hiding,
|
49 |
+
turning off DB errors, removing WP ID META tag from HTML output, and other
|
50 |
+
functionality will cease if you deactivate the plugin.
|
51 |
+
|
52 |
= How do I change the file permissions on my WordPress installation? =
|
53 |
|
54 |
From the linux command line (for advanced users):
|
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.2.56.
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
@@ -79,6 +79,7 @@ function mrt_opt_mng_pg() {
|
|
79 |
<br /><div style="float: left;width: 600px; height: 450px;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
80 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Initial Scan</h3></div>
|
81 |
<?php
|
|
|
82 |
global $wpdb;
|
83 |
mrt_check_version();
|
84 |
mrt_check_table_prefix();
|
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.2.56.55
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
79 |
<br /><div style="float: left;width: 600px; height: 450px;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
80 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Initial Scan</h3></div>
|
81 |
<?php
|
82 |
+
|
83 |
global $wpdb;
|
84 |
mrt_check_version();
|
85 |
mrt_check_table_prefix();
|