shell bypass 403

Cubjrnet7 Shell


name : JsonapiView.php
<?php

/**
 * @package     Joomla.API
 * @subpackage  com_media
 *
 * @copyright   (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Media\Api\View\Media;

use Joomla\CMS\MVC\View\JsonApiView as BaseApiView;
use Joomla\Component\Media\Administrator\Provider\ProviderManagerHelperTrait;

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

/**
 * Media web service view
 *
 * @since  4.1.0
 */
class JsonapiView extends BaseApiView
{
    use ProviderManagerHelperTrait;

    /**
     * The fields to render item in the documents
     *
     * @var    array
     * @since  4.1.0
     */
    protected $fieldsToRenderItem = [
        'type',
        'name',
        'path',
        'extension',
        'size',
        'mime_type',
        'width',
        'height',
        'create_date',
        'create_date_formatted',
        'modified_date',
        'modified_date_formatted',
        'thumb_path',
        'adapter',
        'content',
        'url',
        'tempUrl',
    ];

    /**
     * The fields to render items in the documents
     *
     * @var    array
     * @since  4.1.0
     */
    protected $fieldsToRenderList = [
        'type',
        'name',
        'path',
        'extension',
        'size',
        'mime_type',
        'width',
        'height',
        'create_date',
        'create_date_formatted',
        'modified_date',
        'modified_date_formatted',
        'thumb_path',
        'adapter',
        'content',
        'url',
        'tempUrl',
    ];

    /**
     * Prepare item before render.
     *
     * @param   object  $item  The model item
     *
     * @return  object
     *
     * @since   4.1.0
     */
    protected function prepareItem($item)
    {
        // Media resources have no id.
        $item->id = '0';

        return $item;
    }
}

© 2025 Cubjrnet7