Acunetix WP Security - Version 2.3.5

Version Description

Download this release

Release Info

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

Code changes from version 2.3.4 to 2.3.5

Files changed (4) hide show
  1. lock.png +0 -0
  2. readme.txt +1 -1
  3. securityscan.php +71 -11
  4. simplepie.inc +13672 -0
lock.png ADDED
Binary file
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.3
7
  Tested up to: 2.7.1
8
- Stable tag: 2.3.4
9
 
10
  Scans your WordPress installation for security vulnerabilities.
11
 
5
  plugins, private, protection, tracking, wordpress
6
  Requires at least: 2.3
7
  Tested up to: 2.7.1
8
+ Stable tag: 2.3.5
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.3.4
8
  Author URI: http://semperfiwebdesign.com/
9
  */
10
 
@@ -30,6 +30,7 @@ require_once(ABSPATH."wp-content/plugins/wp-security-scan/scanner.php");
30
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
31
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/database.php");
32
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/functions.php");
 
33
  //require_once(ABSPATH."wp-content/plugins/wp-security-scan/scripts.js");
34
 
35
 
@@ -45,7 +46,7 @@ remove_action('wp_head', 'wp_generator');
45
  //add_action('admin_head', 'mrt_root_scripts');
46
  function add_men_pg() {
47
  if (function_exists('add_menu_page')){
48
- add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg');
49
  add_submenu_page(__FILE__, 'Scanner', 'Scanner', 8, 'scanner', 'mrt_sub0');
50
  add_submenu_page(__FILE__, 'Password Tool', 'Password Tool', 8, 'passwordtool', 'mrt_sub1');
51
  add_submenu_page(__FILE__, 'Database', 'Database', 8, 'database', 'mrt_sub3');
@@ -113,11 +114,67 @@ if($mrt_latest > $mrt_version)
113
  function wpss_mrt_meta_box3(){
114
 
115
  ?>
116
-
117
- <div style="text-align:center"><em>This plugin is updated as a free service to the WordPress community. Donations of any size are appreciated.</em>
118
- <br /><br />
119
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=Support%20WordPress%20Security%20Scan%20Plugin&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">Click here to support this plugin.</a>
120
- <br /><br /><h4>Highest Donations</h4></div><?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
 
122
  /*$ch = curl_init("http://semperfiwebdesign.com/top_donations.php");
123
  $fp = fopen("top_donations.php", "w");
@@ -128,22 +185,25 @@ if($mrt_latest > $mrt_version)
128
  fclose($fp);
129
  */
130
 
131
- $ch = curl_init();
132
  curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/top_donations.php");
133
  curl_setopt($ch, CURLOPT_HEADER, 0);
134
  curl_exec($ch);
135
  curl_close($ch);
136
-
137
  ?>
138
- <br /><br /><div style="text-align:center"><h4>Recent Donations</h4></div><?php
139
 
 
 
140
 
 
141
  $ch = curl_init();
142
  curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/recent_donations.php");
143
  curl_setopt($ch, CURLOPT_HEADER, 0);
144
  curl_exec($ch);
145
  curl_close($ch);
146
-
147
  /*
148
  $ch = curl_init("http://semperfiwebdesign.com/recent_donations.php");
149
  $fp = fopen("recent_donations.php", "w");
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.3.5
8
  Author URI: http://semperfiwebdesign.com/
9
  */
10
 
30
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/password_tools.php");
31
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/database.php");
32
  require_once(ABSPATH."wp-content/plugins/wp-security-scan/functions.php");
33
+ require_once(ABSPATH."wp-content/plugins/wp-security-scan/simplepie.inc");
34
  //require_once(ABSPATH."wp-content/plugins/wp-security-scan/scripts.js");
35
 
36
 
46
  //add_action('admin_head', 'mrt_root_scripts');
47
  function add_men_pg() {
48
  if (function_exists('add_menu_page')){
49
+ add_menu_page('Security', 'Security', 8, __FILE__, 'mrt_opt_mng_pg',get_option('siteurl') . '/wp-content/plugins/wp-security-scan/lock.png');
50
  add_submenu_page(__FILE__, 'Scanner', 'Scanner', 8, 'scanner', 'mrt_sub0');
51
  add_submenu_page(__FILE__, 'Password Tool', 'Password Tool', 8, 'passwordtool', 'mrt_sub1');
52
  add_submenu_page(__FILE__, 'Database', 'Database', 8, 'database', 'mrt_sub3');
114
  function wpss_mrt_meta_box3(){
115
 
116
  ?>
117
+ <div style="padding:10px;">
118
+ <div style="font-size:13pt;text-align:center;">Highest</div> <?php
119
+ // include('/var/www/html/aioseo/wp-content/plugins/all-in-one-seo-pack/simplepie.inc');
120
+
121
+ $feed = new SimplePie();
122
+
123
+
124
+ $feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/highest-donations/feed/');
125
+ $feed->strip_htmltags(array('p'));
126
+ $feed->init();
127
+ $feed->handle_content_type();
128
+ ?>
129
+ <?php if ($feed->data): ?>
130
+ <?php $items = $feed->get_items(); ?>
131
+
132
+ <?php foreach($items as $item): ?>
133
+ <p>
134
+ <strong><?php echo $item->get_title(); ?></strong>
135
+ <?php echo $item->get_content(); ?>
136
+ </p>
137
+
138
+ <?php endforeach; ?>
139
+ </div>
140
+ <?php endif; ?>
141
+
142
+
143
+ <div style="font-size:13pt;text-align:center;">Recent</div> <?php
144
+ // include('/var/www/html/aioseo/wp-content/plugins/all-in-one-seo-pack/simplepie.inc');
145
+
146
+ $feed = new SimplePie();
147
+
148
+
149
+ $feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/wp-security-scan/feed/');
150
+ $feed->strip_htmltags(array('p'));
151
+ $feed->init();
152
+ $feed->handle_content_type();
153
+ ?>
154
+ <?php if ($feed->data): ?>
155
+ <?php $items = $feed->get_items(); ?>
156
+
157
+ <?php foreach($items as $item): ?>
158
+ <p>
159
+ <strong><?php echo $item->get_title(); ?></strong>
160
+ <?php echo $item->get_content(); ?>
161
+ </p>
162
+
163
+ <?php endforeach; ?>
164
+ </div>
165
+ <?php endif; ?>
166
+
167
+ <hr width="75%"/>
168
+
169
+ <div style="text-align:center"><em>This plugin is updated as a free service to the WordPress community. Donations of any size are appreciated.</em>
170
+ <br /><br />
171
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=Support%20WordPress%20Security%20Scan%20Plugin&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">Click here to support this plugin.</a>
172
+
173
+ </div>
174
+
175
+ <!-- <br /><br /><h4>Highest Donations</h4></div> -->
176
+
177
+ <?php
178
 
179
  /*$ch = curl_init("http://semperfiwebdesign.com/top_donations.php");
180
  $fp = fopen("top_donations.php", "w");
185
  fclose($fp);
186
  */
187
 
188
+ /* $ch = curl_init();
189
  curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/top_donations.php");
190
  curl_setopt($ch, CURLOPT_HEADER, 0);
191
  curl_exec($ch);
192
  curl_close($ch);
193
+ */
194
  ?>
195
+ <!-- <br /><br /><div style="text-align:center"><h4>Recent Donations</h4></div>
196
 
197
+ -->
198
+ <?php
199
 
200
+ /*
201
  $ch = curl_init();
202
  curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/recent_donations.php");
203
  curl_setopt($ch, CURLOPT_HEADER, 0);
204
  curl_exec($ch);
205
  curl_close($ch);
206
+ */
207
  /*
208
  $ch = curl_init("http://semperfiwebdesign.com/recent_donations.php");
209
  $fp = fopen("recent_donations.php", "w");
simplepie.inc ADDED
@@ -0,0 +1,13672 @@