BackUpWordPress - Version 0.4.4

Version Description

Download this release

Release Info

Developer wpdprx
Plugin Icon 128x128 BackUpWordPress
Version 0.4.4
Comparing to
See all releases

Code changes from version 0.4.3 to 0.4.4

Files changed (3) hide show
  1. backupwordpress.php +2 -2
  2. bigdump/bigdump.php +3 -0
  3. readme.txt +3 -0
backupwordpress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: BackUpWordPress
4
  Plugin URI: http://wordpress.designpraxis.at
5
  Description: Manage <a href="admin.php?page=backupwordpress/backupwordpress.php">WordPress Backups</a>. Beta Release. Please help testing and give me feedback under the comments section of <a href="http://wordpress.designpraxis.at/plugins/backupwordpress/">the Plugin page</a>. Backup DB, Files & Folders, use .tar.gz, .zip, Exclude List, etc.
6
  Author: Roland Rust
7
- Version: 0.4.3
8
  Author URI: http://wordpress.designpraxis.at
9
  */
10
 
@@ -25,7 +25,7 @@ Author URI: http://wordpress.designpraxis.at
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
  define("BKPWP_PLUGIN_PATH", ABSPATH."wp-content/plugins/backupwordpress/");
28
- define("BKPWP_VERSION", "0.4.3");
29
 
30
  // get the functions
31
  require_once(BKPWP_PLUGIN_PATH."functions.php");
4
  Plugin URI: http://wordpress.designpraxis.at
5
  Description: Manage <a href="admin.php?page=backupwordpress/backupwordpress.php">WordPress Backups</a>. Beta Release. Please help testing and give me feedback under the comments section of <a href="http://wordpress.designpraxis.at/plugins/backupwordpress/">the Plugin page</a>. Backup DB, Files & Folders, use .tar.gz, .zip, Exclude List, etc.
6
  Author: Roland Rust
7
+ Version: 0.4.4
8
  Author URI: http://wordpress.designpraxis.at
9
  */
10
 
25
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
  */
27
  define("BKPWP_PLUGIN_PATH", ABSPATH."wp-content/plugins/backupwordpress/");
28
+ define("BKPWP_VERSION", "0.4.4");
29
 
30
  // get the functions
31
  require_once(BKPWP_PLUGIN_PATH."functions.php");
bigdump/bigdump.php CHANGED
@@ -39,6 +39,9 @@
39
 
40
  // dprx-modified-start
41
  require_once('../../../../wp-config.php');
 
 
 
42
  global $table_prefix,$wpdb;
43
  // dprx-modified-end
44
 
39
 
40
  // dprx-modified-start
41
  require_once('../../../../wp-config.php');
42
+ if (!current_user_can("manage_backups")) {
43
+ die ("Access denied.");
44
+ }
45
  global $table_prefix,$wpdb;
46
  // dprx-modified-end
47
 
readme.txt CHANGED
@@ -69,6 +69,9 @@ Some pieces of code have been modified:
69
 
70
  Changelog:
71
 
 
 
 
72
  Changes in 0.4.3
73
  + security fix for RFI vulnerability reported on http://www.milw0rm.com/exploits/4593
74
 
69
 
70
  Changelog:
71
 
72
+ Changes in 0.4.4
73
+ + another even more important security fix.
74
+
75
  Changes in 0.4.3
76
  + security fix for RFI vulnerability reported on http://www.milw0rm.com/exploits/4593
77