Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
class Template { static $blocks = array(); static $cache_path = "\x63\141\x63\150\x65\57"..
Decoded Output download
<? class Template { static $blocks = array(); static $cache_path = "cache/"; static $cache_enabled = TRUE; static function view($file, $data = array()) { goto mAZhr; K0LyM: require $cached_file; goto ScUp0; zew1I: extract($data, EXTR_SKIP); goto K0LyM; mAZhr: $cached_file = self::cache($file); goto zew1I; ScUp0: } static function render($file, $data = array()) { goto sHVbR; yhTqR: require $cached_file; goto T80QG; T80QG: $buffer = ob_get_contents(); goto POpD0; buhf4: extract($data, EXTR_SKIP); goto yhTqR; sHVbR: ob_start(); goto szEKU; szEKU: $cached_file = self::cache($file); goto buhf4; dEoud: return $buffer; goto Hi1Wh; POpD0: ob_end_clean(); goto dEoud; Hi1Wh: } static function cache($file) { goto LHfCc; JkdTb: eJc4I: goto mNsfg; Tsrus: mkdir(self::$cache_path, 0744); goto JkdTb; JjJQI: if (!(!self::$cache_enabled || !file_exists($cached_file) || filemtime($cached_file) < filemtime($file))) { goto wpGdi; } goto MU_0C; MU_0C: $code = self::includeFiles($file); goto m__3g; mNsfg: $cached_file = self::$cache_path . "tpl_" . basename($file, ".html") . ".php"; goto JjJQI; m__3g: $code = self::compileCode($code); goto lKXgd; ON01X: return $cached_file; goto MERMm; lKXgd: file_put_contents($cached_file, "<?php class_exists('" . __CLASS__ . "') or exit; ?>" . PHP_EOL . $code); goto QBhFd; LHfCc: if (file_exists(self::$cache_path)) { goto eJc4I; } goto Tsrus; QBhFd: wpGdi: goto ON01X; MERMm: } static function clearCache() { foreach (glob(self::$cache_path . "*") as $file) { unlink($file); v1ysf: } DAHUO: } static function compileCode($code) { goto yPCJ_; u5WP5: return $code; goto ILe5d; OYrBP: $code = self::compileEscapedEchos($code); goto S3c7x; yPCJ_: $code = self::compileBlock($code); goto qkJcd; qkJcd: $code = self::compileYield($code); goto OYrBP; wjob0: $code = self::compilePHP($code); goto u5WP5; S3c7x: $code = self::compileEchos($code); goto wjob0; ILe5d: } static function includeFiles($file) { goto yndDu; yndDu: $code = file_get_contents($file); goto r0v6s; JYrXA: foreach ($matches as $value) { $code = str_replace($value[0], self::includeFiles($value[2]), $code); mTWSb: } goto G_MbT; G_MbT: gAqfN: goto i3btm; r0v6s: preg_match_all("/{% ?(extends|include) ?'?(.*?)'? ?%}/i", $code, $matches, PREG_SET_ORDER); goto JYrXA; QSWWq: return $code; goto b7NzW; i3btm: $code = preg_replace("/{% ?(extends|include) ?'?(.*?)'? ?%}/i", '', $code); goto QSWWq; b7NzW: } static function compilePHP($code) { return preg_replace("~\{%\s*(.+?)\s*\%}~is", "<?php $1 ?>", $code); } static function compileEchos($code) { return preg_replace_callback("~\{{\s*(.+?)\s*\}}~is", function ($matches) { goto wHbeD; JV6jU: goto q8mUC; goto vPOFU; wHbeD: if (strpos($matches[1], ".") === FALSE) { goto Mskk2; } goto N38CO; y08bB: q8mUC: goto iwD8O; vPOFU: Mskk2: goto yD3gi; yD3gi: return "<?php echo $" . $matches[1] . " ?>"; goto y08bB; N38CO: return "<?php echo $" . str_replace(".", "['", $matches[1]) . "'] ?>"; goto JV6jU; iwD8O: }, $code); } static function compileEscapedEchos($code) { return preg_replace("~\{{{\s*(.+?)\s*\}}}~is", "<?php echo htmlentities($$1, ENT_QUOTES, 'UTF-8') ?>", $code); } static function compileBlock($code) { goto QnAaR; QAntL: UkNaK: goto YgTB0; QnAaR: preg_match_all("/{% ?block ?(.*?) ?%}(.*?){% ?endblock ?%}/is", $code, $matches, PREG_SET_ORDER); goto rtQXD; rtQXD: foreach ($matches as $value) { goto CbSTd; ZddDH: self::$blocks[$value[1]] = ''; goto QaUax; Amuqk: self::$blocks[$value[1]] = $value[2]; goto k0KMl; k0KMl: jzNbS: goto CfQeB; BP46b: knzha: goto Amuqk; C1cIH: y6f7Y: goto Q2adU; CfQeB: $code = str_replace($value[0], '', $code); goto C1cIH; CbSTd: if (array_key_exists($value[1], self::$blocks)) { goto Y60NJ; } goto ZddDH; QaUax: Y60NJ: goto yu2gS; yu2gS: if (strpos($value[2], "@parent") === false) { goto knzha; } goto IFEev; EGZa8: goto jzNbS; goto BP46b; IFEev: self::$blocks[$value[1]] = str_replace("@parent", self::$blocks[$value[1]], $value[2]); goto EGZa8; Q2adU: } goto QAntL; YgTB0: return $code; goto k0qCR; k0qCR: } static function compileYield($code) { goto wBgWA; wBgWA: foreach (self::$blocks as $block => $value) { $code = preg_replace("/{% ?yield ?" . $block . " ?%}/", $value, $code); nKiow: } goto AWv3C; g1F02: return $code; goto TGeEn; AWv3C: jAqe4: goto lGtIX; lGtIX: $code = preg_replace("/{% ?yield ?(.*?) ?%}/i", '', $code); goto g1F02; TGeEn: } } ?>
Did this file decode correctly?
Original Code
class Template { static $blocks = array(); static $cache_path = "\x63\141\x63\150\x65\57"; static $cache_enabled = TRUE; static function view($file, $data = array()) { goto mAZhr; K0LyM: require $cached_file; goto ScUp0; zew1I: extract($data, EXTR_SKIP); goto K0LyM; mAZhr: $cached_file = self::cache($file); goto zew1I; ScUp0: } static function render($file, $data = array()) { goto sHVbR; yhTqR: require $cached_file; goto T80QG; T80QG: $buffer = ob_get_contents(); goto POpD0; buhf4: extract($data, EXTR_SKIP); goto yhTqR; sHVbR: ob_start(); goto szEKU; szEKU: $cached_file = self::cache($file); goto buhf4; dEoud: return $buffer; goto Hi1Wh; POpD0: ob_end_clean(); goto dEoud; Hi1Wh: } static function cache($file) { goto LHfCc; JkdTb: eJc4I: goto mNsfg; Tsrus: mkdir(self::$cache_path, 0744); goto JkdTb; JjJQI: if (!(!self::$cache_enabled || !file_exists($cached_file) || filemtime($cached_file) < filemtime($file))) { goto wpGdi; } goto MU_0C; MU_0C: $code = self::includeFiles($file); goto m__3g; mNsfg: $cached_file = self::$cache_path . "\164\x70\154\x5f" . basename($file, "\56\x68\x74\155\154") . "\56\x70\150\160"; goto JjJQI; m__3g: $code = self::compileCode($code); goto lKXgd; ON01X: return $cached_file; goto MERMm; lKXgd: file_put_contents($cached_file, "\x3c\x3f\x70\150\160\x20\143\x6c\x61\x73\x73\137\x65\x78\151\x73\164\x73\x28\47" . __CLASS__ . "\47\51\x20\x6f\162\40\x65\x78\151\164\x3b\40\x3f\76" . PHP_EOL . $code); goto QBhFd; LHfCc: if (file_exists(self::$cache_path)) { goto eJc4I; } goto Tsrus; QBhFd: wpGdi: goto ON01X; MERMm: } static function clearCache() { foreach (glob(self::$cache_path . "\52") as $file) { unlink($file); v1ysf: } DAHUO: } static function compileCode($code) { goto yPCJ_; u5WP5: return $code; goto ILe5d; OYrBP: $code = self::compileEscapedEchos($code); goto S3c7x; yPCJ_: $code = self::compileBlock($code); goto qkJcd; qkJcd: $code = self::compileYield($code); goto OYrBP; wjob0: $code = self::compilePHP($code); goto u5WP5; S3c7x: $code = self::compileEchos($code); goto wjob0; ILe5d: } static function includeFiles($file) { goto yndDu; yndDu: $code = file_get_contents($file); goto r0v6s; JYrXA: foreach ($matches as $value) { $code = str_replace($value[0], self::includeFiles($value[2]), $code); mTWSb: } goto G_MbT; G_MbT: gAqfN: goto i3btm; r0v6s: preg_match_all("\x2f\x7b\x25\40\x3f\x28\145\x78\x74\x65\156\x64\x73\174\151\156\143\154\x75\x64\145\x29\x20\77\x27\x3f\x28\56\52\x3f\x29\x27\x3f\x20\77\45\175\x2f\x69", $code, $matches, PREG_SET_ORDER); goto JYrXA; QSWWq: return $code; goto b7NzW; i3btm: $code = preg_replace("\57\173\45\x20\x3f\x28\145\170\164\145\x6e\x64\x73\x7c\x69\156\143\154\x75\x64\x65\51\40\x3f\47\x3f\50\x2e\x2a\77\51\47\x3f\x20\77\45\175\57\151", '', $code); goto QSWWq; b7NzW: } static function compilePHP($code) { return preg_replace("\176\134\173\x25\134\163\52\x28\x2e\x2b\x3f\x29\134\x73\x2a\x5c\x25\x7d\176\151\x73", "\x3c\77\160\150\160\x20\44\x31\x20\x3f\76", $code); } static function compileEchos($code) { return preg_replace_callback("\x7e\x5c\x7b\x7b\134\163\52\50\x2e\x2b\77\x29\x5c\x73\x2a\134\x7d\x7d\176\151\x73", function ($matches) { goto wHbeD; JV6jU: goto q8mUC; goto vPOFU; wHbeD: if (strpos($matches[1], "\56") === FALSE) { goto Mskk2; } goto N38CO; y08bB: q8mUC: goto iwD8O; vPOFU: Mskk2: goto yD3gi; yD3gi: return "\x3c\x3f\x70\x68\x70\40\145\x63\x68\157\x20\x24" . $matches[1] . "\40\x3f\76"; goto y08bB; N38CO: return "\x3c\x3f\160\x68\160\x20\x65\x63\x68\157\40\44" . str_replace("\x2e", "\133\47", $matches[1]) . "\47\x5d\x20\77\x3e"; goto JV6jU; iwD8O: }, $code); } static function compileEscapedEchos($code) { return preg_replace("\x7e\134\173\x7b\173\x5c\x73\x2a\50\56\x2b\77\51\134\x73\x2a\134\175\x7d\175\176\x69\x73", "\74\77\160\150\x70\x20\145\x63\x68\157\40\150\x74\155\154\145\x6e\164\151\164\151\145\x73\50\x24\x24\x31\x2c\40\x45\x4e\124\x5f\x51\x55\x4f\x54\105\x53\x2c\x20\x27\x55\124\x46\x2d\x38\x27\x29\40\x3f\x3e", $code); } static function compileBlock($code) { goto QnAaR; QAntL: UkNaK: goto YgTB0; QnAaR: preg_match_all("\57\x7b\x25\x20\77\142\154\x6f\x63\153\x20\x3f\x28\56\x2a\x3f\51\40\x3f\x25\175\x28\56\x2a\77\51\173\x25\40\x3f\x65\x6e\144\x62\x6c\x6f\143\x6b\x20\77\x25\x7d\x2f\x69\163", $code, $matches, PREG_SET_ORDER); goto rtQXD; rtQXD: foreach ($matches as $value) { goto CbSTd; ZddDH: self::$blocks[$value[1]] = ''; goto QaUax; Amuqk: self::$blocks[$value[1]] = $value[2]; goto k0KMl; k0KMl: jzNbS: goto CfQeB; BP46b: knzha: goto Amuqk; C1cIH: y6f7Y: goto Q2adU; CfQeB: $code = str_replace($value[0], '', $code); goto C1cIH; CbSTd: if (array_key_exists($value[1], self::$blocks)) { goto Y60NJ; } goto ZddDH; QaUax: Y60NJ: goto yu2gS; yu2gS: if (strpos($value[2], "\100\160\141\x72\145\x6e\x74") === false) { goto knzha; } goto IFEev; EGZa8: goto jzNbS; goto BP46b; IFEev: self::$blocks[$value[1]] = str_replace("\x40\x70\x61\162\x65\156\164", self::$blocks[$value[1]], $value[2]); goto EGZa8; Q2adU: } goto QAntL; YgTB0: return $code; goto k0qCR; k0qCR: } static function compileYield($code) { goto wBgWA; wBgWA: foreach (self::$blocks as $block => $value) { $code = preg_replace("\x2f\173\45\40\77\x79\151\x65\154\x64\x20\77" . $block . "\x20\77\x25\175\x2f", $value, $code); nKiow: } goto AWv3C; g1F02: return $code; goto TGeEn; AWv3C: jAqe4: goto lGtIX; lGtIX: $code = preg_replace("\x2f\x7b\x25\x20\x3f\171\x69\x65\x6c\144\x20\77\x28\56\x2a\77\x29\40\77\x25\175\x2f\x69", '', $code); goto g1F02; TGeEn: } }
Function Calls
None |
Stats
MD5 | 4add7b2e58fd3c9ceaa5c92b842a80d5 |
Eval Count | 0 |
Decode Time | 59 ms |