Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
mailer /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwxrwxr-x
src
[ DIR ]
drwxrwxr-x
COMMITMENT
2.04
KB
-rwxrwxr-x
composer.json
1.71
KB
-rwxrwxr-x
Exception.php
1.18
KB
-rwxrwxr-x
get_oauth_token.php
4.75
KB
-rwxrwxr-x
LICENSE
25.91
KB
-rwxrwxr-x
OAuth.php
3.66
KB
-rwxrwxr-x
PHPMailer.php
157.89
KB
-rwxrwxr-x
POP3.php
10.76
KB
-rwxrwxr-x
README.md
15.96
KB
-rwxrwxr-x
SECURITY.md
4.48
KB
-rwxrwxr-x
SMTP.php
42.69
KB
-rwxrwxr-x
VERSION
5
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Exception.php
<?php /** * PHPMailer Exception class. * PHP Version 5.5. * * @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project * * @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk> * @author Jim Jagielski (jimjag) <jimjag@gmail.com> * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net> * @author Brent R. Matzelle (original founder) * @copyright 2012 - 2017 Marcus Bointon * @copyright 2010 - 2012 Jim Jagielski * @copyright 2004 - 2009 Andy Prevost * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License * @note This program is distributed in the hope that it will be useful - WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. */ namespace PHPMailer\PHPMailer; /** * PHPMailer exception handler. * * @author Marcus Bointon <phpmailer@synchromedia.co.uk> */ class Exception extends \Exception { /** * Prettify error message output. * * @return string */ public function errorMessage() { return '<strong>' . htmlspecialchars($this->getMessage()) . "</strong><br />\n"; } }
Close