shell bypass 403

Cubjrnet7 Shell

: /home/eklavya/www/libraries/src/Table/ [ drwxr-xr-x ]

name : Ucm.php
<?php

/**
 * Joomla! Content Management System
 *
 * @copyright  (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\CMS\Table;

use Joomla\Database\DatabaseInterface;
use Joomla\Event\DispatcherInterface;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * UCM map table
 *
 * @since  3.1
 * @deprecated  5.4.0 will be removed in 7.0 without replacement
 */
class Ucm extends Table
{
    /**
     * Constructor
     *
     * @param   DatabaseInterface     $db          Database connector object
     * @param   ?DispatcherInterface  $dispatcher  Event dispatcher for this table
     *
     * @since   3.1
     * @deprecated  5.4.0 will be removed in 7.0 without replacement
     */
    public function __construct(DatabaseInterface $db, ?DispatcherInterface $dispatcher = null)
    {
        parent::__construct('#__ucm_base', 'ucm_id', $db, $dispatcher);
    }
}

© 2025 Cubjrnet7