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.1
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 /
lms-api /
app /
Modules /
User /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
RouteServiceProvider.php
1.48
KB
-rw-rw-r--
UserServiceProvider.php
4.02
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : RouteServiceProvider.php
<?php namespace App\Modules\User\Providers; use Illuminate\Support\Facades\Route; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; class RouteServiceProvider extends ServiceProvider { /** * The root namespace to assume when generating URLs to actions. * * @var string */ protected $namespace = 'App\Modules\User\Http\Controllers'; /** * Called before routes are registered. * * Register any model bindings or pattern based filters. * * @return void */ public function boot() { parent::boot(); } /** * Define the routes for the application. * * @return void */ public function map() { $this->mapApiRoutes(); $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(__DIR__ . '/../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(__DIR__ . '/../Routes/api.php'); } }
Close