? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/happy2/administrator/components/com_k2/controllers/
File Upload :
Current File : /home/admin/public_html/old/happy2/administrator/components/com_k2/controllers/media.php

<?php
/**
 * @version		$Id: media.php 1812 2013-01-14 18:45:06Z lefteris.kavadas $
 * @package		K2
 * @author		JoomlaWorks http://www.joomlaworks.net
 * @copyright	Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
 * @license		GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.controller');

class K2ControllerMedia extends K2Controller
{

    public function display($cachable = false, $urlparams = array())
    {
        JRequest::setVar('view', 'media');
        parent::display();
    }

    function connector()
    {
        $mainframe = JFactory::getApplication();
        $params = JComponentHelper::getParams('com_media');
        $root = $params->get('file_path', 'media');
        $folder = JRequest::getVar('folder', $root, 'default', 'path');
        $type = JRequest::getCmd('type', 'video');
        if (JString::trim($folder) == "")
        {
            $folder = $root;
        }
        $url = JURI::root(true).'/'.$folder;
        $path = JPATH_SITE.DS.JPath::clean($folder);
        JPath::check($path);
        include_once JPATH_COMPONENT_ADMINISTRATOR.DS.'lib'.DS.'elfinder'.DS.'elFinderConnector.class.php';
        include_once JPATH_COMPONENT_ADMINISTRATOR.DS.'lib'.DS.'elfinder'.DS.'elFinder.class.php';
        include_once JPATH_COMPONENT_ADMINISTRATOR.DS.'lib'.DS.'elfinder'.DS.'elFinderVolumeDriver.class.php';
        include_once JPATH_COMPONENT_ADMINISTRATOR.DS.'lib'.DS.'elfinder'.DS.'elFinderVolumeLocalFileSystem.class.php';
        function access($attr, $path, $data, $volume)
        {
            $mainframe = JFactory::getApplication();
            // Hide files and folders starting with .
            if (strpos(basename($path), '.') === 0 && $attr == 'hidden')
            {
                return true;
            }
            // Read only access for front-end. Full access for administration section.
            switch($attr)
            {
                case 'read' :
                    return true;
                    break;
                case 'write' :
                    return ($mainframe->isSite()) ? false : true;
                    break;
                case 'locked' :
                    return ($mainframe->isSite()) ? true : false;
                    break;
                case 'hidden' :
                    return false;
                    break;
            }

        }

        if ($mainframe->isAdmin())
        {
            $permissions = array('read' => true, 'write' => true);
        }
        else
        {
            $permissions = array('read' => true, 'write' => false);
        }
        $options = array('roots' => array( array('driver' => 'LocalFileSystem', 'path' => $path, 'URL' => $url, 'accessControl' => 'access', 'defaults' => $permissions)));
        $connector = new elFinderConnector(new elFinder($options));
        $connector->run();
    }

}

T1KUS90T
  root-grov@210.1.60.28:~$