Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.46 |
Comparing to | |
See all releases |
Code changes from version 2.2.42 to 2.2.46
- functions.php +3 -3
- readme.txt +16 -7
- securityscan.php +2 -2
functions.php
CHANGED
@@ -81,14 +81,14 @@ function mrt_get_serverinfo() {
|
|
81 |
<?php
|
82 |
function mrt_check_table_prefix(){
|
83 |
if($GLOBALS['table_prefix']=='wp_'){
|
84 |
-
echo '<font color="red">Your table prefix should not be <i>wp_</i>. Please <a href="
|
85 |
}else{
|
86 |
echo '<font color="green">Your table prefix is not <i>wp_</i>.</font><br />';
|
87 |
}
|
88 |
}
|
89 |
|
90 |
function mrt_errorsoff(){
|
91 |
-
echo '<font color="green">WordPress DB Errors turned off
|
92 |
}
|
93 |
|
94 |
function mrt_wpdberrors()
|
@@ -99,7 +99,7 @@ function mrt_wpdberrors()
|
|
99 |
}
|
100 |
|
101 |
function mrt_version_removal(){
|
102 |
-
echo '<font color="green">Your WordPress version is successfully hidden
|
103 |
}
|
104 |
|
105 |
function mrt_remove_wp_version()
|
81 |
<?php
|
82 |
function mrt_check_table_prefix(){
|
83 |
if($GLOBALS['table_prefix']=='wp_'){
|
84 |
+
echo '<font color="red">Your table prefix should not be <i>wp_</i>. Please <a href="wp-admin/admin.php?page=database">click here</a> to change it.</font><br />';
|
85 |
}else{
|
86 |
echo '<font color="green">Your table prefix is not <i>wp_</i>.</font><br />';
|
87 |
}
|
88 |
}
|
89 |
|
90 |
function mrt_errorsoff(){
|
91 |
+
echo '<font color="green">WordPress DB Errors turned off.</font><br />';
|
92 |
}
|
93 |
|
94 |
function mrt_wpdberrors()
|
99 |
}
|
100 |
|
101 |
function mrt_version_removal(){
|
102 |
+
echo '<font color="green">Your WordPress version is successfully hidden.</font><br />';
|
103 |
}
|
104 |
|
105 |
function mrt_remove_wp_version()
|
readme.txt
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
=== Plugin Name ===
|
2 |
Contributors: hallsofmontezuma
|
3 |
Donate link: http://semperfiwebdesign.com
|
4 |
-
Tags: security, securityscan, chmod, permissions
|
|
|
5 |
Requires at least: 2.0
|
6 |
Tested up to: 2.5
|
7 |
-
Stable tag: 2.2.
|
8 |
|
9 |
Scans your WordPress installation for security vulnerabilities.
|
10 |
|
@@ -21,15 +22,20 @@ corrective actions.
|
|
21 |
**Future Releases**
|
22 |
|
23 |
*one-click change file/folder permissions<br />
|
24 |
-
*test for XSS vulnerabilities
|
|
|
|
|
25 |
|
26 |
|
27 |
-
Currently in <b>beta</b>, so use at your own risk if you like testing plugins.
|
28 |
-
|
29 |
== Installation ==
|
30 |
|
31 |
-
1.
|
32 |
-
2.
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
== Frequently Asked Questions ==
|
35 |
|
@@ -53,6 +59,9 @@ before launching exploit code. Removing your WordPress blog version may
|
|
53 |
discourage some attackers and certainly will mitigate virus and worm programs
|
54 |
that rely on software versions.
|
55 |
|
|
|
|
|
|
|
56 |
== Screenshots ==
|
57 |
|
58 |
1. file/directories permissions check
|
1 |
=== Plugin Name ===
|
2 |
Contributors: hallsofmontezuma
|
3 |
Donate link: http://semperfiwebdesign.com
|
4 |
+
Tags: security, securityscan, chmod, permissions, admin, administration, authentication, database, dashboard, post, notification, password, plugin, posts
|
5 |
+
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.46
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
11 |
|
22 |
**Future Releases**
|
23 |
|
24 |
*one-click change file/folder permissions<br />
|
25 |
+
*test for XSS vulnerabilities<br />
|
26 |
+
*intrusion detection/prevention<br />
|
27 |
+
*lock out/log incorrect login attempts<br />
|
28 |
|
29 |
|
|
|
|
|
30 |
== Installation ==
|
31 |
|
32 |
+
1. Create backup.
|
33 |
+
2. Upload the zip file to the `/wp-content/plugins/` directory
|
34 |
+
3. Unzip.
|
35 |
+
4. Activate the plugin through the 'Plugins' menu in WordPress
|
36 |
+
|
37 |
+
|
38 |
+
Please let me know any bugs, improvements, comments, suggestions.
|
39 |
|
40 |
== Frequently Asked Questions ==
|
41 |
|
59 |
discourage some attackers and certainly will mitigate virus and worm programs
|
60 |
that rely on software versions.
|
61 |
|
62 |
+
NOTE: Hiding your version of WordPress may break any plugins you have which
|
63 |
+
are version dependant.
|
64 |
+
|
65 |
== Screenshots ==
|
66 |
|
67 |
1. file/directories permissions check
|
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
|
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.46
|
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</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(); ?>
|