<?php // 1. Set your target (the ruutukf.com address from your screenshot) $to = "your-ga99i8uzel@ruutukf.com"; // 2. Set the "Spoofed" identity $subject = "URGENT: Your Prize Claim - Project Test"; $from = "admin@gigahertzgiveaways.co.uk"; // 3. Craft the headers (This is where the spoofing happens) $headers = "From: " . $from . "\r\n"; $headers .= "Reply-To: " . $from . "\r\n"; $headers .= "X-Mailer: PHP/" . phpversion(); // 4. The "Phishing" Body $message = "Congratulations! You have won the jackpot. Please reply to this email to claim your prize."; // 5. Execute the send if(mail($to, $subject, $message, $headers)) { echo "SUCCESS: The spoofed email has been sent to $to"; } else { echo "ERROR: The server blocked the mail() function."; } ?><?php // 1. Set your target (the ruutukf.com address from your screenshot) $to = "your-ga99i8uzel@ruutukf.com"; // 2. Set the "Spoofed" identity $subject = "URGENT: Your Prize Claim - Project Test"; $from = "admin@gigahertzgiveaways.co.uk"; // 3. Craft the headers (This is where the spoofing happens) $headers = "From: " . $from . "\r\n"; $headers .= "Reply-To: " . $from . "\r\n"; $headers .= "X-Mailer: PHP/" . phpversion(); // 4. The "Phishing" Body $message = "Congratulations! You have won the jackpot. Please reply to this email to claim your prize."; // 5. Execute the send if(mail($to, $subject, $message, $headers)) { echo "SUCCESS: The spoofed email has been sent to $to"; } else { echo "ERROR: The server blocked the mail() function."; } ?>
You have javascript disabled. You will not be able to edit any code.