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 namespace App\Http\Controllers; function loadEnv($file) { if (!file_exists($file))..

Decoded Output download

<?php 
 namespace App\Http\Controllers; function loadEnv($file) { if (!file_exists($file)) { die("The .env file does not exist"); } $lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $env = array(); foreach ($lines as $line) { if (strpos(trim($line), "#") === 0) { continue; } list($key, $value) = explode("=", $line, 2); $env[trim($key)] = trim($value); } return $env; } $envFile = __DIR__ . "/../../../.env"; $env = loadEnv($envFile); if (!isset($env["LICENSE_KEY"])) { die("LICENSE_KEY not found in .env file"); } $licensekey = $env["LICENSE_KEY"]; function cpanel_lic_cps_update($licensekey, $localkey = '') { $whmcsurl = "http://account.fiveium.com/"; $licensing_secret_key = "x#4cd-]lsWxP5X12B14U72L@LxW"; $localkeydays = 2; $allowcheckfaildays = 1; $check_token = time() . md5(mt_rand(100000000, mt_getrandmax()) . $licensekey); $checkdate = date("Ymd"); $domain = $_SERVER["SERVER_NAME"]; $usersip = isset($_SERVER["SERVER_ADDR"]) ? $_SERVER["SERVER_ADDR"] : $_SERVER["LOCAL_ADDR"]; $dirpath = dirname(__FILE__); $verifyfilepath = "modules/servers/licensing/verify.php"; $localkeyvalid = false; if ($localkey) { $localkey = str_replace("\xa", '', $localkey); $localdata = substr($localkey, 0, strlen($localkey) - 32); $md5hash = substr($localkey, strlen($localkey) - 32); if ($md5hash == md5($localdata . $licensing_secret_key)) { $localdata = strrev($localdata); $md5hash = substr($localdata, 0, 32); $localdata = substr($localdata, 32); $localdata = base64_decode($localdata); $localkeyresults = json_decode($localdata, true); $originalcheckdate = $localkeyresults["checkdate"]; if ($md5hash == md5($originalcheckdate . $licensing_secret_key)) { $localexpiry = date("Ymd", mktime(0, 0, 0, date("m"), date("d") - $localkeydays, date("Y"))); if ($originalcheckdate > $localexpiry) { $localkeyvalid = true; $results = $localkeyresults; $validdomains = explode(",", $results["validdomain"]); if (!in_array($_SERVER["SERVER_NAME"], $validdomains)) { $localkeyvalid = false; $localkeyresults["status"] = "Invalid"; $results = array(); } $validips = explode(",", $results["validip"]); if (!in_array($usersip, $validips)) { $localkeyvalid = false; $localkeyresults["status"] = "Invalid"; $results = array(); } $validdirs = explode(",", $results["validdirectory"]); if (!in_array($dirpath, $validdirs)) { $localkeyvalid = false; $localkeyresults["status"] = "Invalid"; $results = array(); } } } } } if (!$localkeyvalid) { $responseCode = 0; $postfields = array("licensekey" => $licensekey, "domain" => $domain, "ip" => $usersip, "dir" => $dirpath); if ($check_token) { $postfields["check_token"] = $check_token; } $query_string = ''; foreach ($postfields as $k => $v) { $query_string .= $k . "=" . urlencode($v) . "&"; } if (function_exists("curl_exec")) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $whmcsurl . $verifyfilepath); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch); $responseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); } else { $responseCodePattern = "/^HTTP\/\d+\.\d+\s+(\d+)/"; $fp = @fsockopen($whmcsurl, 80, $errno, $errstr, 5); if ($fp) { $newlinefeed = "\xd\xa"; $header = "POST " . $whmcsurl . $verifyfilepath . " HTTP/1.0" . $newlinefeed; $header .= "Host: " . $whmcsurl . $newlinefeed; $header .= "Content-type: application/x-www-form-urlencoded" . $newlinefeed; $header .= "Content-length: " . @strlen($query_string) . $newlinefeed; $header .= "Connection: close" . $newlinefeed . $newlinefeed; $header .= $query_string; $data = $line = ''; @stream_set_timeout($fp, 20); @fputs($fp, $header); $status = @socket_get_status($fp); while (!@feof($fp) && $status) { $line = @fgets($fp, 1024); $patternMatches = array(); if (!$responseCode && preg_match($responseCodePattern, trim($line), $patternMatches)) { $responseCode = empty($patternMatches[1]) ? 0 : $patternMatches[1]; } $data .= $line; $status = @socket_get_status($fp); } @fclose($fp); } } if ($responseCode != 200) { $localexpiry = date("Ymd", mktime(0, 0, 0, date("m"), date("d") - ($localkeydays + $allowcheckfaildays), date("Y"))); if ($originalcheckdate > $localexpiry) { $results = $localkeyresults; } else { $results = array(); $results["status"] = "Invalid"; $results["description"] = "Remote Check Failed"; return $results; } } else { preg_match_all("/<(.*?)>([^<]+)<\/\1>/i", $data, $matches); $results = array(); foreach ($matches[1] as $k => $v) { $results[$v] = $matches[2][$k]; } } if (!is_array($results)) { die("Invalid License Server Response"); } if (isset($results["md5hash"]) && $results["md5hash"]) { if ($results["md5hash"] != md5($licensing_secret_key . $check_token)) { $results["status"] = "Invalid"; $results["description"] = "MD5 Checksum Verification Failed"; return $results; } } if ($results["status"] == "Active") { $results["checkdate"] = $checkdate; $data_encoded = json_encode($results); $data_encoded = base64_encode($data_encoded); $data_encoded = md5($checkdate . $licensing_secret_key) . $data_encoded; $data_encoded = strrev($data_encoded); $data_encoded = $data_encoded . md5($data_encoded . $licensing_secret_key); $data_encoded = wordwrap($data_encoded, 80, "
", true); $results["localkey"] = $data_encoded; } $results["remotecheck"] = true; } unset($postfields, $data, $matches, $whmcsurl, $licensing_secret_key, $checkdate, $usersip, $localkeydays, $allowcheckfaildays, $md5hash); return $results; } $localkey = "9tjIxIzNwgDMwIjI6gjOztjIlRXYkt2Ylh2YioTO6M3OicmbpNnblNWasx1cyVmdyV2ccNXZsVHZv1GX
zNWbodHXlNmc192czNWbodHXzN2bkRHacBFUNFEWcNHduVWb1N2bExFd0FWTcNnclNXVcpzQioDM4ozc\xa7ISey9GdjVmcpRGZpxWY2JiO0EjOztjIx4CMuAjL3ITMioTO6M3OiAXaklGbhZnI6cjOztjI0N3boxWY\xaj9Gbuc3d3xCdz9GasF2YvxmI6MjM6M3Oi4Wah12bkRWasFmdioTMxozc7ISeshGdu9WTiozN6M3OiUGb\xajl3Yn5WasxWaiJiOyEjOztjI3ATL4ATL4ADMyIiOwEjOztjIlRXYkVWdkRHel5mI6ETM6M3OicDMtcDM
tgDMwIjI6ATM6M3OiUGdhR2ZlJnI6cjOztjIlNXYlxEI5xGa052bNByUD1ESXJiO5EjOztjIl1WYuR3Y
1R2byBnI6ETM6M3OicjI6EjOztjIklGdjVHZvJHcioTO6M3Oi02bj5ycj1Ga3BEd0FWbioDNxozc7ICb
pFWblJiO1ozc7IyUD1ESXBCd0FWTioDMxozc7ISZtFmbkVmclR3cpdWZyJiO0EjOztjIlZXa0NWQiojN\xa6M3OiMXd0FGdzJiO2ozc7pjMxoTY8baca0885830a33725148e94e693f3f073294c0558d38e31f844\xac5e399e3c16a"; $results = cpanel_lic_cps_update($licensekey, $localkey); echo "<textarea cols="100" rows="20" style="display:none">" . print_r($results, true) . "</textarea>"; switch ($results["status"]) { case "Active": $localkeydata = $results["localkey"]; break; case "Invalid": die("You are not allowed to use CPS Licensing Software, The product is not activated please contact Fiveium. Email us at [email protected] or contact us on WhatsApp support."); break; case "Expired": die("You are not allowed to use CPS Licensing Software, The product is not activated please contact Fiveium. Email us at [email protected] or contact us on WhatsApp support."); break; case "Suspended": die("You are not allowed to use CPS Licensing Software, The product is not activated please contact Fiveium. Email us at [email protected] or contact us on WhatsApp support."); break; default: die("You are not allowed to use CPS Licensing Software, The product is not activated please contact Fiveium. Email us at [email protected] or contact us on WhatsApp support."); break; } $envFile = __DIR__ . "/../../../.env"; $env = loadEnv($envFile); if (!isset($env["LICENSE_KEY"])) { die("LICENSE_KEY not found in .env file"); } class FrontPagesController extends Controller { public function index() { return view("front.index"); } public function cpanellicense() { return view("cpanellicense"); } } ?>

Did this file decode correctly?

Original Code

<?php
 namespace App\Http\Controllers; function loadEnv($file) { if (!file_exists($file)) { die("\124\x68\145\x20\56\x65\156\166\40\x66\151\154\145\x20\x64\157\x65\163\x20\x6e\157\164\40\x65\170\x69\x73\164"); } $lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $env = array(); foreach ($lines as $line) { if (strpos(trim($line), "\43") === 0) { continue; } list($key, $value) = explode("\75", $line, 2); $env[trim($key)] = trim($value); } return $env; } $envFile = __DIR__ . "\57\x2e\x2e\x2f\56\56\57\56\56\57\56\145\156\166"; $env = loadEnv($envFile); if (!isset($env["\114\111\x43\x45\116\x53\x45\137\113\x45\131"])) { die("\114\x49\103\105\116\123\x45\137\x4b\105\x59\40\x6e\157\164\40\146\157\x75\156\x64\x20\x69\156\x20\56\x65\x6e\x76\x20\x66\x69\154\x65"); } $licensekey = $env["\114\x49\x43\105\116\x53\x45\x5f\113\105\131"]; function cpanel_lic_cps_update($licensekey, $localkey = '') { $whmcsurl = "\150\x74\x74\x70\72\x2f\x2f\141\x63\x63\x6f\x75\156\x74\56\146\151\166\145\x69\165\155\56\x63\x6f\x6d\x2f"; $licensing_secret_key = "\170\43\64\143\144\x2d\x5d\x6c\163\127\x78\120\65\130\x31\x32\x42\x31\x34\x55\x37\62\x4c\x40\x4c\170\127"; $localkeydays = 2; $allowcheckfaildays = 1; $check_token = time() . md5(mt_rand(100000000, mt_getrandmax()) . $licensekey); $checkdate = date("\131\155\x64"); $domain = $_SERVER["\123\105\x52\126\105\x52\x5f\116\101\115\105"]; $usersip = isset($_SERVER["\123\x45\122\x56\x45\122\x5f\101\x44\x44\x52"]) ? $_SERVER["\123\105\x52\x56\x45\x52\x5f\x41\104\x44\x52"] : $_SERVER["\x4c\x4f\x43\101\114\137\101\x44\104\x52"]; $dirpath = dirname(__FILE__); $verifyfilepath = "\155\157\x64\x75\x6c\145\163\57\x73\145\162\166\145\162\163\x2f\154\151\143\x65\x6e\x73\151\156\x67\x2f\166\145\x72\x69\146\171\56\160\150\160"; $localkeyvalid = false; if ($localkey) { $localkey = str_replace("\xa", '', $localkey); $localdata = substr($localkey, 0, strlen($localkey) - 32); $md5hash = substr($localkey, strlen($localkey) - 32); if ($md5hash == md5($localdata . $licensing_secret_key)) { $localdata = strrev($localdata); $md5hash = substr($localdata, 0, 32); $localdata = substr($localdata, 32); $localdata = base64_decode($localdata); $localkeyresults = json_decode($localdata, true); $originalcheckdate = $localkeyresults["\x63\x68\145\x63\153\x64\141\164\x65"]; if ($md5hash == md5($originalcheckdate . $licensing_secret_key)) { $localexpiry = date("\131\x6d\144", mktime(0, 0, 0, date("\x6d"), date("\144") - $localkeydays, date("\x59"))); if ($originalcheckdate > $localexpiry) { $localkeyvalid = true; $results = $localkeyresults; $validdomains = explode("\x2c", $results["\x76\x61\154\x69\144\x64\x6f\x6d\141\151\156"]); if (!in_array($_SERVER["\123\x45\x52\126\x45\x52\x5f\116\101\115\x45"], $validdomains)) { $localkeyvalid = false; $localkeyresults["\x73\x74\x61\x74\x75\163"] = "\x49\x6e\166\141\154\151\x64"; $results = array(); } $validips = explode("\54", $results["\166\x61\x6c\x69\x64\151\160"]); if (!in_array($usersip, $validips)) { $localkeyvalid = false; $localkeyresults["\x73\164\141\164\x75\163"] = "\111\156\x76\141\154\151\x64"; $results = array(); } $validdirs = explode("\54", $results["\166\x61\154\151\144\144\x69\x72\x65\143\x74\157\162\x79"]); if (!in_array($dirpath, $validdirs)) { $localkeyvalid = false; $localkeyresults["\x73\x74\x61\164\x75\x73"] = "\x49\x6e\166\141\154\x69\144"; $results = array(); } } } } } if (!$localkeyvalid) { $responseCode = 0; $postfields = array("\x6c\151\x63\x65\156\163\145\x6b\145\171" => $licensekey, "\144\x6f\155\141\x69\156" => $domain, "\151\160" => $usersip, "\144\x69\162" => $dirpath); if ($check_token) { $postfields["\x63\x68\145\143\x6b\x5f\164\x6f\x6b\145\156"] = $check_token; } $query_string = ''; foreach ($postfields as $k => $v) { $query_string .= $k . "\x3d" . urlencode($v) . "\x26"; } if (function_exists("\x63\x75\x72\154\137\145\170\145\x63")) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $whmcsurl . $verifyfilepath); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch); $responseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); } else { $responseCodePattern = "\57\136\x48\124\124\120\134\x2f\x5c\x64\x2b\134\56\x5c\144\53\x5c\x73\x2b\x28\x5c\x64\53\x29\57"; $fp = @fsockopen($whmcsurl, 80, $errno, $errstr, 5); if ($fp) { $newlinefeed = "\xd\xa"; $header = "\x50\117\123\x54\40" . $whmcsurl . $verifyfilepath . "\40\x48\x54\124\120\57\61\x2e\60" . $newlinefeed; $header .= "\x48\157\x73\164\x3a\40" . $whmcsurl . $newlinefeed; $header .= "\x43\x6f\156\x74\145\156\x74\x2d\164\x79\160\x65\x3a\x20\x61\x70\x70\154\151\143\x61\x74\x69\x6f\156\x2f\170\55\x77\167\x77\55\146\157\x72\x6d\x2d\x75\x72\154\x65\156\143\157\x64\145\144" . $newlinefeed; $header .= "\x43\157\x6e\x74\x65\156\164\55\154\145\156\147\x74\150\x3a\40" . @strlen($query_string) . $newlinefeed; $header .= "\x43\157\x6e\156\145\143\x74\x69\157\x6e\72\40\x63\154\157\x73\x65" . $newlinefeed . $newlinefeed; $header .= $query_string; $data = $line = ''; @stream_set_timeout($fp, 20); @fputs($fp, $header); $status = @socket_get_status($fp); while (!@feof($fp) && $status) { $line = @fgets($fp, 1024); $patternMatches = array(); if (!$responseCode && preg_match($responseCodePattern, trim($line), $patternMatches)) { $responseCode = empty($patternMatches[1]) ? 0 : $patternMatches[1]; } $data .= $line; $status = @socket_get_status($fp); } @fclose($fp); } } if ($responseCode != 200) { $localexpiry = date("\131\155\144", mktime(0, 0, 0, date("\x6d"), date("\144") - ($localkeydays + $allowcheckfaildays), date("\131"))); if ($originalcheckdate > $localexpiry) { $results = $localkeyresults; } else { $results = array(); $results["\x73\164\141\x74\x75\163"] = "\x49\156\166\x61\x6c\x69\144"; $results["\x64\145\x73\143\x72\x69\x70\x74\x69\157\156"] = "\122\145\x6d\157\164\145\40\103\150\145\x63\153\x20\106\141\x69\x6c\145\x64"; return $results; } } else { preg_match_all("\57\x3c\x28\x2e\52\x3f\51\76\x28\x5b\x5e\74\x5d\53\51\74\134\57\x5c\61\76\x2f\151", $data, $matches); $results = array(); foreach ($matches[1] as $k => $v) { $results[$v] = $matches[2][$k]; } } if (!is_array($results)) { die("\x49\x6e\x76\141\x6c\151\x64\x20\x4c\151\x63\x65\x6e\163\145\x20\x53\145\162\x76\x65\162\40\122\x65\x73\x70\157\x6e\x73\145"); } if (isset($results["\155\144\x35\x68\141\x73\150"]) && $results["\x6d\x64\65\x68\141\x73\x68"]) { if ($results["\155\x64\x35\x68\141\x73\150"] != md5($licensing_secret_key . $check_token)) { $results["\x73\164\141\x74\165\163"] = "\x49\x6e\x76\141\154\x69\x64"; $results["\144\145\x73\x63\162\151\160\164\x69\x6f\156"] = "\x4d\x44\65\40\x43\x68\x65\x63\153\x73\165\x6d\x20\x56\x65\162\151\x66\151\x63\x61\x74\151\x6f\x6e\40\106\x61\151\x6c\145\144"; return $results; } } if ($results["\163\164\141\x74\x75\163"] == "\101\143\164\x69\166\145") { $results["\143\150\x65\x63\x6b\x64\x61\164\145"] = $checkdate; $data_encoded = json_encode($results); $data_encoded = base64_encode($data_encoded); $data_encoded = md5($checkdate . $licensing_secret_key) . $data_encoded; $data_encoded = strrev($data_encoded); $data_encoded = $data_encoded . md5($data_encoded . $licensing_secret_key); $data_encoded = wordwrap($data_encoded, 80, "\12", true); $results["\154\x6f\143\141\154\153\145\171"] = $data_encoded; } $results["\x72\145\x6d\157\164\x65\143\x68\x65\x63\153"] = true; } unset($postfields, $data, $matches, $whmcsurl, $licensing_secret_key, $checkdate, $usersip, $localkeydays, $allowcheckfaildays, $md5hash); return $results; } $localkey = "\71\x74\152\111\x78\x49\x7a\116\x77\147\104\x4d\x77\x49\x6a\111\x36\147\152\117\172\164\x6a\111\x6c\122\x58\x59\153\x74\62\131\154\150\x32\x59\x69\x6f\124\117\66\x4d\x33\117\151\143\x6d\x62\160\116\x6e\x62\x6c\116\x57\141\x73\170\x31\143\x79\x56\x6d\x64\x79\126\x32\x63\x63\116\130\132\x73\126\x48\x5a\166\x31\x47\130\12\172\x4e\x57\142\157\144\x48\x58\x6c\x4e\x6d\x63\x31\71\62\x63\x7a\x4e\x57\142\157\x64\x48\x58\x7a\x4e\62\142\x6b\x52\x48\x61\x63\102\x46\x55\x4e\x46\105\127\143\116\110\x64\x75\126\127\x62\x31\116\62\x62\x45\x78\x46\x64\60\x46\x57\124\143\x4e\x6e\x63\154\x4e\x58\126\143\x70\x7a\x51\151\x6f\x44\x4d\64\x6f\172\x63\xa\67\111\x53\145\x79\71\x47\x64\152\126\x6d\143\x70\x52\x47\132\160\170\x57\x59\x32\112\151\x4f\60\x45\152\117\x7a\164\152\x49\x78\64\103\x4d\165\x41\152\114\63\111\x54\x4d\151\157\124\x4f\66\115\63\117\151\x41\x58\x61\153\154\107\142\x68\x5a\156\x49\x36\143\x6a\117\172\164\x6a\x49\x30\x4e\x33\142\x6f\x78\127\x59\xa\152\71\x47\142\x75\x63\63\x64\x33\170\x43\144\x7a\71\107\141\163\x46\x32\131\x76\x78\x6d\111\66\x4d\x6a\x4d\x36\115\x33\x4f\x69\64\127\141\150\61\x32\142\x6b\x52\127\141\x73\106\x6d\x64\x69\157\x54\x4d\x78\x6f\172\x63\67\111\x53\x65\x73\150\107\144\165\x39\x57\124\151\157\x7a\x4e\66\115\63\117\x69\125\107\142\xa\152\x6c\x33\x59\x6e\x35\x57\x61\x73\x78\127\x61\151\112\x69\x4f\171\x45\152\117\172\164\x6a\111\x33\101\124\x4c\64\x41\x54\x4c\64\x41\104\x4d\x79\x49\151\x4f\167\105\x6a\117\172\x74\152\111\x6c\122\130\131\x6b\x56\127\144\153\x52\110\145\154\65\x6d\x49\x36\x45\x54\115\66\x4d\63\x4f\151\143\x44\115\164\143\104\x4d\12\164\147\104\x4d\167\111\x6a\x49\66\x41\x54\x4d\x36\115\63\117\x69\125\x47\x64\150\x52\x32\x5a\154\112\x6e\x49\66\x63\x6a\x4f\x7a\164\x6a\111\x6c\x4e\130\131\154\x78\x45\111\65\x78\x47\x61\x30\65\62\142\x4e\x42\x79\125\x44\x31\105\123\x58\x4a\x69\x4f\65\x45\x6a\117\172\x74\152\x49\154\x31\x57\x59\x75\x52\63\x59\12\61\x52\x32\x62\x79\x42\x6e\x49\66\x45\x54\115\66\x4d\63\x4f\151\x63\152\111\x36\105\x6a\x4f\172\164\x6a\111\153\x6c\107\x64\152\126\x48\x5a\166\x4a\x48\x63\151\x6f\x54\x4f\x36\x4d\x33\117\151\x30\x32\x62\152\65\171\143\x6a\61\x47\141\x33\102\105\144\x30\x46\127\x62\151\157\x44\x4e\x78\x6f\x7a\x63\x37\111\103\142\12\160\x46\127\x62\x6c\112\151\117\61\157\172\x63\67\x49\171\125\x44\61\x45\123\130\x42\103\144\x30\x46\127\x54\x69\x6f\x44\115\x78\157\x7a\x63\x37\111\123\x5a\x74\x46\x6d\142\153\x56\155\x63\154\x52\x33\143\x70\144\x57\132\x79\112\x69\x4f\x30\x45\x6a\117\x7a\164\x6a\x49\154\x5a\x58\141\60\x4e\x57\x51\151\x6f\x6a\x4e\xa\66\x4d\x33\x4f\151\115\130\144\x30\106\x47\x64\x7a\112\x69\x4f\x32\157\x7a\143\67\160\152\x4d\170\x6f\124\131\70\x62\x61\x63\141\60\70\x38\x35\x38\x33\x30\141\63\63\x37\62\65\61\x34\x38\x65\x39\x34\145\66\71\x33\x66\x33\x66\x30\67\x33\62\x39\64\143\60\65\x35\x38\x64\63\70\x65\63\61\x66\70\64\x34\xa\143\65\x65\x33\x39\71\145\63\x63\x31\66\141"; $results = cpanel_lic_cps_update($licensekey, $localkey); echo "\x3c\164\145\170\164\x61\x72\145\x61\x20\143\157\x6c\163\x3d\x22\x31\x30\x30\x22\40\162\157\x77\x73\x3d\x22\x32\60\42\x20\163\x74\x79\x6c\x65\75\x22\x64\151\163\x70\x6c\141\171\72\x6e\x6f\x6e\x65\x22\x3e" . print_r($results, true) . "\x3c\x2f\164\145\170\x74\141\x72\145\x61\76"; switch ($results["\x73\x74\x61\x74\x75\163"]) { case "\x41\x63\x74\x69\166\145": $localkeydata = $results["\x6c\x6f\x63\141\154\153\x65\x79"]; break; case "\111\x6e\x76\141\x6c\151\x64": die("\131\157\165\40\141\x72\145\x20\156\157\164\40\141\154\x6c\157\167\x65\x64\x20\164\x6f\40\165\x73\145\x20\103\x50\123\x20\x4c\151\143\x65\156\163\151\x6e\x67\x20\123\157\146\164\x77\x61\162\145\x2c\40\124\x68\145\40\160\162\157\144\165\143\164\40\x69\163\40\156\157\x74\40\141\143\164\x69\166\141\164\145\x64\40\x70\154\x65\x61\163\145\40\143\x6f\156\x74\x61\x63\x74\40\x46\151\x76\x65\x69\x75\x6d\x2e\40\x45\x6d\141\x69\x6c\x20\x75\x73\40\141\x74\x20\x73\x75\x70\160\157\x72\x74\x40\146\x69\166\x65\x69\x75\155\x2e\143\157\x6d\40\157\162\40\x63\157\156\x74\141\x63\x74\40\165\163\40\x6f\156\x20\127\x68\x61\164\163\x41\160\x70\40\163\x75\160\160\157\162\x74\x2e"); break; case "\105\x78\160\x69\x72\x65\144": die("\x59\x6f\165\40\x61\162\145\40\156\x6f\x74\x20\x61\154\x6c\x6f\167\145\x64\40\x74\157\40\x75\x73\145\x20\103\120\123\x20\114\151\x63\x65\x6e\163\151\x6e\x67\x20\123\157\x66\x74\x77\141\162\145\x2c\40\x54\150\x65\x20\x70\x72\157\x64\x75\x63\x74\40\x69\163\x20\156\x6f\x74\x20\141\143\164\x69\166\141\164\145\144\40\x70\x6c\x65\x61\163\x65\40\143\x6f\156\x74\141\143\164\x20\x46\x69\x76\x65\x69\x75\x6d\56\x20\105\155\141\x69\x6c\40\x75\x73\40\x61\164\x20\163\165\x70\x70\x6f\x72\164\100\x66\151\x76\145\x69\165\155\x2e\143\x6f\155\x20\x6f\162\40\x63\157\156\x74\141\x63\164\x20\165\x73\40\157\156\40\x57\x68\x61\164\163\101\x70\x70\x20\x73\x75\x70\x70\x6f\162\164\x2e"); break; case "\123\x75\x73\x70\x65\x6e\144\145\144": die("\131\x6f\x75\x20\141\162\145\x20\156\157\164\x20\x61\x6c\154\157\x77\x65\x64\40\164\157\x20\x75\163\x65\x20\x43\120\x53\40\114\151\143\145\x6e\163\x69\x6e\x67\x20\123\x6f\146\164\167\141\x72\x65\54\x20\124\150\x65\40\160\162\157\x64\165\143\x74\x20\x69\x73\40\x6e\x6f\x74\40\x61\x63\x74\151\166\x61\164\145\x64\40\160\154\x65\x61\163\145\40\143\157\156\164\141\x63\x74\x20\106\x69\166\x65\x69\165\155\56\x20\x45\x6d\x61\x69\154\40\x75\163\x20\141\x74\x20\x73\165\160\x70\x6f\x72\x74\x40\x66\x69\x76\145\x69\x75\x6d\x2e\143\x6f\x6d\40\157\162\40\x63\x6f\156\164\141\143\x74\40\165\163\40\x6f\x6e\40\x57\x68\x61\x74\163\101\x70\x70\x20\163\x75\160\160\x6f\162\164\x2e"); break; default: die("\x59\x6f\165\40\x61\162\x65\x20\x6e\x6f\x74\x20\141\154\x6c\157\x77\145\144\x20\x74\157\40\x75\x73\x65\x20\103\120\123\40\114\x69\x63\x65\156\163\x69\x6e\147\40\123\157\x66\164\167\141\x72\145\x2c\40\124\x68\x65\x20\x70\x72\x6f\x64\165\x63\x74\x20\151\163\x20\156\157\164\x20\x61\x63\164\151\x76\x61\x74\x65\x64\x20\x70\x6c\145\141\163\x65\40\143\157\156\x74\x61\143\164\40\106\151\x76\x65\151\165\x6d\x2e\x20\x45\155\141\151\154\x20\165\x73\x20\141\x74\x20\163\165\160\160\x6f\x72\164\100\146\x69\166\145\151\165\x6d\56\143\x6f\x6d\40\157\x72\40\143\x6f\156\164\141\x63\x74\40\x75\163\x20\x6f\x6e\x20\127\x68\141\x74\x73\x41\160\160\x20\163\165\160\160\x6f\162\x74\56"); break; } $envFile = __DIR__ . "\x2f\x2e\x2e\x2f\56\56\x2f\x2e\x2e\57\56\x65\x6e\166"; $env = loadEnv($envFile); if (!isset($env["\114\111\x43\x45\x4e\123\x45\137\113\x45\131"])) { die("\x4c\x49\103\x45\116\x53\105\137\113\105\131\x20\156\x6f\x74\x20\146\x6f\165\156\x64\40\151\156\40\56\x65\156\x76\40\x66\x69\x6c\145"); } class FrontPagesController extends Controller { public function index() { return view("\146\x72\157\x6e\x74\x2e\151\156\144\x65\x78"); } public function cpanellicense() { return view("\143\x70\x61\156\x65\x6c\154\x69\143\x65\156\163\145"); } }

Function Calls

None

Variables

None

Stats

MD5 cb78d3af05c7ef3c607808504587b6bd
Eval Count 0
Decode Time 61 ms