Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.19 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.18 to 2.2.56.19
- readme.txt +1 -1
- scripts.js +0 -3
- securityscan.php +8 -6
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 |
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.56.19
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
scripts.js
CHANGED
@@ -1,4 +1,3 @@
|
|
1 |
-
<script language="JavaScript1.1">
|
2 |
function testPassword(passwd){
|
3 |
var description = new Array();
|
4 |
description[0] = "<table><tr><td><table cellpadding=0 cellspacing=2><tr><td height=4 width=30 bgcolor=#ff0000></td><td height=4 width=120 bgcolor=tan></td></tr></table></td><td> <b>Weakest</b></td></tr></table>";
|
@@ -26,5 +25,3 @@ else strVerdict = description[4];
|
|
26 |
|
27 |
document.getElementById("Words").innerHTML= (strVerdict);
|
28 |
}
|
29 |
-
</script>
|
30 |
-
|
|
|
1 |
function testPassword(passwd){
|
2 |
var description = new Array();
|
3 |
description[0] = "<table><tr><td><table cellpadding=0 cellspacing=2><tr><td height=4 width=30 bgcolor=#ff0000></td><td height=4 width=120 bgcolor=tan></td></tr></table></td><td> <b>Weakest</b></td></tr></table>";
|
25 |
|
26 |
document.getElementById("Words").innerHTML= (strVerdict);
|
27 |
}
|
|
|
|
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 |
|
@@ -30,7 +30,7 @@ require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
|
|
30 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
31 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/database.php");
|
32 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/functions.php");
|
33 |
-
require_once(ABSPATH."wp-content/plugins/wp-security-scan/scripts.js");
|
34 |
|
35 |
add_action( 'admin_notices', mrt_update_notice, 5 );
|
36 |
add_action('admin_head', 'mrt_hd');
|
@@ -38,7 +38,7 @@ add_action("init",mrt_wpdberrors,1);
|
|
38 |
add_action("parse_query",mrt_wpdberrors,1);
|
39 |
add_action('admin_menu', 'add_men_pg');
|
40 |
add_action("init",mrt_remove_wp_version,1);
|
41 |
-
add_action('admin_head', 'mrt_root_scripts');
|
42 |
function add_men_pg() {
|
43 |
if (function_exists('add_menu_page')){
|
44 |
add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
|
@@ -48,10 +48,10 @@ add_submenu_page(__FILE__, 'Database', 'Database', 8, 'database', 'mrt_sub3');
|
|
48 |
add_submenu_page(__FILE__, 'Support', 'Support', 8, 'support', 'mrt_sub2');
|
49 |
}}
|
50 |
|
51 |
-
function mrt_root_scripts(){
|
52 |
$siteurl = get_option('siteurl');
|
53 |
-
echo
|
54 |
-
}
|
55 |
|
56 |
function mrt_update_notice(){
|
57 |
/*$mrt_version = "2.2.52";
|
@@ -128,6 +128,8 @@ function mrt_hd()
|
|
128 |
{
|
129 |
$siteurl = get_option('siteurl');?>
|
130 |
<script language="JavaScript" type="text/javascript" src="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/js/scripts.js"></script>
|
|
|
|
|
131 |
<!--<link rel="stylesheet" type="text/css" href="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/style.css" />-->
|
132 |
<?php }
|
133 |
?>
|
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.19
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
30 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
31 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/database.php");
|
32 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/functions.php");
|
33 |
+
//require_once(ABSPATH."wp-content/plugins/wp-security-scan/scripts.js");
|
34 |
|
35 |
add_action( 'admin_notices', mrt_update_notice, 5 );
|
36 |
add_action('admin_head', 'mrt_hd');
|
38 |
add_action("parse_query",mrt_wpdberrors,1);
|
39 |
add_action('admin_menu', 'add_men_pg');
|
40 |
add_action("init",mrt_remove_wp_version,1);
|
41 |
+
//add_action('admin_head', 'mrt_root_scripts');
|
42 |
function add_men_pg() {
|
43 |
if (function_exists('add_menu_page')){
|
44 |
add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
|
48 |
add_submenu_page(__FILE__, 'Support', 'Support', 8, 'support', 'mrt_sub2');
|
49 |
}}
|
50 |
|
51 |
+
/*function mrt_root_scripts(){
|
52 |
$siteurl = get_option('siteurl');
|
53 |
+
echo '<script language="JavaScript" type="text/javascript" src="' . $siteurl . '/wp-content/plugins/wp-security-scan/scripts.js"></script>';
|
54 |
+
}*/
|
55 |
|
56 |
function mrt_update_notice(){
|
57 |
/*$mrt_version = "2.2.52";
|
128 |
{
|
129 |
$siteurl = get_option('siteurl');?>
|
130 |
<script language="JavaScript" type="text/javascript" src="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/js/scripts.js"></script>
|
131 |
+
<script language="JavaScript" type="text/javascript" src="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/scripts.js"></script>
|
132 |
+
|
133 |
<!--<link rel="stylesheet" type="text/css" href="<?php echo $siteurl;?>/wp-content/plugins/wp-security-scan/style.css" />-->
|
134 |
<?php }
|
135 |
?>
|