shell bypass 403

Cubjrnet7 Shell


name : rsform_condition_details.php
<?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\Table\Table;

class TableRSForm_Condition_Details extends Table
{
	/**
	 * Primary Key
	 *
	 * @var int
	 */
	public $id = null;

	public $condition_id 	= null;
	public $component_id 	= null;
	public $operator 		= null;
	public $value 			= null;
		
	/**
	 * Constructor
	 *
	 * @param object Database connector object
	 */
	public function __construct(& $db)
	{
		parent::__construct('#__rsform_condition_details', 'id', $db);
	}
}

© 2025 Cubjrnet7