• XSS.stack #1 – первый литературный журнал от юзеров форума

How can i clone an email?

you can not clone an email but you can spoof or create something similar to it in order to change the email address you need a sender that sends email and simply put replay to your other email and is done
I want to spoof the email
Where it will be showing FROM the spoofed email and REPLYTO the email im using to receive replies
How can i do it?
 
I want to spoof the email
Where it will be showing FROM the spoofed email and REPLYTO the email im using to receive replies
How can i do it?

use php's mail() function and change the headers

Код:
<?php

// If you don't want a name attached to the email, just do:
// "From: spoofed@email.com\r\n ..."
$headers = "
From: Spoofed <spoofed@email.com>\r\n
Reply-To: your@email.com\r\n";

$subject = "your subject";
$message = "your message";

mail('their@email.com', $subject, $message, $headers);

?>

The email will appear from spoofed@email.com with the email name appearing as "Spoofed", and when replied it will go to your@email.com
 
Последнее редактирование:
use php's mail() function and change the headers

Код:
<?php

// If you don't want a name attached to the email, just do:
// "From: spoofed@email.com\r\n ..."
$headers = "
From: Spoofed <spoofed@email.com>\r\n
Reply-To: your@email.com\r\n";

$subject = "your subject";
$message = "your message";

mail('their@email.com', $subject, $message, $headers);

?>

The email will appear from spoofed@email.com with the email name appearing as "Spoofed", and when replied it will go to your@email.com
But it will enter spam folder?
 


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх