shell bypass 403
UnknownSec Shell
:
/
home
/
forge
/
socialite.brannanatkinson.com
/
vendor
/
socialiteproviders
/
manager
/
src
/ [
drwxrwxr-x
]
upload
mass deface
mass delete
console
info server
name :
ServiceProvider.php
<?php namespace SocialiteProviders\Manager; use Laravel\Socialite\SocialiteServiceProvider; use SocialiteProviders\Manager\Contracts\Helpers\ConfigRetrieverInterface; use SocialiteProviders\Manager\Helpers\ConfigRetriever; class ServiceProvider extends SocialiteServiceProvider { /** * Bootstrap the provider services. */ public function boot() { if ($this->app instanceof \Illuminate\Foundation\Application) { // Laravel $this->app->booted(function () { $socialiteWasCalled = app(SocialiteWasCalled::class); event($socialiteWasCalled); }); } else { // Lumen $socialiteWasCalled = app(SocialiteWasCalled::class); event($socialiteWasCalled); } } /** * Register the provider services. */ public function register() { parent::register(); if (class_exists('Laravel\Lumen\Application') && ! defined('SOCIALITEPROVIDERS_STATELESS')) { define('SOCIALITEPROVIDERS_STATELESS', true); } if (! $this->app->bound(ConfigRetrieverInterface::class)) { $this->app->singleton(ConfigRetrieverInterface::class, fn() => new ConfigRetriever()); } } }
© 2026 UnknownSec