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


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

/**
 * Injector that converts configuration directive syntax %Namespace.Directive
 * to links
 */
class HTMLPurifier_Injector_PurifierLinkify extends HTMLPurifier_Injector
{
    
/**
     * @type string
     */
    
public $name 'PurifierLinkify';

    
/**
     * @type string
     */
    
public $docURL;

    
/**
     * @type array
     */
    
public $needed = array('a' => array('href'));

    
/**
     * @param HTMLPurifier_Config $config
     * @param HTMLPurifier_Context $context
     * @return string
     */
    
public function prepare($config$context)
    {
        
$this->docURL $config->get('AutoFormat.PurifierLinkify.DocURL');
        return 
parent::prepare($config$context);
    }

    
/**
     * @param HTMLPurifier_Token $token
     */
    
public function handleText(&$token)
    {
        if (!
$this->allowsElement('a')) {
            return;
        }
        if (
strpos($token->data'%') === false) {
            return;
        }

        
$bits preg_split('#%([a-z0-9]+\.[a-z0-9]+)#Si'$token->data, -1PREG_SPLIT_DELIM_CAPTURE);
        
$token = array();

        
// $i = index
        // $c = count
        // $l = is link
        
for ($i 0$c count($bits), $l false$i $c$i++, $l = !$l) {
            if (!
$l) {
                if (
$bits[$i] === '') {
                    continue;
                }
                
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
            } else {
                
$token[] = new HTMLPurifier_Token_Start(
                    
'a',
                    array(
'href' => str_replace('%s'$bits[$i], $this->docURL))
                );
                
$token[] = new HTMLPurifier_Token_Text('%' $bits[$i]);
                
$token[] = new HTMLPurifier_Token_End('a');
            }
        }
    }
}

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