Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
lms-api /
app /
Modules /
User /
Entities /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitkeep
0
B
-rw-rw-r--
Account.php
1.61
KB
-rw-rw-r--
AccountContent.php
384
B
-rw-rw-r--
AccountModule.php
385
B
-rw-rw-r--
AccountRequest.php
668
B
-rw-rw-r--
AccountSocialMedia.php
447
B
-rw-rw-r--
AccountUser.php
922
B
-rw-rw-r--
MasterContent.php
276
B
-rw-rw-r--
MasterSocialMedia.php
248
B
-rw-rw-r--
ModelHasRole.php
165
B
-rw-rw-r--
Role.php
147
B
-rw-rw-r--
Setting.php
294
B
-rw-rw-r--
SystemModule.php
252
B
-rw-rw-r--
User.php
1.6
KB
-rw-rw-r--
UserActivations.php
248
B
-rw-rw-r--
UserProfile.php
772
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User.php
<?php namespace App\Modules\User\Entities; use App\OauthAccessToken; use App\Traits\CommonTrait; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Passport\HasApiTokens; use Spatie\Permission\Traits\HasRoles; class User extends Authenticatable { use HasRoles, HasApiTokens, Notifiable, CommonTrait; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'uuid', 'firstname','middlename','lastname', 'email','phone', 'company_name', 'password', 'status', 'is_verified', 'user_type' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; protected $appends = ['full_name', 'account_ids']; public function accounts() { return $this->belongsToMany(Account::class); } public function role() { return $this->get_role($this); } public function getFullNameAttribute() { return $this->firstname . ' ' . $this->lastname; } public function getAccountIdsAttribute() { return $this->accounts()->pluck('accounts.id'); } public function AauthAcessToken() { return $this->hasMany(OauthAccessToken::class); } public function account_user() { return $this->hasOne(AccountUser::class, 'user_id', 'id'); } public function user_profile() { return $this->hasOne(UserProfile::class, 'user_id', 'id'); } public function generate_token() { } }
Close