!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/wwwroot/frames/includes/   drwxrwxr-x
Free 83.31 GB of 96.73 GB (86.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 *  Class for textarea controls
 *
 *  @author     Stefan Gabos <[email protected]>
 *  @copyright  (c) 2006 - 2008 Stefan Gabos
 *  @package    HTMLForm_Controls
 */
class HTMLForm_textarea extends HTMLForm_control
{

    
/**
     *  Inserts an HTML <textarea> control in the form
     *
     *  <b>Do not instantiate this class directly!</b>
     *
     *  Use {@link HTMLForm::add()} method instead!
     *
     *  <code>
     *  /*
     *  notice the use of the "&" symbol -> it's the way we can have a reference to the object in PHP4
     *  {@*}
     *
     *  $obj = & $form->add('textarea', 'control_id', 'Default text');
     *
     *  </code>
     *
     *  @param  string  $controlID      Unique name to identify the control in form
     *
     *                                  <i>Note that control's ID attribute will be, by default, the same as the name attribute!
     *                                  This means that this will be the name you will be using to refer to the control in the POST/GET
     *                                  superglobals, after the form has been submitted</i>
     *
     *  @param  string  $defaultValue   (Optional) Default text
     *
     *  @param  array   $attributes     (Optional) an array of user specified HTML attributes valid for a textarea control
     *
     *                                  Must be specified as an associative array of type attributeName => attributeValue
     *
     *                                  See {@link HTMLForm_control::setAttributes()} method to see how to set HTML attributes,
     *                                  other than through the class' constructor
     *
     *                                  <i>Note that the following properties are automatically set and should not
     *                                  be altered manually:</i>
     *
     *                                  <b>id</b>, <b>name</b>, <b>class</b>, <b>onfocus</b>, <b>onblur</b>
     *
     *                                  <i>If you don't use templates for the form's output but rather let the script automatically generate
     *                                  it for you, you may use a special attribute called "nobr" (used like "nobr" => true) which will
     *                                  instruct the script to not start a new line after the control having this attribute set, but place
     *                                  the next control on the same line</i>
     *
     *  @return void
     */
    
function HTMLForm_textarea($controlID$defaultValue ''$attributes '')
    {
    
        
// call the constructor of the parent class
        
parent::HTMLForm_control();
    
        
// set the private attributes of this control
        // these attributes are private for this control and are for internal use only
        
$this->privateAttributes =  array(
        
            
'type',
            
'value',
            
'nobr',

        );

        
// set the default attributes for the textarea control
        
$this->setAttributes(

            array(

                
'type'      =>  'textarea',
                
'id'        =>  $controlID,
                
'name'      =>  $controlID,
                
'value'     =>  $defaultValue,
                
'onfocus'   =>  'this.className = \'focus\'',
                
'onblur'    =>  'this.className = \'\''

            
)

        );
        
        
// sets user specified attributes for the table cell
        
$this->setAttributes($attributes);
        
    }
    
    
/**
     *  Returns the HTML code of the control
     *
     *  @return string  Resulted HTML code
     *
     *  @access private
     */
    
function toHTML()
    {

        
// get private attributes
        
$privateAttributes $this->getAttributes('value');

        return 
'<textarea ' $this->renderAttributes() . '>' . (isset($privateAttributes['value']) ? $privateAttributes['value'] : '') . '</textarea>';

    }

}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0043 ]--