!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/proyectos/toba_editor/php/configuracion/administracion/   drwxrwxr-x
Free 14.21 GB of 61.93 GB (22.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     administracion_proceso_gui.php (2.31 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
class administracion_proceso_gui implements toba_proceso_gui
{
    static protected 
$display_ancho 79;
    const 
display_coleccion_espacio_nombre 25;
    const 
display_prefijo_linea ' ';

    protected 
$_log '';
    
    function 
get_info_log()
    {
        return 
$this->_log;
    }
    
    protected function 
imprimir($texto)
    {
        if (
toba_manejador_archivos::es_windows() && function_exists('iconv')) {
            
$this->_log .= iconv('latin1''IBM850'$texto);
        } else {
            
$this->_log .= $texto;
        }
    }

    function 
separador($texto=''$caracter='-')
    {
        if(
$texto != '') { $texto "--  $texto  ";}
        
$this->imprimir("\n");
        
$this->linea_completa($texto$caracter);
        
$this->imprimir("\n");
    }

    function 
titulo($texto)
    {
        
$this->imprimir("\n");
        
$this->linea_completa(null'-');
        
$this->linea_completa($texto  "' ');
        
$this->linea_completa(null'-');
        
$this->imprimir("\n");
        
    }

    function 
subtitulo($texto)
    {
        
$this->imprimir(self::display_prefijo_linea $texto "\n");
        
$this->imprimir(self::display_prefijo_linea str_repeat('-'strlen($texto)));
        
$this->imprimir("\n\n");
        
    }

    function 
mensaje($texto$bajar_linea=true)
    {
        
$lineas toba_texto::separar_texto_lineas($textoself::$display_ancho);
        for (
$i 0$i count($lineas); $i++) {
            if (
$bajar_linea || $i count($lineas) - 1) {
                
$extra "\n";
            } else {
                
$extra '';
            }
            
$this->imprimir(self::display_prefijo_linea $lineas[$i] . $extra);
        }
    }

    function 
progreso_avanzar()
    {
        
$this->imprimir('.');
    }

    function 
progreso_fin()
    {
        
$this->imprimir("OK\n");
        
    }

    function 
enter()
    {
        
$this->imprimir("\n");
    }

    function 
error($texto)
    {
        
toba_logger::instancia()->error($texto);
        
$lineas toba_texto::separar_texto_lineas($textoself::$display_ancho);
        foreach (
$lineas as $linea) {
            
$this->_log .= self::display_prefijo_linea $linea "\n" ;
        }
        
    }
    
    function 
linea_completa($base=''$caracter_relleno)
    {
        if (
self::$display_ancho 100) {
            
$ancho 100;
        } else {
            
$ancho self::$display_ancho;
        }
        
$this->imprimir(str_pad(self::display_prefijo_linea $base$ancho$caracter_relleno));
        
$this->imprimir("\n");
    }

    function 
lista($lista$titulo)
    {
        if (
count($lista) > 0) {
            
$i 0;
            foreach (
$lista as $l) {
                
$datos[$i][0] = $l;
                
$i++;
            }
            
$this->imprimir(Console_Table::fromArray(array($titulo), $datos));
        }
    }
}
?>

:: 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.6836 ]--