shell bypass 403
<?php
/**
* @package RSForm! Pro
* @copyright (C) 2007-2019 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die;
use Joomla\CMS\MVC\View\HtmlView;
use Joomla\CMS\Factory;
class RsformViewDeletesubmission extends HtmlView
{
public function display($tpl = null)
{
$this->params = Factory::getApplication()->getParams('com_rsform');
$this->form = $this->get('Form');
$this->document->setMetaData('robots', 'noindex');
parent::display($tpl);
}
}