PluginProbe
The WP Remote WordPress Plugin / 6.44
The WP Remote WordPress Plugin v6.44
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
← All changes | info.php +7 -8 6.656.44 View file →
@@ -10,9 +10,9 @@
10 10 public $badgeinfo = 'wprbadge';
11 11 public $ip_header_option = 'wpripheader';
12 12 public $brand_option = 'bv_whitelabel_infos';
13 13 public $wp_lp_whitelabel_option = 'wprLpWhitelabelConf';
14 - public $version = '6.65';
14 + public $version = '6.44';
15 15 public $webpage = 'https://wpremote.com';
16 16 public $appurl = 'https://app.wpremote.com';
17 17 public $slug = 'wpremote/plugin.php';
18 18 public $plug_redirect = 'wprredirect';
@@ -63,17 +63,16 @@
63 63 require_once dirname( __FILE__ ) . '/recover.php';
64 64 $bvsiteinfo = new WPRWPSiteInfo();
65 65 $encoded_url = base64_encode($bvsiteinfo->siteurl());
66 66 $secret = WPRRecover::defaultSecret($this->settings);
67 - $tag = WPRRecover::connectionTag($this->settings);
68 67
69 - #No tag means this site has no salt material in wp-config.php, and there
70 - #is no connection key that would be safe to hand out.
71 - if (empty($secret) || empty($tag)) {
72 - return null;
73 - }
68 + return base64_encode("v2:".$secret.":".$encoded_url.":".$this->plugname);
69 + }
74 70
75 - return base64_encode("v3:".$secret.":".$encoded_url.":".$this->plugname.":".$tag);
71 + public function getDefaultSecret() {
72 + require_once dirname( __FILE__ ) . '/recover.php';
73 + $bvsiteinfo = new WPRWPSiteInfo();
74 + return WPRRecover::defaultSecret($this->settings);
76 75 }
77 76
78 77 public function getLatestElementorDBVersion($file) {
79 78 $managerClass = $file === "elementor/elementor.php" ? '\Elementor\Core\Upgrade\Manager' : '\ElementorPro\Core\Upgrade\Manager';