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
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
www /
plugins /
privacy /
contact /
[ HOME SHELL ]
Name
Size
Permission
Action
contact.php
1.81
KB
-rw-r--r--
contact.xml
804
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : contact.php
<?php /** * @package Joomla.Plugin * @subpackage Privacy.contact * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JLoader::register('PrivacyPlugin', JPATH_ADMINISTRATOR . '/components/com_privacy/helpers/plugin.php'); /** * Privacy plugin managing Joomla user contact data * * @since 3.9.0 */ class PlgPrivacyContact extends PrivacyPlugin { /** * Processes an export request for Joomla core user contact data * * This event will collect data for the contact core tables: * * - Contact custom fields * * @param PrivacyTableRequest $request The request record being processed * @param JUser $user The user account associated with this request if available * * @return PrivacyExportDomain[] * * @since 3.9.0 */ public function onPrivacyExportRequest(PrivacyTableRequest $request, JUser $user = null) { if (!$user && !$request->email) { return array(); } $domains = array(); $domain = $this->createDomain('user_contact', 'joomla_user_contact_data'); $domains[] = $domain; $query = $this->db->getQuery(true) ->select('*') ->from($this->db->quoteName('#__contact_details')) ->order($this->db->quoteName('ordering') . ' ASC'); if ($user) { $query->where($this->db->quoteName('user_id') . ' = ' . (int) $user->id); } else { $query->where($this->db->quoteName('email_to') . ' = ' . $this->db->quote($request->email)); } $items = $this->db->setQuery($query)->loadObjectList(); foreach ($items as $item) { $domain->addItem($this->createItemFromArray((array) $item)); } $domains[] = $this->createCustomFieldsDomain('com_contact.contact', $items); return $domains; } }
Close