Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.51 |
Comparing to | |
See all releases |
Code changes from version 2.2.50 to 2.2.51
- readme.txt +1 -1
- securityscan.php +11 -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 |
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.0
|
7 |
Tested up to: 2.5
|
8 |
+
Stable tag: 2.2.51
|
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://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 |
|
@@ -25,7 +25,7 @@ You should have received a copy of the GNU General Public License
|
|
25 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
26 |
*/
|
27 |
|
28 |
-
|
29 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/support.php");
|
30 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
|
31 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
@@ -58,12 +58,21 @@ function mrt_opt_mng_pg() {
|
|
58 |
<br /><div style="float: left;width: 600px; height: 410px;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
59 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Initial Scan</h3></div>
|
60 |
<?php
|
|
|
61 |
mrt_check_version();
|
62 |
mrt_check_table_prefix();
|
63 |
mrt_version_removal();
|
64 |
mrt_errorsoff();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
?>
|
66 |
|
|
|
67 |
<br /><br />
|
68 |
<hr align=center size=2 width=500px>
|
69 |
<br /><br />
|
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.51
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
25 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
26 |
*/
|
27 |
|
28 |
+
$version = "2.2.51";
|
29 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/support.php");
|
30 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
|
31 |
require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
|
58 |
<br /><div style="float: left;width: 600px; height: 410px;border: 1px solid #999;margin: 0 15px 15px 0;padding: 5px;">
|
59 |
<div width=600px style="text-align:center;font-weight:bold;"><h3>Initial Scan</h3></div>
|
60 |
<?php
|
61 |
+
global $wpdb;
|
62 |
mrt_check_version();
|
63 |
mrt_check_table_prefix();
|
64 |
mrt_version_removal();
|
65 |
mrt_errorsoff();
|
66 |
+
$name = $wpdb->get_var("SELECT user_login FROM $wpdb->users WHERE user_login='admin'");
|
67 |
+
if ($name=="admin"){
|
68 |
+
echo '<font color="red">"admin" user exists.</font>';
|
69 |
+
}
|
70 |
+
else{
|
71 |
+
echo '<font color="green">No user "admin".</font>';
|
72 |
+
}
|
73 |
?>
|
74 |
|
75 |
+
|
76 |
<br /><br />
|
77 |
<hr align=center size=2 width=500px>
|
78 |
<br /><br />
|