Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.24 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.23 to 2.2.56.24
- readme.txt +1 -1
- securityscan.php +18 -8
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.24
|
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 |
|
@@ -40,13 +40,14 @@ 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 |
-
|
44 |
-
add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
|
45 |
-
add_submenu_page(__FILE__, 'Scanner', 'Scanner', 8, 'scanner', 'mrt_sub0');
|
46 |
-
add_submenu_page(__FILE__, 'Password Tool', 'Password Tool', 8, 'passwordtool', 'mrt_sub1');
|
47 |
-
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');
|
@@ -91,7 +92,16 @@ if ($name=="admin"){
|
|
91 |
else{
|
92 |
echo '<font color="green">No user "admin".</font>';
|
93 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
?>
|
|
|
95 |
<br /><br /><br />
|
96 |
<hr align=center size=2 width=500px>
|
97 |
<br />
|
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.24
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
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');
|
45 |
+
add_submenu_page(__FILE__, 'Scanner', 'Scanner', 8, 'scanner', 'mrt_sub0');
|
46 |
+
add_submenu_page(__FILE__, 'Password Tool', 'Password Tool', 8, 'passwordtool', 'mrt_sub1');
|
47 |
+
add_submenu_page(__FILE__, 'Database', 'Database', 8, 'database', 'mrt_sub3');
|
48 |
+
add_submenu_page(__FILE__, 'Support', 'Support', 8, 'support', 'mrt_sub2');
|
49 |
+
}
|
50 |
+
}
|
51 |
|
52 |
/*function mrt_root_scripts(){
|
53 |
$siteurl = get_option('siteurl');
|
92 |
else{
|
93 |
echo '<font color="green">No user "admin".</font>';
|
94 |
}
|
95 |
+
?><br /><?php
|
96 |
+
$filename = '.htaccess';
|
97 |
+
if (file_exists($filename)) {
|
98 |
+
echo '<font color="green">.htaccess exists in wp-admin/</font>';
|
99 |
+
} else {
|
100 |
+
echo '<font color="red">The file .htaccess does not exist in wp-admin/.</font>';
|
101 |
+
}
|
102 |
+
|
103 |
?>
|
104 |
+
|
105 |
<br /><br /><br />
|
106 |
<hr align=center size=2 width=500px>
|
107 |
<br />
|