403Webshell
Server IP : 52.25.153.185  /  Your IP : 216.73.217.84
Web Server : Apache
System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /bitnami/wordpress/wp-content/plugins/testify/updater/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /bitnami/wordpress/wp-content/plugins/testify/updater/license-key-activation.php
<?php
/*
This file contains code from the Easy Digital Downloads Software Licensing addon.
Copyright Easy Digital Downloads; released under the GNU General Public License version 2 or later; used in this project under GNU General Public License version 3 or later (see license.txt).
Modified by Jonathan Hall 2017-2018, 2019-07-29.
*/
if (!defined('ABSPATH')) exit;

function AGS_TESTIFY_activate_license($license) {
    // data to send in our API request
    $api_params = array(
        'edd_action' => 'activate_license',
        'license'    => $license,
        'item_name'  => urlencode( AGS_TESTIFY_ITEM_NAME ), // the name of our product in EDD
        'url'        => home_url()
    );

    // Call the custom API.
    $response = wp_remote_post( AGS_TESTIFY_STORE_URL, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );

    // make sure the response came back okay
    if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) {

        if ( is_wp_error( $response ) ) {
            $message = $response->get_error_message();
        } else {
            $message = __( 'An error occurred, please try again.', 'aspengrove-updater' );
        }

    } else {

        $license_data = json_decode( wp_remote_retrieve_body( $response ) );

        if ( false === $license_data->success ) {

            switch( $license_data->error ) {

                case 'expired' :

                    $message = sprintf(
                        __( 'Your license key expired on %s.', 'aspengrove-updater' ),
                        date_i18n( get_option( 'date_format' ), strtotime( $license_data->expires, current_time( 'timestamp' ) ) )
                    );
                    break;

                case 'revoked' :

                    $message = __( 'Your license key has been disabled.', 'aspengrove-updater' );
                    break;

                case 'missing' :

                    $message = __( 'Invalid license key.', 'aspengrove-updater' );
                    break;

                case 'invalid' :
                case 'site_inactive' :

                    $message = __( 'Your license key is not active for this URL.', 'aspengrove-updater' );
                    break;

                case 'item_name_mismatch' :

                    $message = sprintf( __( 'This appears to be an invalid license key for %s.', 'aspengrove-updater' ), AGS_TESTIFY_ITEM_NAME );
                    break;

                case 'no_activations_left':

                    $message = __( 'Your license key has reached its activation limit. Please deactivate the key on one of your other sites before activating it on this site.', 'aspengrove-updater' );
                    break;

                default :

                    $message = __( 'An error occurred, please try again.', 'aspengrove-updater' );
                    break;
            }

        }

    }

    // Check if anything passed on a message constituting a failure
    if ( ! empty( $message ) ) {
        delete_option('AGS_TESTIFY_license_key');

        $base_url = admin_url( AGS_TESTIFY_PLUGIN_PAGE );
        $redirect = add_query_arg( array( 'sl_activation' => 'false', 'sl_message' => urlencode( $message ), 'license_key' => $license ), $base_url );

        wp_redirect( $redirect );
        exit;
    }

    // $license_data->license will be either "valid" or "invalid"

    define('AGS_TESTIFY_LICENSE_KEY_VALIDATED', true);
    update_option( 'AGS_TESTIFY_license_status', $license_data->license );
    update_option('AGS_TESTIFY_license_key', $license);

    wp_redirect( admin_url( AGS_TESTIFY_PLUGIN_PAGE ) );
    exit;
}

function AGS_TESTIFY_deactivate_license() {

    // run a quick security check
    if( ! check_admin_referer( 'AGS_TESTIFY_license_key_deactivate', 'AGS_TESTIFY_license_key_deactivate' ) )
        return; // get out if we didn't click the Activate button

    // retrieve the license from the database
    $license = trim( get_option( 'AGS_TESTIFY_license_key' ) );

    // data to send in our API request
    $api_params = array(
        'edd_action' => 'deactivate_license',
        'license'    => $license,
        'item_name'  => urlencode( AGS_TESTIFY_ITEM_NAME ), // the name of our product in EDD
        'url'        => home_url()
    );

    // Call the custom API.
    $response = wp_remote_post( AGS_TESTIFY_STORE_URL, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );

    // make sure the response came back okay
    if (is_wp_error( $response )) {
        return sprintf(
            esc_html__('An error occurred during license key deactivation: %s. Please try again or %scontact support%s.', 'aspengrove-updater'),
            esc_html($response->get_error_message()),
            '<a href="'.esc_url(AGS_TESTIFY_STORE_URL).'" target="_blank">',
            '</a>'
        );
    } else if (200 !== wp_remote_retrieve_response_code( $response )) {
        return sprintf(
            esc_html__('An error occurred during license key deactivation. Please try again or %scontact support%s.', 'aspengrove-updater'),
            '<a href="'.esc_url(AGS_TESTIFY_STORE_URL).'" target="_blank">',
            '</a>'
        );
    }

    // decode the license data
    $license_data = json_decode( wp_remote_retrieve_body( $response ) );

    // $license_data->license will be either "deactivated" or "failed"
    delete_option('AGS_TESTIFY_license_status');
    delete_option('AGS_TESTIFY_license_key');
    if ($license_data->license != 'deactivated') {
        return esc_html__('An error occurred during license key deactivation (your license key may be expired). Your license key has been removed from this site, but it may not have been properly deactivated on our server.', 'aspengrove-updater');
    }

    return true;
}
?>

Youez - 2016 - github.com/yon3zu
LinuXploit