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 /
sdgamatya /
routes /
[ HOME SHELL ]
Name
Size
Permission
Action
api.php
555
B
-rw-r--r--
channels.php
524
B
-rw-r--r--
console.php
571
B
-rw-r--r--
web.php
12.79
KB
-rw-r--r--
web_old.php
12.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : web_old.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ /* *Setting default timezone to Asia/Kathmandu */ // date_default_timezone_set('Asia/Kathmandu'); /* *Route for welcome screen */ Route::get('/', 'WelcomeController@welcome'); Route::get('/admin', 'HomeController@dashboard')->middleware('admin'); /* * Login, logout and register route */ Route::post('/register', ['uses' => 'Authentication\RegistrationController@postRegister', 'as' => 'register']); Route::get('/register', ['uses' => 'Authentication\RegistrationController@register', 'as' => 'register']); Route::post('/login', ['uses' => 'Authentication\LoginController@postLogin', 'as' => 'login']); Route::get('/login', ['uses' => 'Authentication\LoginController@login', 'as' => 'login']); Route::post('/logout', ['uses' => 'Authentication\LoginController@logout', 'as' => 'logout']); Route::group(['prefix' => 'admin', 'middleware' => 'admin'], function () { Route::get('/company/{id}/details', 'SuperAdminController@companyDetails'); Route::post('/company/detail/cylinder-number', 'SuperAdminController@cylinderNumbers'); // Dashboard Route Route::get('/dashboard', ['uses' => 'HomeController@dashboard', 'as' => 'dashboard']); // Admin User Route Route::resource('roles', 'User\RoleController'); Route::resource('pages', 'Admin\PagesController'); Route::resource('banners', 'Admin\BannerController'); //permissions route Route::get('/permission/{role}/edit', ['uses' => 'User\RoleController@setPermission', 'as' => 'admin.permission.edit']); Route::patch('/permission/{role}', ['uses' => 'User\RoleController@updatePermission', 'as' => 'admin.permission.update']); //Module Route Route::resource('modules', 'Admin\ModuleController'); Route::resource('settings', 'Setting\SettingController'); Route::get('/permission-error', 'HomeController@permissionError'); Route::group(['namespace' => 'Admin'], function () { // Controllers Within The "App\Http\Controllers\Admin" Namespace Route::resource('/products', 'ProductController'); Route::post('/company/detail/status', 'CompanyController@getCylinderStatus'); Route::resource('users', 'UserController'); Route::get('deleteContactById', ['uses' => 'CompanyController@deleteContactById', 'as' => 'deleteContactById']); Route::resource('rates', 'RateController'); Route::resource('remarks', 'RemarkController'); // Route::resource('status','StatusController'); Route::resource('repairs', 'RepairController'); Route::get('repairs/processing/cylinders', 'RepairController@processingCylinders'); Route::get('repairs/repairing/cylinders', 'RepairController@repairingCylinders'); Route::get('/repairs/updateStatus/{id}/{status}', ['uses' => 'RepairController@updateStatus', 'as' => 'repairs.updateStatus']); Route::patch('/repairs/updateCylinder/{id}/{receive_id}', ['uses' => 'RepairController@updateCylinder', 'as' => 'repairs.updateCylinder']); Route::patch('/repairs/updateRepairCylinder/{id}/{repair_id}', ['uses' => 'RepairController@updateRepairCylinder', 'as' => 'repairs.updateRepairCylinder']); Route::patch('/repairs/updateCylinderCode/{id}/{receive_id}', ['uses' => 'RepairController@updateCylinderCode', 'as' => 'repairs.updateCylinderCode']); Route::any('repairs/searchCylinderCode/cylinder', ['uses' => 'RepairController@searchCylinderCode', 'as' => 'repairs.searchCylinderCode']); Route::post('/otherMaterialsDetails', ['as' => 'othermaterial', 'uses' => 'ReceiveController@getOtherMaterialsDetails']); // Controllers Within The "App\Http\Controllers\Admin" Namespace Route::resource('other-materials', 'OtherMaterialController'); Route::resource('companies', 'CompanyController'); Route::resource('receives', 'ReceiveController'); Route::get('/receives/statusUpdate/{id}/{status}', ['uses' => 'ReceiveController@statusUpdate', 'as' => 'receives.statusUpdate']); Route::post('/receive/storeCode', ['as' => 'receive.storeCode', 'uses' => 'ReceiveController@storeCode']); Route::get('/cylinderCode/{id}', ['uses' => 'ReceiveController@cylinderCode', 'as' => "cylinderCode"]); Route::get('/cylinderRepair', ['uses' => 'RepairController@cylinderRepair', 'as' => "cylinderRepair"]); /* ** Company Specific Routes */ Route::get('review-cylinder', 'CompanyController@reviewCylinder'); /* *Route listing pending cylinder */ Route::get('pending-cylinders', 'ReceiveController@pendingCylinders'); /* *Route for approving pending cylinder */ Route::post('approve-cylinder', 'ReceiveController@approveCylinder'); /*Route for getting particular rate*/ Route::post('get-rate', 'RateController@getRate'); /*Route for Updating rate*/ Route::post('update-rate', 'RateController@updateRate'); /* *Route for printing cylinder receipt */ Route::post('generate-receipt', ['uses' => 'ReceiveController@generateReceipt', 'as' => 'generate-receipt']); /* *Route for printing Bill */ // Route::post('generate-bill',['uses'=>'ReceiveController@generateBill','as'=>'generate-bill']); Route::match(array('GET', 'POST'), 'generate-bill', ['uses' => 'ReceiveController@generateBill', 'as' => 'generate-bill']); /* *Route for approving cylinder by client */ Route::post('confirmCylinder', ['uses' => 'CompanyController@confirmCylinder', 'as' => 'confirmCylinder']); /* *Route for rate category */ Route::resource('rate-categories', 'RateCategoryController'); /* *Route for Cylinder Type */ Route::resource('cylinder-types', 'CylinderTypeController'); /* *Route for Company history */ Route::get('company-history', 'CompanyController@companyHistory'); /* *Route for Company history - receiv details */ Route::get('company-history/receive-details/{receive_id}', 'CompanyController@receiveDetailsHistory'); /* *Route for Company history - repair details */ Route::get('company-history/repair-details/{receive_id}', 'CompanyController@repairDetailsHistory'); /* *Route for Client Message creation */ Route::get('message/create', ['uses' => 'MessageController@createMessage', 'as' => 'message.create']); /* *Route for sending client Message */ Route::post('message', ['uses' => 'MessageController@sendMessage', 'as' => 'message.send']); /* *Route for delete contact person */ Route::delete('contact_person/{contact_person}/{company}', ['uses' => 'CompanyController@deleteContactPerson', 'as' => 'contact_person.destroy']); /* *Route to get all payments associated to receive */ Route::get('receives/{receive}/payments', ['uses' => 'PaymentController@getPaymentsByReceive', 'as' => 'receives.payment']); /* *Route to create payment associated to receive */ Route::get('receives/{receive}/payment/create', ['uses' => 'PaymentController@create', 'as' => 'payments.create']); /* *Route to edit payment associated to receive */ Route::get('receives/{receive}/payment/{payment}/edit', ['uses' => 'PaymentController@edit', 'as' => 'payments.edit']); /* *Route to update payment associated to receive */ Route::post('receives/{receive}/payments', ['uses' => 'PaymentController@store', 'as' => 'payments.store']); /* *Route to update payment associated to receive */ Route::patch('receives/{receive}/payment/{payment}',['uses'=>'PaymentController@update','as'=>'payments.update']); /* *Route to update payment associated to receive */ Route::post('receives/payment-receipt',['uses'=>'PaymentController@printPaymentReceipt','as'=>'payments.receipt']); /* *Route to delete payment associated to receive */ Route::delete('receives/{receive}/payment/{payment}',['uses'=>'PaymentController@destroy','as'=>'payments.destroy']); /* *Route to list pending repair confirmations */ Route::get('pending-repair-confirmation',['uses'=>'RepairController@pendingRepairConfirmationList']); }); }); /* *Route for receive lot no */ Route::get('admin/getReceiveLotNo', ['uses' => 'Admin\ReceiveController@getReceiveLotNo', 'as' => 'admin.receives.lotno'])->middleware('admin'); Route::get('admin/receives/details/{receives}', 'Admin\ReceiveController@receiveDetails')->middleware('admin'); Route::get('admin/notification_details/{notification}', 'Admin\ReceiveController@notificationDetails')->middleware('admin'); Route::get('admin/order_details/{notification}', 'OrderController@notificationDetails')->middleware('admin'); Route::get('admin/back-to-store-details/{notification}', 'Admin\RepairController@notificationDetails')->middleware('admin'); /* *Activation,forget and reset password route */ Route::get('/activate/{user}/{activationCode}', ['uses' => 'Authentication\ActivationController@activate', 'as' => 'activate']); Route::post('/forgotPassword', ['uses' => 'Authentication\ForgotPasswordController@forgotPassword', 'as' => 'forgotPassword']); Route::post('/reset/{email}/{resetCode}', ['uses' => 'Authentication\ForgotPasswordController@postResetPassword', 'as' => 'resetPassword']); Route::get('/reset/{email}/{resetCode}', ['uses' => 'Authentication\ForgotPasswordController@resetPassword', 'as' => 'resetPassword']); Route::get('admin/change-password', 'Authentication\ForgotPasswordController@changePassword')->middleware('admin'); Route::post('change-password', ['as' => 'changePassword', 'uses' => 'Authentication\ForgotPasswordController@updatePassword'])->middleware('admin'); Route::get('admin/cylinder-details', ['uses' => 'HomeController@cylinderDetails', 'as' => 'cylinder.details'])->middleware('admin'); Route::get('admin/super-admin-table', 'SuperAdminController@superAdminTable')->middleware('admin'); Route::get('admin/advance-amount-collection', 'SuperAdminController@advanceAmountDetail')->middleware('admin'); Route::get('/products/order', 'OrderController@index'); Route::post('/products/order', 'OrderController@storeOrder'); Route::get('/clear-command-4321', 'HomeController@clearRouteCache'); Route::get('migrate-view', 'SuperAdminController@deleteCompanyViewMigration'); Route::get('migrate-payments-isBilled-new-migration', 'SuperAdminController@migratePaymentsAndIsBilled'); Route::get('notification', 'OrderController@notifyAdmin'); Route::get('admin/orders', 'OrderController@listOrders')->middleware('admin'); Route::get('admin/order/{id}/confirm', 'OrderController@confirmOrder')->middleware('admin'); Route::get('admin/order/{id}/send-quotation', 'OrderController@getViewForQuotation')->middleware('admin'); Route::get('admin/order/{id}/send','OrderController@sendQuotation')->middleware('admin'); Route::get('admin/order/{id}/edit','OrderController@editQuotation')->middleware('admin')->name('orders.edit'); Route::patch('admin/order/{id}','OrderController@updateQuotation')->middleware('admin')->name('orders.update'); Route::post('admin/order/detail','OrderController@viewOrderDetailInModal')->middleware('admin'); Route::delete('admin/order/{id}','OrderController@destroy')->name('orders.destroy')->middleware('admin'); Route::get('admin/orders/{order}/payments', 'OrderPaymentController@getPaymentsByOrder')->middleware('admin'); Route::get('admin/orders/{order}/order-payments/create','OrderPaymentController@create')->middleware('admin'); Route::post('admin/order-payments/{OrderPayment}','OrderPaymentController@store')->name('order-payments.store')->middleware('admin'); Route::get('admin/order-payments/{OrderPayment}/edit','OrderPaymentController@edit')->name('order-payments.edit')->middleware('admin'); Route::patch('admin/order-payments/{OrderPayment}','OrderPaymentController@update')->name('order-payments.update')->middleware('admin'); Route::delete('admin/order-payments/{OrderPayment}','OrderPaymentController@destroy')->name('order-payments.destroy')->middleware('admin'); Route::post('admin/orders/bill','OrderController@bill')->name('orders.bill')->middleware('admin'); Route::get('admin/orders/{order}/view-bill','OrderController@viewbill')->name('orders.view-bill')->middleware('admin'); Route::post('admin/order-payments-receipt','OrderPaymentController@receipt')->name('order-payments.receipt')->middleware('admin'); Route::get('sdg-migrate','HomeController@bktMigrate'); Route::get('sdg-seeding','HomeController@bktSeeding'); Route::get('admin/profile/{user_id}','Admin\UserController@viewUserProfile')->middleware('admin'); Route::get('admin/profile/{profile_id}/edit','Admin\UserController@editUserProfile')->middleware('admin'); Route::patch('admin/profile/{profile_id}',['uses'=>'Admin\UserController@updateUserProfile','as'=>'profile.update'])->middleware('admin'); Route::post('order/detail/summary','OrderController@showOrderSummary'); Route::get('admin/sales','HomeController@getSales')->middleware('admin'); Route::get('admin/advances','HomeController@getAdvances')->middleware('admin'); Route::get('admin/dues','HomeController@getDues')->middleware('admin'); Route::get('admin/client-statements','HomeController@getClientStatement')->middleware('admin');
Close