Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.2.56.53 |
Comparing to | |
See all releases |
Code changes from version 2.2.56.52 to 2.2.56.53
- readme.txt +1 -1
- securityscan.php +17 -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.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.53
|
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 |
|
@@ -125,18 +125,32 @@ if (file_exists($filename)) {
|
|
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 |
-
|
129 |
$fp = fopen("top_donations.php", "w");
|
130 |
curl_setopt($ch, CURLOPT_FILE, $fp);
|
131 |
curl_setopt($ch, CURLOPT_HEADER, 0);
|
132 |
curl_exec($ch);
|
133 |
curl_close($ch);
|
134 |
fclose($fp);
|
|
|
135 |
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
?>
|
138 |
<br /><br /><div style="text-align:center"><h4>Recent Donations</h4></div><?php
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
$ch = curl_init("http://semperfiwebdesign.com/recent_donations.php");
|
141 |
$fp = fopen("recent_donations.php", "w");
|
142 |
curl_setopt($ch, CURLOPT_FILE, $fp);
|
@@ -144,6 +158,7 @@ curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
144 |
curl_exec($ch);
|
145 |
curl_close($ch);
|
146 |
fclose($fp);
|
|
|
147 |
?>
|
148 |
</div>
|
149 |
<div style="clear:both"></div>
|
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.53
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
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 |
+
/*$ch = curl_init("http://semperfiwebdesign.com/top_donations.php");
|
129 |
$fp = fopen("top_donations.php", "w");
|
130 |
curl_setopt($ch, CURLOPT_FILE, $fp);
|
131 |
curl_setopt($ch, CURLOPT_HEADER, 0);
|
132 |
curl_exec($ch);
|
133 |
curl_close($ch);
|
134 |
fclose($fp);
|
135 |
+
*/
|
136 |
|
137 |
+
$ch = curl_init();
|
138 |
+
curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/top_donations.php");
|
139 |
+
curl_setopt($ch, CURLOPT_HEADER, 0);
|
140 |
+
curl_exec($ch);
|
141 |
+
curl_close($ch);
|
142 |
|
143 |
?>
|
144 |
<br /><br /><div style="text-align:center"><h4>Recent Donations</h4></div><?php
|
145 |
|
146 |
+
|
147 |
+
$ch = curl_init();
|
148 |
+
curl_setopt($ch, CURLOPT_URL, "http://semperfiwebdesign.com/recent_donations.php");
|
149 |
+
curl_setopt($ch, CURLOPT_HEADER, 0);
|
150 |
+
curl_exec($ch);
|
151 |
+
curl_close($ch);
|
152 |
+
|
153 |
+
/*
|
154 |
$ch = curl_init("http://semperfiwebdesign.com/recent_donations.php");
|
155 |
$fp = fopen("recent_donations.php", "w");
|
156 |
curl_setopt($ch, CURLOPT_FILE, $fp);
|
158 |
curl_exec($ch);
|
159 |
curl_close($ch);
|
160 |
fclose($fp);
|
161 |
+
*/
|
162 |
?>
|
163 |
</div>
|
164 |
<div style="clear:both"></div>
|