!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.12%)
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_hidden.php (2.15 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

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

    
/**
     *  Inserts an HTML <input type="hidden"> control in the form
     *
     *  <b>Do not instantiate this class directly!</b>
     *
     *  Use {@link HTMLForm::add()} method instead!
     *
     *  <code>
     *  /*
     *  note the use of the "&" symbol -> it's the way we can have a reference to the object in PHP4
     *  {@*}
     *
     *  $obj = & $form->add('hidden', 'control_id', 'hidden value');
     *
     *  </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 value to be stored in the hidden value
     *
     *  @return void
     */
    
function HTMLForm_hidden($controlID$defaultValue '')
    {
    
        
// 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(

            
'nobr'

        
);

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

            array(

                
'type'  =>  'hidden',
                
'id'    =>  $controlID,
                
'name'  =>  $controlID,
                
'value' =>  $defaultValue

            
)

        );
        
    }
    
    
/**
     *  Returns the HTML code of the control
     *
     *  @return string  Resulted HTML code
     *
     *  @access private
     */
    
function toHTML()
    {

        return 
'<input ' $this->renderAttributes() . '>';

    }

}

?>

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