Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 3.5.0.0
- * @ Author : DeZender
- * @ Release on : 22.06.2018
- * @ Official site : http://DeZender.Net
- *
- */
- if (!function_exists('curl_init') || !function_exists('curl_exec') || !function_exists('curl_setopt')) {
- exit('PHP Curl Library not found');
- }
- static $temp_lfile = null;
- $license_data = get_license_file_data();
- $run_check = license_run_check($license_data);
- if ($run_check) {
- $domain = str_replace('www.', '', $_SERVER['SERVER_NAME']);
- $directory = __DIR__;
- if (isset($_SERVER['HTTP_CLIENT_IP'])) {
- $ip = $_SERVER['HTTP_CLIENT_IP'];
- } else {
- if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
- $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
- } else {
- $ip = $_SERVER['REMOTE_ADDR'];
- }
- }
- $server_ip = $_SERVER['SERVER_ADDR'];
- $entered = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
- $referer = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '');
- $address = 'https://thewp.com.tr/license/checking/ec1273e277a43e09a023e732f9571dc8/119?';
- $address .= 'domain='.$domain;
- $address .= '&server_ip='.$server_ip;
- $address .= '&user_ip='.$ip;
- $address .= '&entered_url='.$entered;
- $address .= '&referer_url='.$referer;
- $address .= '&directory='.$directory;
- $resultErr = false;
- $result = use_license_curl($address, $resultErr);
- if ('OK' == $result) {
- $checkFileData = crypt_chip('encrypt', json_encode(['last-check-time' => date('Y-m-d H:i:s'), 'next-check-time' => date('Y-m-d H:i:s', strtotime('+1 day'))]), 'aVk4ZFR3bmhKMEhxUm5oanR0b2IwOUc4NituYlAwellXNGp2ekpwem5KcTJZVjdyN0pKMVdFcWFaZDNydjJCbw==');
- file_put_contents(__DIR__.DIRECTORY_SEPARATOR.'LICENSE', $checkFileData);
- } else {
- $err = use_license_curl('https://thewp.com.tr/license/error?user_ip='.$ip, $resultErr);
- if ('' == $err) {
- $err = 'LICENSE CURL CONNECTION ERROR';
- }
- exit($err);
- }
- }
- include 'admin/tema-yonetim.php';
- $tema_ayarlar = get_option('yonetim_paneli');
- $temayolu = get_bloginfo('template_url');
- $siteyolu = get_bloginfo('url');
- include_once 'functions-ek.php';
- add_filter('pre_get_posts', 'SearchFilter');
- if (function_exists('wp_nav_menu') && function_exists('add_theme_support')) {
- add_theme_support('nav-menus');
- ...............................................................................
- .............................................
- ...........................
Advertisement
Add Comment
Please, Sign In to add comment