Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.50 |
Comparing to | |
See all releases |
Code changes from version 2.2.49 to 2.2.50
- functions.php +5 -0
- readme.txt +1 -1
- securityscan.php +20 -1
- support.php +1 -1
functions.php
CHANGED
@@ -119,5 +119,10 @@ if ($wp_version < 2.5) $g2k5 = '<font color="red">You need version 2.5. Please
|
|
119 |
echo "<b>" . $wp_version . "</b>   " ;echo $g2k5;
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
122 |
?>
|
123 |
|
119 |
echo "<b>" . $wp_version . "</b>   " ;echo $g2k5;
|
120 |
}
|
121 |
|
122 |
+
|
123 |
+
function mrt_javascript(){
|
124 |
+
$siteurl = get_option('siteurl');
|
125 |
+
?><script language="JavaScript" type="text/javascript" src="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/js/scripts.js"></script><?php
|
126 |
+
}
|
127 |
?>
|
128 |
|
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.
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.50
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
securityscan.php
CHANGED
@@ -4,9 +4,28 @@ Plugin Name: WP Security Scan
|
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
-
Version: 2.2.
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/support.php");
|
11 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
|
12 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
+
Version: 2.2.50
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
+
|
11 |
+
/*
|
12 |
+
Copyright (C) 2008 semperfiwebdesign.com (michael AT semperfiwebdesign DOT com)
|
13 |
+
|
14 |
+
This program is free software; you can redistribute it and/or modify
|
15 |
+
it under the terms of the GNU General Public License as published by
|
16 |
+
the Free Software Foundation; either version 3 of the License, or
|
17 |
+
(at your option) any later version.
|
18 |
+
|
19 |
+
This program is distributed in the hope that it will be useful,
|
20 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
21 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
22 |
+
GNU General Public License for more details.
|
23 |
+
|
24 |
+
You should have received a copy of the GNU General Public License
|
25 |
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
26 |
+
*/
|
27 |
+
|
28 |
+
|
29 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/support.php");
|
30 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
|
31 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
support.php
CHANGED
@@ -6,7 +6,7 @@ function mrt_sub2(){
|
|
6 |
<h2><?php _e('WP - Security Support') ?></h2>
|
7 |
<div style="height:299px">
|
8 |
<br /><br />support page coming soon...
|
9 |
-
<br /><br /><br />
|
10 |
<em>For comments, suggestions, bug reporting, etc email <a href="mailto:michael@semperfiwebdesign.com">michael@semperfiwebdesign.com</a></em>
|
11 |
</div>
|
12 |
Plugin by <a href="http://semperfiwebdesign.com/" title="Semper Fi Web Design">Semper Fi Web Design</a>
|
6 |
<h2><?php _e('WP - Security Support') ?></h2>
|
7 |
<div style="height:299px">
|
8 |
<br /><br />support page coming soon...
|
9 |
+
<br /><br /><strong>Backup early, backup often!</strong><br /><br /><br /><br /><br />
|
10 |
<em>For comments, suggestions, bug reporting, etc email <a href="mailto:michael@semperfiwebdesign.com">michael@semperfiwebdesign.com</a></em>
|
11 |
</div>
|
12 |
Plugin by <a href="http://semperfiwebdesign.com/" title="Semper Fi Web Design">Semper Fi Web Design</a>
|