This Code was written due to lots of request from members in worldofhacker
This is Only for Testing Purpose, if you try to harm person with this S*** of code than I(KroKite) or World of Hacker will not be Responsible for your Crime. Keep Calm, Stay Safe
Note: Your Host will ban you account for doing so.
Good Luck.
This is Only for Testing Purpose, if you try to harm person with this S*** of code than I(KroKite) or World of Hacker will not be Responsible for your Crime. Keep Calm, Stay Safe
Note: Your Host will ban you account for doing so.
PHP Code:
<!DOCTYPE html>
<html lang=en>
<head>
<title>My Email Spoofer</title>
</head>
<body>
<header align=center>
<h1> My Email Spoofer </h1>
</header>
<section>
<form method="post" action="#">
<table border="0">
<tr><td>EMail To Show: </td><td><input type=email name=email placeholder="e.g, bill@microsoft.com" /></td></tr>
<tr><td>Email id of Person: </td><td><input type=email name=mail placeholder="Enter Slave Email" /></td></tr>
<tr><td>Subject to Slave : </td><td><input type=text name=subj placeholder="Enter Subject for Mail" /></td></tr>
<tr><td valign=top>Message to Slave : </td><td><textarea name=msg rows=8 cols=30 ></textarea></td></tr>
<tr><td><input type=reset value="Reset All" /></td><td><input type=submit name=sub value="Send Fake Mail" /></td></tr>
</table>
</form>
</section>
<footer align=center>
<p>Thank you to <a href="http://worldofhacker.com" target="_blank">World of Hacker</a> Copyright © <a href="http://www.krokite.com">KroKite</a></p>
</footer>
</body>
</html>
phpif(isset($_POST['sub']) || !empty($_POST['mail'])) {
$Slave = $_POST['mail'];
$msg = $_POST['msg'];
$subj = $_POST['subj'];
$spoo = $_POST['email'];
$headers = 'From:'.$spoo. "\r\n" .
'Reply-To:'.$spoo. "\r\n" .
'X-Mailer: PHP/' . phpversion();
$mail = mail($Slave, $subj, $msg, $headers);
if($mail) {
echo "Spoof Mail Sent
";
} else {
echo "Mail was not Sent
";
}
} else {
echo "Please fill all the form Properly";
}
?>
Good Luck.