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 eval(base64_decode('CiAkdXJpID0gdXJsZGVjb2RlKHBhcnNlX3VybCgkX1NFUlZFUlsiXDEyMlx4NDVc..
Decoded Output download
$uri = urldecode(parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH)
Did this file decode correctly?
Original Code
<?php eval(base64_decode('CiAkdXJpID0gdXJsZGVjb2RlKHBhcnNlX3VybCgkX1NFUlZFUlsiXDEyMlx4NDVceDUxXDEyNVx4NDVcMTIzXDEyNFx4NWZceDU1XHg1Mlx4NDkiXSwgUEhQX1VSTF9QQVRIKQ==')); ?>
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
Function Calls
base64_decode | 1 |
Stats
MD5 | caf89843aa05027ad000ca06377197cd |
Eval Count | 1 |
Decode Time | 44 ms |