• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

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

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

No permission to download
Babak 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...
 

@Babak 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
@Babak 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

@Babak 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
 
@Babak 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.
 
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.
 
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 ?
 
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
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
 

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
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock