shell bypass 403
<?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\Table; use Exception; use Joomla\CMS\Table\Table; use Joomla\Database\DatabaseDriver; defined('_JEXEC') or die; class RuleTable extends Table { public function __construct(DatabaseDriver $db) { parent::__construct('#__conditions_rules', 'id', $db); } public function check(): bool { try { parent::check(); } catch (Exception $e) { $this->setError($e->getMessage()); return false; } $this->group_id = (int) $this->group_id; return true; } }