Email Spoofing 2016
SOME BASICS
So
email spoofing a way by which a person impersonated the email of
another person by sending the header through a web-server without
victims realization.
NEEDED
This is so easy to do! Some people search for months & still can't find a proper way to do it.
1) A free Sub-Domain (000webhost)
2) 3 Files ( *pngimage.php ; *bg1.png ; *sendmail.php )
You can either copy the code from here or ask me for a download link..
CODE - pngimage.php
<?php
session_start();
header ("Content-type: ../image/png");
$rno = rand(1000,99999);
$_SESSION['ckey'] = md5($rno);
$img_handle = imageCreateFromPNG("bg1.PNG");
$color = ImageColorAllocate ($img_handle, 0, 0, 0);
ImageString ($img_handle, 5, 20, 13, $rno, $color);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
?>
session_start();
header ("Content-type: ../image/png");
$rno = rand(1000,99999);
$_SESSION['ckey'] = md5($rno);
$img_handle = imageCreateFromPNG("bg1.PNG");
$color = ImageColorAllocate ($img_handle, 0, 0, 0);
ImageString ($img_handle, 5, 20, 13, $rno, $color);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
?>
CODE - sendmail.php
<?php
session_start();
if ($_POST['Submit'] == 'Send')
{
if (strcmp(md5($_POST['user_code']),$_SESSION['ckey']))
{
header("Location: ../sendmail.php?msg=ERROR: Invalid Verification Code");
exit();
}
$to = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$fromemail = $_POST['fromemail'];
$fromname = $_POST['fromname'];
$lt= '<';
$gt= '>';
$sp= ' ';
$from= 'From:';
$headers = $from.$fromname.$sp.$lt.$fromemail.$gt;
mail($to,$subject,$message,$headers);
header("Location: ../sendmail.php?msg= Mail Sent!");
exit();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<meta name="robots" content="all,follow,noodp,noydir" />
<meta name="googlebot" content="index,follow,snippet,archive,noodp" />
<meta name="referrer" content="never" />
<meta name="author" content="darksniper" />
<meta name="copyright" content="darksniper" />
<meta name="description" content="Email Spoofer" />
<meta name="keywords" content="fake mailer,fakemailer,fakemail,fake mail,fake email,instant mailer,instantmailer,instant mail,instantmail,mailer,mail,emkei,attachment,encrypt,encryption,html mail,html email,spoofer,email spoofer,email prank,pranks,email,mail,gmail,yahoo mail,hotmail,google" />
<title>FTP Spoofer</title>
<style>
body{
background-color:black;
color:white;
}
#f1{
background-color:brown;
box-shadow:5px 5px 5px black;
margin-left:5%;
margin-right:5%;
}
font2{
font-size:17px;
}
#fromname{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#fromname:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#fromemail{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#fromemail:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#toemail{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#toemail:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#subject{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#subject:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#message{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#message:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#but{
border-radius:100%;
background-color:red;
color:black;
font-size:20px;
font-family:tahoma;
transition-property:border-radius;
transition-duration:0.20s;
}
#but:hover{
background-color:white;
border-radius:0px;
}
#otools{
background-color:Brown;
}
#b1{
margin-top:10px;
margin-bottom:10px;
background-color:black;
color:yellow;
font-size:20px;
font-family:comic sans ms;
}
footer{
background-color:blue;
}
#foot{
color:yellow;
text-shadow:5px 5px 5px red;
font-size:40px;
}
</style>
</head>
<body bgcolor="#ffffcc">
<center><font id="font1"></font><br>
<h2>**Clearnet Version**</h2>
<font size="15px">Fuck The Police - Email Spoofer</font><br>
<font id="font2">Now do unrestricted & open chats on: <a href="http://openchat-102.comxa.com">OpenChat</a></font></center>
<p style="margin-left:15px"><center>
<form id="f1" action="sendmail.php" method="POST">
<br>
<b>From Name:</b><br>
<input id="fromname" type="text" name="fromname" size="50"><br>
<br><b>From Email:</b><br>
<input id="fromemail" type="text" name="fromemail" size="50"><br>
<br><b>To Email:</b><br>
<input id="toemail" type="text" name="toemail" size="50"><br>
<br><b>Subject:</b><br>
<input id="subject" type="text" name="subject" size="74"><br>
<br><b>Your Message:</b><br>
<textarea id="message" name="message" rows="10" cols="70">
</textarea><br>
<br><b>Verification Code:</b><br>
<input id="usercode" name="user_code" type="text" size="25">
<img src="pngimg.php" align="middle"><br><br>
<input id="but" type="submit" name="Submit" value="Send">
<input id="but" type="reset" value="Reset">
<br><br>
</form></center>
</p>
<?php if (isset($_GET['msg'])) { echo "<font color=\"red\"><h3 align=\"center\"> $_GET[msg] </h3></font>"; } ?>
<div id="otools"><center>
<a href="http://passwordsgenerator.net/"><button id="b1">Random password generator</button></a>
<a href="http://temp-mail.org/en/"><button id="b1">Disposable Email</button></a>
<a href="https://www.000webhost.com/"><button id="b1">Free web hosting</button></a><br></center>
</div><br>
<center>
<footer>
<font id="foot">dArKsNiPeR , DarkCod3r</font>
</footer></center>
</body>
</html>
session_start();
if ($_POST['Submit'] == 'Send')
{
if (strcmp(md5($_POST['user_code']),$_SESSION['ckey']))
{
header("Location: ../sendmail.php?msg=ERROR: Invalid Verification Code");
exit();
}
$to = $_POST['toemail'];
$subject = $_POST['subject'];
$message = $_POST['message'];
$fromemail = $_POST['fromemail'];
$fromname = $_POST['fromname'];
$lt= '<';
$gt= '>';
$sp= ' ';
$from= 'From:';
$headers = $from.$fromname.$sp.$lt.$fromemail.$gt;
mail($to,$subject,$message,$headers);
header("Location: ../sendmail.php?msg= Mail Sent!");
exit();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="en" />
<meta name="robots" content="all,follow,noodp,noydir" />
<meta name="googlebot" content="index,follow,snippet,archive,noodp" />
<meta name="referrer" content="never" />
<meta name="author" content="darksniper" />
<meta name="copyright" content="darksniper" />
<meta name="description" content="Email Spoofer" />
<meta name="keywords" content="fake mailer,fakemailer,fakemail,fake mail,fake email,instant mailer,instantmailer,instant mail,instantmail,mailer,mail,emkei,attachment,encrypt,encryption,html mail,html email,spoofer,email spoofer,email prank,pranks,email,mail,gmail,yahoo mail,hotmail,google" />
<title>FTP Spoofer</title>
<style>
body{
background-color:black;
color:white;
}
#f1{
background-color:brown;
box-shadow:5px 5px 5px black;
margin-left:5%;
margin-right:5%;
}
font2{
font-size:17px;
}
#fromname{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#fromname:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#fromemail{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#fromemail:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#toemail{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#toemail:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#subject{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#subject:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#message{
background-color:grey;
color:black;
font-size:20px;
border-radius:10px;
box-shadow:0px 5px 5px blue;
transition-property:background-color;
transition-duration:0.20s;
}
#message:hover{
background-color:black;
box-shadow:0px 5px 5px black;
color:white;
}
#but{
border-radius:100%;
background-color:red;
color:black;
font-size:20px;
font-family:tahoma;
transition-property:border-radius;
transition-duration:0.20s;
}
#but:hover{
background-color:white;
border-radius:0px;
}
#otools{
background-color:Brown;
}
#b1{
margin-top:10px;
margin-bottom:10px;
background-color:black;
color:yellow;
font-size:20px;
font-family:comic sans ms;
}
footer{
background-color:blue;
}
#foot{
color:yellow;
text-shadow:5px 5px 5px red;
font-size:40px;
}
</style>
</head>
<body bgcolor="#ffffcc">
<center><font id="font1"></font><br>
<h2>**Clearnet Version**</h2>
<font size="15px">Fuck The Police - Email Spoofer</font><br>
<font id="font2">Now do unrestricted & open chats on: <a href="http://openchat-102.comxa.com">OpenChat</a></font></center>
<p style="margin-left:15px"><center>
<form id="f1" action="sendmail.php" method="POST">
<br>
<b>From Name:</b><br>
<input id="fromname" type="text" name="fromname" size="50"><br>
<br><b>From Email:</b><br>
<input id="fromemail" type="text" name="fromemail" size="50"><br>
<br><b>To Email:</b><br>
<input id="toemail" type="text" name="toemail" size="50"><br>
<br><b>Subject:</b><br>
<input id="subject" type="text" name="subject" size="74"><br>
<br><b>Your Message:</b><br>
<textarea id="message" name="message" rows="10" cols="70">
</textarea><br>
<br><b>Verification Code:</b><br>
<input id="usercode" name="user_code" type="text" size="25">
<img src="pngimg.php" align="middle"><br><br>
<input id="but" type="submit" name="Submit" value="Send">
<input id="but" type="reset" value="Reset">
<br><br>
</form></center>
</p>
<?php if (isset($_GET['msg'])) { echo "<font color=\"red\"><h3 align=\"center\"> $_GET[msg] </h3></font>"; } ?>
<div id="otools"><center>
<a href="http://passwordsgenerator.net/"><button id="b1">Random password generator</button></a>
<a href="http://temp-mail.org/en/"><button id="b1">Disposable Email</button></a>
<a href="https://www.000webhost.com/"><button id="b1">Free web hosting</button></a><br></center>
</div><br>
<center>
<footer>
<font id="foot">dArKsNiPeR , DarkCod3r</font>
</footer></center>
</body>
</html>
IMAGE - bg1.png
Right click the image and save it.HOW-TO
1) Make a new site via the free hosting.
2) Upload these 3 files to your hosting.
3) Visit your site
4) Click on "sendmail.php"
5) Enter the fields
6) Voila! Done!
NOTE: Due to the recent yahoo changes, this does not work on yahoo mails
Good job. I was looking for this for so long.
ReplyDeleteIt is showing index.php is required in 000webhost
ReplyDelete