• 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"

REQ Theme ACPT - Custom post types plugin for Wordpress. No coding...

Instead of receiving data from the remote server, I generate a dummy data based on what we will receive from the remote server.
It was impressive, but the License activation is not so easy - as already stated by @prometheus22 . There is more to the code other than the 'ACPT_License_Manager.php' and 'activate_license.php'.

There is another trap that has been placed in the code. The plugin has a way of periodically checking for licenses through the function 'checkLicensePeriodicallyAction()' and also fetches the license through an API call using a function 'fetchLicenseAction()' This has to be taken care of or else when you start using the plugin, it will be deactivated after a while, (I have tested it).

Also, in the nulled file that you provided, you have hard-coded a few details, which might cause some issues:

So, instead of
PHP:
return ACPT_Key_Value_Storage::set(self::PRIVATE_KEY_NAME, [
                'activation_id' => 1,
                'license' => md5($code),
                'site_name' => $siteName,
                'site_url' => $siteUrl,
                'user_email' => 'babia.to',
                'user_id' => 'nCODE',
                'ip' => $ip,
            ]);

We can use the variables already assigned at the beginning of the 'ACPT_License_Manager.php' file, like so:
PHP:
$user_Id = get_current_user_id();
$activation_id = bin2hex(random_bytes(16));

return ACPT_Key_Value_Storage::set(self::PRIVATE_KEY_NAME, [
                'activation_id' => $activation_id,
                'license' => md5($code),
                'site_name' => $siteName,
                'site_url' => $siteUrl,
                'user_email' => $email,
                'user_id' => $user_Id,
                'ip' => $ip,
            ]);

I have just given a cursory glance at the code, there might be more to it, will work on it, this weekend.
@nCODE appreciate your effort, great work !!!
 
  • Like
Reactions: dieselbaby
It was impressive, but the License activation is not so easy - as already stated by @prometheus22 . There is more to the code other than the 'ACPT_License_Manager.php' and 'activate_license.php'.

There is another trap that has been placed in the code. The plugin has a way of periodically checking for licenses through the function 'checkLicensePeriodicallyAction()' and also fetches the license through an API call using a function 'fetchLicenseAction()' This has to be taken care of or else when you start using the plugin, it will be deactivated after a while, (I have tested it).

Also, in the nulled file that you provided, you have hard-coded a few details, which might cause some issues:

So, instead of
PHP:
return ACPT_Key_Value_Storage::set(self::PRIVATE_KEY_NAME, [
                'activation_id' => 1,
                'license' => md5($code),
                'site_name' => $siteName,
                'site_url' => $siteUrl,
                'user_email' => 'babia.to',
                'user_id' => 'nCODE',
                'ip' => $ip,
            ]);

We can use the variables already assigned at the beginning of the 'ACPT_License_Manager.php' file, like so:
PHP:
$user_Id = get_current_user_id();
$activation_id = bin2hex(random_bytes(16));

return ACPT_Key_Value_Storage::set(self::PRIVATE_KEY_NAME, [
                'activation_id' => $activation_id,
                'license' => md5($code),
                'site_name' => $siteName,
                'site_url' => $siteUrl,
                'user_email' => $email,
                'user_id' => $user_Id,
                'ip' => $ip,
            ]);

I have just given a cursory glance at the code, there might be more to it, will work on it, this weekend.
@nCODE appreciate your effort, great work !!!
Thank you for correcting and telling the loopholes in the code. At that time when I was coding it, I was also in a hurry to prepare for my departure on Monday. So I just looked at some of the code and nulled it, I didn't see the whole code and just focused on deactivating the license.

Now I'm on the ship and will arrive in a few hours, maybe when I get home I'll fix the code.

Btw, thanks for the feedback bro! I really appreciate it:D
 
Hi @demidoff and @nCODE, here the latest version 1.0.190 - It would be Awesome if you guys can Null this plugin properly. Thank You in advance :)
 

Attachments

  • acpt-v1.0.190.zip
    13.5 MB · Views: 12
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