!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_tdfonline/php/nucleo/lib/   drwxr-xr-x
Free 14.92 GB of 61.93 GB (24.1%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     toba_tarea.php (1.3 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Interface que deben respetar aquellas clases que deseen incluirse en el planificador de tareas
 * Tener en cuenta que luego de programar una tarea, la clase no puede cambiar en su implementación debido a que la tarea se serializa en la base
 * Si la clase del objeto cambia entre la serialización y la ejecución, la deserialización de la base tirara un error fatal
 * @package Centrales
 */
interface toba_tarea
{
    function 
ejecutar();    
}

/**
 * Tarea generica que incluye y ejecuta un método específico de una clase
 * @package Centrales 
 */
class toba_tarea_php implements toba_tarea
{
    protected 
$clase;
    protected 
$archivo;
    protected 
$metodo;
    protected 
$parametros = array();
    
    function 
__construct($clase$archivo_php=null)
    {
        
$this->clase $clase;
        
$this->archivo $archivo_php;
    }
    
    function 
ejecutar()
    {
        if (isset(
$this->archivo)) {
            require_once(
$this->archivo);
        }
        if (isset(
$this->clase)) {
            
//-- Es un metodo de una clase
            
call_user_func_array(array($this->clase$this->metodo), $this->parametros);            
        } else {
            
//-- Es una funcion
            
call_user_func_array($this->metodo$this->parametros);            
        }
    }
    
    function 
set_metodo($metodo)
    {
        
$this->metodo $metodo;
        
$parametros func_get_args();
        
array_splice($parametros1);
        
$this->parametros $parametros;
    }    
    
}


?>

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