HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/classes/license.php
<?php

class PeepSoLicense
{
    const PEEPSO_HOME = 'https://activations.ultrapackv2.com/product/7cac4e69';

    const OPTION_DATA = 'peepso_license_data';

    const PEEPSO_LICENSE_MAYFLY = 'peepso_license_';
    private static $_licenses = NULL;

    /**
     * Verifies the license key for an add-on by the plugin's slug
     * @param string $plugin_edd The PLUGIN_NAME constant value for the plugin being checked
     * @param string $plugin_slug The PLUGIN_SLUG constant value for the plugin being checked
     * @return boolean TRUE if the license is active and valid; otherwise FALSE.
     */
    public static function check_license($plugin_edd, $plugin_slug, $is_admin = FALSE)
    {
        if (FALSE === $is_admin) {
            $is_admin = is_admin();
        }

        $license_data = self::_get_product_data($plugin_slug);

        if (NULL === $license_data) {
            // no license data exists; create it
            $license_data['slug'] = $plugin_slug;
            $license_data['name'] = $plugin_edd;
            $license_data['license'] = '';
            $license_data['state'] = 'invalid';
            $license_data['response'] = 'invalid';
            $license_data['expire'] = 0;
            $license_data['was_null'] = TRUE;
            // write the license data
        }

        if (isset($license_data['response']) && $license_data['response'] == 'valid' && $license_data['expire'] == 'lifetime') {
            $license_data['state'] = 'valid';
            unset($license_data['response']);
            return TRUE;
        }

        if ($license_data['response'] == 'expired') {
            // #6223 Handling expire
            // Somehow, when license expired, state will be invalid.
            // We need to handle the invalid state for expire
            $license_data['state'] = 'valid';

            #6789 assume license is valid if expired less than 72h ago
            if (isset($license_data['expire']) && $license_data['expire'] != 0 && $license_data['expire'] != 'lifetime') {
                $diff = strtotime($license_data['expire']) - time();

                if ($diff < 72 * 3600 && $diff > 0) {
                    unset($license_data['response']);
                }
            }


            return TRUE;
        }

        #4128 assume license is valid if invalid_item_id is returned less than 48h before expiration
        if (isset($license_data['response']) && $license_data['response'] == 'invalid_item_id' && isset($license_data['expire']) && $license_data['expire'] != 0 && $license_data['expire'] != 'lifetime') {

            $diff = strtotime($license_data['expire']) - time();

            if ($diff < 48 * 3600 && $diff > 0) {
                $license_data['state'] = 'valid';
                unset($license_data['response']);
                return TRUE;
            }

        }

        if ($is_admin) {
            self::_set_product_data($plugin_slug, $license_data);
            self::activate_license($plugin_slug, $plugin_edd);
        } else {
            // Frontend will return "FALSE" only in some scenarios
            if (!self::is_valid_key($plugin_slug)) {

                /*
                 * $license_data['response']
                 *
                 * invalid				FALSE - key BAD
                 * disabled				FALSE - key OK, disabled
                 * inactive				FALSE - key OK, not active
                 * item_name_mismatch 	FALSE - key OK, wrong plugin
                 * invalid_item_id 	    FALSE - key OK, wrong plugin, or All Access Pass is broken
                 * missing              FALSE - key doesn't exist
                 * site_inactive		TRUE  - key OK, wrong domain
                 * expired				TRUE  - key OK, license expired
                 */

                if (!array_key_exists('response', $license_data)) {
                    $license_data['response'] = 'valid';
                }

                switch ($license_data['response']) {
                    case 'invalid':
                    case 'disabled':
                    case 'inactive':
                    case 'item_name_mismatch':
                    case 'invalid_item_id':
                    case 'missing':
                        return FALSE;
                        break;
                    default:
                        return TRUE;
                        break;
                }
            }
        }


        // check to see if the license key is valid for the named plugin
        return (self::is_valid_key($plugin_slug));
    }

    public static function get_license($plugin_slug)
    {
        return self::_get_product_data($plugin_slug);
    }

    private static function mayfly_key($plugin_slug)
    {
        return self::PEEPSO_LICENSE_MAYFLY . $plugin_slug;
    }

    /**
     * Activates the license key for a PeepSo add-on
     * @param string $plugin_slug The add-on's slug name
     * @param string $plugin_edd The add-on's full plugin name
     * @return boolean TRUE on successful activation; otherwise FALSE
     */
    public static function activate_license($plugin_slug, $plugin_edd)
    {
        // how long to keep the Mayfly keys?
        $mayfly_lifetime = 7*24 * HOUR_IN_SECONDS;

        // get key stored from config pages
        $key = self::_get_key($plugin_slug);
        $license_data['license'] = $key;
        $license_data['name'] = $plugin_edd;

        if (FALSE === $key || 0 === strlen($key)) {
            return;
        }

        // when asking EDD API use "item_id" if plugin_edd is numeric, otherwise "item_name"
        $key_type = 'item_name';

        if (is_numeric($plugin_edd)) {
            $key_type = 'item_id';
            $plugin_edd = (int) $plugin_edd;
        }

        // #5647 prevent TranslatePress and other magicians from messing up the home URL
        remove_all_filters('home_url');

        $args = array(
            'edd_action' => 'activate_license',
            'license' => $key,
            $key_type => $plugin_edd,
            'url' => home_url(),
        );

        // Use Mayfly key to check for cached values
        $mayfly_key = self::mayfly_key($plugin_slug);

        // If there is no cached value, call home
        $validation_data = PeepSo3_Mayfly::get($mayfly_key);

        if (!is_object($validation_data)) {

            $pscc =  /** checked for NULL**/ (new PeepSoCom_Connect($args))->get();

            if (NULL === $pscc) {
                // If PeepSo.com is down build a fake license for 1 hour

                $mayfly_lifetime = 1 * HOUR_IN_SECONDS;

                $validation_data = new stdClass();

                $validation_data->success = true;

                $validation_data->license = 'valid';
                $validation_data->item_name = $plugin_slug;

                $date = new DateTime();
                $date->modify('+1 year');
                $validation_data->expires = $date->format('Y-m-d H:i:s');

                $validation_data->payment_id = 0;
                $validation_data->customer_name = 'temporary';
                $validation_data->customer_email = 'temporary@peepso.com';
                $validation_data->license_limit = 0;
                $validation_data->site_count = 0;
                $validation_data->activations_left = 'unlimited';
            } else {
                $validation_data = json_decode($pscc);
            }
            PeepSo3_Mayfly::set($mayfly_key, $validation_data, $mayfly_lifetime);
        }

        $license_data['expire'] = isset($validation_data->expires) ? $validation_data->expires : NULL;

        if ('valid' === $validation_data->license) {
            // if parent site reports the license is active, update the stored data for this plugin
            $license_data['state'] = 'valid';
        } else {
            $license_data['state'] = 'invalid';

            // set cache for state of the license
            PeepSo3_Mayfly::set('peepso_has_displayed_license_warning', 1, HOUR_IN_SECONDS);
        }

        // remaining options
        $license_data['response'] = $validation_data->license;
        if (isset($validation_data->error)) {
            $license_data['response'] = $validation_data->error;
        }

        // save
        self::_set_product_data($plugin_slug, $license_data);
    }

    /**
     * Loads the license information from the options table
     */
    private static function _load_licenses()
    {
        if (NULL === self::$_licenses) {
            $lisc = get_option(self::OPTION_DATA, FALSE);
            if (!is_array($lisc)) {
                $lisc = array();
                add_option(self::OPTION_DATA, $lisc, FALSE, FALSE);
            }
            self::$_licenses = $lisc;
        }
    }

    /**
     * Retrieves product data for a given add-on by slug name
     * @param string $plugin_slug The plugin's slug name
     * @return mixed The data array stored for the plugin or NULL if not found
     */
    private static function _get_product_data($plugin_slug)
    {
        self::_load_licenses();
        $plugin_slug = sanitize_key($plugin_slug);

        if (isset(self::$_licenses[$plugin_slug])) {
            // check license data for validity
            $data = self::$_licenses[$plugin_slug];
            $str = md5($plugin_slug . '|' . esc_html($data['name']) .
                '~' . $data['license'] . ',' . $data['expire'] . $data['state']);

            // return data only if checksum validates
            if (isset($data['checksum']) && $str === $data['checksum'])
                return ($data);
        }
        return (NULL);
    }

    /**
     * Sets the stored license information per product
     * @param string $plugin_slug The plugin's slug
     * @param array $data The data array to store
     */
    private static function _set_product_data($plugin_slug, $data)
    {
        /*
         * data:
         *	['slug'] = plugin slug
         *	['name'] = plugin name
         *	['license'] = license key
         *	['state'] = license state
         *	['expire'] = license expiration
         *	['checksum'] = checksum
         */

        $plugin_slug = sanitize_key($plugin_slug);
        $data['slug'] = $plugin_slug;
        $str = $plugin_slug . '|' . esc_html($data['name']) .
            '~' . $data['license'] . ',' . $data['expire'] . $data['state'];
        $data['checksum'] = md5($str);
        self::_load_licenses();
        self::$_licenses[$plugin_slug] = $data;
        update_option(self::OPTION_DATA, self::$_licenses);
    }

    /**
     * Get the license key stored for the named plugin
     * @param string $plugin_slug The PLUGIN_SLUG constant value for the add-on to obtain the license key for
     * @return string The entered license key or FALSE if the named license key is not found
     */
    private static function _get_key($plugin_slug)
    {
        return (PeepSo::get_option('site_license_' . $plugin_slug, FALSE));
    }

    /**
     * Determines if a key is valid and active
     * @param string $plugin Plugin slug name
     * @return boolean TRUE if the key for the named plugin is valid; otherwise FALSE
     */
    public static function is_valid_key($plugin)
    {
        self::_load_licenses();
        $plugin_slug = sanitize_key($plugin);

        if (!isset(self::$_licenses[$plugin_slug])) {
            return (FALSE);
        }

        $data = self::$_licenses[$plugin_slug];

        $str = $plugin_slug . '|' . esc_html($data['name']) .
            '~' . $data['license'] . ',' . $data['expire'] . $data['state'];

        $dt = new PeepSoDate($data['expire']);

        return (md5($str) === $data['checksum'] && 'valid' === $data['state'] && $dt->TimeStamp() > time());
    }

    public static function get_key_state($plugin)
    {
        self::_load_licenses();
        $plugin_slug = sanitize_key($plugin);
        if (!isset(self::$_licenses[$plugin_slug])) {
            return "unknown";
        }

        $data = self::$_licenses[$plugin_slug];

        return array_key_exists('response', $data) ? $data['response'] : 'unknown';
    }

    public static function dump_data()
    {
        self::_load_licenses();
        var_export(self::$_licenses);
    }

    // The old check_updates() doesn't know the difference between plugin_slug and plugin_edd
    // since 1.7.6 plugin_edd can be numeric and different from plugin_slug
    public static function check_updates_new($plugin_edd, $plugin_slug, $plugin_version, $file, $is_core = TRUE, $is_foundation = FALSE)
    {

        // Core plugins are checked only if the version number on PeepSo.com has changed
        if (TRUE == $is_core) {
            // Version number is usually cached in Mayfly
            $mayfly = 'peepso_current_version';
            $version_file = 'version.txt';

            if ($is_foundation) {
                $mayfly = 'peepso_current_version_foundation';
                $version_file = 'version-foundation.txt';
            }
            $version = PeepSo3_Mayfly::get($mayfly);

            // If not, get it from peepso.com
            if (empty($version)) {

                $version = 0;
                $url = 'versioning/' . $version_file;

                $pscc = /** checked for NULL**/ (new PeepSoCom_Connect($url))->get();

                if (NULL === $pscc) {
                    // Definite failure - freeze the checks for a while
                    PeepSo3_Mayfly::set($mayfly, PeepSo::PLUGIN_VERSION, 30);
                } else {
                    // Success - store the version in a 10 minute Mayfly
                    PeepSo3_Mayfly::set($mayfly, $pscc, 10 * 60);
                }

            }

            if (1 != version_compare($version, $plugin_version)) {
                return (FALSE);
            }
        } else {

            // Other plugins use Mayfly cache
            $mayfly = 'peepso_' . $plugin_edd . '_version_check';
            if (strlen(PeepSo3_Mayfly::get($mayfly))) {
                if (!isset($_GET['force-check'])) {
                    return (FALSE);
                }
            }

            // Timeout is randomized between 5 and 8 minutes
            $timeout = 4 * 60 + rand(1 * 60, 4 * 60);
            PeepSo3_Mayfly::set($mayfly, $plugin_version, $timeout);
        }

        // If neither if/else block returned FALSE, the version check will happen
        if (!class_exists('PeepSo_EDD_SL_Plugin_Updater')) {
            include(dirname(__FILE__) . '/license_edd_helper.php');
        }

        if ($is_foundation) {
            PeepSoConfigSettings::get_instance()->set_option('site_license_peepso', '6caa95dedbce385bf4b64210904ea48b');
            self::activate_license(PeepSo::PLUGIN_SLUG_EDD, PeepSo::PLUGIN_EDD);
        }

        $license = PeepSoLicense::get_license($plugin_slug);

        $key_name = 'item_name';
        if (is_numeric($plugin_edd)) {
            $key_name = 'item_id';
        }

        $args = array(
            'version' => $plugin_version,
            'license' => $license['license'],
            $key_name => $plugin_edd,
            'author' => '',
            'url' => self::PEEPSO_HOME,
            'wp_override' => TRUE,
        );

        // Delete EDD cache when force-checking
        if (isset($_GET['force-check'])) {
            $edd_cache_key = 'edd_sl_' . md5(serialize($plugin_slug . $license['license'] . FALSE));
            delete_option($edd_cache_key);
        }

        $edd_updater = new PeepSo_EDD_SL_Plugin_Updater(self::PEEPSO_HOME, $file, $args);
    }


    public static function check_updates($plugin_edd, $plugin_version, $file, $is_core = TRUE)
    {
        // Core plugins are checked only if the version number on PeepSo.com has changed
        if (TRUE == $is_core) {
            // Version number is usually cached in Mayfly
            $mayfly = 'peepso_current_version';
            $version = PeepSo3_Mayfly::get($mayfly);

            // If not, get it from peepso.com
            if (!strlen($version)) {

                $version = 0;
                $pscc =  /** checked for NULL**/ (new PeepSoCom_Connect('versioning/version.txt'))->get();

                // Definite failure - freeze the checks for a while
                if (NULL === $pscc) {
                    // trigger_error('check_updates - failed to load version.txt from PeepSo.com');
                    PeepSo3_Mayfly::set($mayfly, PeepSo::PLUGIN_VERSION, 30);
                } else {
                    // Success - store the version in a 5 minute Mayfly
                    $version = $pscc;
                    PeepSo3_Mayfly::set($mayfly, $version, 5 * 60);
                }
            }

            if (1 != version_compare($version, $plugin_version)) {
                return (FALSE);
            }
        } else {

            // Other plugins use Mayfly cache
            $mayfly = 'peepso_' . $plugin_edd . '_version_check';
            if (strlen(PeepSo3_Mayfly::get($mayfly))) {
                if (!isset($_GET['force-check'])) {
                    return (FALSE);
                }
            }

            // Timeout is randomized between 5 and 8 minutes
            $timeout = 4 * 60 + rand(1 * 60, 4 * 60);
            PeepSo3_Mayfly::set($mayfly, $plugin_version, $timeout);
        }

        // If neither if/else block returned FALSE, the version check will happen
        if (!class_exists('PeepSo_EDD_SL_Plugin_Updater')) {
            include(dirname(__FILE__) . '/license_edd_helper.php');
        }

        $license = PeepSoLicense::get_license($plugin_edd);

        $args = array(
            'version' => $plugin_version,
            'license' => $license['license'],
            'item_name' => $plugin_edd,
            'author' => '',
            'url' => self::PEEPSO_HOME,
        );

        $edd_updater = new PeepSo_EDD_SL_Plugin_Updater(self::PEEPSO_HOME, $file, $args);
    }
}

// EOF