shell bypass 403

UnknownSec Shell

: /home/bouloter/sms/sauvegarde/routes/ [ drwxr-xr-x ]

name : admin.php
<?php
/*
 * All routes for admin portal
 *
 * Item Name: Ultimate SMS - Bulk SMS Application For Marketing
 * Author: Codeglen
 * Author URL: https://codecanyon.net/user/codeglen
 */

Route::get('/dashboard', 'AdminBaseController@index')->name('home');

/*
|--------------------------------------------------------------------------
| Customer module
|--------------------------------------------------------------------------
|
| Route for Customer module
|
*/

Route::post('customers/search', 'CustomerController@search')->name('customers.search');
Route::get('customers/export', 'CustomerController@export')->name('customers.export');
Route::get('customers/{customer}/show', 'CustomerController@show')->name('customers.show');
Route::get('customers/{customer}/impersonate', 'CustomerController@impersonate')->name('customers.login_as');
Route::get('customers/{customer}/assign-plan', 'CustomerController@show')->name('customers.assign_plan');
Route::get('customers/{customer}/avatar', 'CustomerController@avatar')->name('customers.avatar');
Route::post('customers/{customer}/avatar', 'CustomerController@updateAvatar');
Route::post('customers/{customer}/remove-avatar', 'CustomerController@removeAvatar');
Route::post('customers/{customer}/add-unit', 'CustomerController@addUnit')->name('customers.add_unit');
Route::post('customers/{customer}/remove-unit', 'CustomerController@removeUnit')->name('customers.remove_unit');
Route::post('customers/{customer}/update-information', 'CustomerController@updateInformation')->name('customers.update_information');
Route::post('customers/{customer}/permissions', 'CustomerController@permissions')->name('customers.permissions');
Route::post('customers/{customer}/active', 'CustomerController@activeToggle')->name('customers.active');
Route::post('customers/batch_action', 'CustomerController@batchAction')->name('customers.batch_action');

Route::resource('customers', 'CustomerController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

/*
|--------------------------------------------------------------------------
| Subscription module
|--------------------------------------------------------------------------
|
| Route for Subscription module
|
*/

Route::post('subscriptions/search', 'SubscriptionController@search')->name('subscriptions.search');
Route::post('subscriptions/{subscription}/approve-pending', 'SubscriptionController@approvePending')->name('subscriptions.approve_pending');
Route::post('subscriptions/{subscription}/reject-pending', 'SubscriptionController@rejectPending')->name('subscriptions.reject_pending');
Route::post('subscriptions/{subscription}/renew', 'SubscriptionController@renew')->name('subscriptions.renew');
Route::post('subscriptions/{subscription}/cancel', 'SubscriptionController@cancel')->name('subscriptions.cancel');
Route::get('subscriptions/{subscription}/logs', 'SubscriptionController@logs')->name('subscriptions.logs');
Route::get('subscriptions/{subscription}/change-plan', 'SubscriptionController@changePlan')->name('subscriptions.change_plan');
Route::post('subscriptions/{subscription}/change-plan', 'SubscriptionController@changePlan');
Route::post('subscriptions/batch_action', 'SubscriptionController@batchAction')->name('subscriptions.batch_action');

Route::resource('subscriptions', 'SubscriptionController', [
        'only' => ['index', 'create', 'store', 'destroy'],
]);

/*
|--------------------------------------------------------------------------
| Currency module
|--------------------------------------------------------------------------
|
| Route for Currency module
|
*/

Route::post('currencies/search', 'CurrencyController@search')->name('currencies.search');
Route::get('currencies/export', 'CurrencyController@export')->name('currencies.export');
Route::get('currencies/{currency}/show', 'CurrencyController@show')->name('currencies.show');
Route::post('currencies/{currency}/active', 'CurrencyController@activeToggle')->name('currencies.active');
Route::post('currencies/batch_action', 'CurrencyController@batchAction')->name('currencies.batch_action');

Route::resource('currencies', 'CurrencyController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

/*
|--------------------------------------------------------------------------
| Sending servers module
|--------------------------------------------------------------------------
|
| Route for Sending servers module
|
*/

Route::post('sending-servers/search', 'SendingServerController@search')->name('sending-servers.search');
Route::get('sending-servers/select', 'SendingServerController@select')->name('sending-servers.select');
Route::get('sending-servers/create/{type}', 'SendingServerController@create')->name('sending-servers.create');
Route::get('sending-servers/export', 'SendingServerController@export')->name('sending-servers.export');
Route::get('sending-servers/{server}/show', 'SendingServerController@show')->name('sending-servers.show');
Route::post('sending-servers/{server}/active', 'SendingServerController@activeToggle')->name('sending-servers.active');
Route::post('sending-servers/custom-server/create', 'SendingServerController@addCustomServer')->name('sending-servers.add.custom');
Route::post('sending-servers/custom-server/update/{sending_server}', 'SendingServerController@updateCustomServer')->name('sending-servers.update.custom');
Route::post('sending-servers/batch_action', 'SendingServerController@batchAction')->name('sending-servers.batch_action');

Route::resource('sending-servers', 'SendingServerController', [
        'only' => ['index', 'store', 'update', 'destroy'],
]);


//Plan For Plan module
/**
 * Plan details
 * 1. Name of plan
 * 2. Price for plan
 * 3. description (optional)
 * 4. Billing cycle (Daily, Monthly, yearly, custom - [integer amount with day, week, month, year]
 * 5. Currency
 * 6. Billing Information (optional)
 *
 * Quota
 * 1. SMS Sending Credits
 * 2. Max List/Phone book
 * 3. Max Subscriber
 * 4. Max subscriber per list
 *
 * Plan features
 * 1. Customer can import list
 * 2. Customer can export list
 * 3. Customer can use API
 * 4. Customer can create own sending server
 * 5. Customer can create sub-accounts
 * 6. Customer can delete sms history
 * 7. Add Previous sms balance on next subscription
 * 8. Sender ID Verification
 *
 * Pricing
 * 1. Coverage country
 * 2. plain, voice, mms, whatsapp message price
 *
 *Speed Limit
 * 1. Set a limit [unlimited, 100 sms per minute, 10000 sms per hour, 10000 sms per hour, 10,000 sms per day, 50,000 sms per day, custom - Sending Credits - Time Value - Time unit]
 * 2. Max Number of processes [1,2,3]
 *
 * Sending Servers
 * 1. Add multiple sending server (Rotate sending server when message will send)
 * 2. Set probability
 *
 */

Route::post('plans/search', 'PlanController@search')->name('plans.search');
Route::get('plans/export', 'PlanController@export')->name('plans.export');
Route::get('plans/{plan}/show', 'PlanController@show')->name('plans.show');
Route::post('plans/{plan}/active', 'PlanController@activeToggle')->name('plans.active');
Route::post('plans/{plan}/settings', 'PlanController@settingFeatures')->name('plans.settings.features');
Route::post('plans/{plan}/sending-servers', 'PlanController@addSendingServers')->name('plans.settings.sending-servers');
Route::post('plans/{plan}/update-fitness', 'PlanController@updateFitness')->name('plans.settings.update-fitness');
Route::post('plans/{plan}/set-primary', 'PlanController@setPrimary')->name('plans.settings.set-primary');
Route::post('plans/{plan}/speed-limit', 'PlanController@updateSpeedLimit')->name('plans.settings.speed-limit');
Route::post('plans/{plan}/cutting-system', 'PlanController@updateCuttingSystem')->name('plans.settings.cutting-system');
Route::post('plans/{plan}/pricing', 'PlanController@updatePricing')->name('plans.settings.pricing');
Route::get('plans/{plan}/coverage', 'PlanController@addCoverage')->name('plans.settings.coverage');
Route::post('plans/{plan}/coverage', 'PlanController@addCoveragePost');
Route::post('plans/{plan}/search', 'PlanController@searchCoverage')->name('plans.settings.search_coverage');
Route::get('plans/{plan}/edit-coverage/{coverage}', 'PlanController@editCoverage')->name('plans.settings.edit_coverage');
Route::post('plans/{plan}/edit-coverage/{coverage}', 'PlanController@editCoveragePost');
Route::post('plans/{plan}/coverage/{coverage}/active', 'PlanController@activeCoverageToggle')->name('plans.coverage.active');
Route::post('plans/{plan}/coverage/{coverage}/delete', 'PlanController@deleteCoverage')->name('plans.coverage.delete');

Route::post('plans/{plan}/delete-sending-server', 'PlanController@deletePlanSendingServer')->name('plans.settings.delete-sending-server');
Route::post('plans/{plan}/copy', 'PlanController@copy')->name('plans.copy');
Route::post('plans/batch_action', 'PlanController@batchAction')->name('plans.batch_action');

Route::resource('plans', 'PlanController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);


/*
|--------------------------------------------------------------------------
| Keywords module
|--------------------------------------------------------------------------
|
| Route for Keywords module
|
*/

Route::post('keywords/search', 'KeywordController@search')->name('keywords.search');
Route::get('keywords/export', 'KeywordController@export')->name('keywords.export');
Route::get('keywords/{keyword}/show', 'KeywordController@show')->name('keywords.show');
Route::post('keywords/{keyword}/remove-mms', 'KeywordController@removeMMS')->name('keywords.remove-mms');
Route::post('keywords/batch_action', 'KeywordController@batchAction')->name('keywords.batch_action');

Route::resource('keywords', 'KeywordController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);


/*
|--------------------------------------------------------------------------
| Sender id module
|--------------------------------------------------------------------------
|
| Route for sender id and sender id plan module
|
*/

Route::post('senderid/search', 'SenderIDController@search')->name('senderid.search');
Route::get('senderid/export', 'SenderIDController@export')->name('senderid.export');
Route::get('senderid/{senderid}/show', 'SenderIDController@show')->name('senderid.show');
Route::post('senderid/{senderid}/active', 'SenderIDController@activeToggle')->name('senderid.active');
Route::post('senderid/batch_action', 'SenderIDController@batchAction')->name('senderid.batch_action');
Route::resource('senderid', 'SenderIDController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

Route::get('senderid/plan', 'SenderIDController@plan')->name('senderid.plan');
Route::post('senderid/search-plan', 'SenderIDController@searchPlan')->name('senderid.search_plan');
Route::get('senderid/create-plan', 'SenderIDController@createPlan')->name('senderid.create_plan');
Route::post('senderid/store-plan', 'SenderIDController@storePlan')->name('senderid.store_plan');
Route::post('senderid/delete-plan/{plan}', 'SenderIDController@deletePlan')->name('senderid.delete_plan');
Route::post('senderid/delete-batch-plan', 'SenderIDController@deleteBatchPlan')->name('senderid.delete_batch_plan');


/*
|--------------------------------------------------------------------------
| Phone number module
|--------------------------------------------------------------------------
|
| Route for phone number module
|
*/

Route::post('phone-numbers/search', 'PhoneNumberController@search')->name('phone-numbers.search');
Route::get('phone-numbers/export', 'PhoneNumberController@export')->name('phone-numbers.export');
Route::get('phone-numbers/{number}/show', 'PhoneNumberController@show')->name('phone-numbers.show');
Route::post('phone-numbers/batch_action', 'PhoneNumberController@batchAction')->name('phone-numbers.batch_action');
Route::resource('phone-numbers', 'PhoneNumberController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

// Template tags Module Routes
Route::post('tags/search', 'TemplateTagsController@search')->name('tags.search');
Route::get('tags/export', 'TemplateTagsController@export')->name('tags.export');
Route::get('tags/{tag}/show', 'TemplateTagsController@show')->name('tags.show');
Route::post('tags/{tag}/active', 'TemplateTagsController@activeToggle')->name('tags.active');
Route::post('tags/batch_action', 'TemplateTagsController@batchAction')->name('tags.batch_action');
Route::resource('tags', 'TemplateTagsController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);


/*
|-------------------------------------------------------------------------
| Security module
|-------------------------------------------------------------------------
|
| working with blacklists and spam word features in this module
|
*/

// Blacklists Module Routes
Route::post('blacklists/search', 'BlacklistsController@search')->name('blacklists.search');
Route::get('blacklists/export', 'BlacklistsController@export')->name('blacklists.export');
Route::post('blacklists/batch_action', 'BlacklistsController@batchAction')->name('blacklists.batch_action');
Route::resource('blacklists', 'BlacklistsController', [
        'only' => ['index', 'create', 'store', 'destroy'],
]);


// Spam word Module Routes
Route::post('spam-word/search', 'SpamWordController@search')->name('spam-word.search');
Route::get('spam-word/export', 'SpamWordController@export')->name('spam-word.export');
Route::post('spam-word/batch_action', 'SpamWordController@batchAction')->name('spam-word.batch_action');
Route::resource('spam-word', 'SpamWordController', [
        'only' => ['index', 'create', 'store', 'destroy'],
]);


/*
|--------------------------------------------------------------------------
| Administrator Module
|--------------------------------------------------------------------------
|
| working with different types of admin and associate admin role
|
*/

//Admin Role Module
Route::post('roles/search', 'RoleController@search')->name('roles.search');
Route::get('roles/export', 'RoleController@export')->name('roles.export');
Route::get('roles/{role}/show', 'RoleController@show')->name('roles.show');
Route::post('roles/{role}/active', 'RoleController@activeToggle')->name('roles.active');
Route::post('roles/batch_action', 'RoleController@batchAction')->name('roles.batch_action');
Route::resource('roles', 'RoleController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

//Administrator Module
Route::post('administrators/search', 'AdministratorController@search')->name('administrators.search');
Route::get('administrators/export', 'AdministratorController@export')->name('administrators.export');
Route::get('administrators/{administrator}/show', 'AdministratorController@show')->name('administrators.show');
Route::post('administrators/{administrator}/active', 'AdministratorController@activeToggle')->name('administrators.active');
Route::post('administrators/batch_action', 'AdministratorController@batchAction')->name('administrators.batch_action');
Route::resource('administrators', 'AdministratorController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);


/*
|--------------------------------------------------------------------------
| settings module
|--------------------------------------------------------------------------
|
| All settings related routes describe here
|
*/

//All Settings
Route::get('settings', 'SettingsController@general')->name('settings.general');
Route::post('settings', 'SettingsController@postGeneral');
Route::post('settings/email', 'SettingsController@email')->name('settings.email');
Route::post('settings/authentication', 'SettingsController@authentication')->name('settings.authentication');
Route::post('settings/permissions', 'SettingsController@permissions')->name('settings.permissions');
Route::post('settings/notifications', 'SettingsController@notifications')->name('settings.notifications');
Route::post('settings/pusher', 'SettingsController@pusher')->name('settings.pusher');
Route::post('settings/license', 'SettingsController@license')->name('settings.license');

//Language module
Route::post('languages/{language}/active', 'LanguageController@activeToggle')->name('languages.active');
Route::get('languages/{language}/download', 'LanguageController@download')->name('languages.download');
Route::get('languages/{language}/upload', 'LanguageController@upload')->name('languages.upload');
Route::post('languages/{language}/upload', 'LanguageController@uploadLanguage');
Route::get('languages/{language}/show', 'LanguageController@show')->name('languages.show');

Route::resource('languages', 'LanguageController', [
        'only' => ['index', 'create', 'store', 'update', 'destroy'],
]);

//country module
Route::post('countries/search', 'CountriesController@search')->name('countries.search');
Route::post('countries/{country}/active', 'CountriesController@activeToggle')->name('countries.active');
Route::resource('countries', 'CountriesController', [
        'only' => ['index', 'create', 'store', 'destroy'],
]);


// Payment gateways
Route::post('payment-gateways/{gateway}/active', 'PaymentMethodController@activeToggle')->name('payment-gateways.active');
Route::get('payment-gateways/{gateway}/show', 'PaymentMethodController@show')->name('payment-gateways.show');

Route::resource('payment-gateways', 'PaymentMethodController', [
        'only' => ['index', 'update'],
]);

// Email Templates
Route::post('email-templates/{template}/active', 'EmailTemplateController@activeToggle')->name('email-templates.active');
Route::get('email-templates/{template}/show', 'EmailTemplateController@show')->name('email-templates.show');

Route::resource('email-templates', 'EmailTemplateController', [
        'only' => ['index', 'update'],
]);


//Maintenance Mode
Route::get('maintenance-mode', 'SettingsController@maintenanceMode')->name('settings.maintenance_mode');

//update application
Route::get('update-application', 'SettingsController@updateApplication')->name('settings.update_application');
Route::post('update-application', 'SettingsController@postUpdateApplication');
Route::get('check-available-update', 'SettingsController@checkAvailableUpdate')->name('settings.check_update');

//Plugins
Route::get('plugins', 'PluginsController@plugins')->name('plugins');


Route::post('invoices/search', 'InvoiceController@search')->name('invoices.search');
Route::get('invoices/{invoice}/view', 'InvoiceController@view')->name('invoices.view');
Route::get('invoices/{invoice}/print', 'InvoiceController@print')->name('invoices.print');
Route::post('invoices/{invoice}/approve', 'InvoiceController@approve')->name('invoices.approve');
Route::post('invoices/batch_action', 'InvoiceController@batchAction')->name('invoices.batch_action');
Route::resource('invoices', 'InvoiceController', [
        'only' => ['index', 'destroy'],
]);


/*
|--------------------------------------------------------------------------
| Reports module
|--------------------------------------------------------------------------
|
|
|
*/

Route::prefix('reports')->name('reports.')->group(function () {
    Route::get('/', 'ReportsController@reports')->name('all');
    Route::post('/search', 'ReportsController@searchAllMessages')->name('search.all');
    Route::post('/{uid}/view', 'ReportsController@viewReports');
    Route::post('/export', 'ReportsController@export')->name('export');
    Route::post('/{uid}/destroy', 'ReportsController@destroy');
    Route::post('batch_action', 'ReportsController@batchAction')->name('batch_action');
});

/*
|--------------------------------------------------------------------------
| Theme Customizer
|--------------------------------------------------------------------------
|
|
|
*/
Route::get('customizer', 'ThemeCustomizerController@index')->name('theme.customizer');
Route::post('customizer', 'ThemeCustomizerController@postCustomizer');

© 2025 UnknownSec
afwwrfwafr45458465
Password