!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/Cookie/   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:     CookieJar.php (4.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Cookie;

use 
Illuminate\Support\Arr;
use 
Symfony\Component\HttpFoundation\Cookie;
use 
Illuminate\Contracts\Cookie\QueueingFactory as JarContract;

class 
CookieJar implements JarContract
{
    
/**
     * The default path (if specified).
     *
     * @var string
     */
    
protected $path '/';

    
/**
     * The default domain (if specified).
     *
     * @var string
     */
    
protected $domain null;

    
/**
     * The default secure setting (defaults to false).
     *
     * @var bool
     */
    
protected $secure false;

    
/**
     * All of the cookies queued for sending.
     *
     * @var array
     */
    
protected $queued = [];

    
/**
     * Create a new cookie instance.
     *
     * @param  string  $name
     * @param  string  $value
     * @param  int     $minutes
     * @param  string  $path
     * @param  string  $domain
     * @param  bool    $secure
     * @param  bool    $httpOnly
     * @return \Symfony\Component\HttpFoundation\Cookie
     */
    
public function make($name$value$minutes 0$path null$domain null$secure false$httpOnly true)
    {
        list(
$path$domain$secure) = $this->getPathAndDomain($path$domain$secure);

        
$time = ($minutes == 0) ? time() + ($minutes 60);

        return new 
Cookie($name$value$time$path$domain$secure$httpOnly);
    }

    
/**
     * Create a cookie that lasts "forever" (five years).
     *
     * @param  string  $name
     * @param  string  $value
     * @param  string  $path
     * @param  string  $domain
     * @param  bool    $secure
     * @param  bool    $httpOnly
     * @return \Symfony\Component\HttpFoundation\Cookie
     */
    
public function forever($name$value$path null$domain null$secure false$httpOnly true)
    {
        return 
$this->make($name$value2628000$path$domain$secure$httpOnly);
    }

    
/**
     * Expire the given cookie.
     *
     * @param  string  $name
     * @param  string  $path
     * @param  string  $domain
     * @return \Symfony\Component\HttpFoundation\Cookie
     */
    
public function forget($name$path null$domain null)
    {
        return 
$this->make($namenull, -2628000$path$domain);
    }

    
/**
     * Determine if a cookie has been queued.
     *
     * @param  string  $key
     * @return bool
     */
    
public function hasQueued($key)
    {
        return ! 
is_null($this->queued($key));
    }

    
/**
     * Get a queued cookie instance.
     *
     * @param  string  $key
     * @param  mixed   $default
     * @return \Symfony\Component\HttpFoundation\Cookie
     */
    
public function queued($key$default null)
    {
        return 
Arr::get($this->queued$key$default);
    }

    
/**
     * Queue a cookie to send with the next response.
     *
     * @param  mixed
     * @return void
     */
    
public function queue()
    {
        if (
head(func_get_args()) instanceof Cookie) {
            
$cookie head(func_get_args());
        } else {
            
$cookie call_user_func_array([$this'make'], func_get_args());
        }

        
$this->queued[$cookie->getName()] = $cookie;
    }

    
/**
     * Remove a cookie from the queue.
     *
     * @param  string  $name
     * @return void
     */
    
public function unqueue($name)
    {
        unset(
$this->queued[$name]);
    }

    
/**
     * Get the path and domain, or the default values.
     *
     * @param  string  $path
     * @param  string  $domain
     * @param  bool    $secure
     * @return array
     */
    
protected function getPathAndDomain($path$domain$secure false)
    {
        return [
$path ?: $this->path$domain ?: $this->domain$secure ?: $this->secure];
    }

    
/**
     * Set the default path and domain for the jar.
     *
     * @param  string  $path
     * @param  string  $domain
     * @param  bool    $secure
     * @return $this
     */
    
public function setDefaultPathAndDomain($path$domain$secure false)
    {
        list(
$this->path$this->domain$this->secure) = [$path$domain$secure];

        return 
$this;
    }

    
/**
     * Get the cookies which have been queued for the next request.
     *
     * @return array
     */
    
public function getQueuedCookies()
    {
        return 
$this->queued;
    }
}

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