!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/siu/arai-cli/src/SIU/AraiCli/IO/   drwxrwxr-x
Free 15.58 GB of 61.93 GB (25.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     IOInterface.php (4.93 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Created by IntelliJ IDEA.
 * User: ablanco
 * Date: 23/06/15
 * Time: 15:00.
 */
namespace SIU\AraiCli\IO;

interface 
IOInterface
{
    
/**
     * Is this input means interactive?
     *
     * @return bool
     */
    
public function isInteractive();

    
/**
     * Is this output verbose?
     *
     * @return bool
     */
    
public function isVerbose();

    
/**
     * Is the output very verbose?
     *
     * @return bool
     */
    
public function isVeryVerbose();

    
/**
     * Is the output in debug verbosity?
     *
     * @return bool
     */
    
public function isDebug();

    
/**
     * Is this output decorated?
     *
     * @return bool
     */
    
public function isDecorated();

    
/**
     * Writes a message to the output.
     *
     * @param string|array $messages The message as an array of lines or a single string
     * @param bool         $newline  Whether to add a newline or not
     */
    
public function write($messages$newline true);

    
/**
     * Writes a message to the error output.
     *
     * @param string|array $messages The message as an array of lines or a single string
     * @param bool         $newline  Whether to add a newline or not
     */
    
public function writeError($messages$newline true);

    
/**
     * Overwrites a previous message to the output.
     *
     * @param string|array $messages The message as an array of lines or a single string
     * @param bool         $newline  Whether to add a newline or not
     * @param int          $size     The size of line
     */
    
public function overwrite($messages$newline true$size null);

    
/**
     * Overwrites a previous message to the error output.
     *
     * @param string|array $messages The message as an array of lines or a single string
     * @param bool         $newline  Whether to add a newline or not
     * @param int          $size     The size of line
     */
    
public function overwriteError($messages$newline true$size null);

    
/**
     * Asks a question to the user.
     *
     * @param string|array $question The question to ask
     * @param string       $default  The default answer if none is given by the user
     *
     * @return string The user answer
     *
     * @throws \RuntimeException If there is no data to read in the input stream
     */
    
public function ask($question$default null);

    
/**
     * Asks a confirmation to the user.
     *
     * The question will be asked until the user answers by nothing, yes, or no.
     *
     * @param string|array $question The question to ask
     * @param bool         $default  The default answer if the user enters nothing
     *
     * @return bool true if the user has confirmed, false otherwise
     */
    
public function askConfirmation($question$default true);

    
/**
     * Asks for a value and validates the response.
     *
     * The validator receives the data to validate. It must return the
     * validated data when the data is valid and throw an exception
     * otherwise.
     *
     * @param string|array $question  The question to ask
     * @param callback     $validator A PHP callback
     * @param null|int     $attempts  Max number of times to ask before giving up (default of null means infinite)
     * @param string       $default   The default answer if none is given by the user
     *
     * @return mixed
     *
     * @throws \Exception When any of the validators return an error
     */
    
public function askAndValidate($question$validator$attempts null$default null);

    
/**
     * Asks a question to the user and hide the answer.
     *
     * @param string $question The question to ask
     *
     * @return string The answer
     */
    
public function askAndHideAnswer($question);
//
//    /**
//     * Get all authentication information entered.
//     *
//     * @return array The map of authentication data
//     */
//    public function getAuthentications();
//
//    /**
//     * Verify if the repository has a authentication information.
//     *
//     * @param string $repositoryName The unique name of repository
//     *
//     * @return boolean
//     */
//    public function hasAuthentication($repositoryName);
//
//    /**
//     * Get the username and password of repository.
//     *
//     * @param string $repositoryName The unique name of repository
//     *
//     * @return array The 'username' and 'password'
//     */
//    public function getAuthentication($repositoryName);

//    /**
//     * Set the authentication information for the repository.
//     *
//     * @param string $repositoryName The unique name of repository
//     * @param string $username       The username
//     * @param string $password       The password
//     */
//    public function setAuthentication($repositoryName, $username, $password = null);
//
//    /**
//     * Loads authentications from a config instance
//     *
//     * @param Config $config
//     */
//    public function loadConfiguration(Config $config);
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.334 ]--