shell bypass 403
Cubjrnet7 Shell
: /home/eklavya/public_html/administrator/components/com_conditions/src/Condition/Hikashop/ [ drwxr-xr-x ]
<?php /** * @package Conditions * @version 25.7.12430 * * @author Peter van Westen <[email protected]> * @link https://regularlabs.com * @copyright Copyright © 2025 Regular Labs All Rights Reserved * @license GNU General Public License version 2 or later */ namespace RegularLabs\Component\Conditions\Administrator\Condition\Hikashop; defined('_JEXEC') or die; use RegularLabs\Component\Conditions\Administrator\Condition\HasArraySelection; class Item extends Hikashop { use HasArraySelection; public function pass(): bool { if ($this->request->option !== 'com_hikashop') { return false; } if ($this->request->view !== 'product') { return false; } return $this->passSimple($this->request->id); } }