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 : 52.15.239.254 | Time @ Server : 19 Oct 2024 11:12:26
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/codeception/codeception/src/Codeception/Util/

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

File Path : /home/webmaster/firofichi/www/vendor/codeception/codeception/src/Codeception/Util/Debug.php

<?php namespace Codeception\Util; use Codeception\Lib\Console\Output; /** * This class is used only when Codeception is executed in `--debug` mode. * In other cases method of this class won't be seen. */ class Debug { /** * @var Output null */ protected static $output = null; public static function setOutput(Output $output) { self::$output = $output; } /** * Prints data to screen. Message can be any time of data * * @param $message */ public static function debug($message) { if (!self::$output) { return; } self::$output->debug($message); } /** * Pauses execution and waits for user input to proceed. */ public static function pause() { if (!self::$output) { return; } self::$output->writeln("<info>The execution has been paused. Press ENTER to continue</info>"); if (trim(fgets(STDIN)) != chr(13)) { return; } } }