![]() |
|
Emails don't send in Email Spoofer - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: Emails don't send in Email Spoofer (/Thread-Emails-don-t-send-in-Email-Spoofer) |
Emails don't send in Email Spoofer - Aut•ono•mous - 08-07-2014 I'm making an email spoofer using PHP, nothing huge, just making it to learn, but I can't seem to get it to send out emails. I'm very novice in PHP, so please let me know if I'm doing something wrong here! Hosted at: hhd/imposter.php Here's my code: Code: <style type="text/css">
<!--
body,td,th {
color: #999999;
font-family: Courier New, Courier, monospace;
}
body {
background-image: url('http://www.hackershelpdesk.net/background.png');
}
INPUT {
background-color: black;
border: grey 1px solid;
color: white;
font-family: arial, verdana, ms sans serif;
font-size: 10pt
}
TEXTAREA {
background-color: black;
border: grey 1px solid;
color: white;
font-family: arial, verdana, ms sans serif;
font-size: 10pt;
font-weight: normal
}
-->
</style>
<!DOCTYPE html>
<html>
<head>
<title>Autonomous Imposter Mail</title>
</head>
<center>
<font color='red'>
<p><b>Imposter Mail</b></p>
<p>Created by: Autonomous</p>
<p>www.HackersHelpdesk.net</p></font>
<body>
<align="left">
<form action="imposter.php" method="post">
<table border="0">
<tr>
<b>Victim Address: </b>
<input type="text" name="to"></p>
</tr>
<tr>
<b>Impersonation Name: </b>
<input type="text" name="fromname"></p>
</tr>
<tr>
<b>Impersonation Address: </b>
<input type="text" name="from"></p>
</tr>
<tr>
<b>Reply to: </b>
<input type="text" name="replyto"></p>
</tr>
<tr>
<b>Subject Line: </b>
<input type="text" name="subject"></p>
</tr>
<tr>
<b>Email Body: </b>
<textarea name="body"></textarea></p>
</tr>
<tr>
<b>Encryption key: </b>
<input type="password" name="password"></p>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Impersonate" />
</td>
</tr>
</table>
</form>
<div style="color:red">Created for private use by Autonomous of</div><a href="http://www.hackershelpdesk.net><font color="FFFFFF">Hacker's Helpdesk.</font></a>
</body>
</align>
</html>Thanks in advance for any advice! |