!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)

/uploads/script/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.85%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * Validates a rel/rev link attribute against a directive of allowed values
 * @note We cannot use Enum because link types allow multiple
 *       values.
 * @note Assumes link types are ASCII text
 */
class HTMLPurifier_AttrDef_HTML_LinkTypes extends HTMLPurifier_AttrDef
{

    
/**
     * Name config attribute to pull.
     * @type string
     */
    
protected $name;

    
/**
     * @param string $name
     */
    
public function __construct($name)
    {
        
$configLookup = array(
            
'rel' => 'AllowedRel',
            
'rev' => 'AllowedRev'
        
);
        if (!isset(
$configLookup[$name])) {
            
trigger_error(
                
'Unrecognized attribute name for link ' .
                
'relationship.',
                
E_USER_ERROR
            
);
            return;
        }
        
$this->name $configLookup[$name];
    }

    
/**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    
public function validate($string$config$context)
    {
        
$allowed $config->get('Attr.' $this->name);
        if (empty(
$allowed)) {
            return 
false;
        }

        
$string $this->parseCDATA($string);
        
$parts explode(' '$string);

        
// lookup to prevent duplicates
        
$ret_lookup = array();
        foreach (
$parts as $part) {
            
$part strtolower(trim($part));
            if (!isset(
$allowed[$part])) {
                continue;
            }
            
$ret_lookup[$part] = true;
        }

        if (empty(
$ret_lookup)) {
            return 
false;
        }
        
$string implode(' 'array_keys($ret_lookup));
        return 
$string;
    }
}

// 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.006 ]--