Complianz Privacy Suite (GDPR/CCPA) Pro - The Privacy Suite for WP

Complianz Privacy Suite (GDPR/CCPA) Pro - The Privacy Suite for WP v7.5.1

No permission to download

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,065
111,714
120
Tomz updated Complianz Privacy Suite (GDPR/CCPA) Pro - The Privacy Suite for WordPress with a new update entry:

Complianz Privacy Suite (GDPR/CCPA) Premium v6.3.7.1 Nulled

Download Complianz Privacy Suite (GDPR/CCPA) Premium v6.3.7.1 Nulled Free
= v6.3.7.1 =

* Fix: keep cookiebanner html on cookiepolicy if TCF enabled

= v6.3.7 =
* Fix: Change legal document page name on generate, not only on update
* Fix: remove error_log in proof of consent
* Fix: prevent duplicate document status field when Terms & conditions is activated
* Fix: on multisite with TCF enabled, plugin incorrectly showed plugin as not auto updates enabled
* Fix: re-enable caching...

Read the rest of this update entry...
 

the_truth

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Mar 22, 2021
471
308
63

@Tomz it's not fully nulled... What's the best alternative with no risk at this plugin?

i have received this email (the dev track the users):

"
¬
Unlicensed software
¬

¬
During a scheduled search we found below domain using an unlicensed version of Complianz Premium. The use of paid software without a valid license is not allowed and is subject to legal procedures.

Valid licenses are only available on complianz.io. We do not use resellers.
¬
 
Last edited:
  • Like
Reactions: katio

askme

Member
Oct 20, 2022
64
55
18
link.ge
@Tomz it's not fully nulled... What's the best alternative with no risk at this plugin?

i have received this email (the dev track the users):

"
¬
Unlicensed software
¬

¬
During a scheduled search we found below domain using an unlicensed version of Complianz Premium. The use of paid software without a valid license is not al

@Tomz it's not fully nulled... What's the best alternative with no risk at this plugin?

i have received this email (the dev track the users):

"
¬
Unlicensed software
¬

¬
During a scheduled search we found below domain using an unlicensed version of Complianz Premium. The use of paid software without a valid license is not allowed and is subject to legal procedures.

Valid licenses are only available on complianz.io. We do not use resellers.
¬
it works for me but not last version see: https://eeies.com
 

katio

Active member
Babiato Lover
Jun 27, 2019
150
26
28
@Tomz it's not fully nulled... What's the best alternative with no risk at this plugin?

i have received this email (the dev track the users):

"
¬
Unlicensed software
¬

¬
During a scheduled search we found below domain using an unlicensed version of Complianz Premium. The use of paid software without a valid license is not allowed and is subject to legal procedures.

Valid licenses are only available on complianz.io. We do not use resellers.
¬
yes, me too and many users.
 

angeeezeee

Member
May 9, 2022
47
32
18
UK
yes, me too and many users.
Lucky me!
Updating every time new release available, all generated legal documents keeping synced. Never experienced anything unusual.
Cookie scan once a week on live site, and removing cookies marked with Pirated Software. This could be just a some kind of "placebo" to conform my head but working though.
 

holle666

New member
Nov 3, 2022
18
1
3
Hi, I got a mail from the developer "
During a scheduled search we found below domain using an unlicensed version of Complianz Premium. The use of paid software without a valid license is not allowed and is subject to legal procedures.

Valid licenses are only available on complianz.io. We do not use resellers."

What can I do ?
 

nightwolf

New member
May 28, 2022
15
8
3
public function get_license_status($action = 'check_license', $clear_cache = false )
{
$status = $this->get_transient('cmplz_license_status');
if ($clear_cache) {
$status = false;
}

if ( !$status || get_site_option('cmplz_license_activation_limit') === FALSE ){
$status = 'valid';
$transient_expiration = MONTH_IN_SECONDS;
$license = $this->maybe_decode( $this->license_key() );
if ( empty($license) ) {
$this->set_transient('cmplz_license_status', 'valid', $transient_expiration);
delete_site_option('cmplz_license_expires',);
update_site_option('cmplz_license_activation_limit', 'none');
delete_site_option('cmplz_license_activations_left' );
return 'empty';
}

$home_url = home_url();

//the multisite plugin should activate for the main domain
if ( defined('cmplz_premium_multisite') ) {
$home_url = network_site_url();
}

// data to send in our API request
$api_params = array(
'edd_action' => $action,
'license' => $license,
'item_id' => CMPLZ_ITEM_ID,
'url' => $home_url
);
$ssl_verify = get_site_option('cmplz_ssl_verify', 'true' ) === 'true';
$args = apply_filters('cmplz_license_verification_args', array('timeout' => 15, 'sslverify' => $ssl_verify, 'body' => $api_params) );
$response = wp_remote_post($this->website, $args);
$attempts = get_site_option('cmplz_license_attempts', 0);
$attempts++;
if ( is_wp_error($response) || 200 !== wp_remote_retrieve_response_code($response) ) {
if (is_wp_error($response)) {
$message = $response->get_error_message('http_request_failed');
if (strpos($message, '60')!==false ) {
update_site_option('cmplz_ssl_verify', 'false' );
if ($attempts < 5) {
$transient_expiration = 5 * MINUTE_IN_SECONDS;
} else {
update_site_option('cmplz_ssl_verify', 'true' );
}
}
}

$this->set_transient('cmplz_license_status', 'error', $transient_expiration );
update_option('cmplz_license_attempts', $attempts, false );
} else {
update_option('cmplz_license_attempts', 0, false );
$license_data = json_decode(wp_remote_retrieve_body($response));
if ( !$license_data || ($license_data->license === 'failed' ) ) {
$status = 'empty';
delete_site_option('cmplz_license_expires' );
update_site_option('cmplz_license_activation_limit', 'none');
delete_site_option('cmplz_license_activations_left' );
} elseif ( isset($license_data->error) ){
$status = $license_data->error; //revoked, missing, invalid, site_inactive, item_name_mismatch, no_activations_left
if ($status==='no_activations_left') {
update_site_option('cmplz_license_activations_left', 0);
}
} elseif ( $license_data->license === 'invalid' || $license_data->license === 'disabled' ) {
$status = $license_data->license;
} elseif ( true === $license_data->success ) {
$status = $license_data->license; //inactive, expired, valid, deactivated
if ($status === 'deactivated'){
$left = get_site_option('cmplz_license_activations_left', 1 );
$activations_left = is_numeric($left) ? $left + 1 : $left;
update_site_option('cmplz_license_activations_left', $activations_left);
}
}

if ( $license_data ) {
$date = isset($license_data->expires) ? $license_data->expires : '';
if ( $date !== 'lifetime' ) {
if (!is_numeric($date)) $date = strtotime($date);
$date = date(get_option('date_format'), $date);
}
update_site_option('cmplz_license_expires', $date);

if ( isset($license_data->license_limit) ) update_site_option('cmplz_license_activation_limit', $license_data->license_limit);
if ( isset($license_data->activations_left) ) update_site_option('cmplz_license_activations_left', $license_data->activations_left);
}
}

$this->set_transient('cmplz_license_status', $status, $transient_expiration );
}
return $status;
}
it seems it connecting normally in author through this
$response = wp_remote_post($this->website, $args);
a possible solution is
public function get_license_status($action = 'check_license', $clear_cache = false )
{
return 'valid';
}
but there is more connections
 
  • Like
Reactions: NoOoB

nightwolf

New member
May 28, 2022
15
8
3
it seems to be working for me i will wait to see if i get a message
here is how i did it plus the fix from previous post

note i think this was just shared and not touched at all
 

tanierlyons

Well-known member
Staff member
Administrative
Moderator
May 24, 2018
75,065
111,714
120

nightwolf

New member
May 28, 2022
15
8
3

part 1
part 2

part 1
part 2

my null approach to not notify the owner of the plugin, it works so far for me
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu