shell bypass 403
<?php /** * @package Joomla.Administrator * @subpackage com_actionlogs * * @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Actionlogs\Administrator\Dispatcher; use Joomla\CMS\Access\Exception\NotAllowed; use Joomla\CMS\Dispatcher\ComponentDispatcher; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * ComponentDispatcher class for com_actionlogs * * @since 4.2.7 */ class Dispatcher extends ComponentDispatcher { /** * Method to check component access permission * * @return void * * @since 4.2.7 */ protected function checkAccess() { $user = $this->app->getIdentity(); // Access check if (!$user->authorise('core.admin')) { throw new NotAllowed($this->app->getLanguage()->_('JERROR_ALERTNOAUTHOR'), 403); } } }