VaultPress - Version 1.8.7

Version Description

  • 6 March 2017 =
  • Security fix for https://wpvulndb.com/vulnerabilities/8745
Download this release

Release Info

Developer briancolinger
Plugin Icon 128x128 VaultPress
Version 1.8.7
Comparing to
See all releases

Code changes from version 1.8.6 to 1.8.7

class.vaultpress-ixr-ssl-client.php CHANGED
@@ -33,12 +33,16 @@ class VaultPress_IXR_SSL_Client extends IXR_Client {
33
  $this->headers['User-Agent'] = $this->useragent;
34
  $this->headers['Content-Length'] = $length;
35
 
 
 
 
 
36
  if ( class_exists( 'WP_Http' ) ) {
37
  $args = array(
38
  'method' => 'POST',
39
  'body' => $xml,
40
  'headers' => $this->headers,
41
- 'sslverify' => false,
42
  );
43
  if ( $this->timeout )
44
  $args['timeout'] = $this->timeout;
33
  $this->headers['User-Agent'] = $this->useragent;
34
  $this->headers['Content-Length'] = $length;
35
 
36
+ $sslverify = true;
37
+ if ( defined( 'VAULTPRESS_NO_SSL' ) && VAULTPRESS_NO_SSL ) {
38
+ $sslverify = false;
39
+ }
40
  if ( class_exists( 'WP_Http' ) ) {
41
  $args = array(
42
  'method' => 'POST',
43
  'body' => $xml,
44
  'headers' => $this->headers,
45
+ 'sslverify' => $sslverify,
46
  );
47
  if ( $this->timeout )
48
  $args['timeout'] = $this->timeout;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, apokalyptik, briancolinger, josephscott, shaunandrews,
3
  Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
4
  Requires at least: 3.2
5
  Tested up to: 4.7.2
6
- Stable tag: 1.8.6
7
  License: GPLv2
8
 
9
  VaultPress is a subscription service offering real-time backup, automated security scanning, and support from WordPress experts.
@@ -47,6 +47,9 @@ A VaultPress subscription is for a single WordPress site. You can purchase addit
47
  Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
48
 
49
  == Changelog ==
 
 
 
50
  = 1.8.6 - 26 January 2016 =
51
  * Compatibility updates
52
  * Security hotfixes
3
  Tags: security, malware, virus, archive, back up, back ups, backup, backups, scanning, restore, wordpress backup, site backup, website backup
4
  Requires at least: 3.2
5
  Tested up to: 4.7.2
6
+ Stable tag: 1.8.7
7
  License: GPLv2
8
 
9
  VaultPress is a subscription service offering real-time backup, automated security scanning, and support from WordPress experts.
47
  Yes, VaultPress supports Multisite installs. Each site will require its own subscription.
48
 
49
  == Changelog ==
50
+ = 1.8.7 - 6 March 2017 =
51
+ * Security fix for https://wpvulndb.com/vulnerabilities/8745
52
+
53
  = 1.8.6 - 26 January 2016 =
54
  * Compatibility updates
55
  * Security hotfixes
vaultpress.php CHANGED
@@ -18,7 +18,7 @@ class VaultPress {
18
  var $option_name = 'vaultpress';
19
  var $auto_register_option = 'vaultpress_auto_register';
20
  var $db_version = 4;
21
- var $plugin_version = '1.8.6';
22
 
23
  function __construct() {
24
  register_activation_hook( __FILE__, array( $this, 'activate' ) );
18
  var $option_name = 'vaultpress';
19
  var $auto_register_option = 'vaultpress_auto_register';
20
  var $db_version = 4;
21
+ var $plugin_version = '1.8.7';
22
 
23
  function __construct() {
24
  register_activation_hook( __FILE__, array( $this, 'activate' ) );