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.119
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 /
JsonApi /
V1 /
Users /
Delete
Unzip
Name
Size
Permission
Date
Action
Adapter.php
1010
B
-rwxrwxrwx
2022-04-21 13:43
Authorizer.php
2.21
KB
-rwxrwxrwx
2022-04-21 13:43
Schema.php
866
B
-rwxrwxrwx
2022-04-21 13:43
Validators.php
1.98
KB
-rwxrwxrwx
2022-04-21 13:43
Save
Rename
<?php namespace App\JsonApi\V1\Users; use CloudCreativity\LaravelJsonApi\Auth\AbstractAuthorizer; use Illuminate\Auth\Access\AuthorizationException; use Illuminate\Auth\AuthenticationException; use Illuminate\Http\Request; class Authorizer extends AbstractAuthorizer { /** * Authorize a resource index request. * * @param string $type * the domain record type. * @param Request $request * the inbound request. * @return bool * @throws AuthenticationException|AuthorizationException * if the request is not authorized. */ public function index($type, $request) { return true; } /** * Authorize a resource create request. * * @param string $type * the domain record type. * @param Request $request * the inbound request. * @return bool * @throws AuthenticationException|AuthorizationException * if the request is not authorized. */ public function create($type, $request) { return true; } /** * Authorize a resource read request. * * @param object $record * the domain record. * @param Request $request * the inbound request. * @return bool * @throws AuthenticationException|AuthorizationException * if the request is not authorized. */ public function read($record, $request) { return true; } /** * Authorize a resource update request. * * @param object $record * the domain record. * @param Request $request * the inbound request. * @return bool * @throws AuthenticationException|AuthorizationException * if the request is not authorized. */ public function update($record, $request) { return true; } /** * Authorize a resource read request. * * @param object $record * the domain record. * @param Request $request * the inbound request. * @return bool * @throws AuthenticationException|AuthorizationException * if the request is not authorized. */ public function delete($record, $request) { return true; } }