How to nulled this script

johnnyboy07

Newbie
Joined
Sep 13, 2020
Messages
11
Reaction score
0
Hello,

I bought the wpcanvo plugin, but the vendor no longer provides license keys, so I would like to make the script nulled.

Here is the verification code in attach file, I must modify what to remove the verification of the keys?
 
No idea unless (but not necessarily) I can see the source code. Also make sure it is not in our DNS list, otherwise I am not touching it.
 
Check the source code for a line that contains "CURL". That is often used to get license keys.
 
I don't know where your DNS list is, can you give me the links? If my code is disturbing I can delete it.

This is a link with source code:
https://paiza.io/projects/V7wt-JDpg5lEzzR-WVLPhA#&togetherjs=1ymvSF2RQp
Yes for the WPcanvo theme file_get_contents is used

And if I replace my own file_get_contents file returns 'status' = 'ok' this can work?
 
Nulled packages come with high-security risks which sometimes appear in way of viruses that corrupt your files and windows etc. your data is being secretly stolen while the application works smoothly.

I know most of the nulled scripts are corrupted, but the I bought this plugin but the vendor doesn't license anymore !!!!!

look by going to https://www.yuppythemes.com/wp-content/plugins/wp-licensing-for-theme-and-plugin/ltp-api-activate.php which is used to verify the license we see that it does not function more
 
This is a part of script for veirifcation
PHP:
<?php
    }

    function run_wpc_theme($old_value, $new_value){
        $old_license_key = $old_value['wpc_license_key'];
        $new_license_key = $new_value['wpc_license_key'];

        if($old_license_key != $new_license_key){
            wpc_run_api($new_license_key);
        }
        else{
            $r = array(
                    'status' => 'fail',
                    'message' => 'Invalid license key.',
                );
            die(json_encode($r));
        }
    }

}


function wpc_run_api($license_key = false){
    if(!$license_key){
        return false;
    }

    $postdata = http_build_query(
        array(
            'license_key' => $license_key,
            'domain' => site_url(),
        )
    );

    $opts = array('http' =>
        array(
            'method'  => 'POST',
            'header'  => 'Content-type: application/x-www-form-urlencoded',
            'content' => $postdata
        )
    );

    $context  = stream_context_create($opts);
    $r = file_get_contents('http://www.yuppythemes.com/wp-content/plugins/wp-licensing-for-theme-and-plugin/ltp-api-activate.php', false, $context);

    $r = json_decode($r, true);

    if($r['status'] == 'ok'){
        wpc_activate_wpc_options();
        add_action( 'admin_notices', 'wpc_api_admin_notice__success' );
    }
    else{
        add_action( 'admin_notices', 'wpc_api_admin_notice__error' );
    }
    die(json_encode($r));
}

function wpc_api_admin_notice__error() {
    $class = 'notice notice-error';
    $message = 'WPCanvo: Invalid license key.';

    echo '<div class="'.$class.'"><p>'.$message.'</p></div>';
}

function wpc_api_admin_notice__success() {
    $class = 'notice notice-success';
    $message = 'WPCanvo: Success!! You theme was activated successfully.';

    echo '<div class="'.$class.'"><p>'.$message.'</p></div>';
}
 
Not sure but you can try changing:

"if($old_license_key != $new_license_key)"

to "if($old_license_key == $new_license_key)"


If that doesn't work then try changing:

if($r['status'] == 'ok'){

to if($r['status'] != 'ok'){
 
Not sure but you can try changing:

"if($old_license_key != $new_license_key)"

to "if($old_license_key == $new_license_key)"


If that doesn't work then try changing:

if($r['status'] == 'ok'){

to if($r['status'] != 'ok'){


Thanks, i have try two methodes but neither of the two things work, i have also try but not work too

$stats = "yes";
if($stats == '"yes"){
 
Last edited:
yes this file is available to download, how do you send the file? because I tried to put the google drive link here but it was deleted?
 
Back
Top