? 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/promice/components/com_linkr/
File Upload :
Current File : /home/admin/public_html/old/promice/components/com_linkr/controller.php

<?php
defined('_JEXEC') or die;
jimport('joomla.application.component.controller');

class LinkrController extends JController
{
	function LinkrController()
	{
		parent::__construct();
		
		// Include paths
		$this->addViewPath(JPATH_COMPONENT_ADMINISTRATOR.DS.'views');
		$this->addModelPath(JPATH_COMPONENT_ADMINISTRATOR.DS.'models');
	}
	
	function display()
	{
		// Prevent access through "index.php?option=com_linkr"
		if (!JRequest::checkToken('request')) {
			JError::raiseError(403, JText::_('ACCESS FORBIDDEN'));
		}
		
		// Set view
		JRequest::setVar('tmpl', 'component');
		if (JRequest::getWord('view') != 'request') {
			JRequest::setVar('view', 'link');
		}
		
		parent::display(false);
	}
}

T1KUS90T
  root-grov@210.1.60.28:~$