Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.49 |
Comparing to | |
See all releases |
Code changes from version 2.2.48 to 2.2.49
- readme.txt +2 -1
- scanner.php +7 -7
- securityscan.php +2 -2
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 |
|
@@ -26,6 +26,7 @@ corrective actions.
|
|
26 |
*intrusion detection/prevention<br />
|
27 |
*lock out/log incorrect login attempts<br />
|
28 |
*user enumeration protection<br />
|
|
|
29 |
|
30 |
== Installation ==
|
31 |
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.49
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
26 |
*intrusion detection/prevention<br />
|
27 |
*lock out/log incorrect login attempts<br />
|
28 |
*user enumeration protection<br />
|
29 |
+
*WordPress admin protection/security*
|
30 |
|
31 |
== Installation ==
|
32 |
|
scanner.php
CHANGED
@@ -12,15 +12,15 @@ function mrt_sub0(){?>
|
|
12 |
<!-- <th style="border:0px;"><b>Change Permissions</b></th>-->
|
13 |
</tr>
|
14 |
<?php
|
15 |
-
check_perms("root directory","../","
|
16 |
-
check_perms("wp-includes/","../wp-includes","
|
17 |
check_perms(".htaccess","../.htaccess","0644");
|
18 |
check_perms("wp-admin/index.php","index.php","0644");
|
19 |
-
check_perms("wp-admin/js/","js/","
|
20 |
-
check_perms("wp-content/themes/","../wp-content/themes","
|
21 |
-
check_perms("wp-content/plugins/","../wp-content/plugins","
|
22 |
-
check_perms("wp-admin/","../wp-admin","
|
23 |
-
check_perms("wp-content/","../wp-content","
|
24 |
?>
|
25 |
</table>
|
26 |
</div>
|
12 |
<!-- <th style="border:0px;"><b>Change Permissions</b></th>-->
|
13 |
</tr>
|
14 |
<?php
|
15 |
+
check_perms("root directory","../","0755");
|
16 |
+
check_perms("wp-includes/","../wp-includes","0755");
|
17 |
check_perms(".htaccess","../.htaccess","0644");
|
18 |
check_perms("wp-admin/index.php","index.php","0644");
|
19 |
+
check_perms("wp-admin/js/","js/","0755");
|
20 |
+
check_perms("wp-content/themes/","../wp-content/themes","0755");
|
21 |
+
check_perms("wp-content/plugins/","../wp-content/plugins","0755");
|
22 |
+
check_perms("wp-admin/","../wp-admin","0755");
|
23 |
+
check_perms("wp-content/","../wp-content","0755");
|
24 |
?>
|
25 |
</table>
|
26 |
</div>
|
securityscan.php
CHANGED
@@ -4,7 +4,7 @@ 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");
|
@@ -49,7 +49,7 @@ mrt_errorsoff();
|
|
49 |
<hr align=center size=2 width=500px>
|
50 |
<br /><br />
|
51 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Future Releases</h3></div>
|
52 |
-
<ul><li>one-click change file/folder permissions</li><li>test for XSS vulnerabilities</li><li>intrusion detection/prevention</li><li>lock out/log incorrect login attempts</li><li>user enumeration protection</li></ul>
|
53 |
</div>
|
54 |
<div style="float: left; height: 410;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
55 |
<?php mrt_get_serverinfo(); ?>
|
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.49
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/support.php");
|
49 |
<hr align=center size=2 width=500px>
|
50 |
<br /><br />
|
51 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Future Releases</h3></div>
|
52 |
+
<ul><li>one-click change file/folder permissions</li><li>test for XSS vulnerabilities</li><li>intrusion detection/prevention</li><li>lock out/log incorrect login attempts</li><li>user enumeration protection</li><li>WordPress admin protection/security</li></ul>
|
53 |
</div>
|
54 |
<div style="float: left; height: 410;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
55 |
<?php mrt_get_serverinfo(); ?>
|