!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/symfony/http-foundation/Session/Storage/   drwxrwxr-x
Free 13.24 GB of 57.97 GB (22.85%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MockFileSessionStorage.php (3.93 KB)      -rwxrwxr-x
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\Storage;

/**
 * MockFileSessionStorage is used to mock sessions for
 * functional testing when done in a single PHP process.
 *
 * No PHP session is actually started since a session can be initialized
 * and shutdown only once per PHP execution cycle and this class does
 * not pollute any session related globals, including session_*() functions
 * or session.* PHP ini directives.
 *
 * @author Drak <drak@zikula.org>
 */
class MockFileSessionStorage extends MockArraySessionStorage
{
    private 
string $savePath;

    
/**
     * @param string|null $savePath Path of directory to save session files
     */
    
public function __construct(string $savePath nullstring $name 'MOCKSESSID'MetadataBag $metaBag null)
    {
        if (
null === $savePath) {
            
$savePath sys_get_temp_dir();
        }

        if (!
is_dir($savePath) && !@mkdir($savePath0777true) && !is_dir($savePath)) {
            throw new 
\RuntimeException(sprintf('Session Storage was not able to create directory "%s".'$savePath));
        }

        
$this->savePath $savePath;

        
parent::__construct($name$metaBag);
    }

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

        if (!
$this->id) {
            
$this->id $this->generateId();
        }

        
$this->read();

        
$this->started true;

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
public function regenerate(bool $destroy falseint $lifetime null): bool
    
{
        if (!
$this->started) {
            
$this->start();
        }

        if (
$destroy) {
            
$this->destroy();
        }

        return 
parent::regenerate($destroy$lifetime);
    }

    
/**
     * {@inheritdoc}
     */
    
public function save()
    {
        if (!
$this->started) {
            throw new 
\RuntimeException('Trying to save a session that was not started yet or was already closed.');
        }

        
$data $this->data;

        foreach (
$this->bags as $bag) {
            if (empty(
$data[$key $bag->getStorageKey()])) {
                unset(
$data[$key]);
            }
        }
        if ([
$key $this->metadataBag->getStorageKey()] === array_keys($data)) {
            unset(
$data[$key]);
        }

        try {
            if (
$data) {
                
$path $this->getFilePath();
                
$tmp $path.bin2hex(random_bytes(6));
                
file_put_contents($tmpserialize($data));
                
rename($tmp$path);
            } else {
                
$this->destroy();
            }
        } finally {
            
$this->data $data;
        }

        
// this is needed when the session object is re-used across multiple requests
        // in functional tests.
        
$this->started false;
    }

    
/**
     * Deletes a session from persistent storage.
     * Deliberately leaves session data in memory intact.
     */
    
private function destroy(): void
    
{
        
set_error_handler(static function () {});
        try {
            
unlink($this->getFilePath());
        } finally {
            
restore_error_handler();
        }
    }

    
/**
     * Calculate path to file.
     */
    
private function getFilePath(): string
    
{
        return 
$this->savePath.'/'.$this->id.'.mocksess';
    }

    
/**
     * Reads session from storage and loads session.
     */
    
private function read(): void
    
{
        
set_error_handler(static function () {});
        try {
            
$data file_get_contents($this->getFilePath());
        } finally {
            
restore_error_handler();
        }

        
$this->data $data unserialize($data) : [];

        
$this->loadSession();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]--