Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.35 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.34 to 2.2.56.35
- readme.txt +1 -1
- securityscan.php +14 -3
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.56.
|
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.56.35
|
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.2.56.
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
@@ -123,10 +123,21 @@ if (file_exists($filename)) {
|
|
123 |
<div style="text-align:center"><em>This plugin is updated as a free services to the WordPress community. Donations of any size are appreciated.</em>
|
124 |
<br /><br />
|
125 |
<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¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">Click here to support this plugin.</a>
|
126 |
-
<br /><br /><h4>
|
127 |
|
128 |
if (function_exists('fopen')) {
|
129 |
-
$file = fopen("http://semperfiwebdesign.com/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
while ( ! feof($file) ) {
|
131 |
$text = fgets($file);
|
132 |
echo '<li>' . $text . '</li>';
|
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.2.56.35
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
123 |
<div style="text-align:center"><em>This plugin is updated as a free services to the WordPress community. Donations of any size are appreciated.</em>
|
124 |
<br /><br />
|
125 |
<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¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8" target="_blank">Click here to support this plugin.</a>
|
126 |
+
<br /><br /><h4>Highest Donations</h4></div><?php
|
127 |
|
128 |
if (function_exists('fopen')) {
|
129 |
+
$file = fopen("http://semperfiwebdesign.com/top_donations.php", "r");
|
130 |
+
while ( ! feof($file) ) {
|
131 |
+
$text = fgets($file);
|
132 |
+
echo '<li>' . $text . '</li>';
|
133 |
+
}
|
134 |
+
fclose($file);
|
135 |
+
}
|
136 |
+
?>
|
137 |
+
<br /><br /><div style="text-align:center"><h4>Recent Donations</h4></div><?php
|
138 |
+
|
139 |
+
if (function_exists('fopen')) {
|
140 |
+
$file = fopen("http://semperfiwebdesign.com/recent_donations.php", "r");
|
141 |
while ( ! feof($file) ) {
|
142 |
$text = fgets($file);
|
143 |
echo '<li>' . $text . '</li>';
|