!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/Handler/   drwxrwxr-x
Free 13.22 GB of 57.97 GB (22.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MongoDbSessionHandler.php (4.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\Handler;

use 
MongoDB\BSON\Binary;
use 
MongoDB\BSON\UTCDateTime;
use 
MongoDB\Client;
use 
MongoDB\Collection;

/**
 * Session handler using the mongodb/mongodb package and MongoDB driver extension.
 *
 * @author Markus Bachmann <markus.bachmann@bachi.biz>
 *
 * @see https://packagist.org/packages/mongodb/mongodb
 * @see https://php.net/mongodb
 */
class MongoDbSessionHandler extends AbstractSessionHandler
{
    private 
$mongo;
    private 
$collection;
    private array 
$options;

    
/**
     * Constructor.
     *
     * List of available options:
     *  * database: The name of the database [required]
     *  * collection: The name of the collection [required]
     *  * id_field: The field name for storing the session id [default: _id]
     *  * data_field: The field name for storing the session data [default: data]
     *  * time_field: The field name for storing the timestamp [default: time]
     *  * expiry_field: The field name for storing the expiry-timestamp [default: expires_at].
     *
     * It is strongly recommended to put an index on the `expiry_field` for
     * garbage-collection. Alternatively it's possible to automatically expire
     * the sessions in the database as described below:
     *
     * A TTL collections can be used on MongoDB 2.2+ to cleanup expired sessions
     * automatically. Such an index can for example look like this:
     *
     *     db.<session-collection>.createIndex(
     *         { "<expiry-field>": 1 },
     *         { "expireAfterSeconds": 0 }
     *     )
     *
     * More details on: https://docs.mongodb.org/manual/tutorial/expire-data/
     *
     * If you use such an index, you can drop `gc_probability` to 0 since
     * no garbage-collection is required.
     *
     * @throws \InvalidArgumentException When "database" or "collection" not provided
     */
    
public function __construct(Client $mongo, array $options)
    {
        if (!isset(
$options['database']) || !isset($options['collection'])) {
            throw new 
\InvalidArgumentException('You must provide the "database" and "collection" option for MongoDBSessionHandler.');
        }

        
$this->mongo $mongo;

        
$this->options array_merge([
            
'id_field' => '_id',
            
'data_field' => 'data',
            
'time_field' => 'time',
            
'expiry_field' => 'expires_at',
        ], 
$options);
    }

    public function 
close(): bool
    
{
        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doDestroy(string $sessionId): bool
    
{
        
$this->getCollection()->deleteOne([
            
$this->options['id_field'] => $sessionId,
        ]);

        return 
true;
    }

    public function 
gc(int $maxlifetime): int|false
    
{
        return 
$this->getCollection()->deleteMany([
            
$this->options['expiry_field'] => ['$lt' => new UTCDateTime()],
        ])->
getDeletedCount();
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doWrite(string $sessionIdstring $data): bool
    
{
        
$expiry = new UTCDateTime((time() + (int) ini_get('session.gc_maxlifetime')) * 1000);

        
$fields = [
            
$this->options['time_field'] => new UTCDateTime(),
            
$this->options['expiry_field'] => $expiry,
            
$this->options['data_field'] => new Binary($dataBinary::TYPE_OLD_BINARY),
        ];

        
$this->getCollection()->updateOne(
            [
$this->options['id_field'] => $sessionId],
            [
'$set' => $fields],
            [
'upsert' => true]
        );

        return 
true;
    }

    public function 
updateTimestamp(string $sessionIdstring $data): bool
    
{
        
$expiry = new UTCDateTime((time() + (int) ini_get('session.gc_maxlifetime')) * 1000);

        
$this->getCollection()->updateOne(
            [
$this->options['id_field'] => $sessionId],
            [
'$set' => [
                
$this->options['time_field'] => new UTCDateTime(),
                
$this->options['expiry_field'] => $expiry,
            ]]
        );

        return 
true;
    }

    
/**
     * {@inheritdoc}
     */
    
protected function doRead(string $sessionId): string
    
{
        
$dbData $this->getCollection()->findOne([
            
$this->options['id_field'] => $sessionId,
            
$this->options['expiry_field'] => ['$gte' => new UTCDateTime()],
        ]);

        if (
null === $dbData) {
            return 
'';
        }

        return 
$dbData[$this->options['data_field']]->getData();
    }

    private function 
getCollection(): Collection
    
{
        return 
$this->collection ??= $this->mongo->selectCollection($this->options['database'], $this->options['collection']);
    }

    protected function 
getMongo(): Client
    
{
        return 
$this->mongo;
    }
}

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