shell bypass 403
<?php
/**
* @package pkg_dearflip
* @subpackage com_dearflip
* @since 1.0.0
* @copyright Copyright © 2007 Free Software Foundation, Inc. All rights reserved.
* @license GNU General Public License version 3 or later; see https://www.gnu.org/licenses/gpl-3.0.en.html
*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
// Set some global property
//use Joomla\CMS\Factory;
$document = JFactory::getDocument();
$options = array("version" => "auto");
$attributes = array("defer" => "defer");
$document->addStyleSheet(JURI::root() . "administrator/components/com_dearflip/dearflip.css");
// Get an instance of the controller prefixed by HelloWorld
$controller = JControllerLegacy::getInstance('Dearflip');
$controller->execute(JFactory::getApplication()->input->get('task'));
// Redirect if set by the controller
$controller->redirect();