Acunetix WP Security - Version 2.2.3.1

Version Description

Download this release

Release Info

Developer hallsofmontezuma
Plugin Icon wp plugin Acunetix WP Security
Version 2.2.3.1
Comparing to
See all releases

Code changes from version 2.2.3 to 2.2.3.1

Files changed (3) hide show
  1. menu.php +1 -0
  2. readme.txt +24 -25
  3. securityscan.php +12 -2
menu.php CHANGED
@@ -168,6 +168,7 @@ function mrt_sub2(){
168
  <h2><?php _e('WP - Security Scan') ?></h2>
169
  <div style="height:299px">
170
  coming soon...
 
171
  </div>
172
  Plugin by <a href="http://semperfiwebdesign.com/" title="Semper Fi Web Design">Semper Fi Web Design</a>
173
  </div>
168
  <h2><?php _e('WP - Security Scan') ?></h2>
169
  <div style="height:299px">
170
  coming soon...
171
+
172
  </div>
173
  Plugin by <a href="http://semperfiwebdesign.com/" title="Semper Fi Web Design">Semper Fi Web Design</a>
174
  </div>
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: hallsofmontezuma
3
  Donate link: http://semperfiwebdesign.com
4
  Tags: security, securityscan, chmod, permissions
5
- Requires at least: 2.3
6
  Tested up to: 2.5
7
- Stable tag: 2.2.3
8
 
9
  Scans your WordPress installation for security vulnerabilities.
10
 
@@ -13,8 +13,8 @@ Scans your WordPress installation for security vulnerabilities.
13
  Scans your WordPress installation for security vulnerabilities and suggests
14
  corrective actions.
15
 
16
- -passwords
17
- -file permissions
18
 
19
  Currently in <b>beta</b>, so use at your own risk if you like testing plugins.
20
 
@@ -40,37 +40,36 @@ For more information, please visit http://codex.wordpress.org/Changing_File_Perm
40
 
41
  == Screenshots ==
42
 
43
- 1. This screen shot description corresponds to screenshot-1.(png|jpg|jpeg|gif). Note that the screenshot is taken from
44
- the directory of the stable readme.txt, so in this case, `/tags/4.3/screenshot-1.png` (or jpg, jpeg, gif)
45
  2. This is the second screen shot
46
 
47
  == Arbitrary section ==
48
 
49
- You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely complicated
50
- plugins where more information needs to be conveyed that doesn't fit into the categories of "description" or
51
- "installation." Arbitrary sections will be shown below the built-in sections outlined above.
52
 
53
- == A brief Markdown Example ==
54
 
55
- Ordered list:
56
 
57
- 1. Some feature
58
- 1. Another feature
59
- 1. Something else about the plugin
60
 
61
- Unordered list:
62
 
63
- * something
64
- * something else
65
- * third thing
 
66
 
67
- Here's a link to [WordPress](http://wordpress.org/ "Your favorite software") and one to [Markdown's Syntax Documentation][markdown syntax].
68
- Titles are optional, naturally.
69
 
70
- [markdown syntax]: http://daringfireball.net/projects/markdown/syntax
71
- "Markdown is what the parser uses to process much of the readme file"
72
 
73
- Markdown uses email style notation for blockquotes and I've been told:
74
- > Asterisks for *emphasis*. Double it up for **strong**.
75
 
76
- `<?php code(); // goes in backticks ?>`
 
 
 
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.3.1
8
 
9
  Scans your WordPress installation for security vulnerabilities.
10
 
13
  Scans your WordPress installation for security vulnerabilities and suggests
14
  corrective actions.
15
 
16
+ -passwords<br />
17
+ -file permissions
18
 
19
  Currently in <b>beta</b>, so use at your own risk if you like testing plugins.
20
 
40
 
41
  == Screenshots ==
42
 
43
+ 1. file/directories permissions check
 
44
  2. This is the second screen shot
45
 
46
  == Arbitrary section ==
47
 
48
+ <strong>Plugin currently in BETA version.
 
 
49
 
50
+ == WordPress Security ==
51
 
52
+ Security Scanner:
53
 
54
+ 1. Scans Wordpress installation for file/directory permissions vulnerabilites
55
+ 1. Recommends corrective actions
56
+ 1. Scans for general security vulnerabilities
57
 
58
+ Join the BETA testers group if:
59
 
60
+ * you have experience as a software tester
61
+ * you have no experience as a software tester
62
+ * you have a WordPress installation dedicated for testing
63
+ * you have a general enthusiasm for WordPress use and/or development
64
 
 
 
65
 
66
+ Visit our homepage at [Semper Fi Web Design](http://semperfiwebdesign.com/ "Raleigh Web Design") or our plugin page at [Semper Fi Plugins][sf plugins].
67
+ We look forward to hearing your comments and suggestions.
68
 
69
+ [sf plugins]: http://semperfiwebdesign.com/wordpress/plugins
70
+ "Raleigh Web Design"
71
 
72
+ > WordPress Security Scanner for *2.3, 2.5*. Although if you're using lower
73
+ > than 2.3 you should go ahead and install it because of **security**.
74
+
75
+ `<?php code(); // backticks ?>`
securityscan.php CHANGED
@@ -4,12 +4,11 @@ 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.3
8
  Author URI: http://semperfiwebdesign.com/
9
  */
10
  require_once('../wp-content/plugins/securityscan/menu.php');
11
  add_action('admin_menu', 'add_men_pg');
12
-
13
  function add_men_pg() {
14
  if (function_exists('add_menu_page')){
15
  add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
@@ -38,6 +37,17 @@ function mrt_opt_mng_pg() {
38
  <h2><?php _e('WP - Security Scan') ?></h2>
39
  <div style="height:299px">
40
  <div id="message" class="updated fade"><p><?php echo "SECURITY SCAN";?></p></div>
 
 
 
 
 
 
 
 
 
 
 
41
  <table width="100%" border="0" cellspacing="0" cellpadding="3" style="text-align:center;">
42
  <tr>
43
  <th style="border:0px;"><b>Name</b></th>
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.3.1
8
  Author URI: http://semperfiwebdesign.com/
9
  */
10
  require_once('../wp-content/plugins/securityscan/menu.php');
11
  add_action('admin_menu', 'add_men_pg');
 
12
  function add_men_pg() {
13
  if (function_exists('add_menu_page')){
14
  add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
37
  <h2><?php _e('WP - Security Scan') ?></h2>
38
  <div style="height:299px">
39
  <div id="message" class="updated fade"><p><?php echo "SECURITY SCAN";?></p></div>
40
+ <?php
41
+
42
+ echo "WordPress versions = ";
43
+ global $wp_version;
44
+ if ($wp_version >= 2.3) $g2k5 = "You need at least version 2.3 for security. This is acceptable.";
45
+ if ($wp_version < 2.3) $g2k5 = "You need at least version 2.3. Upgrade immediately for security reasons.";
46
+ //if ($wp_version == 2.3) $g2k5 = "equals 2.3";
47
+ echo $wp_version . "<br />";
48
+ echo $g2k5;?>
49
+
50
+
51
  <table width="100%" border="0" cellspacing="0" cellpadding="3" style="text-align:center;">
52
  <tr>
53
  <th style="border:0px;"><b>Name</b></th>