Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.18 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.17 to 2.2.56.18
- readme.txt +1 -1
- securityscan.php +7 -1
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.18
|
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.2.56.
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
@@ -38,6 +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 |
function add_men_pg() {
|
42 |
if (function_exists('add_menu_page')){
|
43 |
add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
|
@@ -47,6 +48,11 @@ add_submenu_page(__FILE__, 'Database', 'Database', 8, 'database', 'mrt_sub3');
|
|
47 |
add_submenu_page(__FILE__, 'Support', 'Support', 8, 'support', 'mrt_sub2');
|
48 |
}}
|
49 |
|
|
|
|
|
|
|
|
|
|
|
50 |
function mrt_update_notice(){
|
51 |
/*$mrt_version = "2.2.52";
|
52 |
$mrt_latest = fgets(fopen("http://semperfiwebdesign.com/wp-security-scan.html", "r"));
|
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.18
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
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 type='text/javascript' src='" . $siteurl . "wp-content/wp-security_scan/scripts.js'></script>";
|
54 |
+
}
|
55 |
+
|
56 |
function mrt_update_notice(){
|
57 |
/*$mrt_version = "2.2.52";
|
58 |
$mrt_latest = fgets(fopen("http://semperfiwebdesign.com/wp-security-scan.html", "r"));
|